@cryptotaxi247 / netdata-1 / commits / a1b86341f

fix duplicate chart context (#17267)

Ilya Mashchenko committed Mar 27, 2024 at 10:49 UTC a1b86341f1727dc189920ee8dad46eebb6fbbdbf
9 files changed +17 -50
src/collectors/ebpf.plugin/metadata.yaml
+1 -25
@@ -1733,7 +1733,7 @@ modules:
1733 chart_type: stacked
1734 dimensions:
1735 - name: connections
1736 - - name: app.app.ebpf_call_tcp_v6_connection
1736 + - name: app.ebpf_call_tcp_v6_connection
1737 description: Calls to tcp_v6_connection
1738 unit: "connections/s"
1739 chart_type: stacked
@@ -3282,30 +3282,6 @@ modules:
3282 chart_type: line
3283 dimensions:
3284 - name: hash_table
3285 - - name: netdata.ebpf_aral_stat_size
3286 - description: Bytes allocated for ARAL
3287 - unit: "bytes"
3288 - chart_type: stacked
3289 - dimensions:
3290 - - name: memory
3291 - - name: netdata.ebpf_aral_stat_alloc
3292 - description: Calls to allocate memory
3293 - unit: "calls"
3294 - chart_type: stacked
3295 - dimensions:
3296 - - name: aral
3297 - - name: netdata.ebpf_aral_stat_size
3298 - description: Bytes allocated for ARAL.
3299 - unit: "bytes"
3300 - chart_type: stacked
3301 - dimensions:
3302 - - name: memory
3303 - - name: netdata.ebpf_aral_stat_alloc
3304 - description: Calls to allocate memory
3305 - unit: "calls"
3306 - chart_type: stacked
3307 - dimensions:
3308 - - name: aral
3285 - name: netdata.ebpf_hash_tables_insert_pid_elements
3286 description: Number of times an element was inserted in a hash table.
3287 unit: "rows"
src/collectors/proc.plugin/metadata.yaml
+1 -10
@@ -3299,7 +3299,7 @@ modules:
3299 - name: InAddrErrors
3300 - name: InTruncatedPkts
3301 - name: InCsumErrors
3302 - - name: ipc4.bcast
3302 + - name: ipv4.bcast
3303 description: IP Broadcast Bandwidth
3304 unit: "kilobits/s"
3305 chart_type: area
@@ -3613,15 +3613,6 @@ modules:
3613 - name: InECT1Pkts
3614 - name: InECT0Pkts
3615 - name: InCEPkts
3616 - - name: ipv6.ect
3617 - description: IPv6 ECT Packets
3618 - unit: "packets/s"
3619 - chart_type: line
3620 - dimensions:
3621 - - name: InNoECTPkts
3622 - - name: InECT1Pkts
3623 - - name: InECT0Pkts
3624 - - name: InCEPkts
3616 - name: ipv6.fragsin
3617 description: IPv6 Fragments Reassembly
3618 unit: "packets/s"
src/collectors/python.d.plugin/beanstalk/metadata.yaml
+1 -1
@@ -181,7 +181,7 @@ modules:
181 - name: list-tube-used
182 - name: list-tubes-watched
183 - name: pause-tube
184 - - name: beanstalk.connections_rate
184 + - name: beanstalk.current_tubes
185 description: Current Tubes
186 unit: "tubes"
187 chart_type: area
src/collectors/python.d.plugin/litespeed/litespeed.chart.py
+4 -4
@@ -36,7 +36,7 @@ CHARTS = {
36 },
37 'net_throughput_https': {
38 'options': [None, 'Network Throughput HTTPS', 'kilobits/s', 'net throughput',
39 - 'litespeed.net_throughput', 'area'],
39 + 'litespeed.net_ssl_throughput', 'area'],
40 'lines': [
41 ['ssl_bps_in', 'in', 'absolute'],
42 ['ssl_bps_out', 'out', 'absolute', -1]
@@ -50,7 +50,7 @@ CHARTS = {
50 ]
51 },
52 'connections_https': {
53 - 'options': [None, 'Connections HTTPS', 'conns', 'connections', 'litespeed.connections', 'stacked'],
53 + 'options': [None, 'Connections HTTPS', 'conns', 'connections', 'litespeed.ssl_connections', 'stacked'],
54 'lines': [
55 ['ssl_conn_free', 'free', 'absolute'],
56 ['ssl_conn_used', 'used', 'absolute']
@@ -69,13 +69,13 @@ CHARTS = {
69 ]
70 },
71 'pub_cache_hits': {
72 - 'options': [None, 'Public Cache Hits', 'hits/s', 'cache', 'litespeed.cache', 'line'],
72 + 'options': [None, 'Public Cache Hits', 'hits/s', 'cache', 'litespeed.public_cache', 'line'],
73 'lines': [
74 ['pub_cache_hits', 'hits', 'absolute', 1, 100]
75 ]
76 },
77 'private_cache_hits': {
78 - 'options': [None, 'Private Cache Hits', 'hits/s', 'cache', 'litespeed.cache', 'line'],
78 + 'options': [None, 'Private Cache Hits', 'hits/s', 'cache', 'litespeed.private_cache', 'line'],
79 'lines': [
80 ['private_cache_hits', 'hits', 'absolute', 1, 100]
81 ]
src/collectors/python.d.plugin/litespeed/metadata.yaml
+4 -4
@@ -115,7 +115,7 @@ modules:
115 dimensions:
116 - name: in
117 - name: out
118 - - name: litespeed.net_throughput
118 + - name: litespeed.net_ssl_throughput
119 description: Network Throughput HTTPS
120 unit: "kilobits/s"
121 chart_type: area
@@ -129,7 +129,7 @@ modules:
129 dimensions:
130 - name: free
131 - name: used
132 - - name: litespeed.connections
132 + - name: litespeed.ssl_connections
133 description: Connections HTTPS
134 unit: "conns"
135 chart_type: stacked
@@ -148,13 +148,13 @@ modules:
148 chart_type: line
149 dimensions:
150 - name: processing
151 - - name: litespeed.cache
151 + - name: litespeed.public_cache
152 description: Public Cache Hits
153 unit: "hits/s"
154 chart_type: line
155 dimensions:
156 - name: hits
157 - - name: litespeed.cache
157 + - name: litespeed.private_cache
158 description: Private Cache Hits
159 unit: "hits/s"
160 chart_type: line
src/collectors/python.d.plugin/puppet/metadata.yaml
+2 -2
@@ -156,14 +156,14 @@ modules:
156 description: "These metrics refer to the entire monitored application."
157 labels: []
158 metrics:
159 - - name: puppet.jvm
159 + - name: puppet.jvm_heap
160 description: JVM Heap
161 unit: "MiB"
162 chart_type: area
163 dimensions:
164 - name: committed
165 - name: used
166 - - name: puppet.jvm
166 + - name: puppet.jvm_nonheap
167 description: JVM Non-Heap
168 unit: "MiB"
169 chart_type: area
src/collectors/python.d.plugin/puppet/puppet.chart.py
+2 -2
@@ -30,7 +30,7 @@ ORDER = [
30
31 CHARTS = {
32 'jvm_heap': {
33 - 'options': [None, 'JVM Heap', 'MiB', 'resources', 'puppet.jvm', 'area'],
33 + 'options': [None, 'JVM Heap', 'MiB', 'resources', 'puppet.jvm_heap', 'area'],
34 'lines': [
35 ['jvm_heap_committed', 'committed', 'absolute', 1, MiB],
36 ['jvm_heap_used', 'used', 'absolute', 1, MiB],
@@ -41,7 +41,7 @@ CHARTS = {
41 ],
42 },
43 'jvm_nonheap': {
44 - 'options': [None, 'JVM Non-Heap', 'MiB', 'resources', 'puppet.jvm', 'area'],
44 + 'options': [None, 'JVM Non-Heap', 'MiB', 'resources', 'puppet.jvm_nonheap', 'area'],
45 'lines': [
46 ['jvm_nonheap_committed', 'committed', 'absolute', 1, MiB],
47 ['jvm_nonheap_used', 'used', 'absolute', 1, MiB],
src/go/collectors/go.d.plugin/modules/logstash/metadata.yaml
+1 -1
@@ -265,7 +265,7 @@ modules:
265 - name: in
266 - name: filtered
267 - name: out
268 - - name: logstash.pipeline_event
268 + - name: logstash.pipeline_event_duration
269 description: Pipeline Events Duration
270 unit: seconds
271 chart_type: line
src/go/collectors/go.d.plugin/modules/vernemq/metadata.yaml
+1 -1
@@ -536,7 +536,7 @@ modules:
536 dimensions:
537 - name: unsubscribe
538 - name: unsuback
539 - - name: vernemq.mqtt_unsubscribe
539 + - name: vernemq.mqtt_unsubscribe_error
540 description: v3/v5 Failed UNSUBSCRIBE Operations due to a Netsplit
541 unit: ops/s
542 chart_type: line