aboutsummaryrefslogtreecommitdiff
path: root/internal/monitor/monitor.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2024-05-16 07:47:04 +0200
committerRasmus Dahlberg <rasmus@rgdd.se>2024-05-16 07:47:04 +0200
commitbea0a1bce37a73acb323269edeaa5b7d11a2b42d (patch)
treef809f0d0129478e0c1dbe526c7ca6855c6665432 /internal/monitor/monitor.go
parent6f90052197d3906cb5406b9c65a3a8cdc7fe200b (diff)
Fix nits spotted by go vet
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 {