From 44638edf5b99ddcc7c73b8313557f200469228d4 Mon Sep 17 00:00:00 2001 From: crozzy Date: Thu, 29 Jun 2023 14:41:28 -0700 Subject: [PATCH] chore: Remove dogstatsd variable and references This came up as we have this field in the documentation but clairctl will error out if it's used when invoking any command. Signed-off-by: crozzy --- Documentation/reference/config.md | 2 -- introspection/server.go | 1 - 2 files changed, 3 deletions(-) diff --git a/Documentation/reference/config.md b/Documentation/reference/config.md index 053b9bc5bc..5fb53aa28d 100644 --- a/Documentation/reference/config.md +++ b/Documentation/reference/config.md @@ -103,8 +103,6 @@ metrics: name: "" prometheus: endpoint: null - dogstatsd: - url: "" ``` Note: the above just lists every key for completeness. Copy-pasting the above as diff --git a/introspection/server.go b/introspection/server.go index 845372e4be..6c0485a2bb 100644 --- a/introspection/server.go +++ b/introspection/server.go @@ -24,7 +24,6 @@ import ( const ( Prom = "prometheus" DefaultPromEndpoint = "/metrics" - DogStatsD = "dogstatsd" Stdout = "stdout" Jaeger = "jaeger" HealthEndpoint = "/healthz"