aboutsummaryrefslogtreecommitdiff
path: root/internal/monitor/monitor.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/monitor/monitor.go')
-rw-r--r--internal/monitor/monitor.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/internal/monitor/monitor.go b/internal/monitor/monitor.go
index 121d853..12d93cf 100644
--- a/internal/monitor/monitor.go
+++ b/internal/monitor/monitor.go
@@ -61,12 +61,12 @@ type LogEntry struct {
type Config struct {
// Optional
- Matcher Matcher // Which log entries to match (default is to match all)
- Logger logger.Logger // Debug prints only (no output by default)
- Contact string // Something that help log operators get in touch
- ChunkSize uint // Min number of leaves to propagate a chunk without matches
- BatchSize uint // Max number of certificates to accept per worker
- NumWorkers uint // Number of parallel workers to use for each log
+ Matcher Matcher // Which log entries to match (default is to match all)
+ Logger *logger.Logger // Debug prints only (no output by default)
+ Contact string // Something that help log operators get in touch
+ ChunkSize uint // Min number of leaves to propagate a chunk without matches
+ BatchSize uint // Max number of certificates to accept per worker
+ NumWorkers uint // Number of parallel workers to use for each log
}
type Monitor struct {