Add tracing to tlsconmon

This commit is contained in:
2025-05-25 03:41:04 +02:00
parent ec6eb3c814
commit 804399d32a
7 changed files with 222 additions and 30 deletions

View File

@@ -23,6 +23,8 @@ type TLSConnectionMonitor struct {
type Config struct {
ListenAddr string `toml:"ListenAddr"`
Profiling bool `toml:"Profiling"`
Tracing bool `toml:"Tracing"`
TracingEndpoint string `toml:"TracingEndpoint"`
StepMonitors []StepMonitor `toml:"StepMonitors"`
TLSConnectionMonitors []TLSConnectionMonitor `toml:"TLSConnectionMonitors"`
}