From 87d772a7d708fec12f48cd8adc0dedff6e1025da Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 26 Aug 2024 10:15:20 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- .../go.d.plugin/modules/couchbase/charts.go | 84 ---------------------- 1 file changed, 84 deletions(-) delete mode 100644 src/go/collectors/go.d.plugin/modules/couchbase/charts.go (limited to 'src/go/collectors/go.d.plugin/modules/couchbase/charts.go') diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/charts.go b/src/go/collectors/go.d.plugin/modules/couchbase/charts.go deleted file mode 100644 index 792718095..000000000 --- a/src/go/collectors/go.d.plugin/modules/couchbase/charts.go +++ /dev/null @@ -1,84 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -package couchbase - -import ( - "github.com/netdata/netdata/go/go.d.plugin/agent/module" -) - -type ( - Charts = module.Charts - Chart = module.Chart - Dim = module.Dim -) - -var bucketQuotaPercentUsedChart = Chart{ - ID: "bucket_quota_percent_used", - Title: "Quota Percent Used Per Bucket", - Units: "%", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_quota_percent_used", -} - -var bucketOpsPerSecChart = Chart{ - ID: "bucket_ops_per_sec", - Title: "Operations Per Second Per Bucket", - Units: "ops/s", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_ops_per_sec", - Type: module.Stacked, -} - -var bucketDiskFetchesChart = Chart{ - ID: "bucket_disk_fetches", - Title: "Disk Fetches Per Bucket", - Units: "fetches", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_disk_fetches", - Type: module.Stacked, -} - -var bucketItemCountChart = Chart{ - ID: "bucket_item_count", - Title: "Item Count Per Bucket", - Units: "items", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_item_count", - Type: module.Stacked, -} - -var bucketDiskUsedChart = Chart{ - ID: "bucket_disk_used_stats", - Title: "Disk Used Per Bucket", - Units: "bytes", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_disk_used_stats", - Type: module.Stacked, -} - -var bucketDataUsedChart = Chart{ - ID: "bucket_data_used", - Title: "Data Used Per Bucket", - Units: "bytes", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_data_used", - Type: module.Stacked, -} - -var bucketMemUsedChart = Chart{ - ID: "bucket_mem_used", - Title: "Memory Used Per Bucket", - Units: "bytes", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_mem_used", - Type: module.Stacked, -} - -var bucketVBActiveNumNonResidentChart = Chart{ - ID: "bucket_vb_active_num_non_resident_stats", - Title: "Number Of Non-Resident Items Per Bucket", - Units: "items", - Fam: "buckets basic stats", - Ctx: "couchbase.bucket_vb_active_num_non_resident", - Type: module.Stacked, -} -- cgit v1.2.3