summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/pulsar/cache.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/modules/pulsar/cache.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/modules/pulsar/cache.go')
-rw-r--r--src/go/collectors/go.d.plugin/modules/pulsar/cache.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/cache.go b/src/go/collectors/go.d.plugin/modules/pulsar/cache.go
deleted file mode 100644
index 7f113bf86..000000000
--- a/src/go/collectors/go.d.plugin/modules/pulsar/cache.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-package pulsar
-
-func newCache() *cache {
- return &cache{
- namespaces: make(map[namespace]bool),
- topics: make(map[topic]bool),
- }
-}
-
-type (
- namespace struct{ name string }
- topic struct{ namespace, name string }
- cache struct {
- namespaces map[namespace]bool
- topics map[topic]bool
- }
-)