summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:20 +0000
commit87d772a7d708fec12f48cd8adc0dedff6e1025da (patch)
tree1fee344c64cc3f43074a01981e21126c8482a522 /src/go/collectors/go.d.plugin/pkg/metrics/metrics.go
parentAdding upstream version 1.46.3. (diff)
downloadnetdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.tar.xz
netdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.zip
Adding upstream version 1.47.0.upstream/1.47.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/go/collectors/go.d.plugin/pkg/metrics/metrics.go')
-rw-r--r--src/go/collectors/go.d.plugin/pkg/metrics/metrics.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go b/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go
deleted file mode 100644
index 44a24056f..000000000
--- a/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-package metrics
-
-import "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
-
-// Observer is an interface that wraps the Observe method, which is used by
-// Histogram and Summary to add observations.
-type Observer interface {
- stm.Value
- Observe(v float64)
-}