@cryptotaxi247 / netdata / commits / d62383f04

chore(go.d/snmp-profiles): move fam desc and unit under chart_meta (#20614)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: fotis <fotis@netdata.cloud>

Ilya Mashchenko committed Jul 1, 2025 at 14:20 UTC d62383f04efbdbbb907ab1ce5b8e6d6a07817379
110 files changed +5998 -4791
src/go/plugin/go.d/collector/snmp/ddsnmp/ddprofiledefinition/metrics.go
+5 -3
@@ -81,9 +81,11 @@ type SymbolConfig struct {
81 // Deprecated types: `counter` (use `rate` instead), percent (use `scale_factor` instead)
82 MetricType ProfileMetricType `yaml:"metric_type,omitempty" json:"metric_type,omitempty"`
83
84 - Unit string `yaml:"unit,omitempty" json:"unit,omitempty"`
85 - Description string `yaml:"description,omitempty" json:"description,omitempty"`
86 - Family string `yaml:"family,omitempty" json:"family,omitempty"`
84 + ChartMeta struct {
85 + Description string `yaml:"description,omitempty" json:"description,omitempty"`
86 + Family string `yaml:"family,omitempty" json:"family,omitempty"`
87 + Unit string `yaml:"unit,omitempty" json:"unit,omitempty"`
88 + } `yaml:"chart_meta,omitempty" json:"chart_meta,omitempty"`
89
90 Mapping map[string]string `yaml:"mapping,omitempty" json:"mapping,omitempty"`
91 Transform string `yaml:"transform,omitempty" json:"transform,omitempty"`
src/go/plugin/go.d/collector/snmp/ddsnmp/ddsnmpcollector/metric_builder.go
+3 -3
@@ -47,9 +47,9 @@ func (mb *metricBuilder) asTableMetric() *metricBuilder {
47 }
48
49 func (mb *metricBuilder) fromSymbol(sym ddprofiledefinition.SymbolConfig, pdu gosnmp.SnmpPDU) *metricBuilder {
50 - mb.metric.Unit = sym.Unit
51 - mb.metric.Description = sym.Description
52 - mb.metric.Family = sym.Family
50 + mb.metric.Unit = sym.ChartMeta.Unit
51 + mb.metric.Description = sym.ChartMeta.Description
52 + mb.metric.Family = sym.ChartMeta.Family
53 mb.metric.MetricType = ternary(sym.MetricType != "", sym.MetricType, getMetricTypeFromPDUType(pdu))
54 mb.metric.Mappings = convMappingToNumeric(sym)
55 return mb
src/go/plugin/go.d/config/go.d/snmp.profiles/default/3com-huawei.yaml
+20 -15
@@ -12,9 +12,10 @@ metrics:
12 symbols:
13 - name: hwCpuCostRatePer5Sec
14 OID: 1.3.6.1.4.1.43.45.1.6.1.1.1.3
15 - description: Cpu usage percentage
16 - family: CPU/Usage
17 - unit: "%"
15 + chart_meta:
16 + description: Cpu usage percentage
17 + family: CPU/Usage
18 + unit: "%"
19 metric_tags:
20 - tag: cpu_index
21 index: 1
@@ -25,14 +26,16 @@ metrics:
26 symbols:
27 - name: hwMemSize
28 OID: 1.3.6.1.4.1.43.45.1.6.1.2.1.1.2
28 - description: Total memory size
29 - family: Memory/Total
30 - unit: "By"
29 + chart_meta:
30 + description: Total memory size
31 + family: Memory/Total
32 + unit: "By"
33 - name: hwMemFree
34 OID: 1.3.6.1.4.1.43.45.1.6.1.2.1.1.3
33 - description: Free memory size
34 - family: Memory/Free
35 - unit: "By"
35 + chart_meta:
36 + description: Free memory size
37 + family: Memory/Free
38 + unit: "By"
39 metric_tags:
40 - tag: mem_index
41 index: 1
@@ -43,9 +46,10 @@ metrics:
46 symbols:
47 - OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.1.1.2
48 name: hwDevMFanStatus
46 - description: Fan status
47 - family: Fan/Status
48 - unit: "{status}"
49 + chart_meta:
50 + description: Fan status
51 + family: Fan/Status
52 + unit: "{status}"
53 mapping:
54 1: active
55 2: deactive
@@ -61,9 +65,10 @@ metrics:
65 symbols:
66 - OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.2.1.2
67 name: hwDevMPowerStatus
64 - description: Power status
65 - family: PowerSupply/Status
66 - unit: "{status}"
68 + chart_meta:
69 + description: Power status
70 + family: PowerSupply/Status
71 + unit: "{status}"
72 mapping:
73 1: active
74 2: deactive
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_arista-queue.yaml
+8 -6
@@ -10,9 +10,10 @@ metrics:
10 symbols:
11 - OID: 1.3.6.1.4.1.30065.3.6.1.1.1.3
12 name: aristaIngressQueuePktsDropped
13 - description: The number of dropped packets due to congestion at the ingress port in an interface
14 - family: Interfaces/Queue/Ingress/Packet/Dropped
15 - unit: "{packet}"
13 + chart_meta:
14 + description: The number of dropped packets due to congestion at the ingress port in an interface
15 + family: Interfaces/Queue/Ingress/Packet/Dropped
16 + unit: "{packet}"
17 metric_tags:
18 - tag: interface_index
19 symbol:
@@ -32,9 +33,10 @@ metrics:
33 symbols:
34 - OID: 1.3.6.1.4.1.30065.3.6.1.2.1.6
35 name: aristaEgressQueuePktsDropped
35 - description: The number of packets discarded from this egress queue.
36 - family: Interfaces/Queue/Egress/Packet/Dropped
37 - unit: "{packet}"
36 + chart_meta:
37 + description: The number of packets discarded from this egress queue.
38 + family: Interfaces/Queue/Egress/Packet/Dropped
39 + unit: "{packet}"
40 metric_tags:
41 - tag: interface_index
42 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_aruba-switch-cpu-memory.yaml
+12 -9
@@ -11,9 +11,10 @@ metrics:
11 # The average, over the last minute, of the percentage of time that this processor was not idle.
12 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13.1.3
13 name: wlsxSysExtProcessorLoad
14 - description: The average, over the last minute, of the percentage of time that this processor was not idle
15 - family: CPU/Usage
16 - unit: "%"
14 + chart_meta:
15 + description: The average, over the last minute, of the percentage of time that this processor was not idle
16 + family: CPU/Usage
17 + unit: "%"
18 metric_tags:
19 - tag: cpu_index
20 index: 1
@@ -28,15 +29,17 @@ metrics:
29 symbols:
30 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.2
31 name: wlsxSysExtMemorySize
31 - description: Total memory
32 - family: Memory/Total
33 - unit: "By"
32 + chart_meta:
33 + description: Total memory
34 + family: Memory/Total
35 + unit: "By"
36 scale_factor: 1024
37 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.3
38 name: wlsxSysExtMemoryUsed
37 - description: Used memory
38 - family: Memory/Used
39 - unit: "By"
39 + chart_meta:
40 + description: Used memory
41 + family: Memory/Used
42 + unit: "By"
43 scale_factor: 1024
44 metric_tags:
45 - tag: mem_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_base.yaml
+8 -6
@@ -13,18 +13,20 @@ metrics:
13 symbol:
14 OID: 1.3.6.1.2.1.25.1.1.0
15 name: systemUptime
16 - description: Time since the system was last rebooted or powered on.
16 scale_factor: 0.01
18 - family: Uptime
19 - unit: s
17 + chart_meta:
18 + description: Time since the system was last rebooted or powered on.
19 + family: Uptime
20 + unit: s
21 - MIB: HOST-RESOURCES-MIB
22 symbol:
23 OID: 1.3.6.1.2.1.1.3.0
24 name: systemUptime
24 - description: Time since the system was last rebooted or powered on.
25 scale_factor: 0.01
26 - family: Uptime
27 - unit: s
26 + chart_meta:
27 + description: Time since the system was last rebooted or powered on.
28 + family: Uptime
29 + unit: s
30
31 metadata:
32 device:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-asa.yaml
+32 -24
@@ -11,9 +11,10 @@ metrics:
11 symbols:
12 - OID: 1.3.6.1.4.1.9.9.147.1.2.2.2.1.5
13 name: cfwConnectionStatValue
14 - description: Current status of the resource statistic
15 - unit: "{connection}"
16 - family: Firewall/Connection/Count
14 + chart_meta:
15 + description: Current status of the resource statistic
16 + family: Firewall/Connection/Count
17 + unit: "{connection}"
18 metric_tags:
19 - tag: service_type
20 index: 1
@@ -74,51 +75,58 @@ metrics:
75 symbol:
76 OID: 1.3.6.1.4.1.9.9.392.1.4.1.2.0
77 name: crasNumDeclinedSessions
77 - description: Number of session setup attempts declined due to authentication or authorization failure
78 - family: RemoteAccess/Session/Declined
79 - unit: "{session}/s"
78 + chart_meta:
79 + description: Number of session setup attempts declined due to authentication or authorization failure
80 + family: RemoteAccess/Session/Declined
81 + unit: "{session}/s"
82 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
83 symbol:
84 OID: 1.3.6.1.4.1.9.9.392.1.3.1.0
85 name: crasNumSessions
84 - description: Number of currently active sessions
85 - family: RemoteAccess/Session/Active
86 - unit: "{session}"
86 + chart_meta:
87 + description: Number of currently active sessions
88 + family: RemoteAccess/Session/Active
89 + unit: "{session}"
90 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
91 symbol:
92 OID: 1.3.6.1.4.1.9.9.392.1.3.3.0
93 name: crasNumUsers
91 - description: Number of users who have active sessions
92 - family: RemoteAccess/User/Active
93 - unit: "{user}"
94 + chart_meta:
95 + description: Number of users who have active sessions
96 + family: RemoteAccess/User/Active
97 + unit: "{user}"
98 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
99 metric_type: monotonic_count
100 symbol:
101 OID: 1.3.6.1.4.1.9.9.392.1.4.1.3.0
102 name: crasNumSetupFailInsufResources
99 - description: Number of session setup attempts failed due to insufficient resources
100 - family: RemoteAccess/Session/Failed
101 - unit: "{failure}/s"
103 + chart_meta:
104 + description: Number of session setup attempts failed due to insufficient resources
105 + family: RemoteAccess/Session/Failed
106 + unit: "{failure}/s"
107 - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
108 symbol:
109 OID: 1.3.6.1.4.1.9.9.171.1.3.1.1.0
110 name: cipSecGlobalActiveTunnels
106 - description: Number of currently active IPsec Phase-2 Tunnels
107 - family: IPSec/Phase2/Tunnel/Active
108 - unit: "{tunnel}"
111 + chart_meta:
112 + description: Number of currently active IPsec Phase-2 Tunnels
113 + family: IPSec/Phase2/Tunnel/Active
114 + unit: "{tunnel}"
115 - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
116 metric_type: monotonic_count
117 symbol:
118 OID: 1.3.6.1.4.1.9.9.171.1.3.1.4.0
119 name: cipSecGlobalHcInOctets
114 - description: High capacity count of total octets received by all current and previous IPsec Phase-2 Tunnels
115 - family: IPSec/Phase2/Tunnel/Traffic/In
116 - unit: "By/s"
120 + chart_meta:
121 + description: High capacity count of total octets received by all current and previous IPsec Phase-2 Tunnels
122 + family: IPSec/Phase2/Tunnel/Traffic/In
123 + unit: "By/s"
124 - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
125 metric_type: monotonic_count
126 symbol:
127 OID: 1.3.6.1.4.1.9.9.171.1.3.1.17.0
128 name: cipSecGlobalHcOutOctets
122 - description: High capacity count of total octets sent by all current and previous IPsec Phase-2 Tunnels
123 - family: IPSec/Phase2/Tunnel/Traffic/Out
124 - unit: "By/s"
129 + chart_meta:
130 + description: High capacity count of total octets sent by all current and previous IPsec Phase-2 Tunnels
131 + family: IPSec/Phase2/Tunnel/Traffic/Out
132 + unit: "By/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-catalyst.yaml
+20 -15
@@ -27,9 +27,10 @@ metrics:
27 symbols:
28 - OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.4
29 name: entSensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
30 - description: Most recent measurement obtained by the agent for this sensor
31 - unit: "1"
32 - family: Sensor/Value
30 + chart_meta:
31 + description: Most recent measurement obtained by the agent for this sensor
32 + family: Sensor/Value
33 + unit: "1"
34 transform: |
35 {{- transformEntitySensorValue .Metric -}}
36 metric_tags:
@@ -60,24 +61,28 @@ metrics:
61 symbols:
62 - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.1
63 name: cieIfLastInTime
63 - description: "Elapsed time in milliseconds since last protocol input packet was received"
64 - family: Interfaces/Activity
65 - unit: "ms"
64 + chart_meta:
65 + description: "Elapsed time in milliseconds since last protocol input packet was received"
66 + family: Interfaces/Activity
67 + unit: "ms"
68 - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.2
69 name: cieIfLastOutTime
68 - description: "Elapsed time in milliseconds since last protocol output packet was transmitted"
69 - family: Interfaces/Activity
70 - unit: "ms"
70 + chart_meta:
71 + description: "Elapsed time in milliseconds since last protocol output packet was transmitted"
72 + family: Interfaces/Activity
73 + unit: "ms"
74 - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.10
75 name: cieIfInputQueueDrops
73 - description: "Number of input packets which were dropped"
74 - family: Interfaces/Drops
75 - unit: "{drop}/s"
76 + chart_meta:
77 + description: "Number of input packets which were dropped"
78 + family: Interfaces/Drops
79 + unit: "{drop}/s"
80 - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.11
81 name: cieIfOutputQueueDrops
78 - description: "Number of output packets dropped by the interface"
79 - family: Interfaces/Drops
80 - unit: "{drop}/s"
82 + chart_meta:
83 + description: "Number of output packets dropped by the interface"
84 + family: Interfaces/Drops
85 + unit: "{drop}/s"
86 metric_tags:
87 - tag: interface
88 MIB: IF-MIB
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-cpu-memory.yaml
+16 -12
@@ -8,9 +8,10 @@ metrics:
8 symbols:
9 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7
10 name: cpmCPUTotal1minRev
11 - description: The overall CPU busy percentage in the last 1 minute period
12 - family: CPU/Usage
13 - unit: "%"
11 + chart_meta:
12 + description: The overall CPU busy percentage in the last 1 minute period
13 + family: CPU/Usage
14 + unit: "%"
15 metric_tags:
16 - tag: cpu
17 index: 1
@@ -22,19 +23,22 @@ metrics:
23 symbols:
24 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.5
25 name: ciscoMemoryPoolUsed
25 - description: Number of bytes from the memory pool currently in use
26 - family: MemoryPool/Used
27 - unit: "By"
26 + chart_meta:
27 + description: Number of bytes from the memory pool currently in use
28 + family: MemoryPool/Used
29 + unit: "By"
30 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.6
31 name: ciscoMemoryPoolFree
30 - description: Number of bytes from the memory pool currently unused
31 - family: MemoryPool/Free
32 - unit: "By"
32 + chart_meta:
33 + description: Number of bytes from the memory pool currently unused
34 + family: MemoryPool/Free
35 + unit: "By"
36 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.7
37 name: ciscoMemoryPoolLargestFree
35 - description: Largest number of contiguous bytes from the memory pool currently unused
36 - family: MemoryPool/LargestFree
37 - unit: "By"
38 + chart_meta:
39 + description: Largest number of contiguous bytes from the memory pool currently unused
40 + family: MemoryPool/LargestFree
41 + unit: "By"
42 metric_tags:
43 - tag: mem_pool_name
44 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-generic.yaml
+104 -78
@@ -18,9 +18,10 @@ metrics:
18 symbols:
19 - name: cefcFRUPowerAdminStatus
20 OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.1
21 - description: Administratively desired FRU power state
22 - family: FRU/Power/Admin/Status
23 - unit: "{status}"
21 + chart_meta:
22 + description: Administratively desired FRU power state
23 + family: FRU/Power/Admin/Status
24 + unit: "{status}"
25 mapping:
26 1: on
27 2: off
@@ -29,9 +30,10 @@ metrics:
30 5: power_cycle
31 - name: cefcFRUPowerOperStatus
32 OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.2
32 - description: Operational FRU power state
33 - family: FRU/Power/Operational/Status
34 - unit: "{status}"
33 + chart_meta:
34 + description: Operational FRU power state
35 + family: FRU/Power/Operational/Status
36 + unit: "{status}"
37 mapping:
38 1: off_env_other
39 2: on
@@ -47,9 +49,10 @@ metrics:
49 12: on_but_inline_power_fail
50 - OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.3
51 name: cefcFRUCurrent
50 - description: Current supplied by the FRU or current required to operate the FRU
51 - family: FRU/Power/Current
52 - unit: "A"
52 + chart_meta:
53 + description: Current supplied by the FRU or current required to operate the FRU
54 + family: FRU/Power/Current
55 + unit: "A"
56 metric_tags:
57 - tag: fru_index
58 index: 1
@@ -60,24 +63,28 @@ metrics:
63 symbols:
64 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.10
65 name: cpmCPUTotalMonIntervalValue
63 - description: Overall CPU busy percentage in the last monitoring interval
64 - family: CPU/Usage
65 - unit: "%"
66 + chart_meta:
67 + description: Overall CPU busy percentage in the last monitoring interval
68 + family: CPU/Usage
69 + unit: "%"
70 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7
71 name: cpmCPUTotal1minRev
68 - description: Overall CPU busy percentage in the last 1 minute period
69 - family: CPU/Usage
70 - unit: "%"
72 + chart_meta:
73 + description: Overall CPU busy percentage in the last 1 minute period
74 + family: CPU/Usage
75 + unit: "%"
76 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.12
77 name: cpmCPUMemoryUsed
73 - description: Overall CPU wide system memory which is currently under use
74 - family: CPU/Memory/Used
75 - unit: "By"
78 + chart_meta:
79 + description: Overall CPU wide system memory which is currently under use
80 + family: CPU/Memory/Used
81 + unit: "By"
82 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.13
83 name: cpmCPUMemoryFree
78 - description: Overall CPU wide system memory which is currently free
79 - family: CPU/Memory/Free
80 - unit: "By"
84 + chart_meta:
85 + description: Overall CPU wide system memory which is currently free
86 + family: CPU/Memory/Free
87 + unit: "By"
88 metric_tags:
89 - tag: cpu_index
90 index: 1
@@ -89,9 +96,10 @@ metrics:
96 symbols:
97 - OID: 1.3.6.1.4.1.9.9.276.1.1.2.1.1
98 name: cieIfResetCount
92 - description: Number of times the interface was internally reset and brought up
93 - family: Interfaces/Reset/Count
94 - unit: "{reset}/s"
99 + chart_meta:
100 + description: Number of times the interface was internally reset and brought up
101 + family: Interfaces/Reset/Count
102 + unit: "{reset}/s"
103 metric_tags:
104 - tag: interface
105 table: ifXTable
@@ -106,14 +114,16 @@ metrics:
114 symbols:
115 - OID: 1.3.6.1.4.1.9.9.13.1.3.1.3
116 name: ciscoEnvMonTemperatureStatusValue
109 - description: Current measurement of the testpoint
110 - family: Environment/Temperature/Value
111 - unit: "Cel"
117 + chart_meta:
118 + description: Current measurement of the testpoint
119 + family: Environment/Temperature/Value
120 + unit: "Cel"
121 - OID: 1.3.6.1.4.1.9.9.13.1.3.1.6
122 name: ciscoEnvMonTemperatureState
114 - description: Current state of the testpoint
115 - family: Environment/Temperature/Status
116 - unit: "{status}"
123 + chart_meta:
124 + description: Current state of the testpoint
125 + family: Environment/Temperature/Status
126 + unit: "{status}"
127 mapping:
128 1: normal
129 2: warning
@@ -136,9 +146,10 @@ metrics:
146 symbols:
147 - OID: 1.3.6.1.4.1.9.9.13.1.5.1.3
148 name: ciscoEnvMonSupplyState
139 - description: Current state of the power supply
140 - family: Environment/PowerSupply/Status
141 - unit: "{status}"
149 + chart_meta:
150 + description: Current state of the power supply
151 + family: Environment/PowerSupply/Status
152 + unit: "{status}"
153 mapping:
154 1: normal
155 2: warning
@@ -171,9 +182,10 @@ metrics:
182 symbols:
183 - OID: 1.3.6.1.4.1.9.9.13.1.4.1.3
184 name: ciscoEnvMonFanState
174 - description: Current state of the fan
175 - family: Environment/Fan/Status
176 - unit: "{status}"
185 + chart_meta:
186 + description: Current state of the fan
187 + family: Environment/Fan/Status
188 + unit: "{status}"
189 mapping:
190 1: normal
191 2: warning
@@ -197,9 +209,10 @@ metrics:
209 symbols:
210 - OID: 1.3.6.1.4.1.9.9.500.1.2.2.1.1
211 name: cswStackPortOperStatus
200 - description: State of the stackport
201 - family: StackWise/Port/Status
202 - unit: "{status}"
212 + chart_meta:
213 + description: State of the stackport
214 + family: StackWise/Port/Status
215 + unit: "{status}"
216 mapping:
217 1: up
218 2: down
@@ -220,9 +233,10 @@ metrics:
233 symbols:
234 - OID: 1.3.6.1.4.1.9.9.500.1.2.1.1.6
235 name: cswSwitchState
223 - description: Current state of a switch
224 - family: StackWise/Switch/Status
225 - unit: "{status}"
236 + chart_meta:
237 + description: Current state of a switch
238 + family: StackWise/Switch/Status
239 + unit: "{status}"
240 mapping:
241 1: waiting
242 2: progressing
@@ -255,9 +269,10 @@ metrics:
269 symbols:
270 - OID: 1.3.6.1.4.1.9.9.117.1.4.1.1.1
271 name: cefcFanTrayOperStatus
258 - description: Operational state of the fan or fan tray
259 - unit: "{status}"
260 - family: Environment/FanTray/Status
272 + chart_meta:
273 + description: Operational state of the fan or fan tray
274 + family: Environment/FanTray/Status
275 + unit: "{status}"
276 tag: cefc_fan_tray_oper_status
277 mapping:
278 1: unknown
@@ -283,19 +298,22 @@ metrics:
298 symbols:
299 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.5
300 name: ciscoMemoryPoolUsed
286 - description: Number of bytes from the memory pool currently in use
287 - family: MemoryPool/Used
288 - unit: "By"
301 + chart_meta:
302 + description: Number of bytes from the memory pool currently in use
303 + family: MemoryPool/Used
304 + unit: "By"
305 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.6
306 name: ciscoMemoryPoolFree
291 - description: Number of bytes from the memory pool currently unused
292 - family: MemoryPool/Free
293 - unit: "By"
307 + chart_meta:
308 + description: Number of bytes from the memory pool currently unused
309 + family: MemoryPool/Free
310 + unit: "By"
311 - OID: 1.3.6.1.4.1.9.9.48.1.1.1.7
312 name: ciscoMemoryPoolLargestFree
296 - description: Largest number of contiguous bytes from the memory pool currently unused
297 - family: MemoryPool/LargestFree
298 - unit: "By"
313 + chart_meta:
314 + description: Largest number of contiguous bytes from the memory pool currently unused
315 + family: MemoryPool/LargestFree
316 + unit: "By"
317 metric_tags:
318 - tag: mem_pool_index
319 index: 1
@@ -311,9 +329,10 @@ metrics:
329 symbols:
330 - OID: 1.3.6.1.4.1.9.9.147.1.2.2.2.1.4
331 name: cfwConnectionStatCount
314 - description: Integer that contains the value of the resource statistic.
315 - family: Firewall/Connection/Count
316 - unit: "1"
332 + chart_meta:
333 + description: Integer that contains the value of the resource statistic.
334 + family: Firewall/Connection/Count
335 + unit: "1"
336 metric_tags:
337 - tag: conn_stat_id
338 symbol:
@@ -369,9 +388,10 @@ metrics:
388 symbols:
389 - OID: 1.3.6.1.4.1.9.9.147.1.2.1.1.1.3
390 name: cfwHardwareStatusValue
372 - description: Current status of the resource
373 - family: Firewall/Hardware/Status
374 - unit: "{status}"
391 + chart_meta:
392 + description: Current status of the resource
393 + family: Firewall/Hardware/Status
394 + unit: "{status}"
395 mapping:
396 1: other
397 2: up
@@ -398,9 +418,10 @@ metrics:
418 symbols:
419 - OID: 1.3.6.1.4.1.9.9.388.1.2.2.1.3
420 name: cvsChassisUpTime
401 - description: Up time for the chassis since last re-initialization
402 - family: VirtualSwitch/Chassis/Uptime
403 - unit: "cs"
421 + chart_meta:
422 + description: Up time for the chassis since last re-initialization
423 + family: VirtualSwitch/Chassis/Uptime
424 + unit: "cs"
425 metric_tags:
426 - tag: chassis_switch_id
427 symbol:
@@ -420,9 +441,10 @@ metrics:
441 # unit: "us"
442 - OID: 1.3.6.1.4.1.9.9.42.1.2.10.1.2
443 name: rttMonLatestRttOperSense
423 - description: Sense code for the completion status of the latest RTT operation
424 - family: RTT/Operation/Sense
425 - unit: "{status}"
444 + chart_meta:
445 + description: Sense code for the completion status of the latest RTT operation
446 + family: RTT/Operation/Sense
447 + unit: "{status}"
448 mapping:
449 0: other
450 1: ok
@@ -494,9 +516,10 @@ metrics:
516 symbols:
517 - OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.10
518 name: rttMonCtrlOperState
497 - description: Used to manage the state of the probe that is implementing conceptual RTT control row.
498 - family: RTT/Control/State
499 - unit: "{status}"
519 + chart_meta:
520 + description: Used to manage the state of the probe that is implementing conceptual RTT control row.
521 + family: RTT/Control/State
522 + unit: "{status}"
523 mapping:
524 1: reset
525 2: orderly_stop
@@ -507,25 +530,28 @@ metrics:
530 7: restart
531 - OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.6
532 name: rttMonCtrlOperTimeoutOccurred
510 - description: Indicates if a timeout occurred for the RTT operation
511 - family: RTT/Control/Timeout
512 - unit: "{status}"
533 + chart_meta:
534 + description: Indicates if a timeout occurred for the RTT operation
535 + family: RTT/Control/Timeout
536 + unit: "{status}"
537 mapping:
538 1: timeout_occurred
539 2: ok
540 - OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.5
541 name: rttMonCtrlOperConnectionLostOccurred
518 - description: Indicates if a connection lost occurred for the RTT operation
519 - family: RTT/Control/ConnectionLost
520 - unit: "{status}"
542 + chart_meta:
543 + description: Indicates if a connection lost occurred for the RTT operation
544 + family: RTT/Control/ConnectionLost
545 + unit: "{status}"
546 mapping:
547 1: connection_lost_occurred
548 2: ok
549 - OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.7
550 name: rttMonCtrlOperOverThresholdOccurred
526 - description: Indicates if the latest RTT operation exceeded its configured threshold value
527 - family: RTT/Control/OverThreshold
528 - unit: "{status}"
551 + chart_meta:
552 + description: Indicates if the latest RTT operation exceeded its configured threshold value
553 + family: RTT/Control/OverThreshold
554 + unit: "{status}"
555 mapping:
556 1: over_threshold_occurred
557 2: ok
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-ipsec-flow-monitor.yaml
+84 -63
@@ -6,52 +6,61 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.15
8 name: cikeTunLifeTime
9 - description: The negotiated lifetime of the IPsec Phase-1 IKE Tunnel in seconds
10 - family: IPSec/Phase1/Tunnel/Lifetime
11 - unit: "s"
9 + chart_meta:
10 + description: The negotiated lifetime of the IPsec Phase-1 IKE Tunnel in seconds
11 + family: IPSec/Phase1/Tunnel/Lifetime
12 + unit: "s"
13 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.19
14 name: cikeTunInOctets
14 - description: The total number of octets received by this IPsec Phase-1 IKE Tunnel
15 - family: IPSec/Phase1/Tunnel/Traffic/In
16 - unit: "By"
15 + chart_meta:
16 + description: The total number of octets received by this IPsec Phase-1 IKE Tunnel
17 + family: IPSec/Phase1/Tunnel/Traffic/In
18 + unit: "By"
19 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.27
20 name: cikeTunOutOctets
19 - description: The total number of octets sent by this IPsec Phase-1 IKE Tunnel
20 - family: IPSec/Phase1/Tunnel/Traffic/Out
21 - unit: "By/s"
21 + chart_meta:
22 + description: The total number of octets sent by this IPsec Phase-1 IKE Tunnel
23 + family: IPSec/Phase1/Tunnel/Traffic/Out
24 + unit: "By/s"
25 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.20
26 name: cikeTunInPkts
24 - description: The total number of packets received by this IPsec Phase-1 IKE Tunnel
25 - family: IPSec/Phase1/Tunnel/Packet/In
26 - unit: "{packet}/s"
27 + chart_meta:
28 + description: The total number of packets received by this IPsec Phase-1 IKE Tunnel
29 + family: IPSec/Phase1/Tunnel/Packet/In
30 + unit: "{packet}/s"
31 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.21
32 name: cikeTunInDropPkts
29 - description: The total number of packets dropped by this IPsec Phase-1 IKE Tunnel during receive processing
30 - family: IPSec/Phase1/Tunnel/Drop/In
31 - unit: "{drop}/s"
33 + chart_meta:
34 + description: The total number of packets dropped by this IPsec Phase-1 IKE Tunnel during receive processing
35 + family: IPSec/Phase1/Tunnel/Drop/In
36 + unit: "{drop}/s"
37 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.28
38 name: cikeTunOutPkts
34 - description: The total number of packets sent by this IPsec Phase-1 IKE Tunnel
35 - family: IPSec/Phase1/Tunnel/Packet/Out
36 - unit: "{packet}/s"
39 + chart_meta:
40 + description: The total number of packets sent by this IPsec Phase-1 IKE Tunnel
41 + family: IPSec/Phase1/Tunnel/Packet/Out
42 + unit: "{packet}/s"
43 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.29
44 name: cikeTunOutDropPkts
39 - description: The total number of packets dropped by this IPsec Phase-1 IKE Tunnel during send processing
40 - family: IPSec/Phase1/Tunnel/Drop/Out
41 - unit: "{drop}/s"
45 + chart_meta:
46 + description: The total number of packets dropped by this IPsec Phase-1 IKE Tunnel during send processing
47 + family: IPSec/Phase1/Tunnel/Drop/Out
48 + unit: "{drop}/s"
49 - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.35
50 name: cikeTunStatus
44 - description: The status of the IPsec Phase-1 IKE Tunnel
45 - family: IPSec/Phase1/Tunnel/Status
46 - unit: "{status}"
51 + chart_meta:
52 + description: The status of the IPsec Phase-1 IKE Tunnel
53 + family: IPSec/Phase1/Tunnel/Status
54 + unit: "{status}"
55 mapping:
56 1: active
57 2: destroy
58 - OID: .3.6.1.4.1.9.9.171.1.3.2.1.3
59 name: cipSecTunIkeTunnelAlive
52 - description: The existence status of the IPsec Phase-1 IKE Tunnel
53 - family: IPSec/Phase1/Tunnel/Existence
54 - unit: "{status}"
60 + chart_meta:
61 + description: The existence status of the IPsec Phase-1 IKE Tunnel
62 + family: IPSec/Phase1/Tunnel/Existence
63 + unit: "{status}"
64 mapping:
65 1: exists
66 2: not_exists
@@ -73,64 +82,76 @@ metrics:
82 symbols:
83 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.9
84 name: cipSecTunLifeTime
76 - description: The negotiated lifetime of the IPsec Phase-2 Tunnel in seconds.
77 - family: IPSec/Phase2/Tunnel/Lifetime
78 - unit: "s"
85 + chart_meta:
86 + description: The negotiated lifetime of the IPsec Phase-2 Tunnel in seconds.
87 + family: IPSec/Phase2/Tunnel/Lifetime
88 + unit: "s"
89 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.26
90 name: cipSecTunInOctets
81 - description: The total number of octets received by this IPsec Phase-2 Tunnel. This value is accumulated BEFORE determining whether or not the packet should be decompressed
82 - family: IPSec/Phase2/Tunnel/Traffic/In
83 - unit: "By/s"
91 + chart_meta:
92 + description: The total number of octets received by this IPsec Phase-2 Tunnel. This value is accumulated BEFORE determining whether or not the packet should be decompressed
93 + family: IPSec/Phase2/Tunnel/Traffic/In
94 + unit: "By/s"
95 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.27
96 name: cipSecTunHcInOctets
86 - description: A high capacity count of the total number of octets received by this IPsec Phase-2 Tunnel. This value is accumulated BEFORE determining whether or not the packet should be decompressed
87 - family: IPSec/Phase2/Tunnel/Traffic/In
88 - unit: "By/s"
97 + chart_meta:
98 + description: A high capacity count of the total number of octets received by this IPsec Phase-2 Tunnel. This value is accumulated BEFORE determining whether or not the packet should be decompressed
99 + family: IPSec/Phase2/Tunnel/Traffic/In
100 + unit: "By/s"
101 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.32
102 name: cipSecTunInPkts
91 - description: The total number of packets received by this IPsec Phase-2 Tunnel
92 - family: IPSec/Phase2/Tunnel/Packet/In
93 - unit: "{packet}/s"
103 + chart_meta:
104 + description: The total number of packets received by this IPsec Phase-2 Tunnel
105 + family: IPSec/Phase2/Tunnel/Packet/In
106 + unit: "{packet}/s"
107 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.36
108 name: cipSecTunInAuthFails
96 - description: The total number of inbound authentications which ended in failure by this IPsec Phase-2 Tunnel
97 - family: IPSec/Phase2/Tunnel/AuthFailure/In
98 - unit: "{failure}/s"
109 + chart_meta:
110 + description: The total number of inbound authentications which ended in failure by this IPsec Phase-2 Tunnel
111 + family: IPSec/Phase2/Tunnel/AuthFailure/In
112 + unit: "{failure}/s"
113 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.48
114 name: cipSecTunOutAuthFails
101 - description: The total number of outbound authentications which ended in failure by this IPsec Phase-2 Tunnel.
102 - family: IPSec/Phase2/Tunnel/AuthFailure/Out
103 - unit: "{failure}/s"
115 + chart_meta:
116 + description: The total number of outbound authentications which ended in failure by this IPsec Phase-2 Tunnel.
117 + family: IPSec/Phase2/Tunnel/AuthFailure/Out
118 + unit: "{failure}/s"
119 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.38
120 name: cipSecTunInDecryptFails
106 - description: The total number of inbound decryptions which ended in failure by this IPsec Phase-2 Tunnel.
107 - family: IPSec/Phase2/Tunnel/DecryptFailure/In
108 - unit: "{failure}/s"
121 + chart_meta:
122 + description: The total number of inbound decryptions which ended in failure by this IPsec Phase-2 Tunnel.
123 + family: IPSec/Phase2/Tunnel/DecryptFailure/In
124 + unit: "{failure}/s"
125 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.50
126 name: cipSecTunOutEncryptFails
111 - description: The total number of outbound encryptions which ended in failure by this IPsec Phase-2 Tunnel.
112 - family: IPSec/Phase2/Tunnel/EncryptFailure/Out
113 - unit: "{failure}/s"
127 + chart_meta:
128 + description: The total number of outbound encryptions which ended in failure by this IPsec Phase-2 Tunnel.
129 + family: IPSec/Phase2/Tunnel/EncryptFailure/Out
130 + unit: "{failure}/s"
131 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.39
132 name: cipSecTunOutOctets
116 - description: The total number of octets sent by this IPsec Phase-2 Tunnel. This value is accumulated AFTER determining whether or not the packet should be compressed
117 - family: IPSec/Phase2/Tunnel/Traffic/Out
118 - unit: "By/s"
133 + chart_meta:
134 + description: The total number of octets sent by this IPsec Phase-2 Tunnel. This value is accumulated AFTER determining whether or not the packet should be compressed
135 + family: IPSec/Phase2/Tunnel/Traffic/Out
136 + unit: "By/s"
137 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.40
138 name: cipSecTunHcOutOctets
121 - description: A high capacity count of the total number of octets sent by this IPsec Phase-2 Tunnel. This value is accumulated AFTER determining whether or not the packet should be compressed
122 - family: IPSec/Phase2/Tunnel/Traffic/Out
123 - unit: "By/s"
139 + chart_meta:
140 + description: A high capacity count of the total number of octets sent by this IPsec Phase-2 Tunnel. This value is accumulated AFTER determining whether or not the packet should be compressed
141 + family: IPSec/Phase2/Tunnel/Traffic/Out
142 + unit: "By/s"
143 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.45
144 name: cipSecTunOutPkts
126 - description: The total number of packets sent by this IPsec Phase-2 Tunnel
127 - family: IPSec/Phase2/Tunnel/Packet/Out
128 - unit: "{packet}/s"
145 + chart_meta:
146 + description: The total number of packets sent by this IPsec Phase-2 Tunnel
147 + family: IPSec/Phase2/Tunnel/Packet/Out
148 + unit: "{packet}/s"
149 - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.51
150 name: cipSecTunStatus
131 - description: The status of the IPsec Phase-2 Tunnel
132 - family: IPSec/Phase2/Tunnel/Status
133 - unit: "{status}"
151 + chart_meta:
152 + description: The status of the IPsec Phase-2 Tunnel
153 + family: IPSec/Phase2/Tunnel/Status
154 + unit: "{status}"
155 mapping:
156 1: active
157 2: destroy
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-voice.yaml
+108 -81
@@ -8,15 +8,17 @@ metrics:
8 symbols:
9 - name: hrSWRunPerfMem
10 OID: 1.3.6.1.2.1.25.5.1.1.2
11 - description: Total amount of real system memory allocated to this process
12 - family: Process/Memory/Usage
13 - unit: "By"
11 + chart_meta:
12 + description: Total amount of real system memory allocated to this process
13 + family: Process/Memory/Usage
14 + unit: "By"
15 scale_factor: 1024
16 - name: hrSWRunPerfCPU
17 OID: 1.3.6.1.2.1.25.5.1.1.1
17 - description: The number of centi-seconds of the total system's CPU resources consumed by this process
18 - family: Process/CPU/Time
19 - unit: "cs"
18 + chart_meta:
19 + description: The number of centi-seconds of the total system's CPU resources consumed by this process
20 + family: Process/CPU/Time
21 + unit: "cs"
22 metric_tags:
23 - tag: run_index
24 table: hrSWRunTable
@@ -30,9 +32,10 @@ metrics:
32 symbols:
33 - name: hrSWRunStatus
34 OID: 1.3.6.1.2.1.25.4.2.1.7
33 - description: The status of this running piece of software
34 - family: Process/Run/Status
35 - unit: "{status}"
35 + chart_meta:
36 + description: The status of this running piece of software
37 + family: Process/Run/Status
38 + unit: "{status}"
39 mapping:
40 1: running
41 2: runnable
@@ -51,34 +54,40 @@ metrics:
54 symbols:
55 - name: ccvpSipIntAvgLatency1
56 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.5
54 - description: Average period of time elapsed between the arrival of a CONNECT message from ICM and when the call is actually answered, on the first transfer request for the calls
55 - family: Voice/CVP/Connect/Latency
56 - unit: "ms"
57 + chart_meta:
58 + description: Average period of time elapsed between the arrival of a CONNECT message from ICM and when the call is actually answered, on the first transfer request for the calls
59 + family: Voice/CVP/Connect/Latency
60 + unit: "ms"
61 - name: ccvpSipIntAvgLatency2
62 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.6
59 - description: Average period of time between the arrival of a CONNECT message from ICM and when the call is actually answered, on the second and subsequent transfer request for the call
60 - family: Voice/CVP/Connect/Latency
61 - unit: "ms"
63 + chart_meta:
64 + description: Average period of time between the arrival of a CONNECT message from ICM and when the call is actually answered, on the second and subsequent transfer request for the call
65 + family: Voice/CVP/Connect/Latency
66 + unit: "ms"
67 - name: ccvpSipIntConnectsRcv
68 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.4
64 - description: Number of CONNECT messages received by the SIP service in order to perform a Customer Voice Portal transfer
65 - family: Voice/CVP/Connect/Received
66 - unit: "{connect}/s"
69 + chart_meta:
70 + description: Number of CONNECT messages received by the SIP service in order to perform a Customer Voice Portal transfer
71 + family: Voice/CVP/Connect/Received
72 + unit: "{connect}/s"
73 - name: ccvpSipIntNewCalls
74 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.3
69 - description: Number of SIP INVITE messages received by CVP since system start time
70 - family: Voice/CVP/Invite/Received
71 - unit: "{invite}/s"
75 + chart_meta:
76 + description: Number of SIP INVITE messages received by CVP since system start time
77 + family: Voice/CVP/Invite/Received
78 + unit: "{invite}/s"
79 - name: ccvpSipRtActiveCalls
80 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.1
74 - description: Number of active calls being handled by the CVP SIP service
75 - family: Voice/CVP/Call/Active
76 - unit: "{call}"
81 + chart_meta:
82 + description: Number of active calls being handled by the CVP SIP service
83 + family: Voice/CVP/Call/Active
84 + unit: "{call}"
85 - name: ccvpSipRtTotalCallLegs
86 OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.2
79 - description: Number of SIP call legs being handled by the SIP service
80 - family: Voice/CVP/CallLeg/Active
81 - unit: "{call_leg}"
87 + chart_meta:
88 + description: Number of SIP call legs being handled by the SIP service
89 + family: Voice/CVP/CallLeg/Active
90 + unit: "{call_leg}"
91 metric_tags:
92 - tag: service_index
93 table: ccvpServiceTable
@@ -91,49 +100,55 @@ metrics:
100 symbol:
101 name: ccvpLicAggMaxPortsInUse
102 OID: 1.3.6.1.4.1.9.9.590.1.2.12.0
94 - description: Peak number of simultaneous port licenses used since the start of the system
95 - family: Voice/CVP/License/Port/Maximum
96 - unit: "{license}"
103 + chart_meta:
104 + description: Peak number of simultaneous port licenses used since the start of the system
105 + family: Voice/CVP/License/Port/Maximum
106 + unit: "{license}"
107 - MIB: CISCO-CVP-MIB
108 symbol:
109 name: ccvpLicRtPortsInUse
110 OID: 1.3.6.1.4.1.9.9.590.1.2.2.0
101 - description: Number of port licenses currently in use on the call server
102 - family: Voice/CVP/License/Port/Current
103 - unit: "{license}"
111 + chart_meta:
112 + description: Number of port licenses currently in use on the call server
113 + family: Voice/CVP/License/Port/Current
114 + unit: "{license}"
115
116 - MIB: CISCO-CCM-MIB
117 metric_type: gauge
118 symbol:
119 name: ccmRegisteredGateways
120 OID: 1.3.6.1.4.1.9.9.156.1.5.8.0
110 - description: Number of gateways that are registered and actively in communication with the local call manager
111 - family: Voice/UCM/Gateway/Registered
112 - unit: "{gateway}"
121 + chart_meta:
122 + description: Number of gateways that are registered and actively in communication with the local call manager
123 + family: Voice/UCM/Gateway/Registered
124 + unit: "{gateway}"
125 - MIB: CISCO-CCM-MIB
126 metric_type: gauge
127 symbol:
128 name: ccmRegisteredPhones
129 OID: 1.3.6.1.4.1.9.9.156.1.5.5.0
118 - description: Number of phones that are registered and actively in communication with the local call manager.
119 - family: Voice/UCM/Phone/Registered
120 - unit: "{phone}"
130 + chart_meta:
131 + description: Number of phones that are registered and actively in communication with the local call manager.
132 + family: Voice/UCM/Phone/Registered
133 + unit: "{phone}"
134 - MIB: CISCO-CCM-MIB
135 metric_type: gauge
136 symbol:
137 name: ccmRejectedPhones
138 OID: 1.3.6.1.4.1.9.9.156.1.5.7.0
126 - description: Number of phones whose registration requests were rejected by the local call manager.
127 - family: Voice/UCM/Phone/Rejected
128 - unit: "{reject}"
139 + chart_meta:
140 + description: Number of phones whose registration requests were rejected by the local call manager.
141 + family: Voice/UCM/Phone/Rejected
142 + unit: "{reject}"
143 - MIB: CISCO-CCM-MIB
144 metric_type: gauge
145 symbol:
146 name: ccmUnregisteredPhones
147 OID: 1.3.6.1.4.1.9.9.156.1.5.6.0
134 - description: Number of phone that are unregistered or have lost contact with the local call manager.
135 - family: Voice/UCM/Phone/Unregistered
136 - unit: "{phone}"
148 + chart_meta:
149 + description: Number of phone that are unregistered or have lost contact with the local call manager.
150 + family: Voice/UCM/Phone/Unregistered
151 + unit: "{phone}"
152
153 - MIB: CISCO-VOICE-DIAL-CONTROL-MIB
154 table:
@@ -142,14 +157,16 @@ metrics:
157 symbols:
158 - name: cvCallVolMediaIncomingCalls
159 OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.1
145 - description: Total number of inbound active media calls through this IP interface.
146 - family: Interfaces/Voice/Call/Incoming
147 - unit: "{call}/s"
160 + chart_meta:
161 + description: Total number of inbound active media calls through this IP interface.
162 + family: Interfaces/Voice/Call/Incoming
163 + unit: "{call}/s"
164 - name: cvCallVolMediaOutgoingCalls
165 OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.2
150 - description: Total number of outbound active media calls through the IP interface.
151 - family: Interfaces/Voice/Call/Outgoing
152 - unit: "{call}/s"
166 + chart_meta:
167 + description: Total number of outbound active media calls through the IP interface.
168 + family: Interfaces/Voice/Call/Outgoing
169 + unit: "{call}/s"
170 metric_tags:
171 - tag: interface
172 table: ifXTable
@@ -164,14 +181,16 @@ metrics:
181 symbols:
182 - name: cvCallVolPeerIncomingCalls
183 OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.1
167 - description: Total number of active calls that has selected the dialpeer as an incoming dialpeer.
168 - family: Voice/DialPeer/Call/Incoming
169 - unit: "{call}"
184 + chart_meta:
185 + description: Total number of active calls that has selected the dialpeer as an incoming dialpeer.
186 + family: Voice/DialPeer/Call/Incoming
187 + unit: "{call}"
188 - name: cvCallVolPeerOutgoingCalls
189 OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.2
172 - description: Total number of active calls that has selected the dialpeer as an outgoing dialpeer.
173 - family: Voice/DialPeer/Call/Outgoing
174 - unit: "{call}"
190 + chart_meta:
191 + description: Total number of active calls that has selected the dialpeer as an outgoing dialpeer.
192 + family: Voice/DialPeer/Call/Outgoing
193 + unit: "{call}"
194 metric_tags:
195 - tag: peer_index
196 index: 1
@@ -184,24 +203,28 @@ metrics:
203 symbols:
204 - name: dialCtlPeerStatsAcceptCalls
205 OID: 1.3.6.1.2.1.10.21.1.2.2.1.5
187 - description: Number of calls from this peer accepted since system startup
188 - family: Voice/DialPeer/Call/Accepted
189 - unit: "{call}/s"
206 + chart_meta:
207 + description: Number of calls from this peer accepted since system startup
208 + family: Voice/DialPeer/Call/Accepted
209 + unit: "{call}/s"
210 - name: dialCtlPeerStatsFailCalls
211 OID: 1.3.6.1.2.1.10.21.1.2.2.1.4
192 - description: Number of failed call attempts to this peer since system startup
193 - family: Voice/DialPeer/Call/Failed
194 - unit: "{call}/s"
212 + chart_meta:
213 + description: Number of failed call attempts to this peer since system startup
214 + family: Voice/DialPeer/Call/Failed
215 + unit: "{call}/s"
216 - name: dialCtlPeerStatsRefuseCalls
217 OID: 1.3.6.1.2.1.10.21.1.2.2.1.6
197 - description: Number of calls from this peer refused since system startup
198 - family: Voice/DialPeer/Call/Refused
199 - unit: "{call}/s"
218 + chart_meta:
219 + description: Number of calls from this peer refused since system startup
220 + family: Voice/DialPeer/Call/Refused
221 + unit: "{call}/s"
222 - name: dialCtlPeerStatsSuccessCalls
223 OID: 1.3.6.1.2.1.10.21.1.2.2.1.3
202 - description: Number of completed calls to this peer
203 - family: Voice/DialPeer/Call/Success
204 - unit: "{call}/s"
224 + chart_meta:
225 + description: Number of completed calls to this peer
226 + family: Voice/DialPeer/Call/Success
227 + unit: "{call}/s"
228 metric_tags:
229 - tag: peer_index
230 index: 1
@@ -212,9 +235,10 @@ metrics:
235 symbols:
236 - name: cccaPimStatus
237 OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.4
215 - description: Last known status of the enterprise contact center application peripheral interface manager functional component.
216 - family: Voice/CCA/PIM/Status
217 - unit: "{status}"
238 + chart_meta:
239 + description: Last known status of the enterprise contact center application peripheral interface manager functional component.
240 + family: Voice/CCA/PIM/Status
241 + unit: "{status}"
242 mapping:
243 1: unknown
244 2: disabled
@@ -246,19 +270,22 @@ metrics:
270 symbols:
271 - name: cccaRouterAgentsLoggedOn
272 OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.3
249 - description: Number of contact center agents currently managed by the enterprise contact center application.
250 - family: Voice/CCA/Agent/LoggedOn
251 - unit: "{agent}"
273 + chart_meta:
274 + description: Number of contact center agents currently managed by the enterprise contact center application.
275 + family: Voice/CCA/Agent/LoggedOn
276 + unit: "{agent}"
277 - name: cccaRouterCallsInProgress
278 OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.4
254 - description: Number of active (voice) calls being managed by the enterprise contact center application.
255 - family: Voice/CCA/Call/InProgress
256 - unit: "{calls}"
279 + chart_meta:
280 + description: Number of active (voice) calls being managed by the enterprise contact center application.
281 + family: Voice/CCA/Call/InProgress
282 + unit: "{calls}"
283 - name: cccaRouterCallsInQueue
284 OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.8
259 - description: Number of calls queued in all network Voice Response Units (VRUs).
260 - family: Voice/CCA/Call/InQueue
261 - unit: "{calls}"
285 + chart_meta:
286 + description: Number of calls queued in all network Voice Response Units (VRUs).
287 + family: Voice/CCA/Call/InQueue
288 + unit: "{calls}"
289 metric_tags:
290 - tag: instance_number
291 index: 1 # Index of cccaRouterTable is (cccaInstanceNumber, cccaComponentIndex)
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-wlc.yaml
+48 -36
@@ -14,18 +14,20 @@ metrics:
14 symbols:
15 - OID: 1.3.6.1.4.1.14179.2.2.1.1.6
16 name: bsnAPOperationStatus
17 - description: Operation State of the AP
18 - family: AccessPoint/Operational/Status
19 - unit: "{status}"
17 + chart_meta:
18 + description: Operation State of the AP
19 + family: AccessPoint/Operational/Status
20 + unit: "{status}"
21 mapping:
22 1: associated
23 2: disassociating
24 3: downloading
25 - OID: 1.3.6.1.4.1.14179.2.2.1.1.37
26 name: bsnAPAdminStatus
26 - description: Admin State of the AP
27 - family: AccessPoint/Admin/Status
28 - unit: "{status}"
27 + chart_meta:
28 + description: Admin State of the AP
29 + family: AccessPoint/Admin/Status
30 + unit: "{status}"
31 mapping:
32 1: enable
33 2: disable
@@ -56,17 +58,19 @@ metrics:
58 symbols:
59 - OID: 1.3.6.1.4.1.14179.2.2.2.1.12
60 name: bsnAPIfOperStatus
59 - description: Operational status of the interface
60 - family: AccessPoint/Interface/Operational/Status
61 - unit: "{status}"
61 + chart_meta:
62 + description: Operational status of the interface
63 + family: AccessPoint/Interface/Operational/Status
64 + unit: "{status}"
65 mapping:
66 1: down
67 2: up
68 - OID: 1.3.6.1.4.1.14179.2.2.2.1.34
69 name: bsnAPIfAdminStatus
67 - description: Admin status of the interface
68 - family: AccessPoint/Interface/Admin/Status
69 - unit: "{status}"
70 + chart_meta:
71 + description: Admin status of the interface
72 + family: AccessPoint/Interface/Admin/Status
73 + unit: "{status}"
74 mapping:
75 1: enable
76 2: disable
@@ -116,9 +120,10 @@ metrics:
120 symbols:
121 - OID: 1.3.6.1.4.1.14179.2.2.2.1.15
122 name: bsnApIfNoOfUsers
119 - description: "Number of users associated with this radio"
120 - family: AccessPoint/Interface/User/Count
121 - unit: "{user}"
123 + chart_meta:
124 + description: "Number of users associated with this radio"
125 + family: AccessPoint/Interface/User/Count
126 + unit: "{user}"
127 metric_tags:
128 - tag: ap_if_slot_id
129 symbol:
@@ -166,24 +171,28 @@ metrics:
171 symbols:
172 - OID: 1.3.6.1.4.1.14179.2.2.13.1.1
173 name: bsnAPIfLoadRxUtilization
169 - description: "Percentage of time the Airespace AP receiver is busy operating on packets"
170 - family: AccessPoint/Radio/Receiver/Utilization
171 - unit: "%"
174 + chart_meta:
175 + description: "Percentage of time the Airespace AP receiver is busy operating on packets"
176 + family: AccessPoint/Radio/Receiver/Utilization
177 + unit: "%"
178 - OID: 1.3.6.1.4.1.14179.2.2.13.1.2
179 name: bsnAPIfLoadTxUtilization
174 - description: "Percentage of time the Airespace AP transmitter is busy operating on packets"
175 - family: AccessPoint/Radio/Transmitter/Utilization
176 - unit: "%"
180 + chart_meta:
181 + description: "Percentage of time the Airespace AP transmitter is busy operating on packets"
182 + family: AccessPoint/Radio/Transmitter/Utilization
183 + unit: "%"
184 - OID: 1.3.6.1.4.1.14179.2.2.13.1.24
185 name: bsnAPIfPoorSNRClients
179 - description: "Number of clients with poor SNR attached to this Airespace AP at the last measurement interval"
180 - family: AccessPoint/Client/PoorSNR
181 - unit: "{client}"
186 + chart_meta:
187 + description: "Number of clients with poor SNR attached to this Airespace AP at the last measurement interval"
188 + family: AccessPoint/Client/PoorSNR
189 + unit: "{client}"
190 - OID: 1.3.6.1.4.1.14179.2.2.13.1.3
191 name: bsnAPIfLoadChannelUtilization
184 - description: "Channel utilization"
185 - family: AccessPoint/Radio/Channel/Utilization
186 - unit: "%"
192 + chart_meta:
193 + description: "Channel utilization"
194 + family: AccessPoint/Radio/Channel/Utilization
195 + unit: "%"
196 metric_tags:
197 - tag: ap_if_slot_id
198 table: bsnAPIfTable
@@ -232,17 +241,19 @@ metrics:
241 symbols:
242 - OID: 1.3.6.1.4.1.14179.2.1.1.1.6
243 name: bsnDot11EssAdminStatus
235 - description: Administrative Status of ESS(WLAN)
236 - family: WLAN/Admin/Status
237 - unit: "{status}"
244 + chart_meta:
245 + description: Administrative Status of ESS(WLAN)
246 + family: WLAN/Admin/Status
247 + unit: "{status}"
248 mapping:
249 0: disable
250 1: enable
251 - OID: 1.3.6.1.4.1.14179.2.1.1.1.60
252 name: bsnDot11EssRowStatus
243 - description: Row status type for the bsnDot11EssEntry
244 - family: WLAN/Row/Status
245 - unit: "{status}"
253 + chart_meta:
254 + description: Row status type for the bsnDot11EssEntry
255 + family: WLAN/Row/Status
256 + unit: "{status}"
257 mapping:
258 1: active
259 2: notInService
@@ -252,9 +263,10 @@ metrics:
263 6: destroy
264 - OID: 1.3.6.1.4.1.14179.2.1.1.1.38
265 name: bsnDot11EssNumberOfMobileStations
255 - description: Number of mobile stations currently associated with the WLAN
256 - family: WLAN/Station/Count
257 - unit: "{station}"
266 + chart_meta:
267 + description: Number of mobile stations currently associated with the WLAN
268 + family: WLAN/Station/Count
269 + unit: "{station}"
270 metric_tags:
271 - tag: wlan_index
272 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_dell-rac.yaml
-64
@@ -87,8 +87,6 @@ metrics:
87 4: non_critical
88 5: critical
89 6: non_recoverable
90 - description: Chassis status of the system state
91 - unit: "{state}"
90 - symbol:
91 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.6
92 name: systemStatePowerUnitStatusRedundancy
@@ -101,8 +99,6 @@ metrics:
99 5: lost
100 6: not_redundant
101 7: redundancy_offline
104 - description: Power unit status redundancy of the system state
105 - unit: "{state}"
102 - symbol:
103 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.9
104 name: systemStatePowerSupplyStatusCombined
@@ -114,8 +110,6 @@ metrics:
110 4: non_critical
111 5: critical
112 6: non_recoverable
117 - description: Combined power supply status of the system state
118 - unit: "{state}"
113 - symbol:
114 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.15
115 name: systemStateAmperageStatusCombined
@@ -127,8 +121,6 @@ metrics:
121 4: non_critical
122 5: critical
123 6: non_recoverable
130 - description: Combined amperage status of the system state
131 - unit: "{state}"
124 - symbol:
125 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.18
126 name: systemStateCoolingUnitStatusRedundancy
@@ -141,8 +133,6 @@ metrics:
133 5: lost
134 6: not_redundant
135 7: redundancy_offline
144 - description: Cooling unit status redundancy of the system state
145 - unit: "{state}"
136 - symbol:
137 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.21
138 name: systemStateCoolingDeviceStatusCombined
@@ -154,8 +144,6 @@ metrics:
144 4: non_critical
145 5: critical
146 6: non_recoverable
157 - description: Combined cooling device status of the system state
158 - unit: "{state}"
147 - symbol:
148 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.24
149 name: systemStateTemperatureStatusCombined
@@ -167,8 +155,6 @@ metrics:
155 4: non_critical
156 5: critical
157 6: non_recoverable
170 - description: Combined temperature status of the system state
171 - unit: "{state}"
158 - symbol:
159 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.27
160 name: systemStateMemoryDeviceStatusCombined
@@ -180,8 +166,6 @@ metrics:
166 4: non_critical
167 5: critical
168 6: non_recoverable
183 - description: Combined memory device status of the system state
184 - unit: "{state}"
169 - symbol:
170 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.30
171 name: systemStateChassisIntrusionStatusCombined
@@ -193,8 +177,6 @@ metrics:
177 4: non_critical
178 5: critical
179 6: non_recoverable
196 - description: Combined chassis intrusion status of the system state
197 - unit: "{state}"
180 - symbol:
181 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.42
182 name: systemStatePowerUnitStatusCombined
@@ -206,8 +188,6 @@ metrics:
188 4: non_critical
189 5: critical
190 6: non_recoverable
209 - description: Combined power unit status of the system state
210 - unit: "{state}"
191 - symbol:
192 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.44
193 name: systemStateCoolingUnitStatusCombined
@@ -219,8 +199,6 @@ metrics:
199 4: non_critical
200 5: critical
201 6: non_recoverable
222 - description: Combined cooling unit status of the system state
223 - unit: "{state}"
202 - symbol:
203 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.50
204 name: systemStateProcessorDeviceStatusCombined
@@ -232,8 +210,6 @@ metrics:
210 4: non_critical
211 5: critical
212 6: non_recoverable
235 - description: Combined processor device status of the system state
236 - unit: "{state}"
213 - symbol:
214 OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.63
215 name: systemStateTemperatureStatisticsStatusCombined
@@ -245,8 +221,6 @@ metrics:
221 4: non_critical
222 5: critical
223 6: non_recoverable
248 - description: Combined temperature statistics status of the system state
249 - unit: "{state}"
224 - MIB: IDRAC-MIB-SMIv2
225 table:
226 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4
@@ -297,8 +271,6 @@ metrics:
271 8: nonraid
272 9: removed
273 10: readonly
300 - description: State of the physical disk
301 - unit: "{state}"
274 - symbol:
275 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2
276 name: physicalDiskName
@@ -307,8 +279,6 @@ metrics:
279 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1
280 name: physicalDiskNumber
281 tag: disk_number
310 - description: Number of the physical disk
311 - unit: "{disk}"
282 - MIB: IDRAC-MIB-SMIv2
283 table:
284 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9
@@ -350,8 +320,6 @@ metrics:
320 3: failed
321 4: missing
322 5: degraded
353 - description: State of the enclosure power supply
354 - unit: "{state}"
323 - symbol:
324 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.2
325 name: enclosurePowerSupplyName
@@ -403,8 +371,6 @@ metrics:
371 5: missing
372 6: charging
373 7: below_threshold
406 - description: State of the battery
407 - unit: "{state}"
374 - symbol:
375 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.20
376 name: batteryFQDD
@@ -427,26 +393,18 @@ metrics:
393 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1
394 name: controllerNumber
395 tag: controller_number
430 - description: Number of the controller
431 - unit: "{controller}"
396 - symbol:
397 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2
398 name: controllerName
399 tag: controller_name
436 - description: Name of the controller
437 - unit: "{controller}"
400 - symbol:
401 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42
402 name: controllerPCISlot
403 tag: controller_pci_slot
442 - description: PCI slot of the controller
443 - unit: "{pci_slot}"
404 - symbol:
405 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78
406 name: controllerFQDD
407 tag: controller_fqdd
448 - description: Fully qualified device descriptor of the controller
449 - unit: "{controller}"
408 - MIB: IDRAC-MIB-SMIv2
409 table:
410 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1
@@ -467,32 +425,22 @@ metrics:
425 4: non_critical
426 5: critical
427 6: non_recoverable
470 - description: Roll up status of the controller
471 - unit: "{state}"
428 - symbol:
429 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1
430 name: controllerNumber
431 tag: controller_number
476 - description: Number of the controller
477 - unit: "{controller}"
432 - symbol:
433 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2
434 name: controllerName
435 tag: controller_name
482 - description: Name of the controller
483 - unit: "{controller}"
436 - symbol:
437 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42
438 name: controllerPCISlot
439 tag: controller_pci_slot
488 - description: PCI slot of the controller
489 - unit: "{pci_slot}"
440 - symbol:
441 OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78
442 name: controllerFQDD
443 tag: controller_fqdd
494 - description: Fully qualified device descriptor of the controller
495 - unit: "{controller}"
444 - MIB: IDRAC-MIB-SMIv2
445 table:
446 OID: 1.3.6.1.4.1.674.10892.5.4.1100.80
@@ -531,8 +479,6 @@ metrics:
479 4: non_critical
480 5: critical
481 6: non_recoverable
534 - description: Status of the PCI device
535 - unit: "{state}"
482 - symbol:
483 OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.9
484 name: pCIDeviceDescriptionName
@@ -579,8 +525,6 @@ metrics:
525 4: non_critical
526 5: critical
527 6: non_recoverable
582 - description: Status of the system slot
583 - unit: "{state}"
528 - symbol:
529 OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.8
530 name: systemSlotSlotExternalSlotName
@@ -631,8 +575,6 @@ metrics:
575 4: non_critical
576 5: critical
577 6: non_recoverable
634 - description: Status of the network device
635 - unit: "{state}"
578 - symbol:
579 OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.1
580 name: networkDeviceChassisIndex
@@ -695,8 +637,6 @@ metrics:
637 4: non_critical
638 5: critical
639 6: non_recoverable
698 - description: Status of the system BIOS
699 - unit: "{state}"
640 - MIB: IDRAC-MIB-SMIv2
641 table:
642 OID: 1.3.6.1.4.1.674.10892.5.4.300.70
@@ -857,8 +797,6 @@ metrics:
797 8: critical_lower
798 9: non_recoverable_lower
799 10: failed
860 - description: Status of the amperage probe
861 - unit: "{state}"
800 - MIB: IDRAC-MIB-SMIv2
801 table:
802 OID: 1.3.6.1.4.1.674.10892.5.4.600.60
@@ -983,8 +921,6 @@ metrics:
921 8: critical_lower
922 9: non_recoverable_lower
923 10: failed
986 - description: Status of the voltage probe
987 - unit: "{state}"
924 - MIB: IDRAC-MIB-SMIv2
925 table:
926 OID: 1.3.6.1.4.1.674.10892.5.4.600.50
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_f5-big-ip-cpu-memory.yaml
+4 -4
@@ -8,16 +8,16 @@ metrics:
8 OID: 1.3.6.1.4.1.3375.2.1.1.2.1.44.0
9 # core check only
10 name: memory.total
11 - description: The total memory available in bytes for TMM (Traffic Management Module)
12 - unit: "By"
11 + description: The total memory available in bytes for TMM (Traffic Management Module)
12 + unit: "By"
13 - MIB: F5-BIGIP-SYSTEM-MIB
14 metric_type: gauge
15 symbol:
16 OID: 1.3.6.1.4.1.3375.2.1.1.2.1.45.0
17 # core check only
18 name: memory.used
19 - description: The memory in use in bytes for TMM (Traffic Management Module)
20 - unit: "By"
19 + description: The memory in use in bytes for TMM (Traffic Management Module)
20 + unit: "By"
21 # CPU
22 - MIB: F5-BIGIP-SYSTEM-MIB
23 table:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_fortinet-fortigate-vpn-tunnel.yaml
+12 -9
@@ -6,21 +6,24 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.18
8 name: fgVpnTunEntInOctets
9 - description: Number of bytes received on tunnel
10 - family: VPN/Tunnel/Traffic/In
11 - unit: "bits/s"
9 + chart_meta:
10 + description: Number of bytes received on tunnel
11 + family: VPN/Tunnel/Traffic/In
12 + unit: "bits/s"
13 scale_factor: 8
14 - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.19
15 name: fgVpnTunEntOutOctets
15 - description: Number of bytes sent out on tunnel
16 - family: VPN/Tunnel/Traffic/Out
17 - unit: "bits/s"
16 + chart_meta:
17 + description: Number of bytes sent out on tunnel
18 + family: VPN/Tunnel/Traffic/Out
19 + unit: "bits/s"
20 scale_factor: 8
21 - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.20
22 name: fgVpnTunEntStatus
21 - description: Current status of tunnel (up or down)
22 - family: VPN/Tunnel/Operational/Status
23 - unit: "{status}"
23 + chart_meta:
24 + description: Current status of tunnel (up or down)
25 + family: VPN/Tunnel/Operational/Status
26 + unit: "{status}"
27 mapping:
28 1: down
29 2: up
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-bgp4.yaml
+32 -24
@@ -8,17 +8,19 @@ metrics:
8 symbols:
9 - OID: 1.3.6.1.2.1.15.3.1.3
10 name: bgpPeerAdminStatus
11 - description: The desired state of the BGP connection
12 - family: Routing/BGP/Peer/Admin/Status
13 - unit: "{status}"
11 + chart_meta:
12 + description: The desired state of the BGP connection
13 + family: Routing/BGP/Peer/Admin/Status
14 + unit: "{status}"
15 mapping:
16 1: stop
17 2: start
18 - OID: 1.3.6.1.2.1.15.3.1.2
19 name: bgpPeerState
19 - description: The BGP peer connection state
20 - family: Routing/BGP/Peer/Connection/Status
21 - unit: "{status}"
20 + chart_meta:
21 + description: The BGP peer connection state
22 + family: Routing/BGP/Peer/Connection/Status
23 + unit: "{status}"
24 mapping:
25 1: idle
26 2: connect
@@ -28,34 +30,40 @@ metrics:
30 6: established
31 - OID: 1.3.6.1.2.1.15.3.1.12
32 name: bgpPeerInTotalMessages
31 - description: The total number of messages received from the remote peer on this connection
32 - family: Routing/BGP/Peer/Message/Total/In
33 - unit: "{message}"
33 + chart_meta:
34 + description: The total number of messages received from the remote peer on this connection
35 + family: Routing/BGP/Peer/Message/Total/In
36 + unit: "{message}"
37 - OID: 1.3.6.1.2.1.15.3.1.13
38 name: bgpPeerOutTotalMessages
36 - description: The total number of messages transmitted to the remote peer on this connection
37 - family: Routing/BGP/Peer/Message/Total/Out
38 - unit: "{message}"
39 + chart_meta:
40 + description: The total number of messages transmitted to the remote peer on this connection
41 + family: Routing/BGP/Peer/Message/Total/Out
42 + unit: "{message}"
43 - OID: 1.3.6.1.2.1.15.3.1.10
44 name: bgpPeerInUpdates
41 - description: The number of BGP UPDATE messages received on this connection
42 - family: Routing/BGP/Peer/Message/Update/In
43 - unit: "{message}"
45 + chart_meta:
46 + description: The number of BGP UPDATE messages received on this connection
47 + family: Routing/BGP/Peer/Message/Update/In
48 + unit: "{message}"
49 - OID: 1.3.6.1.2.1.15.3.1.11
50 name: bgpPeerOutUpdates
46 - description: The number of BGP UPDATE messages transmitted on this connection
47 - family: Routing/BGP/Peer/Message/Update/Out
48 - unit: "{message}"
51 + chart_meta:
52 + description: The number of BGP UPDATE messages transmitted on this connection
53 + family: Routing/BGP/Peer/Message/Update/Out
54 + unit: "{message}"
55 - OID: 1.3.6.1.2.1.15.3.1.15
56 name: bgpPeerFsmEstablishedTransitions
51 - description: The total number of times the BGP FSM transitioned into the established state
52 - family: Routing/BGP/Peer/FSM/Transition/Established/Count
53 - unit: "{transition}"
57 + chart_meta:
58 + description: The total number of times the BGP FSM transitioned into the established state
59 + family: Routing/BGP/Peer/FSM/Transition/Established/Count
60 + unit: "{transition}"
61 - OID: 1.3.6.1.2.1.15.3.1.16
62 name: bgpPeerFsmEstablishedTime
56 - description: Time in seconds this peer has been in the Established state or since last in Established state
57 - family: Routing/BGP/Peer/FSM/Duration/Established
58 - unit: "s"
63 + chart_meta:
64 + description: Time in seconds this peer has been in the Established state or since last in Established state
65 + family: Routing/BGP/Peer/FSM/Duration/Established
66 + unit: "s"
67 metric_tags:
68 - tag: remote_as
69 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-entity-sensor.yaml
+8 -6
@@ -6,16 +6,18 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.2.1.99.1.1.1.4
8 name: entPhySensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
9 - description: Most recent measurement obtained by the agent for this sensor
10 - family: Sensor/Value
11 - unit: "1"
9 + chart_meta:
10 + description: Most recent measurement obtained by the agent for this sensor
11 + family: Sensor/Value
12 + unit: "1"
13 transform: |
14 {{- transformEntitySensorValue .Metric -}}
15 - OID: 1.3.6.1.2.1.99.1.1.1.5
16 name: entPhySensorOperStatus # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
16 - description: Operational status of the sensor
17 - family: Sensor/Status
18 - unit: "{status}"
17 + chart_meta:
18 + description: Operational status of the sensor
19 + family: Sensor/Status
20 + unit: "{status}"
21 mapping:
22 1: ok
23 2: unavailable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-host-resources-base.yaml
+24 -18
@@ -9,23 +9,26 @@ metrics:
9 symbol:
10 OID: 1.3.6.1.2.1.25.1.5.0
11 name: hrSystemNumUsers
12 - description: The number of user sessions for which this host is storing state information. A session is a collection of processes requiring a single act of user authentication and possibly subject to collective job control.
13 - family: System/User/Session/Active
14 - unit: "{session}"
12 + chart_meta:
13 + description: The number of user sessions for which this host is storing state information. A session is a collection of processes requiring a single act of user authentication and possibly subject to collective job control.
14 + family: System/User/Session/Active
15 + unit: "{session}"
16 - MIB: HOST-RESOURCES-MIB
17 symbol:
18 OID: 1.3.6.1.2.1.25.1.6.0
19 name: hrSystemProcesses
19 - description: The number of process contexts currently loaded or running on this system.
20 - family: System/Process/Active
21 - unit: "{process}"
20 + chart_meta:
21 + description: The number of process contexts currently loaded or running on this system.
22 + family: System/Process/Active
23 + unit: "{process}"
24 - MIB: HOST-RESOURCES-MIB
25 symbol:
26 OID: 1.3.6.1.2.1.25.1.7.0
27 name: hrSystemMaxProcesses
26 - description: The maximum number of process contexts this system can support. If there is no fixed maximum, the value should be zero. On systems that have a fixed maximum, this object can help diagnose failures that occur when this maximum is reached.
27 - family: System/Process/Maximum
28 - unit: "{process}"
28 + chart_meta:
29 + description: The maximum number of process contexts this system can support. If there is no fixed maximum, the value should be zero. On systems that have a fixed maximum, this object can help diagnose failures that occur when this maximum is reached.
30 + family: System/Process/Maximum
31 + unit: "{process}"
32
33 # Table Objects
34
@@ -37,9 +40,10 @@ metrics:
40 symbols:
41 - OID: 1.3.6.1.2.1.25.3.3.1.2
42 name: cpu.usage
40 - description: The average, over the last minute, of the percentage of time that this processor was not idle.
41 - family: CPU/Usage
42 - unit: "%"
43 + chart_meta:
44 + description: The average, over the last minute, of the percentage of time that this processor was not idle.
45 + family: CPU/Usage
46 + unit: "%"
47 metric_tags:
48 - tag: cpu_index
49 index: 1
@@ -60,18 +64,20 @@ metrics:
64 symbols:
65 - OID: 1.3.6.1.2.1.25.2.3.1.5
66 name: hrStorageSize
63 - description: Total size of the storage area
64 - family: Storage/Total
65 - unit: "By"
67 + chart_meta:
68 + description: Total size of the storage area
69 + family: Storage/Total
70 + unit: "By"
71 transform: |
72 {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
73 {{- $factor := int64 $unit -}}
74 {{- setValue .Metric (mul .Metric.Value $factor) -}}
75 - OID: 1.3.6.1.2.1.25.2.3.1.6
76 name: hrStorageUsed
72 - description: Amount of storage used
73 - family: Storage/Used
74 - unit: "By"
77 + chart_meta:
78 + description: Amount of storage used
79 + family: Storage/Used
80 + unit: "By"
81 transform: |
82 {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
83 {{- $factor := int64 $unit -}}
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-if.yaml
+64 -48
@@ -6,9 +6,10 @@ metrics:
6 symbol:
7 OID: 1.3.6.1.2.1.2.1.0
8 name: ifNumber
9 - description: Number of network interfaces regardless of their current state present on this system
10 - family: Interfaces/Count/Total
11 - unit: "{interface}"
9 + chart_meta:
10 + description: Number of network interfaces regardless of their current state present on this system
11 + family: Interfaces/Count/Total
12 + unit: "{interface}"
13 - MIB: IF-MIB
14 table:
15 OID: 1.3.6.1.2.1.2.2
@@ -16,38 +17,44 @@ metrics:
17 symbols:
18 - OID: 1.3.6.1.2.1.2.2.1.14
19 name: ifInErrors
19 - description: Number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol
20 - family: Interfaces/Error/Total/In
21 - unit: "{error}/s"
20 + chart_meta:
21 + description: Number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol
22 + family: Interfaces/Error/Total/In
23 + unit: "{error}/s"
24 - OID: 1.3.6.1.2.1.2.2.1.20
25 name: ifOutErrors
24 - description: Number of outbound packets that could not be transmitted because of errors
25 - family: Interfaces/Error/Total/Out
26 - unit: "{error}/s"
26 + chart_meta:
27 + description: Number of outbound packets that could not be transmitted because of errors
28 + family: Interfaces/Error/Total/Out
29 + unit: "{error}/s"
30 - OID: 1.3.6.1.2.1.2.2.1.13
31 name: ifInDiscards
29 - description: Number of inbound packets chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol
30 - family: Interfaces/Discard/In
31 - unit: "{discard}/s"
32 + chart_meta:
33 + description: Number of inbound packets chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol
34 + family: Interfaces/Discard/In
35 + unit: "{discard}/s"
36 - OID: 1.3.6.1.2.1.2.2.1.19
37 name: ifOutDiscards
34 - description: Number of outbound packets chosen to be discarded even though no errors had been detected to prevent their being transmitted
35 - family: Interfaces/Discard/Out
36 - unit: "{discard}/s"
38 + chart_meta:
39 + description: Number of outbound packets chosen to be discarded even though no errors had been detected to prevent their being transmitted
40 + family: Interfaces/Discard/Out
41 + unit: "{discard}/s"
42 - OID: 1.3.6.1.2.1.2.2.1.7
43 name: ifAdminStatus
39 - description: Current administrative state of the interface
40 - family: Interfaces/Status/Admin
41 - unit: "{status}"
44 + chart_meta:
45 + description: Current administrative state of the interface
46 + family: Interfaces/Status/Admin
47 + unit: "{status}"
48 mapping:
49 1: up
50 2: down
51 3: testing
52 - OID: 1.3.6.1.2.1.2.2.1.8
53 name: ifOperStatus
48 - description: Current operational state of the interface
49 - family: Interfaces/Status/Operational
50 - unit: "{status}"
54 + chart_meta:
55 + description: Current operational state of the interface
56 + family: Interfaces/Status/Operational
57 + unit: "{status}"
58 mapping:
59 1: up
60 2: down
@@ -78,51 +85,60 @@ metrics:
85 symbols:
86 - OID: 1.3.6.1.2.1.31.1.1.1.6
87 name: ifHCInOctets
81 - description: Total number of octets received on the interface including framing characters
82 - family: Interfaces/Traffic/Total/In
83 - unit: "bit/s"
88 + chart_meta:
89 + description: Total number of octets received on the interface including framing characters
90 + family: Interfaces/Traffic/Total/In
91 + unit: "bit/s"
92 scale_factor: 8 # octets => bits
93 - OID: 1.3.6.1.2.1.31.1.1.1.10
94 name: ifHCOutOctets
87 - description: Total number of octets transmitted out of the interface including framing characters
88 - family: Interfaces/Traffic/Total/Out
89 - unit: "bit/s"
95 + chart_meta:
96 + description: Total number of octets transmitted out of the interface including framing characters
97 + family: Interfaces/Traffic/Total/Out
98 + unit: "bit/s"
99 scale_factor: 8 # octets => bits
100 - OID: 1.3.6.1.2.1.31.1.1.1.7
101 name: ifHCInUcastPkts
93 - description: Number of packets delivered by this sub-layer to a higher layer which were not addressed to a multicast or broadcast address
94 - family: Interfaces/Packet/Unicast/In
95 - unit: "{packet}/s"
102 + chart_meta:
103 + description: Number of packets delivered by this sub-layer to a higher layer which were not addressed to a multicast or broadcast address
104 + family: Interfaces/Packet/Unicast/In
105 + unit: "{packet}/s"
106 - OID: 1.3.6.1.2.1.31.1.1.1.8
107 name: ifHCInMulticastPkts
98 - description: Number of packets delivered by this sub-layer to a higher layer which were addressed to a multicast address
99 - family: Interfaces/Packet/Multicast/In
100 - unit: "{packet}/s"
108 + chart_meta:
109 + description: Number of packets delivered by this sub-layer to a higher layer which were addressed to a multicast address
110 + family: Interfaces/Packet/Multicast/In
111 + unit: "{packet}/s"
112 - OID: 1.3.6.1.2.1.31.1.1.1.9
113 name: ifHCInBroadcastPkts
103 - description: Number of packets delivered by this sub-layer to a higher layer which were addressed to a broadcast address
104 - family: Interfaces/Packet/Broadcast/In
105 - unit: "{packet}/s"
114 + chart_meta:
115 + description: Number of packets delivered by this sub-layer to a higher layer which were addressed to a broadcast address
116 + family: Interfaces/Packet/Broadcast/In
117 + unit: "{packet}/s"
118 - OID: 1.3.6.1.2.1.31.1.1.1.11
119 name: ifHCOutUcastPkts
108 - description: Total number of packets that higher-level protocols requested be transmitted and which were not addressed to a multicast or broadcast address
109 - family: Interfaces/Packet/Unicast/Out
110 - unit: "{packet}/s"
120 + chart_meta:
121 + description: Total number of packets that higher-level protocols requested be transmitted and which were not addressed to a multicast or broadcast address
122 + family: Interfaces/Packet/Unicast/Out
123 + unit: "{packet}/s"
124 - OID: 1.3.6.1.2.1.31.1.1.1.12
125 name: ifHCOutMulticastPkts
113 - description: Total number of packets that higher-level protocols requested be transmitted and which were addressed to a multicast address
114 - family: Interfaces/Packet/Multicast/Out
115 - unit: "{packet}/s"
126 + chart_meta:
127 + description: Total number of packets that higher-level protocols requested be transmitted and which were addressed to a multicast address
128 + family: Interfaces/Packet/Multicast/Out
129 + unit: "{packet}/s"
130 - OID: 1.3.6.1.2.1.31.1.1.1.13
131 name: ifHCOutBroadcastPkts
118 - description: Total number of packets that higher-level protocols requested be transmitted and which were addressed to a broadcast address
119 - family: Interfaces/Packet/Broadcast/Out
120 - unit: "{packet}/s"
132 + chart_meta:
133 + description: Total number of packets that higher-level protocols requested be transmitted and which were addressed to a broadcast address
134 + family: Interfaces/Packet/Broadcast/Out
135 + unit: "{packet}/s"
136 - OID: 1.3.6.1.2.1.31.1.1.1.15
137 name: ifHighSpeed
123 - description: Estimate of the interface's current bandwidth
124 - family: Interfaces/Speed
125 - unit: bit/s
138 + chart_meta:
139 + description: Estimate of the interface's current bandwidth
140 + family: Interfaces/Speed
141 + unit: bit/s
142 scale_factor: 1000000 # Megabits => bits
143 metric_tags:
144 - tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-ip.yaml
+220 -165
@@ -8,152 +8,180 @@ metrics:
8 symbols:
9 - OID: 1.3.6.1.2.1.4.31.1.1.6
10 name: ipSystemStatsHCInOctets
11 - description: Octets received in input IP datagrams
12 - family: Network/IP/Traffic/Total/In
13 - unit: "bit/s"
11 + chart_meta:
12 + description: Octets received in input IP datagrams
13 + family: Network/IP/Traffic/Total/In
14 + unit: "bit/s"
15 scale_factor: 8
16 - OID: 1.3.6.1.2.1.4.31.1.1.33
17 name: ipSystemStatsHCOutOctets
17 - description: The total number of octets in IP datagrams delivered to the lower layers for transmission
18 - family: Network/IP/Traffic/Total/Out
19 - unit: "bit/s"
18 + chart_meta:
19 + description: The total number of octets in IP datagrams delivered to the lower layers for transmission
20 + family: Network/IP/Traffic/Total/Out
21 + unit: "bit/s"
22 scale_factor: 8
23 - OID: 1.3.6.1.2.1.4.31.1.1.37
24 name: ipSystemStatsHCInMcastOctets
23 - description: The total number of octets received in IP multicast datagrams
24 - family: Network/IP/Traffic/Multicast/In
25 - unit: "bit/s"
25 + chart_meta:
26 + description: The total number of octets received in IP multicast datagrams
27 + family: Network/IP/Traffic/Multicast/In
28 + unit: "bit/s"
29 scale_factor: 8
30 - OID: 1.3.6.1.2.1.4.31.1.1.41
31 name: ipSystemStatsHCOutMcastOctets
29 - description: The total number of octets transmitted in IP multicast datagrams
30 - family: Network/IP/Traffic/Multicast/Out
31 - unit: "bit/s"
32 + chart_meta:
33 + description: The total number of octets transmitted in IP multicast datagrams
34 + family: Network/IP/Traffic/Multicast/Out
35 + unit: "bit/s"
36 scale_factor: 8
37
38 - OID: 1.3.6.1.2.1.4.31.1.1.4
39 name: ipSystemStatsHCInReceives
36 - description: Input IP datagrams received
37 - family: Network/IP/Datagram/Total/In
38 - unit: "{packet}/s"
40 + chart_meta:
41 + description: Input IP datagrams received
42 + family: Network/IP/Datagram/Total/In
43 + unit: "{packet}/s"
44 - OID: 1.3.6.1.2.1.4.31.1.1.21
45 name: ipSystemStatsHCOutRequests
41 - description: The total number of IP datagrams that local IP user-protocols including ICMP supplied to IP in requests for transmission
42 - family: Network/IP/Datagram/Request/Out
43 - unit: "{packet}/s"
46 + chart_meta:
47 + description: The total number of IP datagrams that local IP user-protocols including ICMP supplied to IP in requests for transmission
48 + family: Network/IP/Datagram/Request/Out
49 + unit: "{packet}/s"
50 - OID: 1.3.6.1.2.1.4.31.1.1.31
51 name: ipSystemStatsHCOutTransmits
46 - description: The total number of IP datagrams that this entity supplied to the lower layers for transmission
47 - family: Network/IP/Datagram/Total/Out
48 - unit: "{packet}/s"
52 + chart_meta:
53 + description: The total number of IP datagrams that this entity supplied to the lower layers for transmission
54 + family: Network/IP/Datagram/Total/Out
55 + unit: "{packet}/s"
56 - OID: 1.3.6.1.2.1.4.31.1.1.43
57 name: ipSystemStatsHCInBcastPkts
51 - description: The number of IP broadcast datagrams received
52 - family: Network/IP/Datagram/Broadcast/In
53 - unit: "{packet}/s"
58 + chart_meta:
59 + description: The number of IP broadcast datagrams received
60 + family: Network/IP/Datagram/Broadcast/In
61 + unit: "{packet}/s"
62 - OID: 1.3.6.1.2.1.4.31.1.1.45
63 name: ipSystemStatsHCOutBcastPkts
56 - description: The number of IP broadcast datagrams transmitted
57 - family: Network/IP/Datagram/Broadcast/Out
58 - unit: "{packet}/s"
64 + chart_meta:
65 + description: The number of IP broadcast datagrams transmitted
66 + family: Network/IP/Datagram/Broadcast/Out
67 + unit: "{packet}/s"
68 - OID: 1.3.6.1.2.1.4.31.1.1.35
69 name: ipSystemStatsHCInMcastPkts
61 - description: The number of IP multicast datagrams received
62 - family: Network/IP/Datagram/Multicast/In
63 - unit: "{packet}/s"
70 + chart_meta:
71 + description: The number of IP multicast datagrams received
72 + family: Network/IP/Datagram/Multicast/In
73 + unit: "{packet}/s"
74 - OID: 1.3.6.1.2.1.4.31.1.1.39
75 name: ipSystemStatsHCOutMcastPkts
66 - description: The number of IP multicast datagrams transmitted
67 - family: Network/IP/Datagram/Multicast/Out
68 - unit: "{packet}/s"
76 + chart_meta:
77 + description: The number of IP multicast datagrams transmitted
78 + family: Network/IP/Datagram/Multicast/Out
79 + unit: "{packet}/s"
80
81 - OID: 1.3.6.1.2.1.4.31.1.1.13
82 name: ipSystemStatsHCInForwDatagrams
72 - description: Input datagrams for which this entity was not their final IP destination and for which this entity attempted to find a route to forward them to that final destination
73 - family: Network/IP/Forward/In
74 - unit: "{forward}/s"
83 + chart_meta:
84 + description: Input datagrams for which this entity was not their final IP destination and for which this entity attempted to find a route to forward them to that final destination
85 + family: Network/IP/Forward/In
86 + unit: "{forward}/s"
87 - OID: 1.3.6.1.2.1.4.31.1.1.24
88 name: ipSystemStatsHCOutForwDatagrams
77 - description: The number of datagrams for which this entity was not their final IP destination and for which it was successful in finding a path to their final destination
78 - family: Network/IP/Forward/Out
79 - unit: "{packet}/s"
89 + chart_meta:
90 + description: The number of datagrams for which this entity was not their final IP destination and for which it was successful in finding a path to their final destination
91 + family: Network/IP/Forward/Out
92 + unit: "{packet}/s"
93
94 - OID: 1.3.6.1.2.1.4.31.1.1.7
95 name: ipSystemStatsInHdrErrors
83 - description: Discarded input IP datagrams due to errors in their IP headers
84 - family: Network/IP/Error/Header/In
85 - unit: "{error}/s"
96 + chart_meta:
97 + description: Discarded input IP datagrams due to errors in their IP headers
98 + family: Network/IP/Error/Header/In
99 + unit: "{error}/s"
100 - OID: 1.3.6.1.2.1.4.31.1.1.8
101 name: ipSystemStatsInNoRoutes
88 - description: Input IP datagrams discarded because no route could be found to transmit them to their destination
89 - family: Network/IP/Error/NoRoute/In
90 - unit: "{errors}/s"
102 + chart_meta:
103 + description: Input IP datagrams discarded because no route could be found to transmit them to their destination
104 + family: Network/IP/Error/NoRoute/In
105 + unit: "{errors}/s"
106 - OID: 1.3.6.1.2.1.4.31.1.1.9
107 name: ipSystemStatsInAddrErrors
93 - description: Input IP datagrams discarded due to invalid IP address in header
94 - family: Network/IP/Error/Address/In
95 - unit: "{error}/s"
108 + chart_meta:
109 + description: Input IP datagrams discarded due to invalid IP address in header
110 + family: Network/IP/Error/Address/In
111 + unit: "{error}/s"
112 - OID: 1.3.6.1.2.1.4.31.1.1.10
113 name: ipSystemStatsInUnknownProtos
98 - description: Locally-addressed IP datagrams received successfully but discarded due to an unknown or unsupported protocol
99 - family: Network/IP/Error/UnknownProtocol/In
100 - unit: "{error}/s"
114 + chart_meta:
115 + description: Locally-addressed IP datagrams received successfully but discarded due to an unknown or unsupported protocol
116 + family: Network/IP/Error/UnknownProtocol/In
117 + unit: "{error}/s"
118 - OID: 1.3.6.1.2.1.4.31.1.1.11
119 name: ipSystemStatsInTruncatedPkts
103 - description: Input IP datagrams discarded due to datagram frame not carrying enough data
104 - family: Network/IP/Error/Truncated/In
105 - unit: "{error}/s"
120 + chart_meta:
121 + description: Input IP datagrams discarded due to datagram frame not carrying enough data
122 + family: Network/IP/Error/Truncated/In
123 + unit: "{error}/s"
124 - OID: 1.3.6.1.2.1.4.31.1.1.16
125 name: ipSystemStatsReasmFails
108 - description: The number of failures detected by the IP re-assembly algorithm
109 - family: Network/IP/Error/ReassemblyFailure/Count
110 - unit: "{error}/s"
126 + chart_meta:
127 + description: The number of failures detected by the IP re-assembly algorithm
128 + family: Network/IP/Error/ReassemblyFailure/Count
129 + unit: "{error}/s"
130 - OID: 1.3.6.1.2.1.4.31.1.1.17
131 name: ipSystemStatsInDiscards
113 - description: The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but were discarded
114 - family: Network/IP/Discard/In
115 - unit: "{error}/s"
132 + chart_meta:
133 + description: The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but were discarded
134 + family: Network/IP/Discard/In
135 + unit: "{error}/s"
136 - OID: 1.3.6.1.2.1.4.31.1.1.22
137 name: ipSystemStatsOutNoRoutes
118 - description: The number of locally generated IP datagrams discarded because no route could be found to transmit them to their destination
119 - family: Network/IP/Error/NoRoute/Out
120 - unit: "{error}/s"
138 + chart_meta:
139 + description: The number of locally generated IP datagrams discarded because no route could be found to transmit them to their destination
140 + family: Network/IP/Error/NoRoute/Out
141 + unit: "{error}/s"
142 - OID: 1.3.6.1.2.1.4.31.1.1.28
143 name: ipSystemStatsOutFragFails
123 - description: The number of IP datagrams that have been discarded because they needed to be fragmented but could not be
124 - family: Network/IP/Error/FragmentationFailure/Out
125 - unit: "{error}/s"
144 + chart_meta:
145 + description: The number of IP datagrams that have been discarded because they needed to be fragmented but could not be
146 + family: Network/IP/Error/FragmentationFailure/Out
147 + unit: "{error}/s"
148 - OID: 1.3.6.1.2.1.4.31.1.1.25
149 name: ipSystemStatsOutDiscards
128 - description: The number of output IP datagrams for which no problem was encountered to prevent their transmission to their destination, but were discarded
129 - family: Network/IP/Discard/Out
130 - unit: "{error}/s"
150 + chart_meta:
151 + description: The number of output IP datagrams for which no problem was encountered to prevent their transmission to their destination, but were discarded
152 + family: Network/IP/Discard/Out
153 + unit: "{error}/s"
154
155 - OID: 1.3.6.1.2.1.4.31.1.1.26
156 name: ipSystemStatsOutFragReqds
134 - description: The number of IP datagrams that would require fragmentation in order to be transmitted
135 - family: Network/IP/Fragmentation/Required/Out
136 - unit: "{packet}/s"
157 + chart_meta:
158 + description: The number of IP datagrams that would require fragmentation in order to be transmitted
159 + family: Network/IP/Fragmentation/Required/Out
160 + unit: "{packet}/s"
161 - OID: 1.3.6.1.2.1.4.31.1.1.27
162 name: ipSystemStatsOutFragOKs
139 - description: The number of IP datagrams that have been successfully fragmented
140 - family: Network/IP/Fragmentation/Success/Out
141 - unit: "{packet}/s"
163 + chart_meta:
164 + description: The number of IP datagrams that have been successfully fragmented
165 + family: Network/IP/Fragmentation/Success/Out
166 + unit: "{packet}/s"
167 - OID: 1.3.6.1.2.1.4.31.1.1.29
168 name: ipSystemStatsOutFragCreates
144 - description: The number of output datagram fragments that have been generated as a result of IP fragmentation
145 - family: Network/IP/Fragmentation/Created/Out
146 - unit: "{fragment}/s"
169 + chart_meta:
170 + description: The number of output datagram fragments that have been generated as a result of IP fragmentation
171 + family: Network/IP/Fragmentation/Created/Out
172 + unit: "{fragment}/s"
173 - OID: 1.3.6.1.2.1.4.31.1.1.14
174 name: ipSystemStatsReasmReqds
149 - description: The number of IP fragments received that needed to be reassembled at this interface
150 - family: Network/IP/Fragmentation/ReassemblyRequired/In
151 - unit: "{fragment}/s"
175 + chart_meta:
176 + description: The number of IP fragments received that needed to be reassembled at this interface
177 + family: Network/IP/Fragmentation/ReassemblyRequired/In
178 + unit: "{fragment}/s"
179 - OID: 1.3.6.1.2.1.4.31.1.1.15
180 name: ipSystemStatsReasmOKs
154 - description: The number of IP datagrams successfully reassembled
155 - family: Network/IP/Fragmentation/ReassemblySuccess/Count
156 - unit: "{packet}/s"
181 + chart_meta:
182 + description: The number of IP datagrams successfully reassembled
183 + family: Network/IP/Fragmentation/ReassemblySuccess/Count
184 + unit: "{packet}/s"
185 metric_tags:
186 - index: 1
187 tag: ipversion
@@ -171,147 +199,174 @@ metrics:
199 symbols:
200 - OID: 1.3.6.1.2.1.4.31.3.1.6
201 name: ipIfStatsHCInOctets
174 - description: The total number of octets received in input IP datagrams, including those received in error
175 - family: Interfaces/IP/Traffic/Total/In
176 - unit: "bit/s"
202 + chart_meta:
203 + description: The total number of octets received in input IP datagrams, including those received in error
204 + family: Interfaces/IP/Traffic/Total/In
205 + unit: "bit/s"
206 scale_factor: 8
207 - OID: 1.3.6.1.2.1.4.31.3.1.33
208 name: ipIfStatsHCOutOctets
180 - description: The total number of octets in IP datagrams delivered to the lower layers for transmission
181 - family: Interfaces/IP/Traffic/Total/Out
182 - unit: "bit/s"
209 + chart_meta:
210 + description: The total number of octets in IP datagrams delivered to the lower layers for transmission
211 + family: Interfaces/IP/Traffic/Total/Out
212 + unit: "bit/s"
213 scale_factor: 8
214 - OID: 1.3.6.1.2.1.4.31.3.1.37
215 name: ipIfStatsHCInMcastOctets
186 - description: The total number of octets received in IP multicast datagrams
187 - family: Interfaces/IP/Traffic/Multicast/In
188 - unit: "bit/s"
216 + chart_meta:
217 + description: The total number of octets received in IP multicast datagrams
218 + family: Interfaces/IP/Traffic/Multicast/In
219 + unit: "bit/s"
220 scale_factor: 8
221 - OID: 1.3.6.1.2.1.4.31.3.1.41
222 name: ipIfStatsHCOutMcastOctets
192 - description: The total number of octets transmitted in IP multicast datagrams
193 - family: Interfaces/IP/Traffic/Multicast/Out
194 - unit: "bit/s"
223 + chart_meta:
224 + description: The total number of octets transmitted in IP multicast datagrams
225 + family: Interfaces/IP/Traffic/Multicast/Out
226 + unit: "bit/s"
227 scale_factor: 8
228
229 - OID: 1.3.6.1.2.1.4.31.3.1.19
230 name: ipIfStatsHCInDelivers
199 - description: The total number of datagrams successfully delivered to IP user-protocols including ICMP
200 - family: Interfaces/IP/Datagram/Delivered/In
201 - unit: "{packet}/s"
231 + chart_meta:
232 + description: The total number of datagrams successfully delivered to IP user-protocols including ICMP
233 + family: Interfaces/IP/Datagram/Delivered/In
234 + unit: "{packet}/s"
235 - OID: 1.3.6.1.2.1.4.31.3.1.21
236 name: ipIfStatsHCOutRequests
204 - description: The total number of IP datagrams that local IP user-protocols including ICMP supplied to IP in requests for transmission
205 - family: Interfaces/IP/Datagram/Request/Out
206 - unit: "{packet}/s"
237 + chart_meta:
238 + description: The total number of IP datagrams that local IP user-protocols including ICMP supplied to IP in requests for transmission
239 + family: Interfaces/IP/Datagram/Request/Out
240 + unit: "{packet}/s"
241 - OID: 1.3.6.1.2.1.4.31.3.1.31
242 name: ipIfStatsHCOutTransmits
209 - description: The total number of IP datagrams that this entity supplied to the lower layers for transmission
210 - family: Interfaces/IP/Datagram/Total/Out
211 - unit: "{packet}/s"
243 + chart_meta:
244 + description: The total number of IP datagrams that this entity supplied to the lower layers for transmission
245 + family: Interfaces/IP/Datagram/Total/Out
246 + unit: "{packet}/s"
247 - OID: 1.3.6.1.2.1.4.31.3.1.35
248 name: ipIfStatsHCInMcastPkts
214 - description: The number of IP multicast datagrams received
215 - family: Interfaces/IP/Datagram/Multicast/In
216 - unit: "{packet}/s"
249 + chart_meta:
250 + description: The number of IP multicast datagrams received
251 + family: Interfaces/IP/Datagram/Multicast/In
252 + unit: "{packet}/s"
253 - OID: 1.3.6.1.2.1.4.31.3.1.39
254 name: ipIfStatsHCOutMcastPkts
219 - description: The number of IP multicast datagrams transmitted
220 - family: Interfaces/IP/Datagram/Multicast/Out
221 - unit: "{packet}/s"
255 + chart_meta:
256 + description: The number of IP multicast datagrams transmitted
257 + family: Interfaces/IP/Datagram/Multicast/Out
258 + unit: "{packet}/s"
259 - OID: 1.3.6.1.2.1.4.31.3.1.43
260 name: ipIfStatsHCInBcastPkts
224 - description: The number of IP broadcast datagrams received
225 - family: Interfaces/IP/Datagram/Broadcast/In
226 - unit: "{packet}/s"
261 + chart_meta:
262 + description: The number of IP broadcast datagrams received
263 + family: Interfaces/IP/Datagram/Broadcast/In
264 + unit: "{packet}/s"
265 - OID: 1.3.6.1.2.1.4.31.3.1.45
266 name: ipIfStatsHCOutBcastPkts
229 - description: The number of IP broadcast datagrams transmitted
230 - family: Interfaces/IP/Datagram/Broadcast/Out
231 - unit: "{packet}/s"
267 + chart_meta:
268 + description: The number of IP broadcast datagrams transmitted
269 + family: Interfaces/IP/Datagram/Broadcast/Out
270 + unit: "{packet}/s"
271
272 - OID: 1.3.6.1.2.1.4.31.3.1.17
273 name: ipIfStatsInDiscards
235 - description: The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but were discarded
236 - family: Interfaces/IP/Discard/In
237 - unit: "{error}/s"
274 + chart_meta:
275 + description: The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but were discarded
276 + family: Interfaces/IP/Discard/In
277 + unit: "{error}/s"
278 - OID: 1.3.6.1.2.1.4.31.3.1.25
279 name: ipIfStatsOutDiscards
240 - description: The number of output IP datagrams for which no problem was encountered to prevent their transmission to their destination, but were discarded
241 - family: Interfaces/IP/Discard/Out
242 - unit: "{error}/s"
280 + chart_meta:
281 + description: The number of output IP datagrams for which no problem was encountered to prevent their transmission to their destination, but were discarded
282 + family: Interfaces/IP/Discard/Out
283 + unit: "{error}/s"
284 - OID: 1.3.6.1.2.1.4.31.3.1.7
285 name: ipIfStatsInHdrErrors
245 - description: The number of input IP datagrams discarded due to errors in their IP headers
246 - family: Interfaces/IP/Error/Header/In
247 - unit: "{error}/s"
286 + chart_meta:
287 + description: The number of input IP datagrams discarded due to errors in their IP headers
288 + family: Interfaces/IP/Error/Header/In
289 + unit: "{error}/s"
290 - OID: 1.3.6.1.2.1.4.31.3.1.8
291 name: ipIfStatsInNoRoutes
250 - description: The number of input IP datagrams discarded because no route could be found to transmit them to their destination
251 - family: Interfaces/IP/Error/NoRoute/In
252 - unit: "{error}/s"
292 + chart_meta:
293 + description: The number of input IP datagrams discarded because no route could be found to transmit them to their destination
294 + family: Interfaces/IP/Error/NoRoute/In
295 + unit: "{error}/s"
296 - OID: 1.3.6.1.2.1.4.31.3.1.9
297 name: ipIfStatsInAddrErrors
255 - description: The number of input IP datagrams discarded because the IP address in their IP header's destination field was not a valid address to be received at this entity
256 - family: Interfaces/IP/Error/Address/In
257 - unit: "{error}/s"
298 + chart_meta:
299 + description: The number of input IP datagrams discarded because the IP address in their IP header's destination field was not a valid address to be received at this entity
300 + family: Interfaces/IP/Error/Address/In
301 + unit: "{error}/s"
302 - OID: 1.3.6.1.2.1.4.31.3.1.10
303 name: ipIfStatsInUnknownProtos
260 - description: The number of locally-addressed IP datagrams received successfully but discarded because of an unknown or unsupported protocol
261 - family: Interfaces/IP/Error/UnknownProtocol/In
262 - unit: "{error}/s"
304 + chart_meta:
305 + description: The number of locally-addressed IP datagrams received successfully but discarded because of an unknown or unsupported protocol
306 + family: Interfaces/IP/Error/UnknownProtocol/In
307 + unit: "{error}/s"
308 - OID: 1.3.6.1.2.1.4.31.3.1.11
309 name: ipIfStatsInTruncatedPkts
265 - description: The number of input IP datagrams discarded because the datagram frame didn't carry enough data
266 - family: Interfaces/IP/Error/Truncated/In
267 - unit: "{error}/s"
310 + chart_meta:
311 + description: The number of input IP datagrams discarded because the datagram frame didn't carry enough data
312 + family: Interfaces/IP/Error/Truncated/In
313 + unit: "{error}/s"
314 - OID: 1.3.6.1.2.1.4.31.3.1.28
315 name: ipIfStatsOutFragFails
270 - description: The number of IP datagrams that have been discarded because they needed to be fragmented but could not be
271 - family: Interfaces/IP/Error/FragmentationFailure/Out
272 - unit: "{packet}/s"
316 + chart_meta:
317 + description: The number of IP datagrams that have been discarded because they needed to be fragmented but could not be
318 + family: Interfaces/IP/Error/FragmentationFailure/Out
319 + unit: "{packet}/s"
320 - OID: 1.3.6.1.2.1.4.31.3.1.16
321 name: ipIfStatsReasmFails
275 - description: The number of failures detected by the IP re-assembly algorithm
276 - family: Interfaces/IP/Error/ReassemblyFailure/Count
277 - unit: "{error}/s"
322 + chart_meta:
323 + description: The number of failures detected by the IP re-assembly algorithm
324 + family: Interfaces/IP/Error/ReassemblyFailure/Count
325 + unit: "{error}/s"
326
327 - OID: 1.3.6.1.2.1.4.31.3.1.27
328 name: ipIfStatsOutFragOKs
281 - description: The number of IP datagrams that have been successfully fragmented
282 - family: Interfaces/IP/Fragmentation/Success/Out
283 - unit: "{packet}/s"
329 + chart_meta:
330 + description: The number of IP datagrams that have been successfully fragmented
331 + family: Interfaces/IP/Fragmentation/Success/Out
332 + unit: "{packet}/s"
333 - OID: 1.3.6.1.2.1.4.31.3.1.26
334 name: ipIfStatsOutFragReqds
286 - description: The number of IP datagrams that would require fragmentation in order to be transmitted
287 - family: Interfaces/IP/Fragmentation/Required/Out
288 - unit: "{packet}/s"
335 + chart_meta:
336 + description: The number of IP datagrams that would require fragmentation in order to be transmitted
337 + family: Interfaces/IP/Fragmentation/Required/Out
338 + unit: "{packet}/s"
339 - OID: 1.3.6.1.2.1.4.31.3.1.29
340 name: ipIfStatsOutFragCreates
291 - description: The number of output datagram fragments that have been generated as a result of IP fragmentation
292 - family: Interfaces/IP/Fragmentation/Created/Out
293 - unit: "{fragment}/s"
341 + chart_meta:
342 + description: The number of output datagram fragments that have been generated as a result of IP fragmentation
343 + family: Interfaces/IP/Fragmentation/Created/Out
344 + unit: "{fragment}/s"
345 - OID: 1.3.6.1.2.1.4.31.3.1.14
346 name: ipIfStatsReasmReqds
296 - description: The number of IP fragments received that needed to be reassembled at this interface
297 - family: Interfaces/IP/Fragmentation/ReassemblyRequired/In
298 - unit: "{fragment}/s"
347 + chart_meta:
348 + description: The number of IP fragments received that needed to be reassembled at this interface
349 + family: Interfaces/IP/Fragmentation/ReassemblyRequired/In
350 + unit: "{fragment}/s"
351 - OID: 1.3.6.1.2.1.4.31.3.1.15
352 name: ipIfStatsReasmOKs
301 - description: The number of IP datagrams successfully reassembled
302 - family: Interfaces/IP/Fragmentation/ReassemblySuccess/Count
303 - unit: "{packet}/s"
353 + chart_meta:
354 + description: The number of IP datagrams successfully reassembled
355 + family: Interfaces/IP/Fragmentation/ReassemblySuccess/Count
356 + unit: "{packet}/s"
357
358 - OID: 1.3.6.1.2.1.4.31.3.1.13
359 name: ipIfStatsHCInForwDatagrams
307 - description: The number of input datagrams for which this entity was not their final IP destination and for which this entity attempted to find a route to forward them to that final destination
308 - family: Interfaces/IP/Forward/In
309 - unit: "{forward}/s"
360 + chart_meta:
361 + description: The number of input datagrams for which this entity was not their final IP destination and for which this entity attempted to find a route to forward them to that final destination
362 + family: Interfaces/IP/Forward/In
363 + unit: "{forward}/s"
364 - OID: 1.3.6.1.2.1.4.31.3.1.24
365 name: ipIfStatsHCOutForwDatagrams
312 - description: The number of datagrams for which this entity was not their final IP destination and for which it was successful in finding a path to their final destination
313 - family: Interfaces/IP/Forward/Out
314 - unit: "{packet}/s"
366 + chart_meta:
367 + description: The number of datagrams for which this entity was not their final IP destination and for which it was successful in finding a path to their final destination
368 + family: Interfaces/IP/Forward/Out
369 + unit: "{packet}/s"
370 metric_tags:
371 - tag: interface_index
372 index: 2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-ospf.yaml
+40 -30
@@ -6,9 +6,10 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.2.1.14.10.1.6
8 name: ospfNbrState
9 - description: The state of the relationship with this neighbor
10 - family: Routing/OSPF/Neighbor/State/Status
11 - unit: "{status}"
9 + chart_meta:
10 + description: The state of the relationship with this neighbor
11 + family: Routing/OSPF/Neighbor/State/Status
12 + unit: "{status}"
13 mapping:
14 1: down
15 2: attempt
@@ -20,14 +21,16 @@ metrics:
21 8: full
22 - OID: 1.3.6.1.2.1.14.10.1.7
23 name: ospfNbrEvents
23 - description: The number of times this neighbor relationship has changed state or an error has occurred
24 - family: Routing/OSPF/Neighbor/Event/Count
25 - unit: "{event}"
24 + chart_meta:
25 + description: The number of times this neighbor relationship has changed state or an error has occurred
26 + family: Routing/OSPF/Neighbor/Event/Count
27 + unit: "{event}"
28 - OID: 1.3.6.1.2.1.14.10.1.8
29 name: ospfNbrLsRetransQLen
28 - description: The current length of the retransmission queue
29 - family: Routing/OSPF/Neighbor/Queue/RetransmitLength
30 - unit: "{message}"
30 + chart_meta:
31 + description: The current length of the retransmission queue
32 + family: Routing/OSPF/Neighbor/Queue/RetransmitLength
33 + unit: "{message}"
34 metric_tags:
35 - symbol:
36 OID: 1.3.6.1.2.1.14.10.1.3
@@ -45,9 +48,10 @@ metrics:
48 symbols:
49 - OID: 1.3.6.1.2.1.14.11.1.5
50 name: ospfVirtNbrState
48 - description: The state of the virtual neighbor relationship
49 - family: Routing/OSPF/VirtualNeighbor/State/Status
50 - unit: "{status}"
51 + chart_meta:
52 + description: The state of the virtual neighbor relationship
53 + family: Routing/OSPF/VirtualNeighbor/State/Status
54 + unit: "{status}"
55 mapping:
56 1: down
57 2: attempt
@@ -59,14 +63,16 @@ metrics:
63 8: full
64 - OID: 1.3.6.1.2.1.14.11.1.6
65 name: ospfVirtNbrEvents
62 - description: The number of times this virtual link has changed its state or an error has occurred
63 - family: Routing/OSPF/VirtualNeighbor/Event/Count
64 - unit: "{change}"
66 + chart_meta:
67 + description: The number of times this virtual link has changed its state or an error has occurred
68 + family: Routing/OSPF/VirtualNeighbor/Event/Count
69 + unit: "{change}"
70 - OID: 1.3.6.1.2.1.14.11.1.7
71 name: ospfVirtNbrLsRetransQLen
67 - description: The current length of the retransmission queue
68 - family: Routing/OSPF/VirtualNeighbor/Queue/RetransmitLength
69 - unit: "{message}"
72 + chart_meta:
73 + description: The current length of the retransmission queue
74 + family: Routing/OSPF/VirtualNeighbor/Queue/RetransmitLength
75 + unit: "{message}"
76 metric_tags:
77 - symbol:
78 OID: 1.3.6.1.2.1.14.11.1.3
@@ -84,9 +90,10 @@ metrics:
90 symbols:
91 - OID: 1.3.6.1.2.1.14.7.1.12
92 name: ospfIfState
87 - description: The OSPF Interface State
88 - family: Routing/OSPF/Interface/State/Status
89 - unit: "{status}"
93 + chart_meta:
94 + description: The OSPF Interface State
95 + family: Routing/OSPF/Interface/State/Status
96 + unit: "{status}"
97 mapping:
98 1: down
99 2: loopback
@@ -97,9 +104,10 @@ metrics:
104 7: other_designated_router
105 - OID: 1.3.6.1.2.1.14.7.1.21
106 name: ospfIfLsaCount
100 - description: The total number of link-local link state advertisements in this interface's link-local link state database
101 - family: Routing/OSPF/Interface/LinkStateAdvertisement/Count
102 - unit: "{advertisement}"
107 + chart_meta:
108 + description: The total number of link-local link state advertisements in this interface's link-local link state database
109 + family: Routing/OSPF/Interface/LinkStateAdvertisement/Count
110 + unit: "{advertisement}"
111 metric_tags:
112 - symbol:
113 OID: 1.3.6.1.2.1.14.7.1.1
@@ -119,17 +127,19 @@ metrics:
127 symbols:
128 - OID: 1.3.6.1.2.1.14.9.1.7
129 name: ospfVirtIfState
122 - description: OSPF virtual interface states
123 - family: Routing/OSPF/VirtualInterface/State/Status
124 - unit: "{status}"
130 + chart_meta:
131 + description: OSPF virtual interface states
132 + family: Routing/OSPF/VirtualInterface/State/Status
133 + unit: "{status}"
134 mapping:
135 1: down
136 4: point_to_point
137 - OID: 1.3.6.1.2.1.14.9.1.12
138 name: ospfVirtIfLsaCount
130 - description: The total number of link-local link state advertisements in this virtual interface's link-local link state database
131 - family: Routing/OSPF/VirtualInterface/LinkStateAdvertisement/Count
132 - unit: "{advertisement}"
139 + chart_meta:
140 + description: The total number of link-local link state advertisements in this virtual interface's link-local link state database
141 + family: Routing/OSPF/VirtualInterface/LinkStateAdvertisement/Count
142 + unit: "{advertisement}"
143 metric_tags:
144 - symbol:
145 OID: 1.3.6.1.2.1.14.11.1.2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-rtp.yaml
+36 -27
@@ -6,19 +6,22 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.2.1.87.1.3.1.6
8 name: rtpSessionSenderJoins
9 - description: The number of senders that have been observed to have joined the session since this conceptual row was created
10 - family: RTP/Session/Join/Sender/Count
11 - unit: "{sender}"
9 + chart_meta:
10 + description: The number of senders that have been observed to have joined the session since this conceptual row was created
11 + family: RTP/Session/Join/Sender/Count
12 + unit: "{sender}"
13 - OID: 1.3.6.1.2.1.87.1.3.1.7
14 name: rtpSessionReceiverJoins
14 - description: The number of receivers that have been been observed to have joined this session since this conceptual row was created
15 - family: RTP/Session/Join/Receiver/Count
16 - unit: "{receiver}"
15 + chart_meta:
16 + description: The number of receivers that have been been observed to have joined this session since this conceptual row was created
17 + family: RTP/Session/Join/Receiver/Count
18 + unit: "{receiver}"
19 - OID: 1.3.6.1.2.1.87.1.3.1.8
20 name: rtpSessionByes
19 - description: "A count of RTCP BYE messages received by this entity"
20 - family: RTP/Session/Message/Bye/In
21 - unit: "{message}"
21 + chart_meta:
22 + description: "A count of RTCP BYE messages received by this entity"
23 + family: RTP/Session/Message/Bye/In
24 + unit: "{message}"
25 metric_tags:
26 - index: 1
27 tag: rtpSessionIndex
@@ -37,14 +40,16 @@ metrics:
40 symbols:
41 - OID: 1.3.6.1.2.1.87.1.5.1.4
42 name: rtpSenderPackets
40 - description: Count of RTP packets sent by this sender, or observed by an RTP monitor, since rtpSenderStartTime
41 - family: RTP/Sender/Packet/Out
42 - unit: "{packet}"
43 + chart_meta:
44 + description: Count of RTP packets sent by this sender, or observed by an RTP monitor, since rtpSenderStartTime
45 + family: RTP/Sender/Packet/Out
46 + unit: "{packet}"
47 - OID: 1.3.6.1.2.1.87.1.5.1.5
48 name: rtpSenderOctets
45 - description: Count of non-header RTP octets sent by this sender, or observed by an RTP monitor, since rtpSenderStartTime
46 - family: RTP/Sender/Traffic/Out
47 - unit: "By"
49 + chart_meta:
50 + description: Count of non-header RTP octets sent by this sender, or observed by an RTP monitor, since rtpSenderStartTime
51 + family: RTP/Sender/Traffic/Out
52 + unit: "By"
53 metric_tags:
54 - index: 1
55 tag: rtpSessionIndex
@@ -57,24 +62,28 @@ metrics:
62 symbols:
63 - OID: 1.3.6.1.2.1.87.1.7.1.13
64 name: rtpRcvrOctets
60 - description: Count of non-header RTP octets received by this receiving RTP host since rtpRcvrStartTime
61 - family: RTP/Receiver/Traffic/In
62 - unit: "By"
65 + chart_meta:
66 + description: Count of non-header RTP octets received by this receiving RTP host since rtpRcvrStartTime
67 + family: RTP/Receiver/Traffic/In
68 + unit: "By"
69 - OID: 1.3.6.1.2.1.87.1.7.1.12
70 name: rtpRcvrPackets
65 - description: Count of RTP packets received by this RTP host receiver since rtpRcvrStartTime
66 - family: RTP/Receiver/Packet/In
67 - unit: "{packet}"
71 + chart_meta:
72 + description: Count of RTP packets received by this RTP host receiver since rtpRcvrStartTime
73 + family: RTP/Receiver/Packet/In
74 + unit: "{packet}"
75 - OID: 1.3.6.1.2.1.87.1.7.1.7
76 name: rtpRcvrJitter
70 - description: An estimate of delay variation as observed by this receiver
71 - family: RTP/Receiver/Jitter/Value
72 - unit: "ms"
77 + chart_meta:
78 + description: An estimate of delay variation as observed by this receiver
79 + family: RTP/Receiver/Jitter/Value
80 + unit: "ms"
81 - OID: 1.3.6.1.2.1.87.1.7.1.6
82 name: rtpRcvrLostPackets
75 - description: A count of RTP packets lost as observed by this receiver since rtpRcvrStartTime
76 - family: RTP/Receiver/Packet/Lost/Count
77 - unit: "{packet}"
83 + chart_meta:
84 + description: A count of RTP packets lost as observed by this receiver since rtpRcvrStartTime
85 + family: RTP/Receiver/Packet/Lost/Count
86 + unit: "{packet}"
87 metric_tags:
88 - index: 1
89 tag: rtpSessionIndex
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-sip.yaml
+36 -27
@@ -6,9 +6,10 @@ metrics:
6 symbols:
7 - OID: 1.3.6.1.2.1.149.1.1.1.1.2
8 name: sipCommonCfgServiceOperStatus
9 - description: Current operational state of the SIP application
10 - family: SIP/Status
11 - unit: "{state}"
9 + chart_meta:
10 + description: Current operational state of the SIP application
11 + family: SIP/Status
12 + unit: "{state}"
13 mapping:
14 1: unknown
15 7: testing
@@ -27,29 +28,34 @@ metrics:
28 symbols:
29 - OID: 1.3.6.1.2.1.149.1.3.1.1.1
30 name: sipCommonSummaryInRequests
30 - description: Total number of SIP request messages received including retransmissions
31 - family: SIP/Requests
32 - unit: "{request}"
31 + chart_meta:
32 + description: Total number of SIP request messages received including retransmissions
33 + family: SIP/Requests
34 + unit: "{request}"
35 - OID: 1.3.6.1.2.1.149.1.3.1.1.2
36 name: sipCommonSummaryOutRequests
35 - description: Total number of SIP request messages sent including retransmissions
36 - family: SIP/Requests
37 - unit: "{request}"
37 + chart_meta:
38 + description: Total number of SIP request messages sent including retransmissions
39 + family: SIP/Requests
40 + unit: "{request}"
41 - OID: 1.3.6.1.2.1.149.1.3.1.1.3
42 name: sipCommonSummaryInResponses
40 - description: Total number of SIP response messages received including retransmissions
41 - family: SIP/Responses
42 - unit: "{response}"
43 + chart_meta:
44 + description: Total number of SIP response messages received including retransmissions
45 + family: SIP/Responses
46 + unit: "{response}"
47 - OID: 1.3.6.1.2.1.149.1.3.1.1.4
48 name: sipCommonSummaryOutResponses
45 - description: Total number of SIP response messages sent including retransmissions
46 - family: SIP/Responses
47 - unit: "{response}"
49 + chart_meta:
50 + description: Total number of SIP response messages sent including retransmissions
51 + family: SIP/Responses
52 + unit: "{response}"
53 - OID: 1.3.6.1.2.1.149.1.3.1.1.5
54 name: sipCommonSummaryTotalTransactions
50 - description: Count of transactions in progress and terminated transactions
51 - family: SIP/Transactions
52 - unit: "{transaction}"
55 + chart_meta:
56 + description: Count of transactions in progress and terminated transactions
57 + family: SIP/Transactions
58 + unit: "{transaction}"
59 metric_tags:
60 - index: 1
61 tag: applIndex
@@ -60,14 +66,16 @@ metrics:
66 symbols:
67 - OID: 1.3.6.1.2.1.149.1.5.1.1.3
68 name: sipCommonStatusCodeIns
63 - description: Total number of response messages received with the specified status code (sipCommonStatusCodeValue)
64 - family: SIP/Responses
65 - unit: "{response}"
69 + chart_meta:
70 + description: Total number of response messages received with the specified status code (sipCommonStatusCodeValue)
71 + family: SIP/Responses
72 + unit: "{response}"
73 - OID: 1.3.6.1.2.1.149.1.5.1.1.4
74 name: sipCommonStatusCodeOuts
68 - description: Total number of response messages sent with the specified status code (sipCommonStatusCodeValue)
69 - family: SIP/Responses
70 - unit: "{response}"
75 + chart_meta:
76 + description: Total number of response messages sent with the specified status code (sipCommonStatusCodeValue)
77 + family: SIP/Responses
78 + unit: "{response}"
79 metric_tags:
80 - index: 1
81 tag: applIndex
@@ -82,9 +90,10 @@ metrics:
90 symbols:
91 - OID: 1.3.6.1.2.1.149.1.6.1.1.1
92 name: sipCommonTransCurrentactions
85 - description: Number of transactions awaiting definitive response
86 - family: SIP/Transactions
87 - unit: "{transaction}"
93 + chart_meta:
94 + description: Number of transactions awaiting definitive response
95 + family: SIP/Transactions
96 + unit: "{transaction}"
97 metric_tags:
98 - index: 1
99 tag: applIndex
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-tcp.yaml
+48 -36
@@ -5,83 +5,95 @@ metrics:
5 symbol:
6 OID: 1.3.6.1.2.1.6.9.0
7 name: tcpCurrEstab
8 - description: Current TCP connections in ESTABLISHED or CLOSE-WAIT state
9 - family: Network/TCP/Connection/Active/Count
10 - unit: "{connection}"
8 + chart_meta:
9 + description: Current TCP connections in ESTABLISHED or CLOSE-WAIT state
10 + family: Network/TCP/Connection/Active/Count
11 + unit: "{connection}"
12 - MIB: TCP-MIB
13 symbol:
14 OID: 1.3.6.1.2.1.6.5.0
15 name: tcpActiveOpens
15 - description: TCP connections transitioning from CLOSED to SYN-SENT
16 - family: Network/TCP/Connection/Open/Active/Count
17 - unit: "{transition}/s"
16 + chart_meta:
17 + description: TCP connections transitioning from CLOSED to SYN-SENT
18 + family: Network/TCP/Connection/Open/Active/Count
19 + unit: "{transition}/s"
20 - MIB: TCP-MIB
21 symbol:
22 OID: 1.3.6.1.2.1.6.6.0
23 name: tcpPassiveOpens
22 - description: TCP connections transitioning from LISTEN to SYN-RCVD
23 - family: Network/TCP/Connection/Open/Passive/Count
24 - unit: "{transition}/s"
24 + chart_meta:
25 + description: TCP connections transitioning from LISTEN to SYN-RCVD
26 + family: Network/TCP/Connection/Open/Passive/Count
27 + unit: "{transition}/s"
28 - MIB: TCP-MIB
29 symbol:
30 OID: 1.3.6.1.2.1.6.17.0
31 name: tcpHCInSegs
29 - description: TCP segments received
30 - family: Network/TCP/Segment/Total/In
31 - unit: "{packet}/s"
32 + chart_meta:
33 + description: TCP segments received
34 + family: Network/TCP/Segment/Total/In
35 + unit: "{packet}/s"
36 - MIB: TCP-MIB
37 symbol:
38 OID: 1.3.6.1.2.1.6.10.0
39 name: tcpInSegs
36 - description: TCP segments received
37 - family: Network/TCP/Segment/Total/In
38 - unit: "{packet}/s"
40 + chart_meta:
41 + description: TCP segments received
42 + family: Network/TCP/Segment/Total/In
43 + unit: "{packet}/s"
44 - MIB: TCP-MIB
45 symbol:
46 OID: 1.3.6.1.2.1.6.18.0
47 name: tcpHCOutSegs
43 - description: TCP segments sent
44 - family: Network/TCP/Segment/Total/Out
45 - unit: "{packet}/s"
48 + chart_meta:
49 + description: TCP segments sent
50 + family: Network/TCP/Segment/Total/Out
51 + unit: "{packet}/s"
52 - MIB: TCP-MIB
53 symbol:
54 OID: 1.3.6.1.2.1.6.11.0
55 name: tcpOutSegs
50 - description: TCP segments sent
51 - family: Network/TCP/Segment/Total/Out
52 - unit: "{packet}/s"
56 + chart_meta:
57 + description: TCP segments sent
58 + family: Network/TCP/Segment/Total/Out
59 + unit: "{packet}/s"
60 - MIB: TCP-MIB
61 symbol:
62 OID: 1.3.6.1.2.1.6.14.0
63 name: tcpInErrs
57 - description: TCP segments received with errors
58 - family: Network/TCP/Segment/Error/In
59 - unit: "{error}/s"
64 + chart_meta:
65 + description: TCP segments received with errors
66 + family: Network/TCP/Segment/Error/In
67 + unit: "{error}/s"
68 - MIB: TCP-MIB
69 symbol:
70 OID: 1.3.6.1.2.1.6.7.0
71 name: tcpAttemptFails
64 - description: Failed TCP connection attempts
65 - family: Network/TCP/Connection/Failure/Count
66 - unit: "{failure}/s"
72 + chart_meta:
73 + description: Failed TCP connection attempts
74 + family: Network/TCP/Connection/Failure/Count
75 + unit: "{failure}/s"
76 - MIB: TCP-MIB
77 symbol:
78 OID: 1.3.6.1.2.1.6.8.0
79 name: tcpEstabResets
71 - description: TCP connections reset from ESTABLISHED/CLOSE-WAIT
72 - family: Network/TCP/Connection/Reset/Count
73 - unit: "{reset}/s"
80 + chart_meta:
81 + description: TCP connections reset from ESTABLISHED/CLOSE-WAIT
82 + family: Network/TCP/Connection/Reset/Count
83 + unit: "{reset}/s"
84 - MIB: TCP-MIB
85 symbol:
86 OID: 1.3.6.1.2.1.6.15.0
87 name: tcpOutRsts
78 - description: TCP segments sent with RST flag
79 - family: Network/TCP/Segment/Reset/Out
80 - unit: "{reset}/s"
88 + chart_meta:
89 + description: TCP segments sent with RST flag
90 + family: Network/TCP/Segment/Reset/Out
91 + unit: "{reset}/s"
92 - MIB: TCP-MIB
93 symbol:
94 OID: 1.3.6.1.2.1.6.12.0
95 name: tcpRetransSegs
85 - description: TCP segments retransmitted
86 - family: Network/TCP/Segment/Retransmit/Out
87 - unit: "{retransmit}/s"
96 + chart_meta:
97 + description: TCP segments retransmitted
98 + family: Network/TCP/Segment/Retransmit/Out
99 + unit: "{retransmit}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-ucd.yaml
+132 -99
@@ -3,80 +3,90 @@ metrics:
3 symbol:
4 name: ucd.cpuLoad
5 OID: 1.3.6.1.4.1.2021.10.1.5.1
6 - description: The 1,5 and 15 minute load averages as an integer
7 - family: CPU/LoadAverage/1Min
8 - unit: "{load_average}"
6 + chart_meta:
7 + description: The 1,5 and 15 minute load averages as an integer
8 + family: CPU/LoadAverage/1Min
9 + unit: "{load_average}"
10 - MIB: UCD-SNMP-MIB
11 symbol:
12 name: ucd.memoryTotal
13 OID: 1.3.6.1.4.1.2021.4.5.0
13 - description: The total amount of real/physical memory installed on this host
14 - family: Memory/Physical/Total
15 - unit: "By"
14 + chart_meta:
15 + description: The total amount of real/physical memory installed on this host
16 + family: Memory/Physical/Total
17 + unit: "By"
18 scale_factor: 1024
19 - MIB: UCD-SNMP-MIB
20 symbol:
21 name: memory.free
22 OID: 1.3.6.1.4.1.2021.4.6.0
21 - description: The amount of real/physical memory currently unused or available
22 - family: Memory/Physical/Free
23 - unit: "By"
23 + chart_meta:
24 + description: The amount of real/physical memory currently unused or available
25 + family: Memory/Physical/Free
26 + unit: "By"
27 scale_factor: 1024
28 - MIB: UCD-SNMP-MIB
29 symbol:
30 name: ucd.memTotalSwap
31 OID: 1.3.6.1.4.1.2021.4.3.0
29 - description: The total amount of swap space configured for this host
30 - family: Memory/Swap/Total
31 - unit: "By"
32 + chart_meta:
33 + description: The total amount of swap space configured for this host
34 + family: Memory/Swap/Total
35 + unit: "By"
36 scale_factor: 1024
37 - MIB: UCD-SNMP-MIB
38 symbol:
39 name: ucd.memAvailSwap
40 OID: 1.3.6.1.4.1.2021.4.4.0
37 - description: The amount of swap space currently unused or available
38 - family: Memory/Swap/Available
39 - unit: "By"
41 + chart_meta:
42 + description: The amount of swap space currently unused or available
43 + family: Memory/Swap/Available
44 + unit: "By"
45 scale_factor: 1024
46 - MIB: UCD-SNMP-MIB
47 symbol:
48 name: ucd.memTotalFree
49 OID: 1.3.6.1.4.1.2021.4.11.0
45 - description: The total amount of memory free or available for use on this host
46 - family: Memory/Available/Total
47 - unit: "By"
50 + chart_meta:
51 + description: The total amount of memory free or available for use on this host
52 + family: Memory/Available/Total
53 + unit: "By"
54 scale_factor: 1024
55 - MIB: UCD-SNMP-MIB
56 symbol:
57 name: ucd.memMinimumSwap
58 OID: 1.3.6.1.4.1.2021.4.12.0
53 - description: The minimum amount of swap space expected to be kept free or available during normal operation of this host
54 - family: Memory/Swap/Minimum
55 - unit: "By"
59 + chart_meta:
60 + description: The minimum amount of swap space expected to be kept free or available during normal operation of this host
61 + family: Memory/Swap/Minimum
62 + unit: "By"
63 scale_factor: 1024
64 - MIB: UCD-SNMP-MIB
65 symbol:
66 name: ucd.memShared
67 OID: 1.3.6.1.4.1.2021.4.13.0
61 - description: The total amount of real or virtual memory currently allocated for use as shared memory
62 - family: Memory/Physical/Shared
63 - unit: "By"
68 + chart_meta:
69 + description: The total amount of real or virtual memory currently allocated for use as shared memory
70 + family: Memory/Physical/Shared
71 + unit: "By"
72 scale_factor: 1024
73 - MIB: UCD-SNMP-MIB
74 symbol:
75 name: ucd.memBuffer
76 OID: 1.3.6.1.4.1.2021.4.14.0
69 - description: The total amount of real or virtual memory currently allocated for use as memory buffers
70 - family: Memory/Physical/Buffer
71 - unit: "By"
77 + chart_meta:
78 + description: The total amount of real or virtual memory currently allocated for use as memory buffers
79 + family: Memory/Physical/Buffer
80 + unit: "By"
81 scale_factor: 1024
82 - MIB: UCD-SNMP-MIB
83 symbol:
84 name: ucd.memCached
85 OID: 1.3.6.1.4.1.2021.4.15.0
77 - description: The total amount of real or virtual memory currently allocated for use as cached memory
78 - family: Memory/Physical/Cached
79 - unit: "By"
86 + chart_meta:
87 + description: The total amount of real or virtual memory currently allocated for use as cached memory
88 + family: Memory/Physical/Cached
89 + unit: "By"
90 scale_factor: 1024
91 - MIB: UCD-SNMP-MIB
92 table:
@@ -85,37 +95,43 @@ metrics:
95 symbols:
96 - name: ucd.dskTotal
97 OID: 1.3.6.1.4.1.2021.9.1.6
88 - description: Total size of the disk/partition
89 - family: Disk/Space/Total
90 - unit: "By"
98 + chart_meta:
99 + description: Total size of the disk/partition
100 + family: Disk/Space/Total
101 + unit: "By"
102 scale_factor: 1024
103 - name: ucd.dskAvail
104 OID: 1.3.6.1.4.1.2021.9.1.7
94 - description: Available space on the disk
95 - family: Disk/Space/Available
96 - unit: "By"
105 + chart_meta:
106 + description: Available space on the disk
107 + family: Disk/Space/Available
108 + unit: "By"
109 scale_factor: 1024
110 - name: ucd.dskUsed
111 OID: 1.3.6.1.4.1.2021.9.1.8
100 - description: Used space on the disk
101 - family: Disk/Space/Used
102 - unit: "By"
112 + chart_meta:
113 + description: Used space on the disk
114 + family: Disk/Space/Used
115 + unit: "By"
116 scale_factor: 1024
117 - name: ucd.dskPercent
118 OID: 1.3.6.1.4.1.2021.9.1.9
106 - description: Percentage of space used on disk
107 - family: Disk/Usage
108 - unit: "%"
119 + chart_meta:
120 + description: Percentage of space used on disk
121 + family: Disk/Usage
122 + unit: "%"
123 - name: ucd.dskPercentNode
124 OID: 1.3.6.1.4.1.2021.9.1.10
111 - description: Percentage of inodes used on disk
112 - family: Disk/Inode/Usage
113 - unit: "%"
125 + chart_meta:
126 + description: Percentage of inodes used on disk
127 + family: Disk/Inode/Usage
128 + unit: "%"
129 - name: ucd.dskErrorFlag
130 OID: 1.3.6.1.4.1.2021.9.1.100
116 - description: Flag signaling that the disk or partition is under the minimum required space configured for it
117 - family: Disk/Error/Status
118 - unit: "{status}"
131 + chart_meta:
132 + description: Flag signaling that the disk or partition is under the minimum required space configured for it
133 + family: Disk/Error/Status
134 + unit: "{status}"
135 mapping:
136 0: no_error
137 1: error
@@ -137,42 +153,49 @@ metrics:
153 - name: ucd.diskIOReads
154 OID: 1.3.6.1.4.1.2021.13.15.1.1.5
155 metric_type: monotonic_count
140 - description: The number of read accesses from this device since boot
141 - family: Disk/IO/Read/Count
142 - unit: "{read}"
156 + chart_meta:
157 + description: The number of read accesses from this device since boot
158 + family: Disk/IO/Read/Count
159 + unit: "{read}"
160 - name: ucd.diskIOWrites
161 OID: 1.3.6.1.4.1.2021.13.15.1.1.6
162 metric_type: monotonic_count
146 - description: The number of write accesses to this device since boot
147 - family: Disk/IO/Write/Count
148 - unit: "{write}"
163 + chart_meta:
164 + description: The number of write accesses to this device since boot
165 + family: Disk/IO/Write/Count
166 + unit: "{write}"
167 - name: ucd.diskIOLA1
168 OID: 1.3.6.1.4.1.2021.13.15.1.1.9
151 - description: The 1 minute average load of disk (%)
152 - family: Disk/LoadAverage/1Min
153 - unit: "%"
169 + chart_meta:
170 + description: The 1 minute average load of disk (%)
171 + family: Disk/LoadAverage/1Min
172 + unit: "%"
173 - name: ucd.diskIOLA5
174 OID: 1.3.6.1.4.1.2021.13.15.1.1.10
156 - description: The 5 minute average load of disk (%)
157 - family: Disk/LoadAverage/5Min
158 - unit: "%"
175 + chart_meta:
176 + description: The 5 minute average load of disk (%)
177 + family: Disk/LoadAverage/5Min
178 + unit: "%"
179 - name: ucd.diskIOLA15
180 OID: 1.3.6.1.4.1.2021.13.15.1.1.11
161 - description: The 15 minute average load of disk (%)
162 - family: Disk/LoadAverage/15Min
163 - unit: "%"
181 + chart_meta:
182 + description: The 15 minute average load of disk (%)
183 + family: Disk/LoadAverage/15Min
184 + unit: "%"
185 - name: ucd.diskIONReadX
186 OID: 1.3.6.1.4.1.2021.13.15.1.1.12
187 metric_type: monotonic_count
167 - description: The number of bytes read from this device since boot
168 - family: Disk/Traffic/Read
169 - unit: "By"
188 + chart_meta:
189 + description: The number of bytes read from this device since boot
190 + family: Disk/Traffic/Read
191 + unit: "By"
192 - name: ucd.diskIONWrittenX
193 OID: 1.3.6.1.4.1.2021.13.15.1.1.13
194 metric_type: monotonic_count
173 - description: The number of bytes written to this device since boot
174 - family: Disk/Traffic/Write
175 - unit: "By"
195 + chart_meta:
196 + description: The number of bytes written to this device since boot
197 + family: Disk/Traffic/Write
198 + unit: "By"
199 metric_tags:
200 - tag: ucd_disk_io_device
201 symbol:
@@ -182,76 +205,86 @@ metrics:
205 symbol:
206 name: ucd.ssCpuUser
207 OID: 1.3.6.1.4.1.2021.11.9.0
185 - description: The percentage of CPU time spent processing user-level code, calculated over the last minute
186 - family: CPU/Usage/User
187 - unit: "%"
208 + chart_meta:
209 + description: The percentage of CPU time spent processing user-level code, calculated over the last minute
210 + family: CPU/Usage/User
211 + unit: "%"
212 - MIB: UCD-SNMP-MIB
213 symbol:
214 name: ucd.ssCpuSystem
215 OID: 1.3.6.1.4.1.2021.11.10.0
192 - description: The percentage of CPU time spent processing system-level code, calculated over the last minute
193 - family: CPU/Usage/System
194 - unit: "%"
216 + chart_meta:
217 + description: The percentage of CPU time spent processing system-level code, calculated over the last minute
218 + family: CPU/Usage/System
219 + unit: "%"
220 - MIB: UCD-SNMP-MIB
221 symbol:
222 name: ucd.ssCpuIdle
223 OID: 1.3.6.1.4.1.2021.11.11.0
199 - description: The percentage of processor time spent idle, calculated over the last minute
200 - family: CPU/Usage/Idle
201 - unit: "%"
224 + chart_meta:
225 + description: The percentage of processor time spent idle, calculated over the last minute
226 + family: CPU/Usage/Idle
227 + unit: "%"
228 - MIB: UCD-SNMP-MIB
229 symbol:
230 name: ucd.ssCpuRawUser
231 OID: 1.3.6.1.4.1.2021.11.50.0
232 metric_type: monotonic_count
207 - description: The number of 'ticks' spent processing user-level code
208 - family: CPU/Time/User
209 - unit: "{tick}"
233 + chart_meta:
234 + description: The number of 'ticks' spent processing user-level code
235 + family: CPU/Time/User
236 + unit: "{tick}"
237 - MIB: UCD-SNMP-MIB
238 symbol:
239 name: ucd.ssCpuRawNice
240 OID: 1.3.6.1.4.1.2021.11.51.0
241 metric_type: monotonic_count
215 - description: The number of 'ticks' spent processing reduced-priority code
216 - family: CPU/Time/Nice
217 - unit: "{tick}"
242 + chart_meta:
243 + description: The number of 'ticks' spent processing reduced-priority code
244 + family: CPU/Time/Nice
245 + unit: "{tick}"
246 - MIB: UCD-SNMP-MIB
247 symbol:
248 name: ucd.ssCpuRawSystem
249 OID: 1.3.6.1.4.1.2021.11.52.0
250 metric_type: monotonic_count
223 - description: The number of 'ticks' spent processing system-level code
224 - family: CPU/Time/System
225 - unit: "{tick}"
251 + chart_meta:
252 + description: The number of 'ticks' spent processing system-level code
253 + family: CPU/Time/System
254 + unit: "{tick}"
255 - MIB: UCD-SNMP-MIB
256 symbol:
257 name: ucd.ssCpuRawIdle
258 OID: 1.3.6.1.4.1.2021.11.53.0
259 metric_type: monotonic_count
231 - description: The number of 'ticks' spent idle
232 - family: CPU/Time/Idle
233 - unit: "{tick}"
260 + chart_meta:
261 + description: The number of 'ticks' spent idle
262 + family: CPU/Time/Idle
263 + unit: "{tick}"
264 - MIB: UCD-SNMP-MIB
265 symbol:
266 name: ucd.ssCpuRawWait
267 OID: 1.3.6.1.4.1.2021.11.54.0
268 metric_type: monotonic_count
239 - description: The number of 'ticks' spent waiting for IO
240 - family: CPU/Time/IOWait
241 - unit: "{tick}"
269 + chart_meta:
270 + description: The number of 'ticks' spent waiting for IO
271 + family: CPU/Time/IOWait
272 + unit: "{tick}"
273 - MIB: UCD-SNMP-MIB
274 symbol:
275 name: ucd.ssCpuRawKernel
276 OID: 1.3.6.1.4.1.2021.11.55.0
277 metric_type: monotonic_count
247 - description: The number of 'ticks' spent processing kernel-level code
248 - family: CPU/Time/Kernel
249 - unit: "{tick}"
278 + chart_meta:
279 + description: The number of 'ticks' spent processing kernel-level code
280 + family: CPU/Time/Kernel
281 + unit: "{tick}"
282 - MIB: UCD-SNMP-MIB
283 symbol:
284 name: ucd.ssCpuRawInterrupt
285 OID: 1.3.6.1.4.1.2021.11.56.0
286 metric_type: monotonic_count
255 - description: The number of 'ticks' spent processing hardware interrupts
256 - family: CPU/Time/Interrupt
257 - unit: "{tick}"
287 + chart_meta:
288 + description: The number of 'ticks' spent processing hardware interrupts
289 + family: CPU/Time/Interrupt
290 + unit: "{tick}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-udp.yaml
+24 -18
@@ -5,41 +5,47 @@ metrics:
5 symbol:
6 OID: 1.3.6.1.2.1.7.8.0
7 name: udpHCInDatagrams
8 - description: UDP datagrams received
9 - family: Network/UDP/Datagram/Total/In
10 - unit: "{packet}/s"
8 + chart_meta:
9 + description: UDP datagrams received
10 + family: Network/UDP/Datagram/Total/In
11 + unit: "{packet}/s"
12 - MIB: UDP-MIB
13 symbol:
14 OID: 1.3.6.1.2.1.7.1.0
15 name: udpInDatagrams
15 - description: UDP datagrams received
16 - family: Network/UDP/Datagram/Total/In
17 - unit: "{packet}/s"
16 + chart_meta:
17 + description: UDP datagrams received
18 + family: Network/UDP/Datagram/Total/In
19 + unit: "{packet}/s"
20 - MIB: UDP-MIB
21 symbol:
22 OID: 1.3.6.1.2.1.7.9.0
23 name: udpHCOutDatagrams
22 - description: UDP datagrams sent
23 - family: Network/UDP/Datagram/Total/Out
24 - unit: "{packet}/s"
24 + chart_meta:
25 + description: UDP datagrams sent
26 + family: Network/UDP/Datagram/Total/Out
27 + unit: "{packet}/s"
28 - MIB: UDP-MIB
29 symbol:
30 OID: 1.3.6.1.2.1.7.4.0
31 name: udpOutDatagrams
29 - description: UDP datagrams sent
30 - family: Network/UDP/Datagram/Total/Out
31 - unit: "{packet}/s"
32 + chart_meta:
33 + description: UDP datagrams sent
34 + family: Network/UDP/Datagram/Total/Out
35 + unit: "{packet}/s"
36 - MIB: UDP-MIB
37 symbol:
38 OID: 1.3.6.1.2.1.7.3.0
39 name: udpInErrors
36 - description: UDP datagrams received but couldn't be delivered (not due to missing app)
37 - family: Network/UDP/Datagram/Error/In
38 - unit: "{error}/s"
40 + chart_meta:
41 + description: UDP datagrams received but couldn't be delivered (not due to missing app)
42 + family: Network/UDP/Datagram/Error/In
43 + unit: "{error}/s"
44 - MIB: UDP-MIB
45 symbol:
46 OID: 1.3.6.1.2.1.7.2.0
47 name: udpNoPorts
43 - description: UDP datagrams received with no app on the destination port
44 - family: Network/UDP/Datagram/Error/NoPort
45 - unit: "{error}/s"
48 + chart_meta:
49 + description: UDP datagrams received with no app on the destination port
50 + family: Network/UDP/Datagram/Error/NoPort
51 + unit: "{error}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_generic-ups.yaml
+116 -87
@@ -3,9 +3,10 @@ metrics:
3 symbol:
4 OID: 1.3.6.1.2.1.33.1.2.1.0
5 name: upsBatteryStatus
6 - description: The indication of the capacity remaining in the UPS system's batteries
7 - family: Battery/Operational/Status
8 - unit: "{status}"
6 + chart_meta:
7 + description: The indication of the capacity remaining in the UPS system's batteries
8 + family: Battery/Operational/Status
9 + unit: "{status}"
10 mapping:
11 1: unknown
12 2: batteryNormal
@@ -15,66 +16,75 @@ metrics:
16 symbol:
17 OID: 1.3.6.1.2.1.33.1.2.2.0
18 name: upsSecondsOnBattery
18 - description: If the unit is on battery power, the elapsed time since the UPS last switched to battery power, or the time since the network management subsystem was last restarted, whichever is less. Zero shall be returned if the unit is not on battery power
19 - family: Battery/Runtime/OnBattery
20 - unit: "s"
19 + chart_meta:
20 + description: If the unit is on battery power, the elapsed time since the UPS last switched to battery power, or the time since the network management subsystem was last restarted, whichever is less. Zero shall be returned if the unit is not on battery power
21 + family: Battery/Runtime/OnBattery
22 + unit: "s"
23 - MIB: UPS-MIB
24 symbol:
25 OID: 1.3.6.1.2.1.33.1.2.3.0
26 name: upsEstimatedMinutesRemaining
25 - description: An estimate of the time to battery charge depletion under the present load conditions if the utility power is off and remains off, or if it were to be lost and remain off
26 - family: Battery/Runtime/Remaining
27 - unit: "min"
27 + chart_meta:
28 + description: An estimate of the time to battery charge depletion under the present load conditions if the utility power is off and remains off, or if it were to be lost and remain off
29 + family: Battery/Runtime/Remaining
30 + unit: "min"
31 - MIB: UPS-MIB
32 symbol:
33 OID: 1.3.6.1.2.1.33.1.2.4.0
34 name: upsEstimatedChargeRemaining
32 - description: An estimate of the battery charge remaining expressed as a percent of full charge
33 - family: Battery/Charge/Remaining
34 - unit: "%"
35 + chart_meta:
36 + description: An estimate of the battery charge remaining expressed as a percent of full charge
37 + family: Battery/Charge/Remaining
38 + unit: "%"
39 - MIB: UPS-MIB
40 symbol:
41 OID: 1.3.6.1.2.1.33.1.2.5.0
42 name: upsBatteryVoltage
39 - description: The magnitude of the present battery voltage
40 - family: Battery/Voltage/Value
41 - unit: "V"
43 + chart_meta:
44 + description: The magnitude of the present battery voltage
45 + family: Battery/Voltage/Value
46 + unit: "V"
47 - MIB: UPS-MIB
48 symbol:
49 OID: 1.3.6.1.2.1.33.1.2.6.0
50 name: upsBatteryCurrent
46 - description: The present battery current
47 - family: Battery/Current/Value
48 - unit: "A"
51 + chart_meta:
52 + description: The present battery current
53 + family: Battery/Current/Value
54 + unit: "A"
55 - MIB: UPS-MIB
56 symbol:
57 OID: 1.3.6.1.2.1.33.1.2.7.0
58 name: upsBatteryTemperature
53 - description: The ambient temperature at or near the UPS Battery casing
54 - family: Battery/Temperature/Value
55 - unit: "Cel"
59 + chart_meta:
60 + description: The ambient temperature at or near the UPS Battery casing
61 + family: Battery/Temperature/Value
62 + unit: "Cel"
63 - MIB: UPS-MIB
64 symbol:
65 OID: 1.3.6.1.2.1.33.1.3.1.0
66 name: upsInputLineBads
60 - description: A count of the number of times the input entered an out-of-tolerance condition as defined by the manufacturer. This count is incremented by one each time the input transitions from zero out-of-tolerance lines to one or more input lines out-of-tolerance
61 - family: Input/Error/OutOfTolerance/Count
62 - unit: "{transition}"
67 + chart_meta:
68 + description: A count of the number of times the input entered an out-of-tolerance condition as defined by the manufacturer. This count is incremented by one each time the input transitions from zero out-of-tolerance lines to one or more input lines out-of-tolerance
69 + family: Input/Error/OutOfTolerance/Count
70 + unit: "{transition}"
71 metric_type: monotonic_count
72 - MIB: UPS-MIB
73 symbol:
74 OID: 1.3.6.1.2.1.33.1.3.2.0
75 name: upsInputNumLines
68 - description: The number of input lines utilized in this device. This variable indicates the number of rows in the input table
69 - family: Input/Line/Count
70 - unit: "{line}"
76 + chart_meta:
77 + description: The number of input lines utilized in this device. This variable indicates the number of rows in the input table
78 + family: Input/Line/Count
79 + unit: "{line}"
80 - MIB: UPS-MIB
81 symbol:
82 OID: 1.3.6.1.2.1.33.1.4.1.0
83 name: upsOutputSource
75 - description: The present source of output power
76 - family: Output/Source/Status
77 - unit: "{status}"
84 + chart_meta:
85 + description: The present source of output power
86 + family: Output/Source/Status
87 + unit: "{status}"
88 mapping:
89 1: other
90 2: none
@@ -87,44 +97,50 @@ metrics:
97 symbol:
98 OID: 1.3.6.1.2.1.33.1.4.2.0
99 name: upsOutputFrequency
90 - description: The present output frequency
91 - family: Output/Frequency/Value
92 - unit: "Hz"
100 + chart_meta:
101 + description: The present output frequency
102 + family: Output/Frequency/Value
103 + unit: "Hz"
104 - MIB: UPS-MIB
105 symbol:
106 OID: 1.3.6.1.2.1.33.1.4.3.0
107 name: upsOutputNumLines
97 - description: The number of output lines utilized in this device. This variable indicates the number of rows in the output table
98 - family: Output/Line/Count
99 - unit: "{line}"
108 + chart_meta:
109 + description: The number of output lines utilized in this device. This variable indicates the number of rows in the output table
110 + family: Output/Line/Count
111 + unit: "{line}"
112 - MIB: UPS-MIB
113 symbol:
114 OID: 1.3.6.1.2.1.33.1.5.1.0
115 name: upsBypassFrequency
104 - description: The present bypass frequency
105 - family: Bypass/Frequency/Value
106 - unit: "Hz"
116 + chart_meta:
117 + description: The present bypass frequency
118 + family: Bypass/Frequency/Value
119 + unit: "Hz"
120 - MIB: UPS-MIB
121 symbol:
122 OID: 1.3.6.1.2.1.33.1.5.2.0
123 name: upsBypassNumLines
111 - description: The number of bypass lines utilized in this device. This entry indicates the number of rows in the bypass table
112 - family: Bypass/Line/Count
113 - unit: "{line}"
124 + chart_meta:
125 + description: The number of bypass lines utilized in this device. This entry indicates the number of rows in the bypass table
126 + family: Bypass/Line/Count
127 + unit: "{line}"
128 - MIB: UPS-MIB
129 symbol:
130 OID: 1.3.6.1.2.1.33.1.6.1.0
131 name: upsAlarmsPresent
118 - description: The present number of active alarm conditions
119 - family: Alarm/Active/Count
120 - unit: "{alarm}"
132 + chart_meta:
133 + description: The present number of active alarm conditions
134 + family: Alarm/Active/Count
135 + unit: "{alarm}"
136 - MIB: UPS-MIB
137 symbol:
138 OID: 1.3.6.1.2.1.33.1.7.3.0
139 name: upsTestResultsSummary
125 - description: The results of the current or last UPS diagnostics test performed
126 - family: Test/Result/Status
127 - unit: "{status}"
140 + chart_meta:
141 + description: The results of the current or last UPS diagnostics test performed
142 + family: Test/Result/Status
143 + unit: "{status}"
144 mapping:
145 1: donePass
146 2: doneWarning
@@ -136,9 +152,10 @@ metrics:
152 symbol:
153 OID: 1.3.6.1.2.1.33.1.7.5.0
154 name: upsTestStartTime
139 - description: The value of sysUpTime at the time the test in progress was initiated, or, if no test is in progress, the time the previous test was initiated
140 - family: Test/StartTime/Value
141 - unit: "s"
155 + chart_meta:
156 + description: The value of sysUpTime at the time the test in progress was initiated, or, if no test is in progress, the time the previous test was initiated
157 + family: Test/StartTime/Value
158 + unit: "s"
159 - MIB: UPS-MIB
160 table:
161 OID: 1.3.6.1.2.1.33.1.4.4
@@ -146,24 +163,28 @@ metrics:
163 symbols:
164 - OID: 1.3.6.1.2.1.33.1.4.4.1.2
165 name: upsOutputVoltage
149 - description: The present output voltage
150 - family: Output/Voltage/Value
151 - unit: "V"
166 + chart_meta:
167 + description: The present output voltage
168 + family: Output/Voltage/Value
169 + unit: "V"
170 - OID: 1.3.6.1.2.1.33.1.4.4.1.3
171 name: upsOutputCurrent
154 - description: The present output current
155 - family: Output/Current/Value
156 - unit: "A"
172 + chart_meta:
173 + description: The present output current
174 + family: Output/Current/Value
175 + unit: "A"
176 - OID: 1.3.6.1.2.1.33.1.4.4.1.4
177 name: upsOutputPower
159 - description: The present output true power
160 - family: Output/Power/Active
161 - unit: "W"
178 + chart_meta:
179 + description: The present output true power
180 + family: Output/Power/Active
181 + unit: "W"
182 - OID: 1.3.6.1.2.1.33.1.4.4.1.5
183 name: upsOutputPercentLoad
164 - description: The percentage of the UPS power capacity presently being used on this output line
165 - family: Output/Load/Usage
166 - unit: "%"
184 + chart_meta:
185 + description: The percentage of the UPS power capacity presently being used on this output line
186 + family: Output/Load/Usage
187 + unit: "%"
188 metric_tags:
189 - symbol:
190 OID: 1.3.6.1.2.1.33.1.4.4.1.1
@@ -176,24 +197,28 @@ metrics:
197 symbols:
198 - OID: 1.3.6.1.2.1.33.1.3.3.1.2
199 name: upsInputFrequency
179 - description: The present input frequency
180 - family: Input/Frequency/Value
181 - unit: "Hz"
200 + chart_meta:
201 + description: The present input frequency
202 + family: Input/Frequency/Value
203 + unit: "Hz"
204 - OID: 1.3.6.1.2.1.33.1.3.3.1.3
205 name: upsInputVoltage
184 - description: The magnitude of the present input voltage
185 - family: Input/Voltage/Value
186 - unit: "V"
206 + chart_meta:
207 + description: The magnitude of the present input voltage
208 + family: Input/Voltage/Value
209 + unit: "V"
210 - OID: 1.3.6.1.2.1.33.1.3.3.1.4
211 name: upsInputCurrent
189 - description: The magnitude of the present input current
190 - family: Input/Current/Value
191 - unit: "A"
212 + chart_meta:
213 + description: The magnitude of the present input current
214 + family: Input/Current/Value
215 + unit: "A"
216 - OID: 1.3.6.1.2.1.33.1.3.3.1.5
217 name: upsInputTruePower
194 - description: The magnitude of the present input true power
195 - family: Input/Power/Active
196 - unit: "W"
218 + chart_meta:
219 + description: The magnitude of the present input true power
220 + family: Input/Power/Active
221 + unit: "W"
222 metric_tags:
223 - symbol:
224 OID: 1.3.6.1.2.1.33.1.3.3.1.1
@@ -206,19 +231,22 @@ metrics:
231 symbols:
232 - OID: 1.3.6.1.2.1.33.1.5.3.1.2
233 name: upsBypassVoltage
209 - description: The present bypass voltage
210 - family: Bypass/Voltage/Value
211 - unit: "V"
234 + chart_meta:
235 + description: The present bypass voltage
236 + family: Bypass/Voltage/Value
237 + unit: "V"
238 - OID: 1.3.6.1.2.1.33.1.5.3.1.3
239 name: upsBypassCurrent
214 - description: The present bypass current
215 - family: Bypass/Current/Value
216 - unit: "A"
240 + chart_meta:
241 + description: The present bypass current
242 + family: Bypass/Current/Value
243 + unit: "A"
244 - OID: 1.3.6.1.2.1.33.1.5.3.1.4
245 name: upsBypassPower
219 - description: The present true power conveyed by the bypass
220 - family: Bypass/Power/Active
221 - unit: "W"
246 + chart_meta:
247 + description: The present true power conveyed by the bypass
248 + family: Bypass/Power/Active
249 + unit: "W"
250 metric_tags:
251 - symbol:
252 OID: 1.3.6.1.2.1.33.1.5.3.1.1
@@ -231,9 +259,10 @@ metrics:
259 symbols:
260 - OID: 1.3.6.1.2.1.33.1.6.2.1.3
261 name: upsAlarmTime
234 - description: The value of sysUpTime when the alarm condition was detected. If the alarm condition was detected at the time of agent startup and presumably existed before agent startup, the value of upsAlarmTime shall equal 0
235 - family: Alarm/Time/Value
236 - unit: "s"
262 + chart_meta:
263 + description: The value of sysUpTime when the alarm condition was detected. If the alarm condition was detected at the time of agent startup and presumably existed before agent startup, the value of upsAlarmTime shall equal 0
264 + family: Alarm/Time/Value
265 + unit: "s"
266 metric_tags:
267 - symbol:
268 OID: 1.3.6.1.2.1.33.1.6.2.1.2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_hp-compaq-health.yaml
+36 -36
@@ -10,16 +10,16 @@ metrics:
10 symbol:
11 OID: 1.3.6.1.4.1.232.6.2.8.1.0
12 name: cpqHeSysUtilLifeTime
13 - description: Total time the system has been in full operation in minutes
14 - unit: "min"
13 + description: Total time the system has been in full operation in minutes
14 + unit: "min"
15
16 # EISA bus utilization as percentage of theoretical maximum during last minute.
17 - MIB: CPQHLTH-MIB
18 symbol:
19 OID: 1.3.6.1.4.1.232.6.2.8.2.0
20 name: cpqHeSysUtilEisaBusMin
21 - description: EISA bus utilization as a percentage of the theoretical maximum during the last minute
22 - unit: "%"
21 + description: EISA bus utilization as a percentage of the theoretical maximum during the last minute
22 + unit: "%"
23
24 # Critical errors.
25
@@ -29,8 +29,8 @@ metrics:
29 symbol:
30 OID: 1.3.6.1.4.1.232.6.2.2.2.0
31 name: cpqHeCritLogCondition
32 - description: Overall condition of the critical error log feature
33 - unit: "{instance}"
32 + description: Overall condition of the critical error log feature
33 + unit: "{instance}"
34
35 # Correctable memory errors tracking.
36
@@ -40,8 +40,8 @@ metrics:
40 symbol:
41 OID: 1.3.6.1.4.1.232.6.2.3.1.0
42 name: cpqHeCorrMemLogStatus
43 - description: Overall status of the correctable memory error log feature
44 - unit: "{instance}"
43 + description: Overall status of the correctable memory error log feature
44 + unit: "{instance}"
45
46 # Overall condition of the correctable memory error log feature.
47 # NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -49,17 +49,17 @@ metrics:
49 symbol:
50 OID: 1.3.6.1.4.1.232.6.2.3.2.0
51 name: cpqHeCorrMemLogCondition
52 - description: Overall condition of the correctable memory error log feature
53 - unit: "{instance}"
52 + description: Overall condition of the correctable memory error log feature
53 + unit: "{instance}"
54
55 # Number of correctable memory errors that have occurred.
56 - MIB: CPQHLTH-MIB
57 symbol:
58 OID: 1.3.6.1.4.1.232.6.2.3.3.0
59 name: cpqHeCorrMemTotalErrs
60 - metric_type: monotonic_count
61 - description: Number of correctable memory errors that have occurred
62 - unit: "{error}"
60 + description: Number of correctable memory errors that have occurred
61 + unit: "{error}"
62 + metric_type: monotonic_count
63
64 # ASR (Automatic Server Recovery)
65
@@ -69,8 +69,8 @@ metrics:
69 symbol:
70 OID: 1.3.6.1.4.1.232.6.2.5.1.0
71 name: cpqHeAsrStatus
72 - description: Overall status of the ASR feature
73 - unit: "{instance}"
72 + description: Overall status of the ASR feature
73 + unit: "{instance}"
74
75 # Whether the ASR timer passed the server Power-On Self-Test (POST).
76 # NOTE: other(1), failed(2), ok(3)
@@ -78,8 +78,8 @@ metrics:
78 symbol:
79 OID: 1.3.6.1.4.1.232.6.2.5.6.0
80 name: cpqHeAsrPost
81 - description: Whether the ASR timer passed the server Power-On Self-Test
82 - unit: "{instance}"
81 + description: Whether the ASR timer passed the server Power-On Self-Test
82 + unit: "{instance}"
83
84 # Number of ASR reboots that occurred on the server since last manual reboot.
85 # NOTE: -1 if not supported.
@@ -87,9 +87,9 @@ metrics:
87 symbol:
88 OID: 1.3.6.1.4.1.232.6.2.5.10.0
89 name: cpqHeAsrRebootCount
90 - metric_type: monotonic_count
91 - description: Number of ASR reboots that have occurred on the server since last manual reboot
92 - unit: "{reboot}"
90 + description: Number of ASR reboots that have occurred on the server since last manual reboot
91 + unit: "{reboot}"
92 + metric_type: monotonic_count
93
94 # Overall condition of the ASR feature.
95 # NOTE: other(1), notAvailable(2), disabled(3), enabled(4)
@@ -97,8 +97,8 @@ metrics:
97 symbol:
98 OID: 1.3.6.1.4.1.232.6.2.5.17.0
99 name: cpqHeAsrCondition
100 - description: Overall condition of the ASR feature
101 - unit: "{instance}"
100 + description: Overall condition of the ASR feature
101 + unit: "{instance}"
102
103 # Status of the ASR network access feature.
104 # NOTE: other(1), disabled(2), enabled(3)
@@ -106,8 +106,8 @@ metrics:
106 symbol:
107 OID: 1.3.6.1.4.1.232.6.2.5.21.0
108 name: cpqHeAsrNetworkAccessStatus
109 - description: Status of the ASR network access feature
110 - unit: "{instance}"
109 + description: Status of the ASR network access feature
110 + unit: "{instance}"
111
112 # Temperature and fans.
113
@@ -117,8 +117,8 @@ metrics:
117 symbol:
118 OID: 1.3.6.1.4.1.232.6.2.6.3.0
119 name: cpqHeThermalTempStatus
120 - description: Status of the system's temperature sensors
121 - unit: "{instance}"
120 + description: Status of the system's temperature sensors
121 + unit: "{instance}"
122
123 # Status of fan(s).
124 # NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -126,8 +126,8 @@ metrics:
126 symbol:
127 OID: 1.3.6.1.4.1.232.6.2.6.4.0
128 name: cpqHeThermalSystemFanStatus
129 - description: Status of the fan(s) in the system
130 - unit: "{instance}"
129 + description: Status of the fan(s) in the system
130 + unit: "{instance}"
131
132 # Status of processor fan(s).
133 # NOTE: other(1), ok(2), failed(4)
@@ -135,8 +135,8 @@ metrics:
135 symbol:
136 OID: 1.3.6.1.4.1.232.6.2.6.5.0
137 name: cpqHeThermalCpuFanStatus
138 - description: Status of the processor fan(s) in the system
139 - unit: "{instance}"
138 + description: Status of the processor fan(s) in the system
139 + unit: "{instance}"
140
141 # Temperator sensors.
142 - MIB: CPQHLTH-MIB
@@ -166,8 +166,8 @@ metrics:
166 symbol:
167 OID: 1.3.6.1.4.1.232.6.2.15.3.0
168 name: cpqHePowerMeterCurrReading
169 - description: Current power meter reading in watts
170 - unit: "W"
169 + description: Current power meter reading in watts
170 + unit: "W"
171
172 # A table of battery entries.
173 - MIB: CPQHLTH-MIB
@@ -197,15 +197,15 @@ metrics:
197 symbol:
198 OID: 1.3.6.1.4.1.232.6.2.6.1.0
199 name: cpqHeThermalCondition
200 - description: Overall condition of the system's thermal environment
201 - unit: "{instance}"
200 + description: Overall condition of the system's thermal environment
201 + unit: "{instance}"
202 # NOTE: other(1), notSupported(2), notInstalled(3), installed(4)
203 - MIB: CPQHLTH-MIB
204 symbol:
205 OID: 1.3.6.1.4.1.232.6.2.9.2.0
206 name: cpqHeFltTolPwrSupplyStatus
207 - description: Status of the fault tolerant power supply
208 - unit: "{instance}"
207 + description: Status of the fault tolerant power supply
208 + unit: "{instance}"
209
210 - MIB: CPQHLTH-MIB
211 table:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-cos.yaml
+200 -150
@@ -11,287 +11,337 @@ metrics:
11 # Queued
12 - OID: 1.3.6.1.4.1.2636.3.15.10.1.3
13 name: jnxCosIfsetQstatQedPkts
14 - description: The total number of packets queued at the output queue
15 - family: Interfaces/COS/Queue/Packet/Queued
16 - unit: "{packet}"
14 + chart_meta:
15 + description: The total number of packets queued at the output queue
16 + family: Interfaces/COS/Queue/Packet/Queued
17 + unit: "{packet}"
18 - OID: 1.3.6.1.4.1.2636.3.15.10.1.4
19 name: jnxCosIfsetQstatQedPktRate
19 - description: The rate at which packets were queued at the output queue
20 - family: Interfaces/COS/Queue/Packet/Queued
21 - unit: "{packet}/s"
20 + chart_meta:
21 + description: The rate at which packets were queued at the output queue
22 + family: Interfaces/COS/Queue/Packet/Queued
23 + unit: "{packet}/s"
24 # Transmitted
25 - OID: 1.3.6.1.4.1.2636.3.15.10.1.7
26 name: jnxCosIfsetQstatTxedPkts
25 - description: Number of packets transmitted on the queue
26 - family: Interfaces/COS/Queue/Packet/Transmitted
27 - unit: "{packet}"
27 + chart_meta:
28 + description: Number of packets transmitted on the queue
29 + family: Interfaces/COS/Queue/Packet/Transmitted
30 + unit: "{packet}"
31 - OID: 1.3.6.1.4.1.2636.3.15.10.1.8
32 name: jnxCosIfsetQstatTxedPktRate
30 - description: The output queue's packet transmit rate
31 - family: Interfaces/COS/Queue/Packet/Transmitted
32 - unit: "{packet}/s"
33 + chart_meta:
34 + description: The output queue's packet transmit rate
35 + family: Interfaces/COS/Queue/Packet/Transmitted
36 + unit: "{packet}/s"
37
38 # Tail Drop
39 - OID: 1.3.6.1.4.1.2636.3.15.10.1.11
40 name: jnxCosIfsetQstatTailDropPkts
37 - description: The number of packets tail dropped at the output queue
38 - family: Interfaces/COS/TailDrop/Packet/Dropped
39 - unit: "{packet}"
41 + chart_meta:
42 + description: The number of packets tail dropped at the output queue
43 + family: Interfaces/COS/TailDrop/Packet/Dropped
44 + unit: "{packet}"
45 - OID: 1.3.6.1.4.1.2636.3.15.10.1.12
46 name: jnxCosIfsetQstatTailDropPktRate
42 - description: The tail drop packet rate for the queue
43 - family: Interfaces/COS/TailDrop/Packet/Dropped
44 - unit: "{packets}/s"
47 + chart_meta:
48 + description: The tail drop packet rate for the queue
49 + family: Interfaces/COS/TailDrop/Packet/Dropped
50 + unit: "{packets}/s"
51
52 # Rate Limit
53 - OID: 1.3.6.1.4.1.2636.3.15.10.1.49
54 name: jnxCosIfsetQstatRateLimitDropPkts
49 - description: The total number of rate-limit dropped packets at the output on the given interface
50 - family: Interfaces/COS/RateLimit/Packet/Dropped
51 - unit: "{packet}"
55 + chart_meta:
56 + description: The total number of rate-limit dropped packets at the output on the given interface
57 + family: Interfaces/COS/RateLimit/Packet/Dropped
58 + unit: "{packet}"
59 - OID: 1.3.6.1.4.1.2636.3.15.10.1.50
60 name: jnxCosIfsetQstatRateLimitDropPktRate
54 - description: The rate at which packets are rate-limit dropped at the output on the given interface
55 - family: Interfaces/COS/RateLimit/Packet/Dropped
56 - unit: "{packet}/s"
61 + chart_meta:
62 + description: The rate at which packets are rate-limit dropped at the output on the given interface
63 + family: Interfaces/COS/RateLimit/Packet/Dropped
64 + unit: "{packet}/s"
65
66 # RED Drops
67 # Total
68 - OID: 1.3.6.1.4.1.2636.3.15.10.1.13
69 name: jnxCosIfsetQstatTotalRedDropPkts
62 - description: Total number of packets dropped due to RED at the output on the given interface
63 - family: Interfaces/COS/RED/Packet/Dropped/Total
64 - unit: "{packet}"
70 + chart_meta:
71 + description: Total number of packets dropped due to RED at the output on the given interface
72 + family: Interfaces/COS/RED/Packet/Dropped/Total
73 + unit: "{packet}"
74 - OID: 1.3.6.1.4.1.2636.3.15.10.1.14
75 name: jnxCosIfsetQstatTotalRedDropPktRate
67 - description: The most recent estimate of per-second RED-dropped packets at the output queue on the given interface
68 - family: Interfaces/COS/RED/Packet/Dropped/Total
69 - unit: "{packet}/s"
76 + chart_meta:
77 + description: The most recent estimate of per-second RED-dropped packets at the output queue on the given interface
78 + family: Interfaces/COS/RED/Packet/Dropped/Total
79 + unit: "{packet}/s"
80
81 # Low PLP
82 - OID: 1.3.6.1.4.1.2636.3.15.10.1.33
83 name: jnxCosIfsetQstatLpRedDropPkts
74 - description: The total number of low PLP packets RED-dropped at the output on the given interface
75 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
76 - unit: "{packet}"
84 + chart_meta:
85 + description: The total number of low PLP packets RED-dropped at the output on the given interface
86 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
87 + unit: "{packet}"
88 - OID: 1.3.6.1.4.1.2636.3.15.10.1.34
89 name: jnxCosIfsetQstatLpRedDropPktRate
79 - description: The rate at which low PLP packets were RED-dropped at the output
80 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
81 - unit: "{packet}/s"
90 + chart_meta:
91 + description: The rate at which low PLP packets were RED-dropped at the output
92 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
93 + unit: "{packet}/s"
94 - OID: 1.3.6.1.4.1.2636.3.15.10.1.15
95 name: jnxCosIfsetQstatLpNonTcpRedDropPkts
84 - description: The total number of low PLP non TCP packets RED-dropped
85 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
86 - unit: "{packet}"
96 + chart_meta:
97 + description: The total number of low PLP non TCP packets RED-dropped
98 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
99 + unit: "{packet}"
100 - OID: 1.3.6.1.4.1.2636.3.15.10.1.16
101 name: jnxCosIfsetQstatLpNonTcpRDropPktRate
89 - description: The rate at which low PLP non TCP packets were RED-dropped
90 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
91 - unit: "{packet}/s"
102 + chart_meta:
103 + description: The rate at which low PLP non TCP packets were RED-dropped
104 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
105 + unit: "{packet}/s"
106 - OID: 1.3.6.1.4.1.2636.3.15.10.1.17
107 name: jnxCosIfsetQstatLpTcpRedDropPkts
94 - description: The total number of low PLP TCP packets RED-dropped at the output on the given interface
95 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
96 - unit: "{packet}"
108 + chart_meta:
109 + description: The total number of low PLP TCP packets RED-dropped at the output on the given interface
110 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
111 + unit: "{packet}"
112 - OID: 1.3.6.1.4.1.2636.3.15.10.1.18
113 name: jnxCosIfsetQstatLpTcpRedDropPktRate
99 - description: The rate at which low PLP TCP packets were RED-dropped at the output on the given interface
100 - family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
101 - unit: "{packet}/s"
114 + chart_meta:
115 + description: The rate at which low PLP TCP packets were RED-dropped at the output on the given interface
116 + family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
117 + unit: "{packet}/s"
118
119 # Medium-Low PLP
120 - OID: 1.3.6.1.4.1.2636.3.15.10.1.35
121 name: jnxCosIfsetQstatMLpRedDropPkts
106 - description: The total number of medium-low PLP packets RED-dropped at the output on the given interface
107 - family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
108 - unit: "{packet}"
122 + chart_meta:
123 + description: The total number of medium-low PLP packets RED-dropped at the output on the given interface
124 + family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
125 + unit: "{packet}"
126 - OID: 1.3.6.1.4.1.2636.3.15.10.1.36
127 name: jnxCosIfsetQstatMLpRedDropPktRate
111 - description: The rate at which medium-low PLP packets were RED-dropped at the output
112 - family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
113 - unit: "{packet}/s"
128 + chart_meta:
129 + description: The rate at which medium-low PLP packets were RED-dropped at the output
130 + family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
131 + unit: "{packet}/s"
132
133 # Medium-High PLP
134 - OID: 1.3.6.1.4.1.2636.3.15.10.1.37
135 name: jnxCosIfsetQstatMHpRedDropPkts
118 - description: The total number of medium-high PLP packets RED-dropped at the output on the given interface
119 - family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
120 - unit: "{packet}"
136 + chart_meta:
137 + description: The total number of medium-high PLP packets RED-dropped at the output on the given interface
138 + family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
139 + unit: "{packet}"
140 - OID: 1.3.6.1.4.1.2636.3.15.10.1.38
141 name: jnxCosIfsetQstatMHpRedDropPktRate
123 - description: The rate at which medium-high PLP packets were RED-dropped at the output
124 - family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
125 - unit: "{packet}/s"
142 + chart_meta:
143 + description: The rate at which medium-high PLP packets were RED-dropped at the output
144 + family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
145 + unit: "{packet}/s"
146
147 # High PLP
148 - OID: 1.3.6.1.4.1.2636.3.15.10.1.39
149 name: jnxCosIfsetQstatHpRedDropPkts
130 - description: The total number of high PLP packets RED-dropped at the output on the given interface
131 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
132 - unit: "{packet}"
150 + chart_meta:
151 + description: The total number of high PLP packets RED-dropped at the output on the given interface
152 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
153 + unit: "{packet}"
154 - OID: 1.3.6.1.4.1.2636.3.15.10.1.40
155 name: jnxCosIfsetQstatHpRedDropPktRate
135 - description: The rate at which high PLP packets were RED-dropped at the output
136 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
137 - unit: "{packet}/s"
156 + chart_meta:
157 + description: The rate at which high PLP packets were RED-dropped at the output
158 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
159 + unit: "{packet}/s"
160 - OID: 1.3.6.1.4.1.2636.3.15.10.1.19
161 name: jnxCosIfsetQstatHpNonTcpRedDropPkts
140 - description: The total number of high PLP non TCP packets RED-dropped at the output on the given interface
141 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
142 - unit: "{packet}"
162 + chart_meta:
163 + description: The total number of high PLP non TCP packets RED-dropped at the output on the given interface
164 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
165 + unit: "{packet}"
166 - OID: 1.3.6.1.4.1.2636.3.15.10.1.20
167 name: jnxCosIfsetQstatHpNonTcpRDropPktRate
145 - description: The rate at which high PLP non TCP packets were RED-dropped at the output on the given interface
146 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
147 - unit: "{packet}/s"
168 + chart_meta:
169 + description: The rate at which high PLP non TCP packets were RED-dropped at the output on the given interface
170 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
171 + unit: "{packet}/s"
172 - OID: 1.3.6.1.4.1.2636.3.15.10.1.21
173 name: jnxCosIfsetQstatHpTcpRedDropPkts
150 - description: The total number of high PLP TCP packets RED-dropped at the output on the given interface
151 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
152 - unit: "{packet}"
174 + chart_meta:
175 + description: The total number of high PLP TCP packets RED-dropped at the output on the given interface
176 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
177 + unit: "{packet}"
178 - OID: 1.3.6.1.4.1.2636.3.15.10.1.22
179 name: jnxCosIfsetQstatHpTcpRedDropPktRate
155 - description: The rate at which high PLP TCP packets were RED-dropped at the output
156 - family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
157 - unit: "{packet}/s"
180 + chart_meta:
181 + description: The rate at which high PLP TCP packets were RED-dropped at the output
182 + family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
183 + unit: "{packet}/s"
184
185 # Queue Traffic
186 # Queued
187 - OID: 1.3.6.1.4.1.2636.3.15.10.1.5
188 name: jnxCosIfsetQstatQedBytes
163 - description: Number of bytes queued at the output queue
164 - family: Interfaces/COS/Queue/Traffic/Queued
165 - unit: "By"
189 + chart_meta:
190 + description: Number of bytes queued at the output queue
191 + family: Interfaces/COS/Queue/Traffic/Queued
192 + unit: "By"
193 - OID: 1.3.6.1.4.1.2636.3.15.10.1.6
194 name: jnxCosIfsetQstatQedByteRate
168 - description: The rate at which bytes were queued at the output queue
169 - family: Interfaces/COS/Queue/Traffic/Queued
170 - unit: "By/s"
195 + chart_meta:
196 + description: The rate at which bytes were queued at the output queue
197 + family: Interfaces/COS/Queue/Traffic/Queued
198 + unit: "By/s"
199 # Transmitted
200 - OID: 1.3.6.1.4.1.2636.3.15.10.1.9
201 name: jnxCosIfsetQstatTxedBytes
174 - description: Number of bytes transmitted on the queue
175 - family: Interfaces/COS/Queue/Traffic/Transmitted
176 - unit: "By"
202 + chart_meta:
203 + description: Number of bytes transmitted on the queue
204 + family: Interfaces/COS/Queue/Traffic/Transmitted
205 + unit: "By"
206 - OID: 1.3.6.1.4.1.2636.3.15.10.1.10
207 name: jnxCosIfsetQstatTxedByteRate
179 - description: The queue's current transmit rate in bytes per second
180 - family: Interfaces/COS/Queue/Traffic/Transmitted
181 - unit: "By/s"
208 + chart_meta:
209 + description: The queue's current transmit rate in bytes per second
210 + family: Interfaces/COS/Queue/Traffic/Transmitted
211 + unit: "By/s"
212
213 # Rate Limit Traffic
214 - OID: 1.3.6.1.4.1.2636.3.15.10.1.51
215 name: jnxCosIfsetQstatRateLimitDropBytes
186 - description: The total number of rate-limit dropped bytes at the output on the given interface
187 - family: Interfaces/COS/RateLimit/Traffic/Dropped
188 - unit: "By"
216 + chart_meta:
217 + description: The total number of rate-limit dropped bytes at the output on the given interface
218 + family: Interfaces/COS/RateLimit/Traffic/Dropped
219 + unit: "By"
220 - OID: 1.3.6.1.4.1.2636.3.15.10.1.52
221 name: jnxCosIfsetQstatRateLimitDropByteRate
191 - description: The rate at which bytes are rate-limit dropped at the output on the given interface
192 - family: Interfaces/COS/RateLimit/Traffic/Dropped
193 - unit: "By/s"
222 + chart_meta:
223 + description: The rate at which bytes are rate-limit dropped at the output on the given interface
224 + family: Interfaces/COS/RateLimit/Traffic/Dropped
225 + unit: "By/s"
226
227 # RED Dropped Traffic
228 # Total
229 - OID: 1.3.6.1.4.1.2636.3.15.10.1.23
230 name: jnxCosIfsetQstatTotalRedDropBytes
199 - description: The total number of bytes RED-dropped at the output on the given interface
200 - family: Interfaces/COS/RED/Traffic/Dropped/Total
201 - unit: "By"
231 + chart_meta:
232 + description: The total number of bytes RED-dropped at the output on the given interface
233 + family: Interfaces/COS/RED/Traffic/Dropped/Total
234 + unit: "By"
235 - OID: 1.3.6.1.4.1.2636.3.15.10.1.24
236 name: jnxCosIfsetQstatTotalRedDropByteRate
204 - description: The rate at which bytes were RED-dropped at the output on the given interface
205 - family: Interfaces/COS/RED/Traffic/Dropped/Total
206 - unit: "By/s"
237 + chart_meta:
238 + description: The rate at which bytes were RED-dropped at the output on the given interface
239 + family: Interfaces/COS/RED/Traffic/Dropped/Total
240 + unit: "By/s"
241
242 # Low PLP Traffic
243 - OID: 1.3.6.1.4.1.2636.3.15.10.1.41
244 name: jnxCosIfsetQstatLpRedDropBytes
211 - description: The total number of low PLP bytes RED-dropped at the output queue on the given interface
212 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
213 - unit: "By"
245 + chart_meta:
246 + description: The total number of low PLP bytes RED-dropped at the output queue on the given interface
247 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
248 + unit: "By"
249 - OID: 1.3.6.1.4.1.2636.3.15.10.1.42
250 name: jnxCosIfsetQstatLpRedDropByteRate
216 - description: The rate at which low PLP bytes were RED-dropped at the output on the given interface
217 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
218 - unit: "By/s"
251 + chart_meta:
252 + description: The rate at which low PLP bytes were RED-dropped at the output on the given interface
253 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
254 + unit: "By/s"
255 - OID: 1.3.6.1.4.1.2636.3.15.10.1.25
256 name: jnxCosIfsetQstatLpNonTcpRedDropBytes
221 - description: The total number of low PLP non TCP bytes RED-dropped at the output on the given interface
222 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
223 - unit: "By"
257 + chart_meta:
258 + description: The total number of low PLP non TCP bytes RED-dropped at the output on the given interface
259 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
260 + unit: "By"
261 - OID: 1.3.6.1.4.1.2636.3.15.10.1.26
262 name: jnxCosIfsetQstatLpNonTcpRDropByteRate
226 - description: The rate at which low PLP non TCP bytes were RED-dropped at the output on the given interface
227 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
228 - unit: "By/s"
263 + chart_meta:
264 + description: The rate at which low PLP non TCP bytes were RED-dropped at the output on the given interface
265 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
266 + unit: "By/s"
267 - OID: 1.3.6.1.4.1.2636.3.15.10.1.27
268 name: jnxCosIfsetQstatLpTcpRedDropBytes
231 - description: The total number of low PLP TCP bytes RED-dropped at the output on the given interface
232 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
233 - unit: "By"
269 + chart_meta:
270 + description: The total number of low PLP TCP bytes RED-dropped at the output on the given interface
271 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
272 + unit: "By"
273 - OID: 1.3.6.1.4.1.2636.3.15.10.1.28
274 name: jnxCosIfsetQstatLpTcpRedDropByteRate
236 - description: The rate at which low PLP TCP bytes were RED-dropped at the output on the given interface
237 - family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
238 - unit: "By/s"
275 + chart_meta:
276 + description: The rate at which low PLP TCP bytes were RED-dropped at the output on the given interface
277 + family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
278 + unit: "By/s"
279
280 # Medium-Low PLP Traffic
281 - OID: 1.3.6.1.4.1.2636.3.15.10.1.43
282 name: jnxCosIfsetQstatMLpRedDropBytes
243 - description: The total number of medium-low PLP bytes RED-dropped at the output queue on the given interface
244 - family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
245 - unit: "By"
283 + chart_meta:
284 + description: The total number of medium-low PLP bytes RED-dropped at the output queue on the given interface
285 + family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
286 + unit: "By"
287 - OID: 1.3.6.1.4.1.2636.3.15.10.1.44
288 name: jnxCosIfsetQstatMLpRedDropByteRate
248 - description: The rate at which medium-low PLP bytes were RED-dropped at the output on the given interface
249 - family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
250 - unit: "By/s"
289 + chart_meta:
290 + description: The rate at which medium-low PLP bytes were RED-dropped at the output on the given interface
291 + family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
292 + unit: "By/s"
293
294 # Medium-High PLP Traffic
295 - OID: 1.3.6.1.4.1.2636.3.15.10.1.45
296 name: jnxCosIfsetQstatMHpRedDropBytes
255 - description: The total number of medium-high PLP bytes RED-dropped at the output queue on the given interface
256 - family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
257 - unit: "By"
297 + chart_meta:
298 + description: The total number of medium-high PLP bytes RED-dropped at the output queue on the given interface
299 + family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
300 + unit: "By"
301 - OID: 1.3.6.1.4.1.2636.3.15.10.1.46
302 name: jnxCosIfsetQstatMHpRedDropByteRate
260 - description: The rate at which medium-high PLP bytes were RED-dropped at the output on the given interface
261 - family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
262 - unit: "By/s"
303 + chart_meta:
304 + description: The rate at which medium-high PLP bytes were RED-dropped at the output on the given interface
305 + family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
306 + unit: "By/s"
307
308 # High PLP Traffic
309 - OID: 1.3.6.1.4.1.2636.3.15.10.1.47
310 name: jnxCosIfsetQstatHpRedDropBytes
267 - description: The total number of high PLP bytes RED-dropped at the output queue on the given interface
268 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
269 - unit: "By"
311 + chart_meta:
312 + description: The total number of high PLP bytes RED-dropped at the output queue on the given interface
313 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
314 + unit: "By"
315 - OID: 1.3.6.1.4.1.2636.3.15.10.1.48
316 name: jnxCosIfsetQstatHpRedDropByteRate
272 - description: The rate at which high PLP bytes were RED-dropped at the output on the given interface
273 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
274 - unit: "By/s"
317 + chart_meta:
318 + description: The rate at which high PLP bytes were RED-dropped at the output on the given interface
319 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
320 + unit: "By/s"
321 - OID: 1.3.6.1.4.1.2636.3.15.10.1.29
322 name: jnxCosIfsetQstatHpNonTcpRedDropBytes
277 - description: The total number of high PLP non TCP bytes RED-dropped at the output on the given interface
278 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
279 - unit: "By"
323 + chart_meta:
324 + description: The total number of high PLP non TCP bytes RED-dropped at the output on the given interface
325 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
326 + unit: "By"
327 - OID: 1.3.6.1.4.1.2636.3.15.10.1.30
328 name: jnxCosIfsetQstatHpNonTcpRDropByteRate
282 - description: The rate at which high PLP non TCP bytes were RED-dropped at the output queue on the given interface
283 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
284 - unit: "By/s"
329 + chart_meta:
330 + description: The rate at which high PLP non TCP bytes were RED-dropped at the output queue on the given interface
331 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
332 + unit: "By/s"
333 - OID: 1.3.6.1.4.1.2636.3.15.10.1.31
334 name: jnxCosIfsetQstatHpTcpRedDropBytes
287 - description: The total number of high PLP TCP bytes RED-dropped at the output queue on the given interface
288 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
289 - unit: "By"
335 + chart_meta:
336 + description: The total number of high PLP TCP bytes RED-dropped at the output queue on the given interface
337 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
338 + unit: "By"
339 - OID: 1.3.6.1.4.1.2636.3.15.10.1.32
340 name: jnxCosIfsetQstatHpTcpRedDropByteRate
292 - description: The rate at which high PLP TCP bytes were RED-dropped at the output on the given interface
293 - family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
294 - unit: "By/s"
341 + chart_meta:
342 + description: The rate at which high PLP TCP bytes were RED-dropped at the output on the given interface
343 + family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
344 + unit: "By/s"
345 metric_tags:
346 - symbol:
347 OID: 1.3.6.1.4.1.2636.3.15.9.1.2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-dcu.yaml
+8 -6
@@ -9,14 +9,16 @@ metrics:
9 symbols:
10 - OID: 1.3.6.1.4.1.2636.3.6.2.1.4
11 name: jnxDcuStatsPackets
12 - description: The number of packets received on this interface, belonging to this address family that match this Destination Class
13 - family: Interfaces/DCU/Packet/In
14 - unit: "{packet}"
12 + chart_meta:
13 + description: The number of packets received on this interface, belonging to this address family that match this Destination Class
14 + family: Interfaces/DCU/Packet/In
15 + unit: "{packet}"
16 - OID: 1.3.6.1.4.1.2636.3.6.2.1.5
17 name: jnxDcuStatsBytes
17 - description: The number of bytes received on this interface, belonging to this address family that match this Destination Class
18 - family: Interfaces/DCU/Traffic/In
19 - unit: "By"
18 + chart_meta:
19 + description: The number of bytes received on this interface, belonging to this address family that match this Destination Class
20 + family: Interfaces/DCU/Traffic/In
21 + unit: "By"
22 metric_tags:
23 - symbol:
24 OID: 1.3.6.1.2.1.31.1.1.1.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-firewall.yaml
+8 -6
@@ -9,14 +9,16 @@ metrics:
9 symbols:
10 - OID: 1.3.6.1.4.1.2636.3.5.2.1.4
11 name: jnxFWCounterPacketCount
12 - description: The number of packets being counted pertaining to the specified counter or policer
13 - family: Juniper/Firewall/Filters/Packets
14 - unit: "{packet}"
12 + chart_meta:
13 + description: The number of packets being counted pertaining to the specified counter or policer
14 + family: Juniper/Firewall/Filters/Packets
15 + unit: "{packet}"
16 - OID: 1.3.6.1.4.1.2636.3.5.2.1.5
17 name: jnxFWCounterByteCount
17 - description: The number of bytes being counted pertaining to the specified counter. For policers, this field is always zero because policers do not count number of bytes
18 - family: Juniper/Firewall/Filters/Traffic
19 - unit: "By"
18 + chart_meta:
19 + description: The number of bytes being counted pertaining to the specified counter. For policers, this field is always zero because policers do not count number of bytes
20 + family: Juniper/Firewall/Filters/Traffic
21 + unit: "By"
22 metric_tags:
23 - symbol:
24 OID: 1.3.6.1.4.1.2636.3.5.2.1.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-scu.yaml
+8 -6
@@ -9,14 +9,16 @@ metrics:
9 symbols:
10 - OID: 1.3.6.1.4.1.2636.3.16.1.1.1.4
11 name: jnxScuStatsPackets
12 - description: Number of packets sent out of destination interface that match the source class and address family
13 - family: Interfaces/SCU/Packet/Out
14 - unit: "{packet}"
12 + chart_meta:
13 + description: Number of packets sent out of destination interface that match the source class and address family
14 + family: Interfaces/SCU/Packet/Out
15 + unit: "{packet}"
16 - OID: 1.3.6.1.4.1.2636.3.16.1.1.1.5
17 name: jnxScuStatsBytes
17 - description: Number of bytes sent out of destination interface that match the source class and address family
18 - family: Interfaces/SCU/Traffic/Out
19 - unit: "By"
18 + chart_meta:
19 + description: Number of bytes sent out of destination interface that match the source class and address family
20 + family: Interfaces/SCU/Traffic/Out
21 + unit: "By"
22 metric_tags:
23 - symbol:
24 OID: 1.3.6.1.2.1.31.1.1.1.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-userfirewall.yaml
+8 -6
@@ -7,14 +7,16 @@ metrics:
7 symbols:
8 - OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.3
9 name: jnxUserFwLDAPTotalQuery
10 - description: Total LDAP query number
11 - family: Juniper/LDAP/Queries/Total
12 - unit: "{query}"
10 + chart_meta:
11 + description: Total LDAP query number
12 + family: Juniper/LDAP/Queries/Total
13 + unit: "{query}"
14 - OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.4
15 name: jnxUserFwLDAPFailedQuery
15 - description: LDAP failed query number
16 - family: Juniper/LDAP/Queries/Failed
17 - unit: "{fail}"
16 + chart_meta:
17 + description: LDAP failed query number
18 + family: Juniper/LDAP/Queries/Failed
19 + unit: "{fail}"
20 metric_tags:
21 - symbol:
22 OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-virtualchassis.yaml
+56 -42
@@ -12,74 +12,88 @@ metrics:
12 symbols:
13 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5
14 name: jnxVirtualChassisPortInPkts
15 - description: Total number of packets received on the virtual-chassis port
16 - family: VirtualChassis/Port/Packet/Total/In
17 - unit: "{packet}"
15 + chart_meta:
16 + description: Total number of packets received on the virtual-chassis port
17 + family: VirtualChassis/Port/Packet/Total/In
18 + unit: "{packet}"
19 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11
20 name: jnxVirtualChassisPortInPkts1secRate
20 - description: Total number of packets received per second on the virtual-chassis port
21 - family: VirtualChassis/Port/Packet/Total/In
22 - unit: "{packet}/s"
21 + chart_meta:
22 + description: Total number of packets received per second on the virtual-chassis port
23 + family: VirtualChassis/Port/Packet/Total/In
24 + unit: "{packet}/s"
25 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6
26 name: jnxVirtualChassisPortOutPkts
25 - description: Total number of packets sent from the virtual-chassis port
26 - family: VirtualChassis/Port/Packet/Total/Out
27 - unit: "{packet}"
27 + chart_meta:
28 + description: Total number of packets sent from the virtual-chassis port
29 + family: VirtualChassis/Port/Packet/Total/Out
30 + unit: "{packet}"
31 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12
32 name: jnxVirtualChassisPortOutPkts1secRate
30 - description: Total number of packets sent per second from the virtual-chassis port
31 - family: VirtualChassis/Port/Packet/Total/Out
32 - unit: "{packet}/s"
33 + chart_meta:
34 + description: Total number of packets sent per second from the virtual-chassis port
35 + family: VirtualChassis/Port/Packet/Total/Out
36 + unit: "{packet}/s"
37 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7
38 name: jnxVirtualChassisPortInOctets
35 - description: Total number of octets received on the virtual-chassis port
36 - family: VirtualChassis/Port/Traffic/Total/In
37 - unit: "By"
39 + chart_meta:
40 + description: Total number of octets received on the virtual-chassis port
41 + family: VirtualChassis/Port/Traffic/Total/In
42 + unit: "By"
43 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13
44 name: jnxVirtualChassisPortInOctets1secRate
40 - description: Total number of octets received per second on the virtual-chassis port
41 - family: VirtualChassis/Port/Traffic/Total/In
42 - unit: "By/s"
45 + chart_meta:
46 + description: Total number of octets received per second on the virtual-chassis port
47 + family: VirtualChassis/Port/Traffic/Total/In
48 + unit: "By/s"
49 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8
50 name: jnxVirtualChassisPortOutOctets
45 - description: Total number of octets sent on the virtual-chassis port
46 - family: VirtualChassis/Port/Traffic/Total/Out
47 - unit: "By"
51 + chart_meta:
52 + description: Total number of octets sent on the virtual-chassis port
53 + family: VirtualChassis/Port/Traffic/Total/Out
54 + unit: "By"
55 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14
56 name: jnxVirtualChassisPortOutOctets1secRate
50 - description: Total number of octets sent per second on the virtual-chassis port
51 - family: VirtualChassis/Port/Traffic/Total/Out
52 - unit: "By/s"
57 + chart_meta:
58 + description: Total number of octets sent per second on the virtual-chassis port
59 + family: VirtualChassis/Port/Traffic/Total/Out
60 + unit: "By/s"
61 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9
62 name: jnxVirtualChassisPortInMcasts
55 - description: Total number of multicast packets received on the virtual-chassis port
56 - family: VirtualChassis/Port/Packet/Multicast/In
57 - unit: "{packet}"
63 + chart_meta:
64 + description: Total number of multicast packets received on the virtual-chassis port
65 + family: VirtualChassis/Port/Packet/Multicast/In
66 + unit: "{packet}"
67 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10
68 name: jnxVirtualChassisPortOutMcasts
60 - description: Total number of multicast packets sent from the virtual-chassis port
61 - family: VirtualChassis/Port/Packet/Multicast/Out
62 - unit: "{packet}"
69 + chart_meta:
70 + description: Total number of multicast packets sent from the virtual-chassis port
71 + family: VirtualChassis/Port/Packet/Multicast/Out
72 + unit: "{packet}"
73 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15
74 name: jnxVirtualChassisPortCarrierTrans
65 - description: Total number of Carrier errors on the virtual-chassis port
66 - family: VirtualChassis/Port/Error/CarrierTransition/Count
67 - unit: "{error}"
75 + chart_meta:
76 + description: Total number of Carrier errors on the virtual-chassis port
77 + family: VirtualChassis/Port/Error/CarrierTransition/Count
78 + unit: "{error}"
79 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16
80 name: jnxVirtualChassisPortInCRCAlignErrors
70 - description: Total number of Input CRC Alignment errors on the virtual-chassis port
71 - family: VirtualChassis/Port/Error/CRCAlign/In
72 - unit: "{error}"
81 + chart_meta:
82 + description: Total number of Input CRC Alignment errors on the virtual-chassis port
83 + family: VirtualChassis/Port/Error/CRCAlign/In
84 + unit: "{error}"
85 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17
86 name: jnxVirtualChassisPortUndersizePkts
75 - description: Total number of Undersize Packets on the virtual-chassis port
76 - family: VirtualChassis/Port/Packet/Undersize/Count
77 - unit: "{packet}"
87 + chart_meta:
88 + description: Total number of Undersize Packets on the virtual-chassis port
89 + family: VirtualChassis/Port/Packet/Undersize/Count
90 + unit: "{packet}"
91 - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18
92 name: jnxVirtualChassisPortCollisions
80 - description: Total number of Collisions on the virtual-chassis port
81 - family: VirtualChassis/Port/Error/Collision/Count
82 - unit: "{collision}"
93 + chart_meta:
94 + description: Total number of Collisions on the virtual-chassis port
95 + family: VirtualChassis/Port/Error/Collision/Count
96 + unit: "{collision}"
97 metric_tags:
98 - symbol:
99 OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/a10-thunder.yaml
+244 -180
@@ -14,251 +14,290 @@ metrics:
14 symbol:
15 name: axSysMemoryTotal
16 OID: 1.3.6.1.4.1.22610.2.4.1.2.1.0
17 - description: The total memory
18 - family: Memory/Total
17 + chart_meta:
18 + description: The total memory
19 + family: Memory/Total
20 + unit: "By"
21 scale_factor: 1024
20 - unit: "By"
22 +
23 - MIB: A10-AX-MIB
24 symbol:
25 name: axSysMemoryUsage
26 OID: 1.3.6.1.4.1.22610.2.4.1.2.2.0
25 - description: The usage memory
26 - family: Memory/Used
27 + chart_meta:
28 + description: The usage memory
29 + family: Memory/Used
30 + unit: "By"
31 scale_factor: 1024
28 - unit: "By"
32 +
33 - MIB: A10-AX-MIB
34 symbol:
35 name: axSysAverageCpuUsage
36 OID: 1.3.6.1.4.1.22610.2.4.1.3.3.0
33 - description: The average CPU usage in last 5 seconds
34 - family: CPU/Usage
35 - unit: "%"
37 + chart_meta:
38 + description: The average CPU usage in last 5 seconds
39 + family: CPU/Usage
40 + unit: "%"
41 - MIB: A10-AX-MIB
42 symbol:
43 name: axSysDiskTotalSpace
44 OID: 1.3.6.1.4.1.22610.2.4.1.4.1.0
40 - description: The total space of the disk
41 - family: Disk/Total
45 + chart_meta:
46 + description: The total space of the disk
47 + family: Disk/Total
48 + unit: "By"
49 scale_factor: 1048576
43 - unit: "By"
50 +
51 - MIB: A10-AX-MIB
52 symbol:
53 name: axSysDiskFreeSpace
54 OID: 1.3.6.1.4.1.22610.2.4.1.4.2.0
48 - description: The free space of the disk
49 - family: Disk/Free
55 + chart_meta:
56 + description: The free space of the disk
57 + family: Disk/Free
58 + unit: "By"
59 scale_factor: 1048576
51 - unit: "By"
60 +
61 - MIB: A10-AX-MIB
62 symbol:
63 name: axSysHwPhySystemTemp
64 OID: 1.3.6.1.4.1.22610.2.4.1.5.1.0
56 - description: The physical system temperature in Celsius
57 - family: Env/Temperature/Value
58 - unit: "Cel"
65 + chart_meta:
66 + description: The physical system temperature in Celsius
67 + family: Env/Temperature/Value
68 + unit: "Cel"
69 - MIB: A10-AX-MIB
70 symbol:
71 name: axAppGlobalTotalCurrentConnections
72 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.1.0
63 - description: Total current connections
64 - family: Application/Connection/Current/Total
65 - unit: "{connection}"
73 + chart_meta:
74 + description: Total current connections
75 + family: Application/Connection/Current/Total
76 + unit: "{connection}"
77 - MIB: A10-AX-MIB
78 symbol:
79 name: axAppGlobalTotalNewConnections
80 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.2.0
70 - description: Total new connections
71 - family: Application/Connection/New/Total
72 - unit: "{connection}/s"
81 + chart_meta:
82 + description: Total new connections
83 + family: Application/Connection/New/Total
84 + unit: "{connection}/s"
85 - MIB: A10-AX-MIB
86 symbol:
87 name: axAppGlobalTotalNewL4Connections
88 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.3.0
77 - description: Total new L4 connections
78 - family: Application/Connection/New/L4
79 - unit: "{connection}/s"
89 + chart_meta:
90 + description: Total new L4 connections
91 + family: Application/Connection/New/L4
92 + unit: "{connection}/s"
93 - MIB: A10-AX-MIB
94 symbol:
95 name: axAppGlobalTotalNewL7Connections
96 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.4.0
84 - description: Total new L7 connections
85 - family: Application/Connection/New/L7
86 - unit: "{connection}/s"
97 + chart_meta:
98 + description: Total new L7 connections
99 + family: Application/Connection/New/L7
100 + unit: "{connection}/s"
101 - MIB: A10-AX-MIB
102 symbol:
103 name: axAppGlobalTotalNewIPNatConnections
104 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.5.0
91 - description: Total new IP-NAT connections
92 - family: Application/Connection/New/IPNAT
93 - unit: "{connection}/s"
105 + chart_meta:
106 + description: Total new IP-NAT connections
107 + family: Application/Connection/New/IPNAT
108 + unit: "{connection}/s"
109 - MIB: A10-AX-MIB
110 symbol:
111 name: axAppGlobalTotalSSLConnections
112 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.6.0
98 - description: Total new SSL connections
99 - family: Application/Connection/New/SSL
100 - unit: "{connection}/s"
113 + chart_meta:
114 + description: Total new SSL connections
115 + family: Application/Connection/New/SSL
116 + unit: "{connection}/s"
117 - MIB: A10-AX-MIB
118 symbol:
119 name: axAppGlobalTotalL7Requests
120 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.7.0
105 - description: Total L7 requests
106 - family: Application/Request/L7/Total
107 - unit: "{request}/s"
121 + chart_meta:
122 + description: Total L7 requests
123 + family: Application/Request/L7/Total
124 + unit: "{request}/s"
125 - MIB: A10-AX-MIB
126 symbol:
127 name: axGlobalAppPacketDrop
128 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.8.0
112 - description: Total number of buffer drops in the last 10 seconds
113 - family: Application/Packet/Dropped/Buffer
114 - unit: "{packet}"
129 + chart_meta:
130 + description: Total number of buffer drops in the last 10 seconds
131 + family: Application/Packet/Dropped/Buffer
132 + unit: "{packet}"
133 - MIB: A10-AX-MIB
134 symbol:
135 name: axGlobalTotalAppPacketDrop
136 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.9.0
119 - description: Total number of accumulative buffer drops
120 - family: Application/Packet/Dropped/BufferTotal
121 - unit: "{packet}/s"
137 + chart_meta:
138 + description: Total number of accumulative buffer drops
139 + family: Application/Packet/Dropped/BufferTotal
140 + unit: "{packet}/s"
141 - MIB: A10-AX-MIB
142 symbol:
143 name: axGlobalTotalL4Session
144 OID: 1.3.6.1.4.1.22610.2.4.3.1.2.10.0
126 - description: Total number of L4 sessions
127 - family: Session/L4/Total
128 - unit: "{session}"
145 + chart_meta:
146 + description: Total number of L4 sessions
147 + family: Session/L4/Total
148 + unit: "{session}"
149 - MIB: A10-AX-MIB
150 symbol:
151 name: axAppGlobalBufferConfigLimit
152 OID: 1.3.6.1.4.1.22610.2.4.3.1.3.1.0
133 - description: Application buffer configured limit
134 - family: Application/Buffer/Limit
135 - unit: "1"
153 + chart_meta:
154 + description: Application buffer configured limit
155 + family: Application/Buffer/Limit
156 + unit: "1"
157 - MIB: A10-AX-MIB
158 symbol:
159 name: axAppGlobalBufferCurrentUsage
160 OID: 1.3.6.1.4.1.22610.2.4.3.1.3.2.0
140 - description: Application buffer current usage
141 - family: Application/Buffer/Used
142 - unit: "1"
161 + chart_meta:
162 + description: Application buffer current usage
163 + family: Application/Buffer/Used
164 + unit: "1"
165 - MIB: A10-AX-MIB
166 symbol:
167 name: axConnReuseStatTotalOpenPersist
168 OID: 1.3.6.1.4.1.22610.2.4.3.5.1.0
147 - description: The total count of open persistent connection-reuse sessions
148 - family: Session/ConnectionReuse/Open
149 - unit: "{session}"
169 + chart_meta:
170 + description: The total count of open persistent connection-reuse sessions
171 + family: Session/ConnectionReuse/Open
172 + unit: "{session}"
173 - MIB: A10-AX-MIB
174 symbol:
175 name: axConnReuseStatTotalActivePersist
176 OID: 1.3.6.1.4.1.22610.2.4.3.5.2.0
154 - description: The total count of active persistent connection-reuse sessions
155 - family: Session/ConnectionReuse/Active
156 - unit: "{session}"
177 + chart_meta:
178 + description: The total count of active persistent connection-reuse sessions
179 + family: Session/ConnectionReuse/Active
180 + unit: "{session}"
181 - MIB: A10-AX-MIB
182 symbol:
183 name: axConnReuseStatTotalEstablished
184 OID: 1.3.6.1.4.1.22610.2.4.3.5.3.0
161 - description: The total count of established connection-reuse sessions
162 - family: Session/ConnectionReuse/Established
163 - unit: "{session}"
185 + chart_meta:
186 + description: The total count of established connection-reuse sessions
187 + family: Session/ConnectionReuse/Established
188 + unit: "{session}"
189 - MIB: A10-AX-MIB
190 symbol:
191 name: axConnReuseStatTotalTerminated
192 OID: 1.3.6.1.4.1.22610.2.4.3.5.4.0
168 - description: The total count of terminated connection-reuse sessions
169 - family: Session/ConnectionReuse/Terminated
170 - unit: "{session}"
193 + chart_meta:
194 + description: The total count of terminated connection-reuse sessions
195 + family: Session/ConnectionReuse/Terminated
196 + unit: "{session}"
197 - MIB: A10-AX-MIB
198 symbol:
199 name: axSessionGlobalStatTCPEstablished
200 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.1.0
175 - description: The count of TCP established
176 - family: Connection/TCP/Established
177 - unit: "{connection}"
201 + chart_meta:
202 + description: The count of TCP established
203 + family: Connection/TCP/Established
204 + unit: "{connection}"
205 - MIB: A10-AX-MIB
206 symbol:
207 name: axSessionGlobalStatTCPHalfOpen
208 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.2.0
182 - description: The count of TCP half open
183 - family: Connection/TCP/HalfOpen
184 - unit: "{connection}"
209 + chart_meta:
210 + description: The count of TCP half open
211 + family: Connection/TCP/HalfOpen
212 + unit: "{connection}"
213 - MIB: A10-AX-MIB
214 symbol:
215 name: axSessionGlobalStatUDP
216 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.3.0
189 - description: The count of UDP connections
190 - family: Connection/UDP/Active
191 - unit: "{connection}"
217 + chart_meta:
218 + description: The count of UDP connections
219 + family: Connection/UDP/Active
220 + unit: "{connection}"
221 - MIB: A10-AX-MIB
222 symbol:
223 name: axSessionGlobalStatNonTcpUdpIPSession
224 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.4.0
196 - description: The count of non TCP/UDP IP sessions
197 - family: Session/IP/Other
198 - unit: "{session}"
225 + chart_meta:
226 + description: The count of non TCP/UDP IP sessions
227 + family: Session/IP/Other
228 + unit: "{session}"
229 - MIB: A10-AX-MIB
230 symbol:
231 name: axSessionGlobalStatOther
232 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.5.0
203 - description: The count of others
204 - family: Session/Other/Active
205 - unit: "{session}"
233 + chart_meta:
234 + description: The count of others
235 + family: Session/Other/Active
236 + unit: "{session}"
237 - MIB: A10-AX-MIB
238 symbol:
239 name: axSessionGlobalStatReverseNATTCP
240 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.6.0
210 - description: The count of reverse NAT TCP
211 - family: Connection/ReverseNAT/TCP
212 - unit: "{connection}"
241 + chart_meta:
242 + description: The count of reverse NAT TCP
243 + family: Connection/ReverseNAT/TCP
244 + unit: "{connection}"
245 - MIB: A10-AX-MIB
246 symbol:
247 name: axSessionGlobalStatReverseNATUDP
248 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.7.0
217 - description: The count of reverse NAT UDP
218 - family: Connection/ReverseNAT/UDP
219 - unit: "{connection}"
249 + chart_meta:
250 + description: The count of reverse NAT UDP
251 + family: Connection/ReverseNAT/UDP
252 + unit: "{connection}"
253 - MIB: A10-AX-MIB
254 symbol:
255 name: axSessionGlobalStatFreeCurrentConns
256 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.9.0
224 - description: The count of free current connections
225 - family: Connection/Free
226 - unit: "{connection}"
257 + chart_meta:
258 + description: The count of free current connections
259 + family: Connection/Free
260 + unit: "{connection}"
261 - MIB: A10-AX-MIB
262 symbol:
263 name: axSessionGlobalStatConnCount
264 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.10.0
231 - description: The count of current connections
232 - family: Connection/Current
233 - unit: "{connection}"
265 + chart_meta:
266 + description: The count of current connections
267 + family: Connection/Current
268 + unit: "{connection}"
269 - MIB: A10-AX-MIB
270 symbol:
271 name: axSessionGlobalStatConnFree
272 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.11.0
238 - description: The count of freed connections
239 - family: Connection/Freed
240 - unit: "{connection}/s"
273 + chart_meta:
274 + description: The count of freed connections
275 + family: Connection/Freed
276 + unit: "{connection}/s"
277 - MIB: A10-AX-MIB
278 symbol:
279 name: axSessionGlobalStatTCPSynHalfOpen
280 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.12.0
245 - description: The count of TCP SYN half open
246 - family: Connection/TCP/SynHalfOpen
247 - unit: "{connection}"
281 + chart_meta:
282 + description: The count of TCP SYN half open
283 + family: Connection/TCP/SynHalfOpen
284 + unit: "{connection}"
285 - MIB: A10-AX-MIB
286 symbol:
287 name: axSessionGlobalStatConnSMPAllocated
288 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.13.0
252 - description: The count of allocated SMP connections
253 - family: Connection/SMP/Allocated
254 - unit: "{connection}"
289 + chart_meta:
290 + description: The count of allocated SMP connections
291 + family: Connection/SMP/Allocated
292 + unit: "{connection}"
293 - MIB: A10-AX-MIB
294 symbol:
295 name: axSessionGlobalStatConnSMPFree
296 OID: 1.3.6.1.4.1.22610.2.4.3.19.1.14.0
259 - description: The count of free SMP connections
260 - family: Connection/SMP/Free
261 - unit: "{connection}"
297 + chart_meta:
298 + description: The count of free SMP connections
299 + family: Connection/SMP/Free
300 + unit: "{connection}"
301 - MIB: A10-AX-MIB
302 table:
303 name: axSysFanStatusTable
@@ -266,14 +305,16 @@ metrics:
305 symbols:
306 - name: axFanSpeed
307 OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.4
269 - description: The fan's speed
270 - family: Fan/Speed
271 - unit: "{rotation}/min"
308 + chart_meta:
309 + description: The fan's speed
310 + family: Fan/Speed
311 + unit: "{rotation}/min"
312 - name: axFanStatus
313 OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.3
274 - description: Fan status
275 - family: Fan/Status
276 - unit: "{status}"
314 + chart_meta:
315 + description: Fan status
316 + family: Fan/Status
317 + unit: "{status}"
318 mapping:
319 0: failed
320 4: ok_fixed_high
@@ -295,9 +336,10 @@ metrics:
336 symbols:
337 - OID: 1.3.6.1.4.1.22610.2.4.1.5.11.1.2
338 name: axPowerSupplyVoltageStatus
298 - description: Power Supply voltage status
299 - family: PowerSupply/Voltage/Status
300 - unit: "{status}"
339 + chart_meta:
340 + description: Power Supply voltage status
341 + family: PowerSupply/Voltage/Status
342 + unit: "{status}"
343 mapping:
344 0: invalid
345 1: normal
@@ -315,9 +357,10 @@ metrics:
357 symbols:
358 - OID: 1.3.6.1.4.1.22610.2.4.1.5.12.1.3
359 name: axPowerSupplyStatus
318 - description: Power Supply status
319 - family: PowerSupply/Status
320 - unit: "{status}"
360 + chart_meta:
361 + description: Power Supply status
362 + family: PowerSupply/Status
363 + unit: "{status}"
364 mapping:
365 0: off
366 1: on
@@ -336,17 +379,19 @@ metrics:
379 symbols:
380 - OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.3
381 name: axServerEnabledState
339 - description: The enabled state for this server
340 - family: Server/Admin/Status
341 - unit: "{status}"
382 + chart_meta:
383 + description: The enabled state for this server
384 + family: Server/Admin/Status
385 + unit: "{status}"
386 mapping:
387 0: disabled
388 1: enabled
389 - OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.5
390 name: axServerMonitorState
347 - description: The server monitor status
348 - family: Server/Operational/Status
349 - unit: "{status}"
391 + chart_meta:
392 + description: The server monitor status
393 + family: Server/Operational/Status
394 + unit: "{status}"
395 mapping:
396 0: disabled
397 1: up
@@ -364,19 +409,22 @@ metrics:
409 symbols:
410 - name: axServerStatServerCurConns
411 OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.8
367 - description: The current connections from server side
368 - family: Server/Connection/Current
369 - unit: "{connection}"
412 + chart_meta:
413 + description: The current connections from server side
414 + family: Server/Connection/Current
415 + unit: "{connection}"
416 - name: axServerStatServerTotalCurrL7Reqs
417 OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.12
372 - description: The number of current L7 requests if applicable
373 - family: Server/Request/L7/Current
374 - unit: "{request}"
418 + chart_meta:
419 + description: The number of current L7 requests if applicable
420 + family: Server/Request/L7/Current
421 + unit: "{request}"
422 - OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.10
423 name: axServerStatServerStatus
377 - description: Server status
378 - family: Server/Operational/Status
379 - unit: "{status}"
424 + chart_meta:
425 + description: Server status
426 + family: Server/Operational/Status
427 + unit: "{status}"
428 mapping:
429 0: disabled
430 1: up
@@ -394,9 +442,10 @@ metrics:
442 symbols:
443 - OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.4
444 name: axServiceGroupDisplayStatus
397 - description: Service group status
398 - family: ServiceGroup/Status
399 - unit: "{status}"
445 + chart_meta:
446 + description: Service group status
447 + family: ServiceGroup/Status
448 + unit: "{status}"
449 mapping:
450 1: all_up
451 2: functional_up
@@ -437,9 +486,10 @@ metrics:
486 symbols:
487 - OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.5
488 name: axVirtualServerDisplayStatus
440 - description: Display status of the virtual server
441 - family: VirtualServer/Status
442 - unit: "{status}"
489 + chart_meta:
490 + description: Display status of the virtual server
491 + family: VirtualServer/Status
492 + unit: "{status}"
493 mapping:
494 0: disabled
495 1: all_up
@@ -470,59 +520,70 @@ metrics:
520 symbols:
521 - name: axVirtualServerStatPktsIn
522 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.3
473 - description: The number of packets received from client to server
474 - family: VirtualServer/Packet/In
475 - unit: "{packet}/s"
523 + chart_meta:
524 + description: The number of packets received from client to server
525 + family: VirtualServer/Packet/In
526 + unit: "{packet}/s"
527 - name: axVirtualServerStatBytesIn
528 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.4
478 - description: The number of bytes received from client to server
479 - family: VirtualServer/Traffic/In
480 - unit: "By/s"
529 + chart_meta:
530 + description: The number of bytes received from client to server
531 + family: VirtualServer/Traffic/In
532 + unit: "By/s"
533 - name: axVirtualServerStatPktsOut
534 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.5
483 - description: The number of packets sent from server to client
484 - family: VirtualServer/Packet/Out
485 - unit: "{packet}/s"
535 + chart_meta:
536 + description: The number of packets sent from server to client
537 + family: VirtualServer/Packet/Out
538 + unit: "{packet}/s"
539 - name: axVirtualServerStatBytesOut
540 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.6
488 - description: The number of bytes sent from server to client
489 - family: VirtualServer/Traffic/Out
490 - unit: "By/s"
541 + chart_meta:
542 + description: The number of bytes sent from server to client
543 + family: VirtualServer/Traffic/Out
544 + unit: "By/s"
545 - name: axVirtualServerStatPersistConns
546 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.7
493 - description: The persistent connections from client side
494 - family: VirtualServer/Connection/Persistent
495 - unit: "{connection}"
547 + chart_meta:
548 + description: The persistent connections from client side
549 + family: VirtualServer/Connection/Persistent
550 + unit: "{connection}"
551 - name: axVirtualServerStatTotConns
552 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.8
498 - description: The total connections from client side
499 - family: VirtualServer/Connection/Total
500 - unit: "{connection}/s"
553 + chart_meta:
554 + description: The total connections from client side
555 + family: VirtualServer/Connection/Total
556 + unit: "{connection}/s"
557 - name: axVirtualServerStatCurConns
558 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.9
503 - description: The current connections from client side
504 - family: VirtualServer/Connection/Current
505 - unit: "{connection}"
559 + chart_meta:
560 + description: The current connections from client side
561 + family: VirtualServer/Connection/Current
562 + unit: "{connection}"
563 - name: axVirtualServerStatTotalL7Reqs
564 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.12
508 - description: The total number of L7 requests if applicable
509 - family: VirtualServer/Request/L7/Total
510 - unit: "{request}/s"
565 + chart_meta:
566 + description: The total number of L7 requests if applicable
567 + family: VirtualServer/Request/L7/Total
568 + unit: "{request}/s"
569 - name: axVirtualServerStatTotalCurrL7Reqs
570 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.13
513 - description: The number of current L7 requests if applicable
514 - family: VirtualServer/Request/L7/Current
515 - unit: "{request}"
571 + chart_meta:
572 + description: The number of current L7 requests if applicable
573 + family: VirtualServer/Request/L7/Current
574 + unit: "{request}"
575 - name: axVirtualServerStatTotalSuccL7Reqs
576 OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.14
518 - description: The number of successful L7 requests if applicable
519 - family: VirtualServer/Request/L7/Successful
520 - unit: "{request}/s"
577 + chart_meta:
578 + description: The number of successful L7 requests if applicable
579 + family: VirtualServer/Request/L7/Successful
580 + unit: "{request}/s"
581 - OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.10
582 name: axVirtualServerStatStatus
523 - description: Virtual server status
524 - family: VirtualServer/Operational/Status
525 - unit: "{status}"
583 + chart_meta:
584 + description: Virtual server status
585 + family: VirtualServer/Operational/Status
586 + unit: "{status}"
587 mapping:
588 1: up
589 2: down
@@ -544,14 +605,16 @@ metrics:
605 symbols:
606 - name: axVirtualServerPortStatCurConns
607 OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.12
547 - description: Current connections from client side
548 - family: VirtualServer/ServicePort/Connection/Current
549 - unit: "{connection}"
608 + chart_meta:
609 + description: Current connections from client side
610 + family: VirtualServer/ServicePort/Connection/Current
611 + unit: "{connection}"
612 - OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.13
613 name: axVirtualServerStatPortDisplayStatus
552 - description: Virtual server port display status
553 - family: VirtualServer/ServicePort/Status
554 - unit: "{status}"
614 + chart_meta:
615 + description: Virtual server port display status
616 + family: VirtualServer/ServicePort/Status
617 + unit: "{status}"
618 mapping:
619 0: disabled
620 1: all_up
@@ -559,9 +622,10 @@ metrics:
622 4: stopped
623 - OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.5
624 name: axVirtualServerStatPortStatus
562 - description: Virtual server port status
563 - family: VirtualServer/ServicePort/Operational/Status
564 - unit: "{status}"
625 + chart_meta:
626 + description: Virtual server port status
627 + family: VirtualServer/ServicePort/Operational/Status
628 + unit: "{status}"
629 mapping:
630 1: up
631 2: down
src/go/plugin/go.d/config/go.d/snmp.profiles/default/alcatel-lucent-ent.yaml
+76 -57
@@ -19,9 +19,10 @@ metrics:
19 symbols:
20 - name: healthModuleCpuLatest
21 OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.11
22 - description: Cpu usage percentage
23 - family: CPU/Usage
24 - unit: "%"
22 + chart_meta:
23 + description: Cpu usage percentage
24 + family: CPU/Usage
25 + unit: "%"
26 metric_tags:
27 - tag: cpu_index
28 index: 1
@@ -37,9 +38,10 @@ metrics:
38 symbols:
39 - name: healthModuleMemoryLatest
40 OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.8
40 - description: Memory usage percentage
41 - family: Memory/Usage
42 - unit: "%"
41 + chart_meta:
42 + description: Memory usage percentage
43 + family: Memory/Usage
44 + unit: "%"
45 metric_tags:
46 - tag: mem_index
47 index: 1
@@ -55,9 +57,10 @@ metrics:
57 symbols:
58 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.1
59 name: chasEntPhysAdminStatus
58 - description: The administrative status of the physical entity
59 - family: Hardware/Admin/Status
60 - unit: "{status}"
60 + chart_meta:
61 + description: The administrative status of the physical entity
62 + family: Hardware/Admin/Status
63 + unit: "{status}"
64 mapping:
65 1: unknown
66 2: power_off
@@ -72,9 +75,10 @@ metrics:
75 11: reset_vc_all
76 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.2
77 name: chasEntPhysOperStatus
75 - description: The operational status of the physical entity
76 - family: Hardware/Operational/Status
77 - unit: "{status}"
78 + chart_meta:
79 + description: The operational status of the physical entity
80 + family: Hardware/Operational/Status
81 + unit: "{status}"
82 mapping:
83 1: up
84 2: down
@@ -88,9 +92,10 @@ metrics:
92 10: pwrsave
93 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.6
94 name: chasEntPhysLedStatusOk1
91 - description: Physical entity ok1 LED status
92 - family: Hardware/LED/OK1/Status
93 - unit: "{status}"
95 + chart_meta:
96 + description: Physical entity ok1 LED status
97 + family: Hardware/LED/OK1/Status
98 + unit: "{status}"
99 mapping:
100 0: not_applicable
101 1: off
@@ -100,9 +105,10 @@ metrics:
105 5: amber_blink
106 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.7
107 name: chasEntPhysLedStatusOk2
103 - description: Physical entity ok2 LED status
104 - family: Hardware/LED/OK2/Status
105 - unit: "{status}"
108 + chart_meta:
109 + description: Physical entity ok2 LED status
110 + family: Hardware/LED/OK2/Status
111 + unit: "{status}"
112 mapping:
113 0: not_applicable
114 1: off
@@ -112,9 +118,10 @@ metrics:
118 5: amber_blink
119 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.8
120 name: chasEntPhysLedStatusPrimaryCMM
115 - description: Physical entity primary CMM LED status
116 - family: Hardware/LED/CMMPrimary/Status
117 - unit: "{status}"
121 + chart_meta:
122 + description: Physical entity primary CMM LED status
123 + family: Hardware/LED/CMMPrimary/Status
124 + unit: "{status}"
125 mapping:
126 0: not_applicable
127 1: off
@@ -124,9 +131,10 @@ metrics:
131 5: amber_blink
132 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.9
133 name: chasEntPhysLedStatusSecondaryCMM
127 - description: Physical entity secondary CMM LED status
128 - family: Hardware/LED/CMMSecondary/Status
129 - unit: "{status}"
134 + chart_meta:
135 + description: Physical entity secondary CMM LED status
136 + family: Hardware/LED/CMMSecondary/Status
137 + unit: "{status}"
138 mapping:
139 0: not_applicable
140 1: off
@@ -136,9 +144,10 @@ metrics:
144 5: amber_blink
145 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.10
146 name: chasEntPhysLedStatusTemperature
139 - description: Physical entity temperature LED status
140 - family: Hardware/LED/Temperature/Status
141 - unit: "{status}"
147 + chart_meta:
148 + description: Physical entity temperature LED status
149 + family: Hardware/LED/Temperature/Status
150 + unit: "{status}"
151 mapping:
152 0: not_applicable
153 1: off
@@ -148,9 +157,10 @@ metrics:
157 5: amber_blink
158 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.11
159 name: chasEntPhysLedStatusFan
151 - description: Physical entity fan LED status
152 - family: Hardware/LED/Fan/Status
153 - unit: "{status}"
160 + chart_meta:
161 + description: Physical entity fan LED status
162 + family: Hardware/LED/Fan/Status
163 + unit: "{status}"
164 mapping:
165 0: not_applicable
166 1: off
@@ -160,9 +170,10 @@ metrics:
170 5: amber_blink
171 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.12
172 name: chasEntPhysLedStatusBackupPS
163 - description: Physical entity backup power supply LED status
164 - family: Hardware/LED/PSUBackup/Status
165 - unit: "{status}"
173 + chart_meta:
174 + description: Physical entity backup power supply LED status
175 + family: Hardware/LED/PSUBackup/Status
176 + unit: "{status}"
177 mapping:
178 0: not_applicable
179 1: off
@@ -172,9 +183,10 @@ metrics:
183 5: amber_blink
184 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.13
185 name: chasEntPhysLedStatusInternalPS
175 - description: Physical entity internal power supply LED status
176 - family: Hardware/LED/PSUInternal/Status
177 - unit: "{status}"
186 + chart_meta:
187 + description: Physical entity internal power supply LED status
188 + family: Hardware/LED/PSUInternal/Status
189 + unit: "{status}"
190 mapping:
191 0: not_applicable
192 1: off
@@ -184,9 +196,10 @@ metrics:
196 5: amber_blink
197 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.16
198 name: chasEntPhysLedStatusPS
187 - description: Physical entity power supply LED status
188 - family: Hardware/LED/PSU/Status
189 - unit: "{status}"
199 + chart_meta:
200 + description: Physical entity power supply LED status
201 + family: Hardware/LED/PSU/Status
202 + unit: "{status}"
203 mapping:
204 0: not_applicable
205 1: off
@@ -196,9 +209,10 @@ metrics:
209 5: amber_blink
210 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.14
211 name: chasEntPhysLedStatusControl
199 - description: Physical entity control LED status
200 - family: Hardware/LED/Control/Status
201 - unit: "{status}"
212 + chart_meta:
213 + description: Physical entity control LED status
214 + family: Hardware/LED/Control/Status
215 + unit: "{status}"
216 mapping:
217 0: not_applicable
218 1: off
@@ -208,9 +222,10 @@ metrics:
222 5: amber_blink
223 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.15
224 name: chasEntPhysLedStatusFabric
211 - description: Physical entity fabric LED status
212 - family: Hardware/LED/Fabric/Status
213 - unit: "{status}"
225 + chart_meta:
226 + description: Physical entity fabric LED status
227 + family: Hardware/LED/Fabric/Status
228 + unit: "{status}"
229 mapping:
230 0: not_applicable
231 1: off
@@ -267,14 +282,16 @@ metrics:
282 symbols:
283 - name: chasEntTempCurrent
284 OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2.1.1
270 - description: Current temperature of the physical entity
271 - family: Hardware/Temperature/Value
272 - unit: "Cel"
285 + chart_meta:
286 + description: Current temperature of the physical entity
287 + family: Hardware/Temperature/Value
288 + unit: "Cel"
289 - OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2.1.4
290 name: chasEntTempStatus
275 - description: Status of the temperature sensor
276 - family: Hardware/Temperature/Status
277 - unit: "{status}"
291 + chart_meta:
292 + description: Status of the temperature sensor
293 + family: Hardware/Temperature/Status
294 + unit: "{status}"
295 mapping:
296 1: unknown
297 2: not_present
@@ -331,9 +348,10 @@ metrics:
348 symbols:
349 - name: alaChasEntPhysFanSpeed
350 OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.11.1.4
334 - description: Fan speed in revolutions per minute
335 - family: Fan/Speed
336 - unit: "{revolution}/min"
351 + chart_meta:
352 + description: Fan speed in revolutions per minute
353 + family: Fan/Speed
354 + unit: "{revolution}/min"
355 metric_tags:
356 - tag: ala_chas_ent_phys_fan_status
357 symbol:
@@ -350,9 +368,10 @@ metrics:
368 symbols:
369 - OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4.1.10
370 name: alaChasBpsPowerSupplyOperStatus
353 - description: Operational status of the power supply
354 - family: PowerSupply/Operational/Status
355 - unit: "{status}"
371 + chart_meta:
372 + description: Operational status of the power supply
373 + family: PowerSupply/Operational/Status
374 + unit: "{status}"
375 mapping:
376 1: up
377 2: down
src/go/plugin/go.d/config/go.d/snmp.profiles/default/alcatel-lucent-omni-access-wlc.yaml
+32 -24
@@ -20,9 +20,10 @@ metrics:
20 symbols:
21 - name: sysXProcessorLoad
22 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3
23 - description: The average, over the last minute, of the percentage of time that this processor was not idle
24 - family: CPU/Usage
25 - unit: "%"
23 + chart_meta:
24 + description: The average, over the last minute, of the percentage of time that this processor was not idle
25 + family: CPU/Usage
26 + unit: "%"
27 metric_tags:
28 - tag: cpu_index
29 index: 1
@@ -37,15 +38,17 @@ metrics:
38 symbols:
39 - name: sysXStorageSize
40 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
40 - description: Size of the storage filesystem
41 - family: Storage/Filesystem/Size
42 - unit: "By"
41 + chart_meta:
42 + description: Size of the storage filesystem
43 + family: Storage/Filesystem/Size
44 + unit: "By"
45 scale_factor: 1048576
46 - name: sysXStorageUsed
47 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
46 - description: Storage filesystem usage
47 - family: Storage/Filesystem/Used
48 - unit: "By"
48 + chart_meta:
49 + description: Storage filesystem usage
50 + family: Storage/Filesystem/Used
51 + unit: "By"
52 scale_factor: 1048576
53 metric_tags:
54 - tag: sys_x_storage_type
@@ -67,21 +70,24 @@ metrics:
70 symbols:
71 - name: sysXMemorySize
72 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.2
70 - description: Total memory in KB
71 - family: Memory/Total
72 - unit: "By"
73 + chart_meta:
74 + description: Total memory in KB
75 + family: Memory/Total
76 + unit: "By"
77 scale_factor: 1024
78 - name: sysXMemoryUsed
79 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.3
76 - description: Used memory in KB
77 - family: Memory/Used
78 - unit: "By"
80 + chart_meta:
81 + description: Used memory in KB
82 + family: Memory/Used
83 + unit: "By"
84 scale_factor: 1024
85 - name: sysXMemoryFree
86 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.4
82 - description: Free memory in KB
83 - family: Memory/Free
84 - unit: "By"
87 + chart_meta:
88 + description: Free memory in KB
89 + family: Memory/Free
90 + unit: "By"
91 scale_factor: 1024
92 metric_tags:
93 - tag: mem_index
@@ -91,17 +97,19 @@ metrics:
97 symbol:
98 name: wlsxSwitchTotalNumAccessPoints
99 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.1.0
94 - description: Total number of access points connected to this switch
95 - family: Wireless/AccessPoint/Connected
96 - unit: "{ap}"
100 + chart_meta:
101 + description: Total number of access points connected to this switch
102 + family: Wireless/AccessPoint/Connected
103 + unit: "{ap}"
104
105 - MIB: WLSX-SWITCH-MIB
106 symbol:
107 name: wlsxSwitchTotalNumStationsAssociated
108 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.2.0
102 - description: Total number of stations associated to this switch.
103 - family: Wireless/Station/Associated
104 - unit: "{station}"
109 + chart_meta:
110 + description: Total number of stations associated to this switch.
111 + family: Wireless/Station/Associated
112 + unit: "{station}"
113
114 metric_tags:
115 - tag: wlsx_model_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc-netbotz.yaml
+68 -51
@@ -20,18 +20,20 @@ metrics:
20 symbols:
21 - OID: 1.3.6.1.4.1.5528.100.2.1.1.2
22 name: enclosureStatus
23 - description: The status of the enclosure
24 - family: Enclosure/Connection/Status
25 - unit: "{status}"
23 + chart_meta:
24 + description: The status of the enclosure
25 + family: Enclosure/Connection/Status
26 + unit: "{status}"
27 mapping:
28 0: disconnected
29 1: error
30 2: normal
31 - OID: 1.3.6.1.4.1.5528.100.2.1.1.3
32 name: enclosureErrorStatus
32 - description: The error status of the enclosure
33 - family: Enclosure/Error/Status
34 - unit: "{status}"
33 + chart_meta:
34 + description: The error status of the enclosure
35 + family: Enclosure/Error/Status
36 + unit: "{status}"
37 mapping:
38 0: normal
39 1: info
@@ -60,9 +62,10 @@ metrics:
62 symbols:
63 - OID: 1.3.6.1.4.1.5528.100.3.1.1.2
64 name: dinPortStatus
63 - description: The error status of the sensor
64 - family: Port/DIN/Status
65 - unit: "{status}"
65 + chart_meta:
66 + description: The error status of the sensor
67 + family: Port/DIN/Status
68 + unit: "{status}"
69 mapping:
70 0: disconnected
71 1: error
@@ -83,9 +86,10 @@ metrics:
86 symbols:
87 - OID: 1.3.6.1.4.1.5528.100.3.10.1.2
88 name: otherPortStatus
86 - description: The error status of the sensor
87 - family: Port/Other/Status
88 - unit: "{status}"
89 + chart_meta:
90 + description: The error status of the sensor
91 + family: Port/Other/Status
92 + unit: "{status}"
93 mapping:
94 0: disconnected
95 1: error
@@ -114,19 +118,22 @@ metrics:
118 symbols:
119 - OID: 1.3.6.1.4.1.5528.100.4.1.1.1.8
120 name: tempSensorValueInt
117 - description: The temperature measured by the sensor
118 - family: Sensor/Temperature/Value
119 - unit: "Cel"
121 + chart_meta:
122 + description: The temperature measured by the sensor
123 + family: Sensor/Temperature/Value
124 + unit: "Cel"
125 - OID: 1.3.6.1.4.1.5528.100.4.1.1.1.9
126 name: tempSensorValueIntF
122 - description: The temperature measured by the sensor
123 - family: Sensor/Temperature/Value
124 - unit: "degF"
127 + chart_meta:
128 + description: The temperature measured by the sensor
129 + family: Sensor/Temperature/Value
130 + unit: "degF"
131 - OID: 1.3.6.1.4.1.5528.100.4.1.1.1.3
132 name: tempSensorErrorStatus
127 - description: The error status of the sensor
128 - family: Sensor/Temperature/Status
129 - unit: "{status}"
133 + chart_meta:
134 + description: The error status of the sensor
135 + family: Sensor/Temperature/Status
136 + unit: "{status}"
137 mapping:
138 0: normal
139 1: info
@@ -158,14 +165,16 @@ metrics:
165 symbols:
166 - OID: 1.3.6.1.4.1.5528.100.4.1.2.1.8
167 name: humiSensorValueInt
161 - description: The relative humidity measured by the sensor
162 - family: Sensor/Humidity/Value
163 - unit: "%"
168 + chart_meta:
169 + description: The relative humidity measured by the sensor
170 + family: Sensor/Humidity/Value
171 + unit: "%"
172 - OID: 1.3.6.1.4.1.5528.100.4.1.2.1.3
173 name: humiSensorErrorStatus
166 - description: The error status of the sensor
167 - family: Sensor/Humidity/Status
168 - unit: "{status}"
174 + chart_meta:
175 + description: The error status of the sensor
176 + family: Sensor/Humidity/Status
177 + unit: "{status}"
178 mapping:
179 0: normal
180 1: info
@@ -197,19 +206,22 @@ metrics:
206 symbols:
207 - OID: 1.3.6.1.4.1.5528.100.4.1.3.1.8
208 name: dewPointSensorValueInt
200 - description: The dew point measured by the sensor
201 - family: Sensor/DewPoint/Value
202 - unit: "Cel"
209 + chart_meta:
210 + description: The dew point measured by the sensor
211 + family: Sensor/DewPoint/Value
212 + unit: "Cel"
213 - OID: 1.3.6.1.4.1.5528.100.4.1.3.1.9
214 name: dewPointSensorValueIntF
205 - description: The dew point measured by the sensor
206 - family: Sensor/DewPoint/Value
207 - unit: "degF"
215 + chart_meta:
216 + description: The dew point measured by the sensor
217 + family: Sensor/DewPoint/Value
218 + unit: "degF"
219 - OID: 1.3.6.1.4.1.5528.100.4.1.3.1.3
220 name: dewPointSensorErrorStatus
210 - description: The error status of the sensor
211 - family: Sensor/DewPoint/Status
212 - unit: "{status}"
221 + chart_meta:
222 + description: The error status of the sensor
223 + family: Sensor/DewPoint/Status
224 + unit: "{status}"
225 mapping:
226 0: normal
227 1: info
@@ -294,18 +306,20 @@ metrics:
306 symbols:
307 - OID: 1.3.6.1.4.1.5528.100.4.2.2.1.2
308 name: doorSwitchSensorValue
297 - description: Whether the door is open or closed
298 - family: Sensor/DoorSwitch/Position
299 - unit: "{status}"
309 + chart_meta:
310 + description: Whether the door is open or closed
311 + family: Sensor/DoorSwitch/Position
312 + unit: "{status}"
313 mapping:
314 -1: "null"
315 0: open
316 1: closed
317 - OID: 1.3.6.1.4.1.5528.100.4.2.2.1.3
318 name: doorSwitchSensorErrorStatus
306 - description: The error status of the sensor
307 - family: Sensor/DoorSwitch/Status
308 - unit: "{status}"
319 + chart_meta:
320 + description: The error status of the sensor
321 + family: Sensor/DoorSwitch/Status
322 + unit: "{status}"
323 mapping:
324 0: normal
325 1: info
@@ -341,9 +355,10 @@ metrics:
355 symbols:
356 - OID: 1.3.6.1.4.1.5528.100.4.2.10.1.3
357 name: otherStateSensorErrorStatus
344 - description: The error status of the sensor
345 - family: Sensor/OtherState/Status
346 - unit: "{status}"
358 + chart_meta:
359 + description: The error status of the sensor
360 + family: Sensor/OtherState/Status
361 + unit: "{status}"
362 mapping:
363 0: normal
364 1: info
@@ -375,9 +390,10 @@ metrics:
390 symbols:
391 - OID: 1.3.6.1.4.1.5528.100.5.1.1.2
392 name: errorCondSeverity
378 - description: The relative severity of the error condition
379 - family: Error/Severity
380 - unit: "{status}"
393 + chart_meta:
394 + description: The relative severity of the error condition
395 + family: Error/Severity
396 + unit: "{status}"
397 mapping:
398 0: normal
399 1: info
@@ -387,9 +403,10 @@ metrics:
403 5: failure
404 - OID: 1.3.6.1.4.1.5528.100.5.1.1.6
405 name: errorCondResolved
390 - description: Whether the error condition was resolved
391 - family: Error/Resolution/Status
392 - unit: "{status}"
406 + chart_meta:
407 + description: Whether the error condition was resolved
408 + family: Error/Resolution/Status
409 + unit: "{status}"
410 mapping:
411 0: no
412 1: yes
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc-pdu.yaml
+52 -39
@@ -19,15 +19,17 @@ metrics:
19 symbols:
20 - OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.2
21 name: rPDULoadStatusLoad
22 - description: Phase/bank load
23 - family: PhaseBank/Load/Current
24 - unit: "A"
22 + chart_meta:
23 + description: Phase/bank load
24 + family: PhaseBank/Load/Current
25 + unit: "A"
26 scale_factor: 0.1
27 - OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.3
28 name: rPDULoadStatusLoadState
28 - description: Phase/bank load state
29 - family: PhaseBank/Load/Status
30 - unit: "{status}"
29 + chart_meta:
30 + description: Phase/bank load state
31 + family: PhaseBank/Load/Status
32 + unit: "{status}"
33 mapping:
34 1: phase_load_normal
35 2: phase_load_low
@@ -46,15 +48,17 @@ metrics:
48 symbols:
49 - OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.7
50 name: rPDUOutletStatusLoad
49 - description: Outlet load for an Outlet Monitored Rack PDU
50 - family: Outlet/Load/Current
51 - unit: "A"
51 + chart_meta:
52 + description: Outlet load for an Outlet Monitored Rack PDU
53 + family: Outlet/Load/Current
54 + unit: "A"
55 scale_factor: 0.1
56 - OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.4
57 name: rPDUOutletStatusOutletState
55 - description: Outlet state
56 - family: Outlet/Power/Status
57 - unit: "{status}"
58 + chart_meta:
59 + description: Outlet state
60 + family: Outlet/Power/Status
61 + unit: "{status}"
62 mapping:
63 1: outlet_status_on
64 2: outlet_status_off
@@ -91,9 +95,10 @@ metrics:
95 symbol:
96 OID: 1.3.6.1.4.1.318.1.1.12.4.1.3.0
97 name: rPDUPowerSupplyAlarm
94 - description: Alarm status of the PDU power supply
95 - family: PowerSupply/Alarm/Status
96 - unit: "{status}"
98 + chart_meta:
99 + description: Alarm status of the PDU power supply
100 + family: PowerSupply/Alarm/Status
101 + unit: "{status}"
102 mapping:
103 1: allAvailablePowerSuppliesOK
104 2: powerSupplyOneFailed
@@ -106,9 +111,10 @@ metrics:
111 symbols:
112 - OID: 1.3.6.1.4.1.318.1.1.12.5.2.1.3
113 name: rPDUStatusBankState
109 - description: Bank load state
110 - family: Bank/Load/Status
111 - unit: "{status}"
114 + chart_meta:
115 + description: Bank load state
116 + family: Bank/Load/Status
117 + unit: "{status}"
118 mapping:
119 1: bank_load_normal
120 2: bank_load_low
@@ -131,9 +137,10 @@ metrics:
137 symbols:
138 - OID: 1.3.6.1.4.1.318.1.1.12.5.4.1.3
139 name: rPDUStatusPhaseState
134 - description: Phase Load state
135 - family: Phase/Load/Status
136 - unit: "{status}"
140 + chart_meta:
141 + description: Phase Load state
142 + family: Phase/Load/Status
143 + unit: "{status}"
144 mapping:
145 1: phase_load_normal
146 2: phase_load_low
@@ -156,9 +163,10 @@ metrics:
163 symbols:
164 - OID: 1.3.6.1.4.1.318.1.1.12.5.6.1.3
165 name: rPDUStatusOutletState
159 - description: Outlet Load state
160 - family: Outlet/Load/Status
161 - unit: "{status}"
166 + chart_meta:
167 + description: Outlet Load state
168 + family: Outlet/Load/Status
169 + unit: "{status}"
170 mapping:
171 1: outlet_load_normal
172 2: outlet_load_low
@@ -180,24 +188,28 @@ metrics:
188 symbols:
189 - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.7
190 name: rPDU2SensorTempHumidityStatusTempF
183 - description: Temperature in degrees Fahrenheit
184 - family: Sensor/Temperature/Value
185 - unit: "degF"
191 + chart_meta:
192 + description: Temperature in degrees Fahrenheit
193 + family: Sensor/Temperature/Value
194 + unit: "degF"
195 - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.8
196 name: rPDU2SensorTempHumidityStatusTempC
188 - description: Temperature in degrees Celsius
189 - family: Sensor/Temperature/Value
190 - unit: "Cel"
197 + chart_meta:
198 + description: Temperature in degrees Celsius
199 + family: Sensor/Temperature/Value
200 + unit: "Cel"
201 - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.10
202 name: rPDU2SensorTempHumidityStatusRelativeHumidity
193 - description: Relative humidity percentage
194 - family: Sensor/Humidity/Value
195 - unit: "%"
203 + chart_meta:
204 + description: Relative humidity percentage
205 + family: Sensor/Humidity/Value
206 + unit: "%"
207 - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.9
208 name: rPDU2SensorTempHumidityStatusTempStatus
198 - description: Current state of the temperature probe
199 - family: Sensor/Temperature/Status
200 - unit: "{status}"
209 + chart_meta:
210 + description: Current state of the temperature probe
211 + family: Sensor/Temperature/Status
212 + unit: "{status}"
213 mapping:
214 1: not_present
215 2: below_min
@@ -207,9 +219,10 @@ metrics:
219 6: above_max
220 - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.11
221 name: rPDU2SensorTempHumidityStatusHumidityStatus
210 - description: Current state of the humidity probe
211 - family: Sensor/Humidity/Status
212 - unit: "{status}"
222 + chart_meta:
223 + description: Current state of the humidity probe
224 + family: Sensor/Humidity/Status
225 + unit: "{status}"
226 mapping:
227 1: not_present
228 2: below_min
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc_ups.yaml
+98 -72
@@ -24,23 +24,26 @@ metrics:
24 symbol:
25 OID: 1.3.6.1.4.1.318.1.1.1.2.2.5.0
26 name: upsAdvBatteryNumOfBattPacks
27 - description: The number of external battery packs connected to the UPS
28 - family: Battery/Pack/Total
29 - unit: "{pack}"
27 + chart_meta:
28 + description: The number of external battery packs connected to the UPS
29 + family: Battery/Pack/Total
30 + unit: "{pack}"
31 - MIB: POWERNET-MIB
32 symbol:
33 OID: 1.3.6.1.4.1.318.1.1.1.2.2.6.0
34 name: upsAdvBatteryNumOfBadBattPacks
34 - description: The number of external battery packs connected to the UPS that are defective
35 - family: Battery/Pack/Defective
36 - unit: "{pack}"
35 + chart_meta:
36 + description: The number of external battery packs connected to the UPS that are defective
37 + family: Battery/Pack/Defective
38 + unit: "{pack}"
39 - MIB: PowerNet-MIB
40 symbol:
41 OID: 1.3.6.1.4.1.318.1.1.1.2.2.4.0
42 name: upsAdvBatteryReplaceIndicator
41 - description: Indicates whether the UPS batteries need replacing
42 - family: Battery/Replace/Status
43 - unit: "{status}"
43 + chart_meta:
44 + description: Indicates whether the UPS batteries need replacing
45 + family: Battery/Replace/Status
46 + unit: "{status}"
47 mapping:
48 1: noBatteryNeedsReplacing
49 2: batteryNeedsReplacing
@@ -48,76 +51,88 @@ metrics:
51 symbol:
52 OID: 1.3.6.1.4.1.318.1.1.1.2.2.3.0
53 name: upsAdvBatteryRunTimeRemaining
51 - description: The UPS battery run time remaining before battery exhaustion
52 - family: Battery/Runtime/Remaining
53 - unit: "s"
54 + chart_meta:
55 + description: The UPS battery run time remaining before battery exhaustion
56 + family: Battery/Runtime/Remaining
57 + unit: "s"
58 - MIB: PowerNet-MIB
59 symbol:
60 OID: 1.3.6.1.4.1.318.1.1.1.2.2.2.0
61 name: upsAdvBatteryTemperature
58 - description: The current internal UPS temperature
59 - family: Battery/Temperature/Value
60 - unit: "Cel"
62 + chart_meta:
63 + description: The current internal UPS temperature
64 + family: Battery/Temperature/Value
65 + unit: "Cel"
66 - MIB: PowerNet-MIB
67 symbol:
68 OID: 1.3.6.1.4.1.318.1.1.1.2.2.1.0
69 name: upsAdvBatteryCapacity
65 - description: The remaining battery capacity
66 - family: Battery/Capacity/Remaining
67 - unit: "%"
70 + chart_meta:
71 + description: The remaining battery capacity
72 + family: Battery/Capacity/Remaining
73 + unit: "%"
74 - MIB: PowerNet-MIB
75 symbol:
76 OID: 1.3.6.1.4.1.318.1.1.1.2.3.2.0
77 name: upsHighPrecExtdBatteryTemperature
72 - description: The current internal UPS temperature
73 - family: Battery/Temperature/Value
74 - unit: "Cel"
78 + chart_meta:
79 + description: The current internal UPS temperature
80 + family: Battery/Temperature/Value
81 + unit: "Cel"
82 scale_factor: 0.1
83 - MIB: PowerNet-MIB
84 symbol:
85 OID: 1.3.6.1.4.1.318.1.1.1.3.2.1.0
86 name: upsAdvInputLineVoltage
80 - description: The current utility line voltage
81 - family: Input/Voltage/Line
82 - unit: "VAC"
87 + chart_meta:
88 + description: The current utility line voltage
89 + family: Input/Voltage/Line
90 + unit: "VAC"
91 - MIB: PowerNet-MIB
92 symbol:
93 OID: 1.3.6.1.4.1.318.1.1.1.3.3.1.0
94 name: upsHighPrecInputLineVoltage
87 - description: The current utility line voltage
88 - family: Input/Voltage/Line
89 - unit: "VAC"
95 + chart_meta:
96 + description: The current utility line voltage
97 + family: Input/Voltage/Line
98 + unit: "VAC"
99 scale_factor: 0.1
100 - MIB: PowerNet-MIB
101 symbol:
102 OID: 1.3.6.1.4.1.318.1.1.1.3.2.4.0
103 name: upsAdvInputFrequency
95 - description: The current input frequency to the UPS system
96 - family: Input/Frequency/Value
97 - unit: "Hz"
104 + chart_meta:
105 + description: The current input frequency to the UPS system
106 + family: Input/Frequency/Value
107 + unit: "Hz"
108 - MIB: PowerNet-MIB
109 symbol:
110 OID: 1.3.6.1.4.1.318.1.1.1.3.3.4.0
111 name: upsHighPrecInputFrequency
102 - description: The current input frequency to the UPS system
103 - family: Input/Frequency/Value
112 + chart_meta:
113 + description: The current input frequency to the UPS system
114 + family: Input/Frequency/Value
115 + unit: "Hz"
116 scale_factor: 0.1
105 - unit: "Hz"
117 +
118 - MIB: PowerNet-MIB
119 symbol:
120 OID: 1.3.6.1.4.1.318.1.1.1.4.3.4.0
121 name: upsHighPrecOutputCurrent
110 - description: The current drawn by the load on the UPS
111 - family: Output/Current/Total
122 + chart_meta:
123 + description: The current drawn by the load on the UPS
124 + family: Output/Current/Total
125 + unit: "A"
126 scale_factor: 0.1
113 - unit: "A"
127 +
128 - MIB: PowerNet-MIB
129 symbol:
130 OID: 1.3.6.1.4.1.318.1.1.1.3.2.5.0
131 name: upsAdvInputLineFailCause
118 - description: The reason for the occurrence of the last transfer to UPS battery power
119 - family: Input/Failure/Cause
120 - unit: "{status}"
132 + chart_meta:
133 + description: The reason for the occurrence of the last transfer to UPS battery power
134 + family: Input/Failure/Cause
135 + unit: "{status}"
136 mapping:
137 1: noTransfer
138 2: highLineVoltage
@@ -133,66 +148,75 @@ metrics:
148 symbol:
149 OID: 1.3.6.1.4.1.318.1.1.1.4.2.1.0
150 name: upsAdvOutputVoltage
136 - description: The output voltage of the UPS system
137 - family: Output/Voltage/Total
138 - unit: "VAC"
151 + chart_meta:
152 + description: The output voltage of the UPS system
153 + family: Output/Voltage/Total
154 + unit: "VAC"
155 - MIB: PowerNet-MIB
156 symbol:
157 OID: 1.3.6.1.4.1.318.1.1.1.4.2.2.0
158 name: upsAdvOutputFrequency
143 - description: The current output frequency of the UPS system
144 - family: Output/Frequency/Value
145 - unit: "Hz"
159 + chart_meta:
160 + description: The current output frequency of the UPS system
161 + family: Output/Frequency/Value
162 + unit: "Hz"
163 - MIB: PowerNet-MIB
164 symbol:
165 OID: 1.3.6.1.4.1.318.1.1.1.4.2.3.0
166 name: upsAdvOutputLoad
150 - description: The current UPS load expressed in percent of rated capacity
151 - family: Output/Load/Percentage
152 - unit: "%"
167 + chart_meta:
168 + description: The current UPS load expressed in percent of rated capacity
169 + family: Output/Load/Percentage
170 + unit: "%"
171 - MIB: PowerNet-MIB
172 symbol:
173 OID: 1.3.6.1.4.1.318.1.1.1.4.2.4.0
174 name: upsAdvOutputCurrent
157 - description: The current drawn by the load on the UPS
158 - family: Output/Current/Total
159 - unit: "A"
175 + chart_meta:
176 + description: The current drawn by the load on the UPS
177 + family: Output/Current/Total
178 + unit: "A"
179 - MIB: PowerNet-MIB
180 symbol:
181 OID: 1.3.6.1.4.1.318.1.1.1.4.2.8.0
182 name: upsAdvOutputActivePower
164 - description: The total output active power of the UPS system
165 - family: Output/Power/Active
166 - unit: "W"
183 + chart_meta:
184 + description: The total output active power of the UPS system
185 + family: Output/Power/Active
186 + unit: "W"
187 - MIB: PowerNet-MIB
188 symbol:
189 OID: 1.3.6.1.4.1.318.1.1.1.4.2.9.0
190 name: upsAdvOutputApparentPower
171 - description: The total output apparent power of all phases of the UPS system
172 - family: Output/Power/Apparent
173 - unit: "VA"
191 + chart_meta:
192 + description: The total output apparent power of all phases of the UPS system
193 + family: Output/Power/Apparent
194 + unit: "VA"
195 - MIB: PowerNet-MIB
196 symbol:
197 OID: 1.3.6.1.4.1.318.1.1.1.4.2.12.0
198 name: upsAdvOutputEnergyUsage
178 - description: The output energy usage of the UPS
179 - family: Output/Energy/Used
180 - unit: "kWh"
199 + chart_meta:
200 + description: The output energy usage of the UPS
201 + family: Output/Energy/Used
202 + unit: "kWh"
203 scale_factor: 0.01
204 - MIB: PowerNet-MIB
205 symbol:
206 OID: 1.3.6.1.4.1.318.1.1.1.2.1.2.0
207 name: upsBasicBatteryTimeOnBattery
186 - description: The elapsed time since the UPS has switched to battery power
187 - family: Battery/Runtime/Elapsed
188 - unit: "s"
208 + chart_meta:
209 + description: The elapsed time since the UPS has switched to battery power
210 + family: Battery/Runtime/Elapsed
211 + unit: "s"
212 - MIB: PowerNet-MIB
213 symbol:
214 OID: 1.3.6.1.4.1.318.1.1.1.7.2.3.0
215 name: upsAdvTestDiagnosticsResults
193 - description: The results of the last UPS diagnostics test performed
194 - family: Test/Diagnostic/Status
195 - unit: "{status}"
216 + chart_meta:
217 + description: The results of the last UPS diagnostics test performed
218 + family: Test/Diagnostic/Status
219 + unit: "{status}"
220 mapping:
221 1: ok
222 2: failed
@@ -277,9 +301,10 @@ metrics:
301 symbols:
302 - OID: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3
303 name: upsOutletGroupStatusGroupState
280 - description: Outlet group state
281 - family: OutletGroup/Status
282 - unit: "{status}"
304 + chart_meta:
305 + description: Outlet group state
306 + family: OutletGroup/Status
307 + unit: "{status}"
308 mapping:
309 1: ups_outlet_group_status_on
310 2: ups_outlet_group_status_off
@@ -293,9 +318,10 @@ metrics:
318 symbol:
319 OID: 1.3.6.1.4.1.318.1.1.25.1.2.1.6.0
320 name: uioSensorStatusTemperatureDegC
296 - description: The sensor's current temperature reading
297 - family: Sensor/Temperature/Value
298 - unit: "Cel"
321 + chart_meta:
322 + description: The sensor's current temperature reading
323 + family: Sensor/Temperature/Value
324 + unit: "Cel"
325 scale_factor: 0.1
326 metric_tags:
327 - tag: model
src/go/plugin/go.d/config/go.d/snmp.profiles/default/arista-switch.yaml
+12 -9
@@ -182,9 +182,10 @@ metrics:
182 symbol:
183 name: cpu.usage
184 OID: 1.3.6.1.2.1.25.3.3.1.2.1
185 - description: The average, over the last minute, of the percentage of time that this processor was not idle
186 - family: CPU/Usage
187 - unit: "%"
185 + chart_meta:
186 + description: The average, over the last minute, of the percentage of time that this processor was not idle
187 + family: CPU/Usage
188 + unit: "%"
189 - MIB: ARISTA-BGP4V2-MIB
190 table:
191 name: aristaBgp4V2PeerTable
@@ -192,17 +193,19 @@ metrics:
193 symbols:
194 - OID: 1.3.6.1.4.1.30065.4.1.1.2.1.12
195 name: aristaBgp4V2PeerAdminStatus
195 - description: BGP FSM Status
196 - family: BPG/Peer/Admin/Status
197 - unit: "{status}"
196 + chart_meta:
197 + description: BGP FSM Status
198 + family: BPG/Peer/Admin/Status
199 + unit: "{status}"
200 mapping:
201 1: halted
202 2: running
203 - OID: 1.3.6.1.4.1.30065.4.1.1.2.1.13
204 name: aristaBgp4V2PeerState
203 - description: BGP peer connection state
204 - family: BGP/Peer/Connection/Status
205 - unit: "{status}"
205 + chart_meta:
206 + description: BGP peer connection state
207 + family: BGP/Peer/Connection/Status
208 + unit: "{status}"
209 mapping:
210 1: idle
211 2: connect
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-clearpass.yaml
+204 -153
@@ -14,24 +14,27 @@ metrics:
14 symbol:
15 name: hrProcessorLoad
16 OID: 1.3.6.1.2.1.25.3.3.1.2.196608
17 - description: Average percentage of time that this processor was not idle over the last minute
18 - family: CPU/Usage
19 - unit: "%"
17 + chart_meta:
18 + description: Average percentage of time that this processor was not idle over the last minute
19 + family: CPU/Usage
20 + unit: "%"
21 - MIB: UCD-SNMP-MIB
22 symbol:
23 name: memTotalReal
24 OID: 1.3.6.1.4.1.2021.4.5.0
24 - description: Total amount of real physical memory installed on this host
25 - family: Memory/Physical/Total
26 - unit: "By"
25 + chart_meta:
26 + description: Total amount of real physical memory installed on this host
27 + family: Memory/Physical/Total
28 + unit: "By"
29 scale_factor: 1024
30 - MIB: UCD-SNMP-MIB
31 symbol:
32 name: memAvailReal
33 OID: 1.3.6.1.4.1.2021.4.6.0
32 - description: Amount of real physical memory currently unused or available
33 - family: Memory/Physical/Free
34 - unit: "By"
34 + chart_meta:
35 + description: Amount of real physical memory currently unused or available
36 + family: Memory/Physical/Free
37 + unit: "By"
38 scale_factor: 1024
39 - MIB: CPPM-MIB
40 table:
@@ -40,24 +43,28 @@ metrics:
43 symbols:
44 - name: cppmSystemMemoryTotal
45 OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.12
43 - description: Total amount of memory available in bytes in the ClearPass server
44 - family: Memory/Total
45 - unit: "By"
46 + chart_meta:
47 + description: Total amount of memory available in bytes in the ClearPass server
48 + family: Memory/Total
49 + unit: "By"
50 - name: cppmSystemMemoryFree
51 OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.13
48 - description: Amount of free memory in bytes in the ClearPass server
49 - family: Memory/Free
50 - unit: "By"
52 + chart_meta:
53 + description: Amount of free memory in bytes in the ClearPass server
54 + family: Memory/Free
55 + unit: "By"
56 - name: cppmSystemDiskSpaceTotal
57 OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.14
53 - description: Total amount of disk space available in bytes in the ClearPass server
54 - family: Storage/Disk/Total
55 - unit: "By"
58 + chart_meta:
59 + description: Total amount of disk space available in bytes in the ClearPass server
60 + family: Storage/Disk/Total
61 + unit: "By"
62 - name: cppmSystemDiskSpaceFree
63 OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.15
58 - description: Amount of free disk space in bytes in the ClearPass server
59 - family: Storage/Disk/Free
60 - unit: "By"
64 + chart_meta:
65 + description: Amount of free disk space in bytes in the ClearPass server
66 + family: Storage/Disk/Free
67 + unit: "By"
68 metric_tags:
69 - symbol:
70 OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
@@ -70,29 +77,34 @@ metrics:
77 symbols:
78 - name: radPolicyEvalTime
79 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.1
73 - description: Total time taken for policy evaluation from RADIUS server perspective in milliseconds
74 - family: RADIUS/PolicyEvaluation/Time
75 - unit: "ms"
80 + chart_meta:
81 + description: Total time taken for policy evaluation from RADIUS server perspective in milliseconds
82 + family: RADIUS/PolicyEvaluation/Time
83 + unit: "ms"
84 - name: radAuthRequestTime
85 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.2
78 - description: Total time taken for RADIUS request end-to-end in milliseconds
79 - family: RADIUS/Request/Time
80 - unit: "ms"
86 + chart_meta:
87 + description: Total time taken for RADIUS request end-to-end in milliseconds
88 + family: RADIUS/Request/Time
89 + unit: "ms"
90 - name: radServerCounterSuccess
91 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.3
83 - description: Successful RADIUS request count
84 - family: RADIUS/Request/Success
85 - unit: "{request}/s"
92 + chart_meta:
93 + description: Successful RADIUS request count
94 + family: RADIUS/Request/Success
95 + unit: "{request}/s"
96 - name: radServerCounterFailure
97 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.4
88 - description: Failed RADIUS request count
89 - family: RADIUS/Request/Failed
90 - unit: "{request}/s"
98 + chart_meta:
99 + description: Failed RADIUS request count
100 + family: RADIUS/Request/Failed
101 + unit: "{request}/s"
102 - name: radServerCounterCount
103 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.5
93 - description: Total RADIUS request count
94 - family: RADIUS/Request/Total
95 - unit: "{request}/s"
104 + chart_meta:
105 + description: Total RADIUS request count
106 + family: RADIUS/Request/Total
107 + unit: "{request}/s"
108 metric_tags:
109 - table: cppmSystemTable
110 symbol:
@@ -106,24 +118,28 @@ metrics:
118 symbols:
119 - name: radAuthCounterSuccess
120 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.3
109 - description: Total number of successful RADIUS authentications
110 - family: RADIUS/Authentication/Success
111 - unit: "{authentication}/s"
121 + chart_meta:
122 + description: Total number of successful RADIUS authentications
123 + family: RADIUS/Authentication/Success
124 + unit: "{authentication}/s"
125 - name: radAuthCounterFailure
126 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.4
114 - description: Total number of failed RADIUS authentications
115 - family: RADIUS/Authentication/Failed
116 - unit: "{authentication}/s"
127 + chart_meta:
128 + description: Total number of failed RADIUS authentications
129 + family: RADIUS/Authentication/Failed
130 + unit: "{authentication}/s"
131 - name: radAuthCounterCount
132 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.5
119 - description: Total number of RADIUS authentications
120 - family: RADIUS/Authentication/Total
121 - unit: "{authentication}/s"
133 + chart_meta:
134 + description: Total number of RADIUS authentications
135 + family: RADIUS/Authentication/Total
136 + unit: "{authentication}/s"
137 - name: radAuthCounterTime
138 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.6
124 - description: Time taken to authenticate against an authentication source in milliseconds
125 - family: RADIUS/Authentication/Time
126 - unit: "ms"
139 + chart_meta:
140 + description: Time taken to authenticate against an authentication source in milliseconds
141 + family: RADIUS/Authentication/Time
142 + unit: "ms"
143 metric_tags:
144 - symbol:
145 name: radAuthSourceName
@@ -136,99 +152,118 @@ metrics:
152 symbols:
153 - name: psServicePolicyEvalCount
154 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.1
139 - description: Total number of service policies evaluated
140 - family: Policy/Evaluation/Service/Count
141 - unit: "{policy}/s"
155 + chart_meta:
156 + description: Total number of service policies evaluated
157 + family: Policy/Evaluation/Service/Count
158 + unit: "{policy}/s"
159 - name: psRolemappingPolicyEvalCount
160 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.2
144 - description: Total number of role mapping policies evaluated
145 - family: Policy/Evaluation/RoleMapping/Count
146 - unit: "{policy}/s"
161 + chart_meta:
162 + description: Total number of role mapping policies evaluated
163 + family: Policy/Evaluation/RoleMapping/Count
164 + unit: "{policy}/s"
165 - name: psPosturePolicyEvalCount
166 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.3
149 - description: Total number of posture policies evaluated
150 - family: Policy/Evaluation/Posture/Count
151 - unit: "{policy}/s"
167 + chart_meta:
168 + description: Total number of posture policies evaluated
169 + family: Policy/Evaluation/Posture/Count
170 + unit: "{policy}/s"
171 - name: psAuditPolicyEvalCount
172 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.4
154 - description: Total number of audit policies evaluated
155 - family: Policy/Evaluation/Audit/Count
156 - unit: "{policy}/s"
173 + chart_meta:
174 + description: Total number of audit policies evaluated
175 + family: Policy/Evaluation/Audit/Count
176 + unit: "{policy}/s"
177 - name: psRestrictionPolicyEvalCount
178 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.5
159 - description: Total number of restriction policies evaluated
160 - family: Policy/Evaluation/Restriction/Count
161 - unit: "{policy}/s"
179 + chart_meta:
180 + description: Total number of restriction policies evaluated
181 + family: Policy/Evaluation/Restriction/Count
182 + unit: "{policy}/s"
183 - name: psEnforcementPolicyEvalCount
184 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.6
164 - description: Total number of enforcement policies evaluated
165 - family: Policy/Evaluation/Enforcement/Count
166 - unit: "{policy}/s"
185 + chart_meta:
186 + description: Total number of enforcement policies evaluated
187 + family: Policy/Evaluation/Enforcement/Count
188 + unit: "{policy}/s"
189 - name: psAuthCounterSuccess
190 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.14
169 - description: Total number of successful authentications computed on the Policy Server
170 - family: Policy/Authentication/Success
171 - unit: "{authentication}/s"
191 + chart_meta:
192 + description: Total number of successful authentications computed on the Policy Server
193 + family: Policy/Authentication/Success
194 + unit: "{authentication}/s"
195 - name: psAuthCounterFailure
196 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.15
174 - description: Total number of failed authentications computed on the Policy Server
175 - family: Policy/Authentication/Failed
176 - unit: "{authentication}/s"
197 + chart_meta:
198 + description: Total number of failed authentications computed on the Policy Server
199 + family: Policy/Authentication/Failed
200 + unit: "{authentication}/s"
201 - name: psAuthCounterTotal
202 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.16
179 - description: Total number of authentications computed on the Policy Server
180 - family: Policy/Authentication/Total
181 - unit: "{authentication}/s"
203 + chart_meta:
204 + description: Total number of authentications computed on the Policy Server
205 + family: Policy/Authentication/Total
206 + unit: "{authentication}/s"
207 - name: dailySuccessAuthCount
208 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.17
184 - description: Total number of successful authentications computed over 24 hours
185 - family: Policy/Authentication/Daily/Success
186 - unit: "{authentication}/s"
209 + chart_meta:
210 + description: Total number of successful authentications computed over 24 hours
211 + family: Policy/Authentication/Daily/Success
212 + unit: "{authentication}/s"
213 - name: dailyFailedAuthCount
214 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.18
189 - description: Total number of failed authentications computed over 24 hours
190 - family: Policy/Authentication/Daily/Failed
191 - unit: "{authentication}/s"
215 + chart_meta:
216 + description: Total number of failed authentications computed over 24 hours
217 + family: Policy/Authentication/Daily/Failed
218 + unit: "{authentication}/s"
219 - name: dailyTotalAuthCount
220 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.19
194 - description: Total number of authentications computed over 24 hours
195 - family: Policy/Authentication/Daily/Total
196 - unit: "{authentication}/s"
221 + chart_meta:
222 + description: Total number of authentications computed over 24 hours
223 + family: Policy/Authentication/Daily/Total
224 + unit: "{authentication}/s"
225 - name: psServicePolicyEvalTime
226 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.7
199 - description: Time taken for the evaluation of service policies in milliseconds
200 - family: Policy/Evaluation/Service/Time
201 - unit: "ms"
227 + chart_meta:
228 + description: Time taken for the evaluation of service policies in milliseconds
229 + family: Policy/Evaluation/Service/Time
230 + unit: "ms"
231 - name: psRolemappingPolicyEvalTime
232 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.8
204 - description: Time taken for the evaluation of role mapping policies in milliseconds
205 - family: Policy/Evaluation/RoleMapping/Time
206 - unit: "ms"
233 + chart_meta:
234 + description: Time taken for the evaluation of role mapping policies in milliseconds
235 + family: Policy/Evaluation/RoleMapping/Time
236 + unit: "ms"
237 - name: psPosturePolicyEvalTime
238 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.9
209 - description: Time taken for the evaluation of posture policies in milliseconds
210 - family: Policy/Evaluation/Posture/Time
211 - unit: "ms"
239 + chart_meta:
240 + description: Time taken for the evaluation of posture policies in milliseconds
241 + family: Policy/Evaluation/Posture/Time
242 + unit: "ms"
243 - name: psAuditPolicyEvalTime
244 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.10
214 - description: Time taken for the evaluation of audit policies in milliseconds
215 - family: Policy/Evaluation/Audit/Time
216 - unit: "ms"
245 + chart_meta:
246 + description: Time taken for the evaluation of audit policies in milliseconds
247 + family: Policy/Evaluation/Audit/Time
248 + unit: "ms"
249 - name: psRestrictionPolicyEvalTime
250 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.11
219 - description: Time taken for the evaluation of restriction policies in milliseconds
220 - family: Policy/Evaluation/Restriction/Time
221 - unit: "ms"
251 + chart_meta:
252 + description: Time taken for the evaluation of restriction policies in milliseconds
253 + family: Policy/Evaluation/Restriction/Time
254 + unit: "ms"
255 - name: psEnforcementPolicyEvalTime
256 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.12
224 - description: Time taken for the evaluation of enforcement policies in milliseconds
225 - family: Policy/Evaluation/Enforcement/Time
226 - unit: "ms"
257 + chart_meta:
258 + description: Time taken for the evaluation of enforcement policies in milliseconds
259 + family: Policy/Evaluation/Enforcement/Time
260 + unit: "ms"
261 - name: psSessionlogTime
262 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.13
229 - description: Time taken for session logging in milliseconds
230 - family: Policy/SessionLogging/Time
231 - unit: "ms"
263 + chart_meta:
264 + description: Time taken for session logging in milliseconds
265 + family: Policy/SessionLogging/Time
266 + unit: "ms"
267 metric_tags:
268 - table: cppmSystemTable
269 symbol:
@@ -242,24 +277,28 @@ metrics:
277 symbols:
278 - name: psAutzCounterSuccess
279 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.3
245 - description: Total number of successful Policy authorizations
246 - family: Policy/Authorization/Success
247 - unit: "{authorization}/s"
280 + chart_meta:
281 + description: Total number of successful Policy authorizations
282 + family: Policy/Authorization/Success
283 + unit: "{authorization}/s"
284 - name: psAutzCounterFailure
285 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.4
250 - description: Total number of failed Policy authorizations
251 - family: Policy/Authorization/Failed
252 - unit: "{authorization}/s"
286 + chart_meta:
287 + description: Total number of failed Policy authorizations
288 + family: Policy/Authorization/Failed
289 + unit: "{authorization}/s"
290 - name: psAutzCounterCount
291 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.5
255 - description: Total number of Policy authorizations
256 - family: Policy/Authorization/Total
257 - unit: "{authorization}/s"
292 + chart_meta:
293 + description: Total number of Policy authorizations
294 + family: Policy/Authorization/Total
295 + unit: "{authorization}/s"
296 - name: psAutzCounterTime
297 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.6
260 - description: Time taken for Policy authorizations in milliseconds
261 - family: Policy/Authorization/Time
262 - unit: "ms"
298 + chart_meta:
299 + description: Time taken for Policy authorizations in milliseconds
300 + family: Policy/Authorization/Time
301 + unit: "ms"
302 metric_tags:
303 - symbol:
304 name: psAutzSourceName
@@ -272,39 +311,46 @@ metrics:
311 symbols:
312 - name: tacAuthCounterSuccess
313 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.1
275 - description: Total number of successful TACACS+ authentications
276 - family: TACACS/Authentication/Success
277 - unit: "{authentication}/s"
314 + chart_meta:
315 + description: Total number of successful TACACS+ authentications
316 + family: TACACS/Authentication/Success
317 + unit: "{authentication}/s"
318 - name: tacAuthCounterFailure
319 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.2
280 - description: Total number of failed TACACS+ authentications
281 - family: TACACS/Authentication/Failed
282 - unit: "{authentication}/s"
320 + chart_meta:
321 + description: Total number of failed TACACS+ authentications
322 + family: TACACS/Authentication/Failed
323 + unit: "{authentication}/s"
324 - name: tacAuthCounterCount
325 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.3
285 - description: Total number of TACACS+ authentications
286 - family: TACACS/Authentication/Total
287 - unit: "{authentication}/s"
326 + chart_meta:
327 + description: Total number of TACACS+ authentications
328 + family: TACACS/Authentication/Total
329 + unit: "{authentication}/s"
330 - name: tacAuthCounterTime
331 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.4
290 - description: Total time taken to perform TACACS+ authentications end-to-end in milliseconds
291 - family: TACACS/Authentication/Time/Total
292 - unit: "ms"
332 + chart_meta:
333 + description: Total time taken to perform TACACS+ authentications end-to-end in milliseconds
334 + family: TACACS/Authentication/Time/Total
335 + unit: "ms"
336 - name: tacAuthCounterAuthTime
337 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.5
295 - description: Time taken for TACACS+ authentications in milliseconds
296 - family: TACACS/Authentication/Time
297 - unit: "ms"
338 + chart_meta:
339 + description: Time taken for TACACS+ authentications in milliseconds
340 + family: TACACS/Authentication/Time
341 + unit: "ms"
342 - name: tacServicePolicyEvalTime
343 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.6
300 - description: Time taken for TACACS+ service policy evaluation in milliseconds
301 - family: TACACS/PolicyEvaluation/Service/Time
302 - unit: "ms"
344 + chart_meta:
345 + description: Time taken for TACACS+ service policy evaluation in milliseconds
346 + family: TACACS/PolicyEvaluation/Service/Time
347 + unit: "ms"
348 - name: tacPolicyEvalTime
349 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.7
305 - description: Time taken for TACACS+ policy evaluation in milliseconds
306 - family: TACACS/PolicyEvaluation/Time
307 - unit: "ms"
350 + chart_meta:
351 + description: Time taken for TACACS+ policy evaluation in milliseconds
352 + family: TACACS/PolicyEvaluation/Time
353 + unit: "ms"
354 metric_tags:
355 - table: cppmSystemTable
356 symbol:
@@ -318,24 +364,28 @@ metrics:
364 symbols:
365 - name: tacAutzCounterSuccess
366 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.1
321 - description: Total number of successful TACACS+ authorizations
322 - family: TACACS/Authorization/Success
323 - unit: "{authorization}/s"
367 + chart_meta:
368 + description: Total number of successful TACACS+ authorizations
369 + family: TACACS/Authorization/Success
370 + unit: "{authorization}/s"
371 - name: tacAutzCounterFailure
372 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.2
326 - description: Total number of failed TACACS+ authorizations
327 - family: TACACS/Authorization/Failed
328 - unit: "{authorization}/s"
373 + chart_meta:
374 + description: Total number of failed TACACS+ authorizations
375 + family: TACACS/Authorization/Failed
376 + unit: "{authorization}/s"
377 - name: tacAutzCounterCount
378 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.3
331 - description: Total number of TACACS+ authorizations
332 - family: TACACS/Authorization/Total
333 - unit: "{authorization}/s"
379 + chart_meta:
380 + description: Total number of TACACS+ authorizations
381 + family: TACACS/Authorization/Total
382 + unit: "{authorization}/s"
383 - name: tacAutzCounterTime
384 OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.4
336 - description: Total time taken to perform TACACS+ authorization end-to-end in milliseconds
337 - family: TACACS/Authorization/Time
338 - unit: "ms"
385 + chart_meta:
386 + description: Total time taken to perform TACACS+ authorization end-to-end in milliseconds
387 + family: TACACS/Authorization/Time
388 + unit: "ms"
389 metric_tags:
390 - table: cppmSystemTable
391 symbol:
@@ -349,9 +399,10 @@ metrics:
399 symbols:
400 - name: nwTrafficTotal
401 OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.4
352 - description: Total network traffic in bytes
353 - family: Network/Traffic/Total
354 - unit: "By/s"
402 + chart_meta:
403 + description: Total network traffic in bytes
404 + family: Network/Traffic/Total
405 + unit: "By/s"
406 metric_tags:
407 - symbol:
408 name: nwAppName
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-cx-switch.yaml
+24 -18
@@ -40,9 +40,10 @@ metrics:
40 symbol:
41 name: hrProcessorLoad
42 OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
43 - description: The average, over the last minute, of the percentage of time that this processor was not idle
44 - family: CPU/Usage
45 - unit: "%"
43 + chart_meta:
44 + description: The average, over the last minute, of the percentage of time that this processor was not idle
45 + family: CPU/Usage
46 + unit: "%"
47 - MIB: ARUBAWIRED-TEMPSENSOR-MIB
48 table:
49 OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1
@@ -50,9 +51,10 @@ metrics:
51 symbols:
52 - name: arubaWiredTempSensorTemperature
53 OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.7
53 - description: Current temperature value read from the temperature sensor
54 - family: Sensor/Temperature/Value
55 - unit: "Cel"
54 + chart_meta:
55 + description: Current temperature value read from the temperature sensor
56 + family: Sensor/Temperature/Value
57 + unit: "Cel"
58 metric_tags:
59 - symbol:
60 name: arubaWiredTempSensorName
@@ -70,14 +72,16 @@ metrics:
72 symbols:
73 - name: arubaWiredPSUInstantaneousPower
74 OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.7
73 - description: Total instantaneous power supplied by the power supply in Watts.
74 - family: PowerSupply/Power/Output
75 - unit: "W"
75 + chart_meta:
76 + description: Total instantaneous power supplied by the power supply in Watts.
77 + family: PowerSupply/Power/Output
78 + unit: "W"
79 - name: arubaWiredPSUNumberFailures
80 OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.9
78 - description: Number of failures the power supply has experienced since the most recent insertion of the power supply and boot of the system.
79 - family: PowerSupply/Failure/Count
80 - unit: "{failure}/s"
81 + chart_meta:
82 + description: Number of failures the power supply has experienced since the most recent insertion of the power supply and boot of the system.
83 + family: PowerSupply/Failure/Count
84 + unit: "{failure}/s"
85 metric_tags:
86 - symbol:
87 name: arubaWiredPSUName
@@ -135,14 +139,16 @@ metrics:
139 symbols:
140 - name: arubaWiredFanRPM
141 OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.8
138 - description: Current RPM read for the fan.
139 - family: Fan/Speed
140 - unit: "{revolution}/min"
142 + chart_meta:
143 + description: Current RPM read for the fan.
144 + family: Fan/Speed
145 + unit: "{revolution}/min"
146 - OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.5
147 name: arubaWiredFanState
143 - description: Current status for the fan
144 - family: Fan/Status
145 - unit: "{status}"
148 + chart_meta:
149 + description: Current status for the fan
150 + family: Fan/Status
151 + unit: "{status}"
152 mapping:
153 1: unknown
154 2: empty
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-switch.yaml
+28 -21
@@ -77,9 +77,10 @@ metrics:
77 # NOTE: active(1), inactive(2)
78 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17.1.2
79 name: sysExtFanStatus
80 - description: Status of the Fan
81 - family: Fan/Status
82 - unit: "{status}"
80 + chart_meta:
81 + description: Status of the Fan
82 + family: Fan/Status
83 + unit: "{status}"
84 mapping:
85 1: active
86 2: inactive
@@ -99,9 +100,10 @@ metrics:
100 # NOTE: active(1), inactive(2)
101 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.18.1.2
102 name: sysExtPowerSupplyStatus
102 - description: Status of the power supply
103 - family: PowerSupply/Status
104 - unit: "{status}"
103 + chart_meta:
104 + description: Status of the power supply
105 + family: PowerSupply/Status
106 + unit: "{status}"
107 mapping:
108 1: active
109 2: inactive
@@ -120,9 +122,10 @@ metrics:
122 # The average, over the last minute, of the percentage of time that this processor was not idle.
123 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13.1.3
124 name: sysExtProcessorLoad
123 - description: The average over the last minute of the percentage of time that this processor was not idle
124 - family: CPU/Usage
125 - unit: "%"
125 + chart_meta:
126 + description: The average over the last minute of the percentage of time that this processor was not idle
127 + family: CPU/Usage
128 + unit: "%"
129 metric_tags:
130 - tag: cpu_index
131 symbol:
@@ -137,21 +140,24 @@ metrics:
140 symbols:
141 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.2
142 name: sysExtMemorySize
140 - description: Total memory in KB
141 - family: Memory/Total
142 - unit: "By"
143 + chart_meta:
144 + description: Total memory in KB
145 + family: Memory/Total
146 + unit: "By"
147 scale_factor: 1024
148 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.3
149 name: sysExtMemoryUsed
146 - description: Used memory in KB
147 - family: Memory/Used
148 - unit: "By"
150 + chart_meta:
151 + description: Used memory in KB
152 + family: Memory/Used
153 + unit: "By"
154 scale_factor: 1024
155 - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.4
156 name: sysExtMemoryFree
152 - description: Free memory in KB
153 - family: Memory/Free
154 - unit: "By"
157 + chart_meta:
158 + description: Free memory in KB
159 + family: Memory/Free
160 + unit: "By"
161 scale_factor: 1024
162 metric_tags:
163 - tag: memory_index
@@ -164,6 +170,7 @@ metrics:
170 symbol:
171 OID: 1.3.6.1.4.1.14823.2.2.1.2.1.32.0
172 name: wlsxSysExtPacketLossPercent
167 - description: Packet loss percent of the switch
168 - family: Network/Packet/Loss/Percentage
169 - unit: "%"
173 + chart_meta:
174 + description: Packet loss percent of the switch
175 + family: Network/Packet/Loss/Percentage
176 + unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-wireless-controller.yaml
+160 -120
@@ -56,23 +56,26 @@ metrics:
56 symbol:
57 name: cpu.usage
58 OID: 1.3.6.1.4.1.14823.2.2.1.2.1.30.0
59 - description: Cpu usage percentage
60 - family: CPU/Usage
61 - unit: "%"
59 + chart_meta:
60 + description: Cpu usage percentage
61 + family: CPU/Usage
62 + unit: "%"
63 - MIB: WLSX-SYSTEMEXT-MIB
64 symbol:
65 name: memory.usage
66 OID: 1.3.6.1.4.1.14823.2.2.1.2.1.31.0
66 - description: Memory usage percentage
67 - family: Memory/Usage
68 - unit: "%"
67 + chart_meta:
68 + description: Memory usage percentage
69 + family: Memory/Usage
70 + unit: "%"
71 - MIB: WLSX-SYSTEMEXT-MIB
72 symbol:
73 name: wlsxSysExtPacketLossPercent
74 OID: 1.3.6.1.4.1.14823.2.2.1.2.1.32.0
73 - description: Packet loss percentage
74 - family: Packet/Loss/Percentage
75 - unit: "%"
75 + chart_meta:
76 + description: Packet loss percentage
77 + family: Packet/Loss/Percentage
78 + unit: "%"
79 - MIB: WLSX-SWITCH-MIB
80 table:
81 name: wlsxSysXStorageTable
@@ -80,14 +83,16 @@ metrics:
83 symbols:
84 - name: sysXStorageSize
85 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
83 - description: Size of the storage filesystem in MB
84 - family: Storage/Size/Total
85 - unit: "MBy"
86 + chart_meta:
87 + description: Size of the storage filesystem in MB
88 + family: Storage/Size/Total
89 + unit: "MBy"
90 - name: sysXStorageUsed
91 OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
88 - description: Size of the storage filesystem in MB
89 - family: Storage/Size/Used
90 - unit: "MBy"
92 + chart_meta:
93 + description: Size of the storage filesystem in MB
94 + family: Storage/Size/Used
95 + unit: "MBy"
96 metric_tags:
97 - symbol:
98 name: sysXStorageType
@@ -107,14 +112,16 @@ metrics:
112 symbols:
113 - name: apChannelNoise
114 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.13
110 - description: Noise on the channel
111 - family: Wireless/AccessPoint/Channel/Noise
112 - unit: "dB"
115 + chart_meta:
116 + description: Noise on the channel
117 + family: Wireless/AccessPoint/Channel/Noise
118 + unit: "dB"
119 - name: apSignalToNoiseRatio
120 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.14
115 - description: Signal to noise ratio for the BSSID
116 - family: Wireless/AccessPoint/Signal/SNR
117 - unit: "dB"
121 + chart_meta:
122 + description: Signal to noise ratio for the BSSID
123 + family: Wireless/AccessPoint/Signal/SNR
124 + unit: "dB"
125 metric_tags:
126 - symbol:
127 name: apESSID
@@ -153,84 +160,100 @@ metrics:
160 symbols:
161 - name: apChannelFrameRetryRate
162 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.3
156 - description: Number of retry packets as a percentage of the total packets transmitted and received on this channel
157 - family: Wireless/AccessPoint/Channel/Frame/Retry
158 - unit: "%"
163 + chart_meta:
164 + description: Number of retry packets as a percentage of the total packets transmitted and received on this channel
165 + family: Wireless/AccessPoint/Channel/Frame/Retry
166 + unit: "%"
167 - name: apChannelFrameLowSpeedRate
168 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.4
161 - description: Number of low data rate packets as a percentage of the total packets transmitted and received on this channel
162 - family: Wireless/AccessPoint/Channel/Frame/LowSpeed
163 - unit: "%"
169 + chart_meta:
170 + description: Number of low data rate packets as a percentage of the total packets transmitted and received on this channel
171 + family: Wireless/AccessPoint/Channel/Frame/LowSpeed
172 + unit: "%"
173 - name: apChannelFrameNonUnicastRate
174 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.5
166 - description: Number of broadcast and multicast packets as a percentage of the total packets transmitted on this channel
167 - family: Wireless/AccessPoint/Channel/Frame/NonUnicast
168 - unit: "%"
175 + chart_meta:
176 + description: Number of broadcast and multicast packets as a percentage of the total packets transmitted on this channel
177 + family: Wireless/AccessPoint/Channel/Frame/NonUnicast
178 + unit: "%"
179 - name: apChannelFrameFragmentationRate
180 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.6
171 - description: Number of fragments as a percentage of the total packets transmitted on this channel
172 - family: Wireless/AccessPoint/Channel/Frame/Fragmentation
173 - unit: "%"
181 + chart_meta:
182 + description: Number of fragments as a percentage of the total packets transmitted on this channel
183 + family: Wireless/AccessPoint/Channel/Frame/Fragmentation
184 + unit: "%"
185 - name: apChannelFrameReceiveErrorRate
186 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.7
176 - description: Number of error packets as a percentage of the total packets received on this channel
177 - family: Wireless/AccessPoint/Channel/Frame/Error
178 - unit: "%"
187 + chart_meta:
188 + description: Number of error packets as a percentage of the total packets received on this channel
189 + family: Wireless/AccessPoint/Channel/Frame/Error
190 + unit: "%"
191 - name: apBSSTxPackets
192 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.8
181 - description: Total packets transmitted by the ap on this BSSID
182 - family: Wireless/AccessPoint/BSS/Packet/Out
183 - unit: "{packet}/s"
193 + chart_meta:
194 + description: Total packets transmitted by the ap on this BSSID
195 + family: Wireless/AccessPoint/BSS/Packet/Out
196 + unit: "{packet}/s"
197 - name: apBSSRxPackets
198 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.10
186 - description: Total packets received by the ap on this BSSID
187 - family: Wireless/AccessPoint/BSS/Packet/In
188 - unit: "{packet}/s"
199 + chart_meta:
200 + description: Total packets received by the ap on this BSSID
201 + family: Wireless/AccessPoint/BSS/Packet/In
202 + unit: "{packet}/s"
203 - name: apChannelBwRate
204 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.2
191 - description: Bandwidth rate in Kbps of the apChannel
192 - family: Wireless/AccessPoint/Channel/Bandwidth
193 - unit: "kbit/s"
205 + chart_meta:
206 + description: Bandwidth rate in Kbps of the apChannel
207 + family: Wireless/AccessPoint/Channel/Bandwidth
208 + unit: "kbit/s"
209 - name: apBSSTxBytes
210 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.9
196 - description: Total bytes transmitted by the ap on this BSSID
197 - family: Wireless/AccessPoint/BSS/Traffic/Out
198 - unit: "By/s"
211 + chart_meta:
212 + description: Total bytes transmitted by the ap on this BSSID
213 + family: Wireless/AccessPoint/BSS/Traffic/Out
214 + unit: "By/s"
215 - name: apBSSRxBytes
216 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.11
201 - description: Total bytes received by the ap on this BSSID
202 - family: Wireless/AccessPoint/BSS/Traffic/In
203 - unit: "By/s"
217 + chart_meta:
218 + description: Total bytes received by the ap on this BSSID
219 + family: Wireless/AccessPoint/BSS/Traffic/In
220 + unit: "By/s"
221 - name: apBSSBwRate
222 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.12
206 - description: Bandwidth rate in Kbps of the ap on this BSSID
207 - family: Wireless/AccessPoint/BSS/Bandwidth
208 - unit: "kbit/s"
223 + chart_meta:
224 + description: Bandwidth rate in Kbps of the ap on this BSSID
225 + family: Wireless/AccessPoint/BSS/Bandwidth
226 + unit: "kbit/s"
227 - name: apBSSFrameRetryRate
228 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.13
211 - description: Frame retry rate on this BSSID
212 - family: Wireless/AccessPoint/BSS/Frame/Retry
213 - unit: "%"
229 + chart_meta:
230 + description: Frame retry rate on this BSSID
231 + family: Wireless/AccessPoint/BSS/Frame/Retry
232 + unit: "%"
233 - name: apBSSFrameLowSpeedRate
234 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.14
216 - description: Frame low speed rate on this BSSID
217 - family: Wireless/AccessPoint/BSS/Frame/LowSpeed
218 - unit: "%"
235 + chart_meta:
236 + description: Frame low speed rate on this BSSID
237 + family: Wireless/AccessPoint/BSS/Frame/LowSpeed
238 + unit: "%"
239 - name: apBSSFrameNonUnicastRate
240 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.15
221 - description: Frame non unicast packet rate on this BSSID
222 - family: Wireless/AccessPoint/BSS/Frame/NonUnicast
223 - unit: "%"
241 + chart_meta:
242 + description: Frame non unicast packet rate on this BSSID
243 + family: Wireless/AccessPoint/BSS/Frame/NonUnicast
244 + unit: "%"
245 - name: apBSSFrameFragmentationRate
246 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.16
226 - description: Frame fragmentation rate on this BSSID
227 - family: Wireless/AccessPoint/BSS/Frame/Fragmentation
228 - unit: "%"
247 + chart_meta:
248 + description: Frame fragmentation rate on this BSSID
249 + family: Wireless/AccessPoint/BSS/Frame/Fragmentation
250 + unit: "%"
251 - name: apBSSFrameReceiveErrorRate
252 OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.17
231 - description: Frame receive error rate on this BSSID
232 - family: Wireless/AccessPoint/BSS/Frame/Error
233 - unit: "%"
253 + chart_meta:
254 + description: Frame receive error rate on this BSSID
255 + family: Wireless/AccessPoint/BSS/Frame/Error
256 + unit: "%"
257 metric_tags:
258 - symbol:
259 name: apStatsChannel
@@ -240,58 +263,66 @@ metrics:
263 symbol:
264 name: wlsxNumOfUsers8021x
265 OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.1.0
243 - description: Number of 802.1x users
244 - family: User/802.1x/Count
245 - unit: "{user}"
266 + chart_meta:
267 + description: Number of 802.1x users
268 + family: User/802.1x/Count
269 + unit: "{user}"
270 - MIB: WLSX-USER-MIB
271 symbol:
272 name: wlsxNumOfUsersVPN
273 OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.2.0
250 - description: Number of VPN users
251 - family: User/VPN/Count
252 - unit: "{user}"
274 + chart_meta:
275 + description: Number of VPN users
276 + family: User/VPN/Count
277 + unit: "{user}"
278 - MIB: WLSX-USER-MIB
279 symbol:
280 name: wlsxNumOfUsersCP
281 OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.3.0
257 - description: Number of Captive Portal users
258 - family: User/CaptivePortal/Count
259 - unit: "{user}"
282 + chart_meta:
283 + description: Number of Captive Portal users
284 + family: User/CaptivePortal/Count
285 + unit: "{user}"
286 - MIB: WLSX-USER-MIB
287 symbol:
288 name: wlsxNumOfUsersMAC
289 OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.4.0
264 - description: Number of MAC users
265 - family: User/MAC/Count
266 - unit: "{user}"
290 + chart_meta:
291 + description: Number of MAC users
292 + family: User/MAC/Count
293 + unit: "{user}"
294 - MIB: WLSX-USER-MIB
295 symbol:
296 name: wlsxNumOfUsersStateful8021x
297 OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.5.0
271 - description: Number of stateful 802.1x users
272 - family: User/Stateful802.1x/Count
273 - unit: "{user}"
298 + chart_meta:
299 + description: Number of stateful 802.1x users
300 + family: User/Stateful802.1x/Count
301 + unit: "{user}"
302 - MIB: WLSX-HA-MIB
303 symbol:
304 name: haActiveAPs
305 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.1.0
278 - description: Number of active APs
279 - family: HighAvailability/AccessPoint/Active
280 - unit: "{access_point}"
306 + chart_meta:
307 + description: Number of active APs
308 + family: HighAvailability/AccessPoint/Active
309 + unit: "{access_point}"
310 - MIB: WLSX-HA-MIB
311 symbol:
312 name: haStandbyAPs
313 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.2.0
285 - description: Number of standby APs
286 - family: HighAvailability/AccessPoint/Standby
287 - unit: "{access_point}"
314 + chart_meta:
315 + description: Number of standby APs
316 + family: HighAvailability/AccessPoint/Standby
317 + unit: "{access_point}"
318 - MIB: WLSX-HA-MIB
319 symbol:
320 name: haTotalAPs
321 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.3.0
292 - description: Total number of APs
293 - family: HighAvailability/AccessPoint/Total
294 - unit: "{access_point}"
322 + chart_meta:
323 + description: Total number of APs
324 + family: HighAvailability/AccessPoint/Total
325 + unit: "{access_point}"
326 - MIB: WLSX-HA-MIB
327 table:
328 name: wlsxHighAvalabilityTunnelTable
@@ -299,24 +330,28 @@ metrics:
330 symbols:
331 - name: haActiveVapTunnels
332 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.1
302 - description: Number of active per VAP GRE tunnels
303 - family: HighAvailability/Tunnel/VAPGRE/Active
304 - unit: "{tunnel}"
333 + chart_meta:
334 + description: Number of active per VAP GRE tunnels
335 + family: HighAvailability/Tunnel/VAPGRE/Active
336 + unit: "{tunnel}"
337 - name: haStandbyVapTunnels
338 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.2
307 - description: Number of standby per VAP GRE tunnels
308 - family: HighAvailability/Tunnel/VAPGRE/Standby
309 - unit: "{tunnel}"
339 + chart_meta:
340 + description: Number of standby per VAP GRE tunnels
341 + family: HighAvailability/Tunnel/VAPGRE/Standby
342 + unit: "{tunnel}"
343 - name: haTotalVapTunnels
344 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.3
312 - description: Total number of per VAP GRE tunnels
313 - family: HighAvailability/Tunnel/VAPGRE/Total
314 - unit: "{tunnel}"
345 + chart_meta:
346 + description: Total number of per VAP GRE tunnels
347 + family: HighAvailability/Tunnel/VAPGRE/Total
348 + unit: "{tunnel}"
349 - name: haAPHbtTunnels
350 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.4
317 - description: Number of AP hbt GRE tunnels
318 - family: HighAvailability/Tunnel/APHBTGRE/Total
319 - unit: "{tunnel}"
351 + chart_meta:
352 + description: Number of AP hbt GRE tunnels
353 + family: HighAvailability/Tunnel/APHBTGRE/Total
354 + unit: "{tunnel}"
355 metric_tags:
356 - symbol:
357 OID: 1.3.6.1.4.1.14823.2.2.1.20.1.1.1.2
@@ -331,19 +366,22 @@ metrics:
366 symbols:
367 - name: wlanStaTransmitRate
368 OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.10
334 - description: Transmit rate with which the station is associated with this system
335 - family: Wireless/Station/Transmit
336 - unit: "bit/s"
369 + chart_meta:
370 + description: Transmit rate with which the station is associated with this system
371 + family: Wireless/Station/Transmit
372 + unit: "bit/s"
373 - name: wlanStaRSSI
374 OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.14
339 - description: Signal to noise ratio for the station
340 - family: Wireless/Station/Signal/RSSI
341 - unit: "dB"
375 + chart_meta:
376 + description: Signal to noise ratio for the station
377 + family: Wireless/Station/Signal/RSSI
378 + unit: "dB"
379 - name: wlanStaUpTime
380 OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.15
344 - description: Time since the station associated to the current BSSID
345 - family: Wireless/Station/Uptime
346 - unit: "cs"
381 + chart_meta:
382 + description: Time since the station associated to the current BSSID
383 + family: Wireless/Station/Uptime
384 + unit: "cs"
385 # - name: wlanStaTransmitRateCode
386 # OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.17
387 # description: Transmit rate code of the station
@@ -412,14 +450,16 @@ metrics:
450 symbols:
451 - name: wlanStaTxBytes64
452 OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.25
415 - description: Number of bytes transmitted by this station, 64-bit value
416 - family: Wireless/Station/Traffic/Out
417 - unit: "By"
453 + chart_meta:
454 + description: Number of bytes transmitted by this station, 64-bit value
455 + family: Wireless/Station/Traffic/Out
456 + unit: "By"
457 - name: wlanStaRxBytes64
458 OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.26
420 - description: Number of bytes received by this station, 64-bit value
421 - family: Wireless/Station/Traffic/In
422 - unit: "By"
459 + chart_meta:
460 + description: Number of bytes received by this station, 64-bit value
461 + family: Wireless/Station/Traffic/In
462 + unit: "By"
463 metric_tags:
464 - symbol:
465 name: wlanStaChannelNum
src/go/plugin/go.d/config/go.d/snmp.profiles/default/audiocodes-mediant-sbc.yaml
+12 -9
@@ -18,23 +18,26 @@ metrics:
18 symbol:
19 name: cpu.usage
20 OID: 1.3.6.1.2.1.25.3.3.1.2.1
21 - description: The average, over the last minute, of the percentage of time that the processor was not idle
22 - family: CPU/Usage
23 - unit: "%"
21 + chart_meta:
22 + description: The average, over the last minute, of the percentage of time that the processor was not idle
23 + family: CPU/Usage
24 + unit: "%"
25 # TODO: The allocation unit size is defined in hrStorageAllocationUnits (1.3.6.1.2.1.25.2.3.1.4).
26 - MIB: HOST-RESOURCES-MIB
27 symbol:
28 name: memory.total
29 OID: 1.3.6.1.2.1.25.2.3.1.5.1
29 - description: The size of the storage represented by this entry, in units of hrStorageAllocationUnits.
30 - family: Memory/Total
31 - unit: "By"
30 + chart_meta:
31 + description: The size of the storage represented by this entry, in units of hrStorageAllocationUnits.
32 + family: Memory/Total
33 + unit: "By"
34 scale_factor: 1024
35 - MIB: HOST-RESOURCES-MIB
36 symbol:
37 name: memory.used
38 OID: 1.3.6.1.2.1.25.2.3.1.6.1
37 - description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.
38 - family: Memory/Used
39 - unit: "By"
39 + chart_meta:
40 + description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits.
41 + family: Memory/Used
42 + unit: "By"
43 scale_factor: 1024
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-aura-media-server.yaml
+12 -9
@@ -11,24 +11,27 @@ metrics:
11 symbol:
12 name: cpu.usage
13 OID: 1.3.6.1.2.1.25.3.3.1.2.196608
14 - description: The average, over the last minute, of the percentage of time that this processor was not idle
15 - family: CPU/Usage
16 - unit: "%"
14 + chart_meta:
15 + description: The average, over the last minute, of the percentage of time that this processor was not idle
16 + family: CPU/Usage
17 + unit: "%"
18
19 # TODO: The allocation unit size is defined in hrStorageAllocationUnits (1.3.6.1.2.1.25.2.3.1.4).
20 - MIB: HOST-RESOURCES-MIB
21 symbol:
22 name: memory.total
23 OID: 1.3.6.1.2.1.25.2.3.1.5.1
23 - description: The size of the storage represented by this entry, in units of hrStorageAllocationUnits
24 - family: Memory/Total
25 - unit: "By"
24 + chart_meta:
25 + description: The size of the storage represented by this entry, in units of hrStorageAllocationUnits
26 + family: Memory/Total
27 + unit: "By"
28 scale_factor: 1024
29 - MIB: HOST-RESOURCES-MIB
30 symbol:
31 name: memory.used
32 OID: 1.3.6.1.2.1.25.2.3.1.6.1
31 - description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
32 - family: Memory/Used
33 - unit: "By"
33 + chart_meta:
34 + description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
35 + family: Memory/Used
36 + unit: "By"
37 scale_factor: 1024
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-cajun-switch.yaml
+8 -6
@@ -17,16 +17,18 @@ metrics:
17 symbol:
18 name: cpu.usage
19 OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.6.1 # genCpuCurrentUtilization.1
20 - description: Current CPU utilization in percentage if the monitoring is enabled
21 - family: CPU/Usage
22 - unit: "%"
20 + chart_meta:
21 + description: Current CPU utilization in percentage if the monitoring is enabled
22 + family: CPU/Usage
23 + unit: "%"
24 - MIB: UTILIZATION-MANAGEMENT-MIB
25 symbol:
26 name: memory.usage
27 OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.3.1 # genMemUtilizationPercentUsed.1
27 - description: Percentage of memory used
28 - family: Memory/Usage
29 - unit: "%"
28 + chart_meta:
29 + description: Percentage of memory used
30 + family: Memory/Usage
31 + unit: "%"
32 - MIB: CONFIG-MIB
33 table:
34 name: genPortTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-media-gateway.yaml
+64 -48
@@ -20,16 +20,18 @@ metrics:
20 symbol:
21 name: cpu.usage
22 OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.5.10 # genCpuAverageUtilization.10
23 - description: Current average CPU utilization in percentage
24 - family: CPU/Usage
25 - unit: "%"
23 + chart_meta:
24 + description: Current average CPU utilization in percentage
25 + family: CPU/Usage
26 + unit: "%"
27 - MIB: UTILIZATION-MANAGEMENT-MIB
28 symbol:
29 name: memory.usage
30 OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.3.10 # genMemUtilizationPercentUsed.10
30 - description: Percentage of memory used
31 - family: Memory/Usage
32 - unit: "%"
31 + chart_meta:
32 + description: Percentage of memory used
33 + family: Memory/Usage
34 + unit: "%"
35 - MIB: AVAYA-ENTITY-MIB
36 table:
37 name: avEntPhyChFruTable
@@ -37,9 +39,10 @@ metrics:
39 symbols:
40 - OID: 1.3.6.1.4.1.6889.2.1.99.5.1.1.2
41 name: avaya.avEntPhyChFruFault
40 - description: Description of FRU fault
41 - family: Hardware/FRU/Fault/Status
42 - unit: "{status}"
42 + chart_meta:
43 + description: Description of FRU fault
44 + family: Hardware/FRU/Fault/Status
45 + unit: "{status}"
46 mapping:
47 1: none
48 2: mulfunction
@@ -51,9 +54,10 @@ metrics:
54 255: unknown
55 - OID: 1.3.6.1.4.1.6889.2.1.99.5.1.1.1
56 name: avaya.avEntPhyChFruOperStat
54 - description: Operational status of the chassis FRU unit
55 - family: Hardware/FRU/Operational/Status
56 - unit: "{status}"
57 + chart_meta:
58 + description: Operational status of the chassis FRU unit
59 + family: Hardware/FRU/Operational/Status
60 + unit: "{status}"
61 mapping:
62 1: ok
63 2: fault
@@ -73,9 +77,10 @@ metrics:
77 symbol:
78 name: avaya.cmgRemoteSig802Priority
79 OID: 1.3.6.1.4.1.6889.2.9.1.2.2.3.0
76 - description: 802.1 priority for signaling traffic on the H.248 link received from the controller
77 - family: Network/SignalTraffic/Remote/Priority
78 - unit: "1"
80 + chart_meta:
81 + description: 802.1 priority for signaling traffic on the H.248 link received from the controller
82 + family: Network/SignalTraffic/Remote/Priority
83 + unit: "1"
84 # - MIB: G700-MG-MIB
85 # symbol:
86 # name: avaya.cmgLocalSigDscp
@@ -87,23 +92,26 @@ metrics:
92 symbol:
93 name: avaya.cmgLocalSig802Priority
94 OID: 1.3.6.1.4.1.6889.2.9.1.2.2.5.0
90 - description: 802.1 priority for signaling traffic on the H.248 link locally administered
91 - family: Network/SignalTraffic/Local/Priority
92 - unit: "1"
95 + chart_meta:
96 + description: 802.1 priority for signaling traffic on the H.248 link locally administered
97 + family: Network/SignalTraffic/Local/Priority
98 + unit: "1"
99 - MIB: G700-MG-MIB
100 symbol:
101 name: avaya.cmgCurrent802Vlan
102 OID: 1.3.6.1.4.1.6889.2.9.1.2.2.7.0
97 - description: Current 802.1 VLAN ID in use for this processor
98 - family: Network/VLAN/Current
99 - unit: "1"
103 + chart_meta:
104 + description: Current 802.1 VLAN ID in use for this processor
105 + family: Network/VLAN/Current
106 + unit: "1"
107 - MIB: G700-MG-MIB
108 symbol:
109 name: avaya.cmgH248LinkErrorCode
110 OID: 1.3.6.1.4.1.6889.2.9.1.3.4.0
104 - description: Most recently received H.248 error code affecting the link between media gateway and controller
105 - family: Network/H248Link/Error/Code
106 - unit: "{status}"
111 + chart_meta:
112 + description: Most recently received H.248 error code affecting the link between media gateway and controller
113 + family: Network/H248Link/Error/Code
114 + unit: "{status}"
115 mapping:
116 0: No error
117 400: Syntax error in message
@@ -165,33 +173,38 @@ metrics:
173 symbols:
174 - name: avaya.cmgVoipTotalChannels
175 OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.6
168 - description: Total number of channels available to the VoIP engine
169 - family: Voice/VoIPEngine/Channel/Total
170 - unit: "{channel}"
176 + chart_meta:
177 + description: Total number of channels available to the VoIP engine
178 + family: Voice/VoIPEngine/Channel/Total
179 + unit: "{channel}"
180 - name: avaya.cmgVoipChannelsInUse
181 OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.7
173 - description: Number of channels currently in use at the VoIP engine
174 - family: Voice/VoIPEngine/Channel/InUse
175 - unit: "{channel}"
182 + chart_meta:
183 + description: Number of channels currently in use at the VoIP engine
184 + family: Voice/VoIPEngine/Channel/InUse
185 + unit: "{channel}"
186 - name: avaya.cmgVoipAverageOccupancy
187 OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.8
178 - description: Five-minute average occupancy of the VoIP engine
179 - family: Voice/VoIPEngine/Occupancy
180 - unit: "%"
188 + chart_meta:
189 + description: Five-minute average occupancy of the VoIP engine
190 + family: Voice/VoIPEngine/Occupancy
191 + unit: "%"
192 - OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.9
193 name: avaya.cmgVoipHyperactivity
183 - description: Indicates whether hyperactivity has been detected
184 - family: Voice/VoIPEngine/Hyperactivity/Status
185 - unit: "{status}"
194 + chart_meta:
195 + description: Indicates whether hyperactivity has been detected
196 + family: Voice/VoIPEngine/Hyperactivity/Status
197 + unit: "{status}"
198 mapping:
199 1: normal
200 2: hyperactive
201 255: unknown
202 - OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.10
203 name: avaya.cmgVoipAdminState
192 - description: Maintenance busy-out state
193 - family: Voice/VoIPEngine/Admin/Status
194 - unit: "{status}"
204 + chart_meta:
205 + description: Maintenance busy-out state
206 + family: Voice/VoIPEngine/Admin/Status
207 + unit: "{status}"
208 mapping:
209 1: busy-out
210 2: release
@@ -199,9 +212,10 @@ metrics:
212 255: unknown
213 - OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.12
214 name: avaya.cmgVoipDspStatus
202 - description: Status of the DSP complex
203 - family: Voice/VoIPEngine/DSP/Status
204 - unit: "{status}"
215 + chart_meta:
216 + description: Status of the DSP complex
217 + family: Voice/VoIPEngine/DSP/Status
218 + unit: "{status}"
219 mapping:
220 1: idle
221 2: in_use
@@ -218,14 +232,16 @@ metrics:
232 symbols:
233 - name: avaya.cmgDSPCoreTotalChannels
234 OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.2
221 - description: Total number of channels available to the DSP core
222 - family: Voice/VoIPEngine/DSPCore/Channel/Total
223 - unit: "{channel}"
235 + chart_meta:
236 + description: Total number of channels available to the DSP core
237 + family: Voice/VoIPEngine/DSPCore/Channel/Total
238 + unit: "{channel}"
239 - name: avaya.cmgDSPCoreChannelsInUse
240 OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.3
226 - description: Number of channels currently in use at the DSP core
227 - family: Voice/VoIPEngine/DSPCore/Channel/InUse
228 - unit: "{channel}"
241 + chart_meta:
242 + description: Number of channels currently in use at the DSP core
243 + family: Voice/VoIPEngine/DSPCore/Channel/InUse
244 + unit: "{channel}"
245 - OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.4
246 name: avaya.cmgDSPCoreAdminState
247 family: Voice/VoIPEngine/DSPCore/Admin/Status
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-nortel-ethernet-routing-switch.yaml
+24 -18
@@ -17,32 +17,36 @@ metrics:
17 symbol:
18 name: cpu.usage
19 OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.5.3.10.0 # s5ChasUtilCPUUsageLast1Minute.3.10.0
20 - description: Percentage of time the CPU has been busy over the last 1 minute
21 - family: CPU/Usage
22 - unit: "%"
20 + chart_meta:
21 + description: Percentage of time the CPU has been busy over the last 1 minute
22 + family: CPU/Usage
23 + unit: "%"
24 - MIB: S5-CHASSIS-MIB
25 symbol:
26 name: memory.total
27 OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.12.3.10.0 # s5ChasUtilMemoryTotalMB.3.10.0
27 - description: Total RAM of unit
28 - family: Memory/Total
29 - unit: "By"
28 + chart_meta:
29 + description: Total RAM of unit
30 + family: Memory/Total
31 + unit: "By"
32 scale_factor: 104857
33 - MIB: S5-CHASSIS-MIB
34 symbol:
35 name: memory.free
36 OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.13.3.10.0 # s5ChasUtilMemoryAvailableMB.3.10.0
35 - description: Available RAM of unit
36 - family: Memory/Free
37 - unit: "By"
37 + chart_meta:
38 + description: Available RAM of unit
39 + family: Memory/Free
40 + unit: "By"
41 scale_factor: 104857
42 - MIB: S5-CHASSIS-MIB
43 symbol:
44 name: avaya.s5ChasTmpSnrTmpValue
45 OID: 1.3.6.1.4.1.45.1.6.3.7.1.1.5.5.10.0 # s5ChasTmpSnrTmpValue.5.10.0
43 - description: Current temperature value of the temperature sensor measured in units of a half degree centigrade
44 - family: Environment/Temperature/Value
45 - unit: "Cel"
46 + chart_meta:
47 + description: Current temperature value of the temperature sensor measured in units of a half degree centigrade
48 + family: Environment/Temperature/Value
49 + unit: "Cel"
50 scale_factor: 0.5
51 - MIB: S5-CHASSIS-MIB
52 table:
@@ -51,9 +55,10 @@ metrics:
55 symbols:
56 - OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.9
57 name: avaya.s5ChasComAdminState
54 - description: Desired state of the component or sub-component
55 - family: Hardware/Chassis/Component/Admin/Status
56 - unit: "{status}"
58 + chart_meta:
59 + description: Desired state of the component or sub-component
60 + family: Hardware/Chassis/Component/Admin/Status
61 + unit: "{status}"
62 mapping:
63 1: other
64 2: not_avail
@@ -63,9 +68,10 @@ metrics:
68 6: test
69 - OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.10
70 name: avaya.s5ChasComOperState
66 - description: Current operational state of the component or sub-component
67 - family: Hardware/Chassis/Component/Operational/Status
68 - unit: "{status}"
71 + chart_meta:
72 + description: Current operational state of the component or sub-component
73 + family: Hardware/Chassis/Component/Operational/Status
74 + unit: "{status}"
75 mapping:
76 1: other
77 2: not_avail
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avocent-acs.yaml
+16 -12
@@ -26,9 +26,10 @@ metrics:
26 symbol:
27 name: avocent.acsPowerSupplyStatePw1
28 OID: 1.3.6.1.4.1.10418.26.2.1.8.2.0
29 - description: State of the first power supply
30 - family: PowerSupply/1/Status
31 - unit: "{status}"
29 + chart_meta:
30 + description: State of the first power supply
31 + family: PowerSupply/1/Status
32 + unit: "{status}"
33 mapping:
34 statePowerOn: 1
35 statePowerOff: 2
@@ -37,9 +38,10 @@ metrics:
38 symbol:
39 name: avocent.acsPowerSupplyStatePw2
40 OID: 1.3.6.1.4.1.10418.26.2.1.8.3.0
40 - description: State of the second power supply
41 - family: PowerSupply/2/Status
42 - unit: "{status}"
41 + chart_meta:
42 + description: State of the second power supply
43 + family: PowerSupply/2/Status
44 + unit: "{status}"
45 mapping:
46 statePowerOn: 1
47 statePowerOff: 2
@@ -48,9 +50,10 @@ metrics:
50 symbol:
51 name: avocent.acsActiveSessionsNumberOfSession
52 OID: 1.3.6.1.4.1.10418.26.2.2.1.0
51 - description: Number of active sessions
52 - family: Session/Active
53 - unit: "{session}"
53 + chart_meta:
54 + description: Number of active sessions
55 + family: Session/Active
56 + unit: "{session}"
57 - MIB: ACS8000-MIB
58 table:
59 OID: 1.3.6.1.4.1.10418.26.2.3.2
@@ -58,9 +61,10 @@ metrics:
61 symbols:
62 - OID: 1.3.6.1.4.1.10418.26.2.3.2.1.3
63 name: avocent.acsSerialPortTableStatus
61 - description: The status of the serial port
62 - family: SerialPort/Status
63 - unit: "{status}"
64 + chart_meta:
65 + description: The status of the serial port
66 + family: SerialPort/Status
67 + unit: "{status}"
68 mapping:
69 1: disabled
70 2: idle
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-32s.yaml
+20 -15
@@ -15,23 +15,26 @@ metrics:
15 symbol:
16 OID: 1.3.6.1.4.1.20916.1.11.1.1.1.1.0
17 name: roomalert.32s.internal_tempf
18 - description: Internal temperature
19 - family: Sensor/Internal/Temperature/Value
20 - unit: "degF"
18 + chart_meta:
19 + description: Internal temperature
20 + family: Sensor/Internal/Temperature/Value
21 + unit: "degF"
22 - MIB: ROOMALERT32S-MIB
23 symbol:
24 OID: 1.3.6.1.4.1.20916.1.11.1.1.1.2.0
25 name: roomalert.32s.internal_tempc
25 - description: Internal temperature
26 - family: Sensor/Internal/Temperature/Value
27 - unit: "Cel"
26 + chart_meta:
27 + description: Internal temperature
28 + family: Sensor/Internal/Temperature/Value
29 + unit: "Cel"
30 - MIB: ROOMALERT32S-MIB
31 symbol:
32 OID: 1.3.6.1.4.1.20916.1.11.1.1.2.1.0
33 name: roomalert.32s.internal_humidity
32 - description: Internal relative humidity percentage
33 - family: Sensor/Internal/Humidity/Value
34 - unit: "%"
34 + chart_meta:
35 + description: Internal relative humidity percentage
36 + family: Sensor/Internal/Humidity/Value
37 + unit: "%"
38 # - MIB: ROOMALERT32S-MIB
39 # symbol:
40 # OID: 1.3.6.1.4.1.20916.1.11.1.1.3.1.0
@@ -44,16 +47,18 @@ metrics:
47 symbol:
48 OID: 1.3.6.1.4.1.20916.1.11.1.1.4.1.0
49 name: roomalert.32s.internal_heat_index
47 - description: Internal heat index
48 - family: Sensor/Internal/HeatIndex/Value
49 - unit: "degF"
50 + chart_meta:
51 + description: Internal heat index
52 + family: Sensor/Internal/HeatIndex/Value
53 + unit: "degF"
54 - MIB: ROOMALERT32S-MIB
55 symbol:
56 OID: 1.3.6.1.4.1.20916.1.11.1.1.4.2.0
57 name: roomalert.32s.internal_heat_indexC
54 - description: Internal heat index
55 - family: Sensor/Internal/HeatIndex/Value
56 - unit: "Cel"
58 + chart_meta:
59 + description: Internal heat index
60 + family: Sensor/Internal/HeatIndex/Value
61 + unit: "Cel"
62 # TODO, can't find MIB, so can't fill in descriptions and know what each metric is
63 # - MIB: ROOMALERT32S-MIB
64 # symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-3e.yaml
+60 -45
@@ -15,16 +15,18 @@ metrics:
15 symbol:
16 OID: 1.3.6.1.4.1.20916.1.9.1.1.1.1.0
17 name: roomalert.3e.digital_sen1_1
18 - description: The current temperature reading of the Internal Temperature Sensor
19 - family: Sensor/Internal/Temperature/Value
20 - unit: "Cel"
18 + chart_meta:
19 + description: The current temperature reading of the Internal Temperature Sensor
20 + family: Sensor/Internal/Temperature/Value
21 + unit: "Cel"
22 - MIB: ROOMALERT3E-MIB
23 symbol:
24 OID: 1.3.6.1.4.1.20916.1.9.1.1.1.2.0
25 name: roomalert.3e.digital_sen1_2
25 - description: The current temperature reading of the Internal Temperature Sensor
26 - family: Sensor/Internal/Temperature/Value
27 - unit: "degF"
26 + chart_meta:
27 + description: The current temperature reading of the Internal Temperature Sensor
28 + family: Sensor/Internal/Temperature/Value
29 + unit: "degF"
30 # - MIB: ROOMALERT3E-MIB
31 # symbol:
32 # OID: 1.3.6.1.4.1.20916.1.9.1.1.1.3.0
@@ -34,37 +36,42 @@ metrics:
36 symbol:
37 OID: 1.3.6.1.4.1.20916.1.9.1.1.2.1.0
38 name: roomalert.3e.digital_sen2_1
37 - description: Current temperature
38 - family: Sensor/External/Temperature/Value
39 - unit: "Cel"
39 + chart_meta:
40 + description: Current temperature
41 + family: Sensor/External/Temperature/Value
42 + unit: "Cel"
43 - MIB: ROOMALERT3E-MIB
44 symbol:
45 OID: 1.3.6.1.4.1.20916.1.9.1.1.2.2.0
46 name: roomalert.3e.digital_sen2_2
44 - description: Current temperature
45 - family: Sensor/External/Temperature/Value
46 - unit: "degF"
47 + chart_meta:
48 + description: Current temperature
49 + family: Sensor/External/Temperature/Value
50 + unit: "degF"
51 - MIB: ROOMALERT3E-MIB
52 symbol:
53 OID: 1.3.6.1.4.1.20916.1.9.1.1.2.3.0
54 name: roomalert.3e.digital_sen2_3
51 - description: Current relative humidity
52 - family: Sensor/External/Humidity/Value
53 - unit: "%"
55 + chart_meta:
56 + description: Current relative humidity
57 + family: Sensor/External/Humidity/Value
58 + unit: "%"
59 - MIB: ROOMALERT3E-MIB
60 symbol:
61 OID: 1.3.6.1.4.1.20916.1.9.1.1.2.5.0
62 name: roomalert.3e.digital_sen2_5
58 - description: Current heat index
59 - family: Sensor/External/HeatIndex/Value
60 - unit: "Cel"
63 + chart_meta:
64 + description: Current heat index
65 + family: Sensor/External/HeatIndex/Value
66 + unit: "Cel"
67 - MIB: ROOMALERT3E-MIB
68 symbol:
69 OID: 1.3.6.1.4.1.20916.1.9.1.1.2.4.0
70 name: roomalert.3e.digital_sen2_4
65 - description: Current heat index
66 - family: Sensor/External/HeatIndex/Value
67 - unit: "degF"
71 + chart_meta:
72 + description: Current heat index
73 + family: Sensor/External/HeatIndex/Value
74 + unit: "degF"
75 # - MIB: ROOMALERT3E-MIB
76 # symbol:
77 # OID: 1.3.6.1.4.1.20916.1.9.1.1.2.6.0
@@ -86,9 +93,10 @@ metrics:
93 symbol:
94 OID: 1.3.6.1.4.1.20916.1.9.1.2.1.0
95 name: roomalert.3e.switch_sen1
89 - description: The reading for the switch sensor
90 - family: Sensor/Switch/Status
91 - unit: "{status}"
96 + chart_meta:
97 + description: The reading for the switch sensor
98 + family: Sensor/Switch/Status
99 + unit: "{status}"
100 mapping:
101 0: open
102 1: closed
@@ -101,9 +109,10 @@ metrics:
109 symbol:
110 OID: 1.3.6.1.4.1.20916.1.9.2.1.0
111 name: roomalert.3e.red_led
104 - description: The status of the red Signal Tower LED
105 - family: SignalTower/LED/Red/Status
106 - unit: "{status}"
112 + chart_meta:
113 + description: The status of the red Signal Tower LED
114 + family: SignalTower/LED/Red/Status
115 + unit: "{status}"
116 mapping:
117 0: off
118 1: on
@@ -111,9 +120,10 @@ metrics:
120 symbol:
121 OID: 1.3.6.1.4.1.20916.1.9.2.2.0
122 name: roomalert.3e.amber_led
114 - description: The status of the amber Signal Tower LED
115 - family: SignalTower/LED/Amber/Status
116 - unit: "{status}"
123 + chart_meta:
124 + description: The status of the amber Signal Tower LED
125 + family: SignalTower/LED/Amber/Status
126 + unit: "{status}"
127 mapping:
128 0: off
129 1: on
@@ -121,9 +131,10 @@ metrics:
131 symbol:
132 OID: 1.3.6.1.4.1.20916.1.9.2.3.0
133 name: roomalert.3e.green_led
124 - description: The status of the green Signal Tower LED
125 - family: SignalTower/LED/Green/Status
126 - unit: "{status}"
134 + chart_meta:
135 + description: The status of the green Signal Tower LED
136 + family: SignalTower/LED/Green/Status
137 + unit: "{status}"
138 mapping:
139 0: off
140 1: on
@@ -131,9 +142,10 @@ metrics:
142 symbol:
143 OID: 1.3.6.1.4.1.20916.1.9.2.4.0
144 name: roomalert.3e.blue_led
134 - description: The status of the blue Signal Tower LED
135 - family: SignalTower/LED/Blue/Status
136 - unit: "{status}"
145 + chart_meta:
146 + description: The status of the blue Signal Tower LED
147 + family: SignalTower/LED/Blue/Status
148 + unit: "{status}"
149 mapping:
150 0: off
151 1: on
@@ -141,9 +153,10 @@ metrics:
153 symbol:
154 OID: 1.3.6.1.4.1.20916.1.9.2.5.0
155 name: roomalert.3e.white_led
144 - description: The status of the white Signal Tower LED
145 - family: SignalTower/LED/White/Status
146 - unit: "{status}"
156 + chart_meta:
157 + description: The status of the white Signal Tower LED
158 + family: SignalTower/LED/White/Status
159 + unit: "{status}"
160 mapping:
161 0: off
162 1: on
@@ -151,9 +164,10 @@ metrics:
164 symbol:
165 OID: 1.3.6.1.4.1.20916.1.9.2.6.0
166 name: roomalert.3e.alarm1
154 - description: The status of the Signal Tower alarm1
155 - family: SignalTower/Alarm/1/Status
156 - unit: "{status}"
167 + chart_meta:
168 + description: The status of the Signal Tower alarm1
169 + family: SignalTower/Alarm/1/Status
170 + unit: "{status}"
171 mapping:
172 0: off
173 1: on
@@ -161,9 +175,10 @@ metrics:
175 symbol:
176 OID: 1.3.6.1.4.1.20916.1.9.2.7.0
177 name: roomalert.3e.alarm2
164 - description: The status of the Signal Tower alarm2
165 - family: SignalTower/Alarm/2/Status
166 - unit: "{status}"
178 + chart_meta:
179 + description: The status of the Signal Tower alarm2
180 + family: SignalTower/Alarm/2/Status
181 + unit: "{status}"
182 mapping:
183 0: off
184 1: on
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-3s.yaml
+28 -21
@@ -15,30 +15,34 @@ metrics:
15 symbol:
16 OID: 1.3.6.1.4.1.20916.1.13.1.1.1.1.0
17 name: roomalert.3s.internal_tempf
18 - description: Internal temperature
19 - family: Sensor/Internal/Temperature/Value
20 - unit: "degF"
18 + chart_meta:
19 + description: Internal temperature
20 + family: Sensor/Internal/Temperature/Value
21 + unit: "degF"
22 - MIB: ROOMALERT3S-MIB
23 symbol:
24 OID: 1.3.6.1.4.1.20916.1.13.1.1.1.2.0
25 name: roomalert.3s.internal_tempc
25 - description: Internal temperature
26 - family: Sensor/Internal/Temperature/Value
27 - unit: "Cel"
26 + chart_meta:
27 + description: Internal temperature
28 + family: Sensor/Internal/Temperature/Value
29 + unit: "Cel"
30 - MIB: ROOMALERT3S-MIB
31 symbol:
32 OID: 1.3.6.1.4.1.20916.1.13.1.2.1.1.0
33 name: roomalert.3s.digital_sen1_1
32 - description: Current temperature
33 - family: Sensor/Digital/Temperature/Value
34 - unit: "Cel"
34 + chart_meta:
35 + description: Current temperature
36 + family: Sensor/Digital/Temperature/Value
37 + unit: "Cel"
38 - MIB: ROOMALERT3S-MIB
39 symbol:
40 OID: 1.3.6.1.4.1.20916.1.13.1.2.1.2.0
41 name: roomalert.3s.digital_sen1_2
39 - description: Current temperature
40 - family: Sensor/Digital/Temperature/Value
41 - unit: "degF"
42 + chart_meta:
43 + description: Current temperature
44 + family: Sensor/Digital/Temperature/Value
45 + unit: "degF"
46 # - MIB: ROOMALERT3S-MIB
47 # symbol:
48 # OID: 1.3.6.1.4.1.20916.1.13.1.2.1.3.0
@@ -62,23 +66,26 @@ metrics:
66 symbol:
67 OID: 1.3.6.1.4.1.20916.1.13.1.2.1.6.0
68 name: roomalert.3s.digital_sen1_6
65 - description: Current dew point
66 - family: Sensor/Digital/DewPoint/Value
67 - unit: "Cel"
69 + chart_meta:
70 + description: Current dew point
71 + family: Sensor/Digital/DewPoint/Value
72 + unit: "Cel"
73 - MIB: ROOMALERT3S-MIB
74 symbol:
75 OID: 1.3.6.1.4.1.20916.1.13.1.2.1.7.0
76 name: roomalert.3s.digital_sen1_7
72 - description: Current dew point
73 - family: Sensor/Digital/DewPoint/Value
74 - unit: "degF"
77 + chart_meta:
78 + description: Current dew point
79 + family: Sensor/Digital/DewPoint/Value
80 + unit: "degF"
81 - MIB: ROOMALERT3S-MIB
82 symbol:
83 OID: 1.3.6.1.4.1.20916.1.13.1.3.1.0
84 name: roomalert.3s.switch_sen1
79 - description: The reading for switch sensor 1
80 - family: Sensor/Switch/Status
81 - unit: "{status}"
85 + chart_meta:
86 + description: The reading for switch sensor 1
87 + family: Sensor/Switch/Status
88 + unit: "{status}"
89 mapping:
90 0: open
91 1: closed
src/go/plugin/go.d/config/go.d/snmp.profiles/default/barracuda-cloudgen.yaml
+52 -39
@@ -20,9 +20,10 @@ metrics:
20 symbols:
21 - OID: 1.3.6.1.4.1.10704.1.0.1.2
22 name: boxServiceState
23 - description: "Box service state"
24 - family: Service/Status
25 - unit: "{status}"
23 + chart_meta:
24 + description: "Box service state"
25 + family: Service/Status
26 + unit: "{status}"
27 mapping:
28 -1: unknown
29 0: stopped
@@ -38,9 +39,10 @@ metrics:
39 symbol:
40 OID: 1.3.6.1.4.1.10704.1.11.0
41 name: phion.vpnUsers
41 - description: "Number of VPN users"
42 - family: VPN/User/Count
43 - unit: "{user}"
42 + chart_meta:
43 + description: "Number of VPN users"
44 + family: VPN/User/Count
45 + unit: "{user}"
46 - MIB: PHION-MIB
47 table:
48 OID: 1.3.6.1.4.1.10704.1.12
@@ -48,15 +50,17 @@ metrics:
50 symbols:
51 - OID: 1.3.6.1.4.1.10704.1.12.1.2
52 name: phion.trafficShape.rate
51 - description: Traffic shape rate
52 - family: TrafficShaping/Rate
53 - unit: "bit/s"
53 + chart_meta:
54 + description: Traffic shape rate
55 + family: TrafficShaping/Rate
56 + unit: "bit/s"
57 scale_factor: 1000
58 - OID: 1.3.6.1.4.1.10704.1.12.1.3
59 name: phion.trafficShape.sessions
57 - description: "Number of sessions"
58 - family: TrafficShaping/Session/Count
59 - unit: "{session}/a"
60 + chart_meta:
61 + description: "Number of sessions"
62 + family: TrafficShaping/Session/Count
63 + unit: "{session}/a"
64 - OID: 1.3.6.1.4.1.10704.1.12.1.4
65 name: phion.trafficShape.class1Total
66 description: "Total bytes for class1"
@@ -65,14 +69,16 @@ metrics:
69 unit: "bit/s"
70 - OID: 1.3.6.1.4.1.10704.1.12.1.5
71 name: phion.trafficShape.class1Packets
68 - description: "Total packets for class1"
69 - family: TrafficShaping/Class1/Packet/Total
70 - unit: "{packet}/s"
72 + chart_meta:
73 + description: "Total packets for class1"
74 + family: TrafficShaping/Class1/Packet/Total
75 + unit: "{packet}/s"
76 - OID: 1.3.6.1.4.1.10704.1.12.1.6
77 name: phion.trafficShape.class1Drop
73 - description: "Dropped packets for class1"
74 - family: TrafficShaping/Class1/Packet/Dropped
75 - unit: "{drop}/s"
78 + chart_meta:
79 + description: "Dropped packets for class1"
80 + family: TrafficShaping/Class1/Packet/Dropped
81 + unit: "{drop}/s"
82 - OID: 1.3.6.1.4.1.10704.1.12.1.7
83 name: phion.trafficShape.class2Total
84 description: "Total bytes for class2"
@@ -81,14 +87,16 @@ metrics:
87 unit: "bit/s"
88 - OID: 1.3.6.1.4.1.10704.1.12.1.8
89 name: phion.trafficShape.class2Pakets
84 - description: "Total packets for class2"
85 - family: TrafficShaping/Class2/Packet/Total
86 - unit: "{packet}/s"
90 + chart_meta:
91 + description: "Total packets for class2"
92 + family: TrafficShaping/Class2/Packet/Total
93 + unit: "{packet}/s"
94 - OID: 1.3.6.1.4.1.10704.1.12.1.9
95 name: phion.trafficShape.class2Drop
89 - description: "Dropped packets for class2"
90 - family: TrafficShaping/Class2/Packet/Dropped
91 - unit: "{drop}/s"
96 + chart_meta:
97 + description: "Dropped packets for class2"
98 + family: TrafficShaping/Class2/Packet/Dropped
99 + unit: "{drop}/s"
100 - OID: 1.3.6.1.4.1.10704.1.12.1.10
101 name: phion.trafficShape.class3Total
102 description: "Total bytes for class3"
@@ -97,14 +105,16 @@ metrics:
105 unit: "bit/s"
106 - OID: 1.3.6.1.4.1.10704.1.12.1.11
107 name: phion.trafficShape.class3Pakets
100 - description: "Total packets for class3"
101 - family: TrafficShaping/Class3/Packet/Total
102 - unit: "{packet}/s"
108 + chart_meta:
109 + description: "Total packets for class3"
110 + family: TrafficShaping/Class3/Packet/Total
111 + unit: "{packet}/s"
112 - OID: 1.3.6.1.4.1.10704.1.12.1.12
113 name: phion.trafficShape.class3Drop
105 - description: "Dropped packets for class3"
106 - family: TrafficShaping/Class3/Packet/Dropped
107 - unit: "{drop}/s"
114 + chart_meta:
115 + description: "Dropped packets for class3"
116 + family: TrafficShaping/Class3/Packet/Dropped
117 + unit: "{drop}/s"
118 - OID: 1.3.6.1.4.1.10704.1.12.1.13
119 name: phion.trafficShape.noDelayTotal
120 description: "Total bytes for no delay"
@@ -113,14 +123,16 @@ metrics:
123 unit: "bit/s"
124 - OID: 1.3.6.1.4.1.10704.1.12.1.14
125 name: phion.trafficShape.noDelayPakets
116 - description: "Total packets for no delay"
117 - family: TrafficShaping/NoDelay/Packet/Total
118 - unit: "{packet}/s"
126 + chart_meta:
127 + description: "Total packets for no delay"
128 + family: TrafficShaping/NoDelay/Packet/Total
129 + unit: "{packet}/s"
130 - OID: 1.3.6.1.4.1.10704.1.12.1.15
131 name: phion.trafficShape.noDelayDrop
121 - description: "Dropped packets for no delay"
122 - family: TrafficShaping/NoDelay/Packet/Dropped
123 - unit: "{drop}/s"
132 + chart_meta:
133 + description: "Dropped packets for no delay"
134 + family: TrafficShaping/NoDelay/Packet/Dropped
135 + unit: "{drop}/s"
136 metric_tags:
137 - symbol:
138 OID: 1.3.6.1.4.1.10704.1.12.1.1
@@ -162,9 +174,10 @@ metrics:
174 symbols:
175 - OID: 1.3.6.1.4.1.10704.1.6.1.2
176 name: vpnState
165 - description: VPN state
166 - family: VPN/Tunnel/Status
167 - unit: "{status}"
177 + chart_meta:
178 + description: VPN state
179 + family: VPN/Tunnel/Status
180 + unit: "{status}"
181 mapping:
182 -1: down
183 0: down-disabled
src/go/plugin/go.d/config/go.d/snmp.profiles/default/bluecat-server.yaml
+16 -12
@@ -23,9 +23,10 @@ metrics:
23 symbols:
24 - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.4
25 name: bcnDhcpv4SubnetFreeAddresses
26 - description: The number of IPs addresses available in this subnet.
27 - family: DHCP/Subnets
28 - unit: "{ip_address}"
26 + chart_meta:
27 + description: The number of IPs addresses available in this subnet.
28 + family: DHCP/Subnets
29 + unit: "{ip_address}"
30 # Transform combines subnet IP and mask into CIDR notation (e.g., 192.168.1.0/24)
31 # Converts mask to CIDR if possible, otherwise keeps original mask
32 transform: |
@@ -39,9 +40,10 @@ metrics:
40 {{- deleteTag .Metric "bcn_dhcpv4_subnet_mask" -}}
41 - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.3
42 name: bcnDhcpv4SubnetSize
42 - description: Size of the subnet
43 - family: DHCP/Subnets
44 - unit: "{ip_address}"
43 + chart_meta:
44 + description: Size of the subnet
45 + family: DHCP/Subnets
46 + unit: "{ip_address}"
47 # Transform combines subnet IP and mask into CIDR notation (e.g., 192.168.1.0/24)
48 # Converts mask to CIDR if possible, otherwise keeps original mask
49 transform: |
@@ -71,9 +73,10 @@ metrics:
73 symbols:
74 - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.5
75 name: bcnDhcpv4PoolFreeAddresses
74 - description: The number of IPs addresses available in this pool
75 - family: DHCP/Pools
76 - unit: "{ip_address}"
76 + chart_meta:
77 + description: The number of IPs addresses available in this pool
78 + family: DHCP/Pools
79 + unit: "{ip_address}"
80 # Transform combines start and end IPs into a single range tag (e.g., 192.168.1.10-192.168.1.100)
81 transform: |
82 {{- $startIP := index .Metric.Tags "bcn_dhcpv4_pool_start_ip" | default "" -}}
@@ -85,9 +88,10 @@ metrics:
88 {{- deleteTag .Metric "bcn_dhcpv4_pool_end_ip" -}}
89 - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.4
90 name: bcnDhcpv4PoolSize
88 - description: Pool size
89 - family: DHCP/Pools
90 - unit: "{ip_address}"
91 + chart_meta:
92 + description: Pool size
93 + family: DHCP/Pools
94 + unit: "{ip_address}"
95 # Transform combines start and end IPs into a single range tag (e.g., 192.168.1.10-192.168.1.100)
96 transform: |
97 {{- $startIP := index .Metric.Tags "bcn_dhcpv4_pool_start_ip" | default "" -}}
src/go/plugin/go.d/config/go.d/snmp.profiles/default/brocade-fc-switch.yaml
+88 -66
@@ -30,16 +30,18 @@ metrics:
30 symbol:
31 OID: 1.3.6.1.4.1.1588.2.1.1.1.26.1.0
32 name: cpu.usage
33 - description: System's cpu usage
34 - family: CPU/Usage
35 - unit: "%"
33 + chart_meta:
34 + description: System's cpu usage
35 + family: CPU/Usage
36 + unit: "%"
37 - MIB: RESOURCE-MIB
38 symbol:
39 OID: 1.3.6.1.4.1.1588.2.1.1.1.26.6.0
40 name: memory.usage
40 - description: System's memory usage
41 - family: Memory/Usage
42 - unit: "%"
41 + chart_meta:
42 + description: System's memory usage
43 + family: Memory/Usage
44 + unit: "%"
45 - MIB: FIBRE-CHANNEL-FE-MIB
46 table:
47 OID: 1.3.6.1.2.1.75.1.2.1
@@ -47,23 +49,26 @@ metrics:
49 symbols:
50 - name: fcFxPortBbCreditAvailable
51 OID: 1.3.6.1.2.1.75.1.2.1.1.2
50 - description: Buffers currently available for receiving frames from the attached port in the buffer-to-buffer flow control
51 - family: FibreChannel/FxPort/Buffer/Available
52 - unit: "{buffer}"
52 + chart_meta:
53 + description: Buffers currently available for receiving frames from the attached port in the buffer-to-buffer flow control
54 + family: FibreChannel/FxPort/Buffer/Available
55 + unit: "{buffer}"
56 - OID: 1.3.6.1.2.1.75.1.2.1.1.3
57 name: fcFxPortOperMode
55 - description: Operational mode of the FxPort
56 - family: FibreChannel/FxPort/Operational/Mode
57 - unit: "{status}"
58 + chart_meta:
59 + description: Operational mode of the FxPort
60 + family: FibreChannel/FxPort/Operational/Mode
61 + unit: "{status}"
62 mapping:
63 1: unknown
64 2: f_port
65 3: fl_port
66 - OID: 1.3.6.1.2.1.75.1.2.1.1.4
67 name: fcFxPortAdminMode
64 - description: Desired operational mode of the FxPort
65 - unit: "{status}"
66 - family: FibreChannel/FxPort/Admin/Mode
68 + chart_meta:
69 + description: Desired operational mode of the FxPort
70 + family: FibreChannel/FxPort/Admin/Mode
71 + unit: "{status}"
72 mapping:
73 2: f_port
74 3: fl_port
@@ -79,18 +84,20 @@ metrics:
84 symbols:
85 - OID: 1.3.6.1.2.1.75.1.2.2.1.1
86 name: fcFxPortPhysAdminStatus
82 - description: Desired state of the FxPort
83 - family: FibreChannel/FxPort/Physical/Admin/Status
84 - unit: "{status}"
87 + chart_meta:
88 + description: Desired state of the FxPort
89 + family: FibreChannel/FxPort/Physical/Admin/Status
90 + unit: "{status}"
91 mapping:
92 1: online
93 2: offline
94 3: testing
95 - OID: 1.3.6.1.2.1.75.1.2.2.1.2
96 name: fcFxPortPhysOperStatus
91 - description: Current operational status of the FxPort
92 - family: FibreChannel/FxPort/Physical/Operational/Status
93 - unit: "{status}"
97 + chart_meta:
98 + description: Current operational status of the FxPort
99 + family: FibreChannel/FxPort/Physical/Operational/Status
100 + unit: "{status}"
101 mapping:
102 1: online
103 2: offline
@@ -110,93 +117,108 @@ metrics:
117 - name: swFCPortTxFrames
118 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.13
119 metric_type: monotonic_count
113 - description: Number of Fibre Channel frames transmitted by the port
114 - family: FibreChannel/Port/Frame/Out
115 - unit: "{frame}/s"
120 + chart_meta:
121 + description: Number of Fibre Channel frames transmitted by the port
122 + family: FibreChannel/Port/Frame/Out
123 + unit: "{frame}/s"
124 - name: swFCPortRxFrames
125 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.14
126 metric_type: monotonic_count
119 - description: Number of Fibre Channel frames received by the port
120 - family: FibreChannel/Port/Frame/In
121 - unit: "{frame}/s"
127 + chart_meta:
128 + description: Number of Fibre Channel frames received by the port
129 + family: FibreChannel/Port/Frame/In
130 + unit: "{frame}/s"
131 - name: swFCPortRxC2Frames
132 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.15
133 metric_type: monotonic_count
125 - description: Number of Class 2 frames received by the port
126 - family: FibreChannel/Port/Frame/Class2/In
127 - unit: "{frame}/s"
134 + chart_meta:
135 + description: Number of Class 2 frames received by the port
136 + family: FibreChannel/Port/Frame/Class2/In
137 + unit: "{frame}/s"
138 - name: swFCPortRxC3Frames
139 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.16
140 metric_type: monotonic_count
131 - description: Number of Class 3 frames received by the port
132 - family: FibreChannel/Port/Frame/Class3/In
133 - unit: "{frame}/s"
141 + chart_meta:
142 + description: Number of Class 3 frames received by the port
143 + family: FibreChannel/Port/Frame/Class3/In
144 + unit: "{frame}/s"
145 - name: swFCPortRxLCs
146 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.17
147 metric_type: monotonic_count
137 - description: Number of Link Control frames received by the port
138 - family: FibreChannel/Port/Frame/LinkControl/In
139 - unit: "{frame}/s"
148 + chart_meta:
149 + description: Number of Link Control frames received by the port
150 + family: FibreChannel/Port/Frame/LinkControl/In
151 + unit: "{frame}/s"
152 - name: swFCPortTooManyRdys
153 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.19
154 metric_type: monotonic_count
143 - description: Number of times when RDYs exceeds the frames received
144 - family: FibreChannel/Port/RDY/Exceeded
145 - unit: "{time}/s"
155 + chart_meta:
156 + description: Number of times when RDYs exceeds the frames received
157 + family: FibreChannel/Port/RDY/Exceeded
158 + unit: "{time}/s"
159 - name: swFCPortNoTxCredits
160 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.20
161 metric_type: monotonic_count
149 - description: Number of times when the transmit credit has reached zero
150 - family: FibreChannel/Port/Credit/Exhausted
151 - unit: "{time}/s"
162 + chart_meta:
163 + description: Number of times when the transmit credit has reached zero
164 + family: FibreChannel/Port/Credit/Exhausted
165 + unit: "{time}/s"
166 - name: swFCPortRxEncInFrs
167 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.21
168 metric_type: monotonic_count
155 - description: Number of encoding or disparity errors inside frames received.
156 - family: FibreChannel/Port/Error/Encoding/InFrame
157 - unit: "{error}/s"
169 + chart_meta:
170 + description: Number of encoding or disparity errors inside frames received.
171 + family: FibreChannel/Port/Error/Encoding/InFrame
172 + unit: "{error}/s"
173 - name: swFCPortRxCrcs
174 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.22
175 metric_type: monotonic_count
161 - description: Number of CRC errors detected for frames received
162 - family: FibreChannel/Port/Error/CRC
163 - unit: "{error}/s"
176 + chart_meta:
177 + description: Number of CRC errors detected for frames received
178 + family: FibreChannel/Port/Error/CRC
179 + unit: "{error}/s"
180 - name: swFCPortRcTruncs
181 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.23
182 metric_type: monotonic_count
167 - description: Number of truncated frames received by the port
168 - family: FibreChannel/Port/Frame/Truncated/In
169 - unit: "{frame}/s"
183 + chart_meta:
184 + description: Number of truncated frames received by the port
185 + family: FibreChannel/Port/Frame/Truncated/In
186 + unit: "{frame}/s"
187 - name: swFCPortRxTooLongs
188 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.24
189 metric_type: monotonic_count
173 - description: Number of received frames that are too long
174 - family: FibreChannel/Port/Frame/TooLong/In
175 - unit: "{frame}/s"
190 + chart_meta:
191 + description: Number of received frames that are too long
192 + family: FibreChannel/Port/Frame/TooLong/In
193 + unit: "{frame}/s"
194 - name: swFCPortRxBadEofs
195 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.25
196 metric_type: monotonic_count
179 - description: Number of received frames with bad EOF delimiter
180 - family: FibreChannel/Port/Error/BadEOF
181 - unit: "{frame}/s"
197 + chart_meta:
198 + description: Number of received frames with bad EOF delimiter
199 + family: FibreChannel/Port/Error/BadEOF
200 + unit: "{frame}/s"
201 - name: swFCPortRxEncOutFrs
202 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.26
203 metric_type: monotonic_count
185 - description: Number of encoding or disparity errors outside frames received
186 - family: FibreChannel/Port/Error/Encoding/OutFrame
187 - unit: "{error}/s"
204 + chart_meta:
205 + description: Number of encoding or disparity errors outside frames received
206 + family: FibreChannel/Port/Error/Encoding/OutFrame
207 + unit: "{error}/s"
208 - name: swFCPortRxBadOs
209 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.27
210 metric_type: monotonic_count
191 - description: Number of invalid Ordered Sets received
192 - family: FibreChannel/Port/Error/InvalidOrderedSet
193 - unit: "{error}/s"
211 + chart_meta:
212 + description: Number of invalid Ordered Sets received
213 + family: FibreChannel/Port/Error/InvalidOrderedSet
214 + unit: "{error}/s"
215 - name: swFCPortC3Discards
216 OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.28
217 metric_type: monotonic_count
197 - description: Number of Class 3 frames discarded by the port.
198 - family: FibreChannel/Port/Frame/Class3/Discarded
199 - unit: "{frame}/s"
218 + chart_meta:
219 + description: Number of Class 3 frames discarded by the port.
220 + family: FibreChannel/Port/Frame/Class3/Discarded
221 + unit: "{frame}/s"
222 metric_tags:
223 - symbol:
224 name: swFCPortName
src/go/plugin/go.d/config/go.d/snmp.profiles/default/brother-net-printer.yaml
+20 -15
@@ -14,9 +14,10 @@ metrics:
14 symbol:
15 OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.9.0
16 name: brJamPlace
17 - description: Location of jam
18 - family: Printer/Jam/Location/Status
19 - unit: "{status}"
17 + chart_meta:
18 + description: Location of jam
19 + family: Printer/Jam/Location/Status
20 + unit: "{status}"
21 mapping:
22 0: No Jam
23 1: Trays
@@ -27,9 +28,10 @@ metrics:
28 symbol:
29 OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.1.0
30 name: brToner1Low
30 - description: Black toner status
31 - family: Printer/Toner/Black/Status
32 - unit: "{status}"
31 + chart_meta:
32 + description: Black toner status
33 + family: Printer/Toner/Black/Status
34 + unit: "{status}"
35 mapping:
36 0: Toner Full
37 1: Toner Low
@@ -39,9 +41,10 @@ metrics:
41 symbol:
42 OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.2.0
43 name: brToner2Low
42 - description: Cyan toner status
43 - family: Printer/Toner/Cyan/Status
44 - unit: "{status}"
44 + chart_meta:
45 + description: Cyan toner status
46 + family: Printer/Toner/Cyan/Status
47 + unit: "{status}"
48 mapping:
49 0: Toner Ready
50 1: Toner Low
@@ -51,9 +54,10 @@ metrics:
54 symbol:
55 OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.3.0
56 name: brToner3Low
54 - description: Magenta toner status
55 - family: Printer/Toner/Magenta/Status
56 - unit: "{status}"
57 + chart_meta:
58 + description: Magenta toner status
59 + family: Printer/Toner/Magenta/Status
60 + unit: "{status}"
61 mapping:
62 0: Toner Ready
63 1: Toner Low
@@ -63,9 +67,10 @@ metrics:
67 symbol:
68 OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.4.0
69 name: brToner4Low
66 - description: Yellow toner status
67 - family: Printer/Toner/Yellow/Status
68 - unit: "{status}"
70 + chart_meta:
71 + description: Yellow toner status
72 + family: Printer/Toner/Yellow/Status
73 + unit: "{status}"
74 mapping:
75 0: Toner Ready
76 1: Toner Low
src/go/plugin/go.d/config/go.d/snmp.profiles/default/chatsworth_pdu.yaml
+409 -288
@@ -36,9 +36,10 @@ metrics:
36 symbol:
37 OID: 1.3.6.1.4.1.30932.1.1.2.58.2.0
38 name: pduRole
39 - description: PDU role
40 - family: PDU/Role/Status
41 - unit: "{status}"
39 + chart_meta:
40 + description: PDU role
41 + family: PDU/Role/Status
42 + unit: "{status}"
43 mapping:
44 0: secondary
45 1: primary
@@ -48,9 +49,10 @@ metrics:
49 symbol:
50 OID: 1.3.6.1.4.1.30932.1.1.2.58.12.0
51 name: outOfService
51 - description: PDU operation status
52 - family: PDU/Service/Status
53 - unit: "{status}"
52 + chart_meta:
53 + description: PDU operation status
54 + family: PDU/Service/Status
55 + unit: "{status}"
56 mapping:
57 1: out of service
58 0: normal operation
@@ -60,27 +62,30 @@ metrics:
62 symbol:
63 OID: 1.3.6.1.4.1.30932.1.1.3.8.1.0
64 name: temperatureProbe1
63 - description: Probe 1 temperature
64 - family: Sensor/Temperature/Probe1/Value
65 - unit: "degF"
65 + chart_meta:
66 + description: Probe 1 temperature
67 + family: Sensor/Temperature/Probe1/Value
68 + unit: "degF"
69 scale_factor: 0.01
70
71 - MIB: CPI-UNITY-MIB
72 symbol:
73 OID: 1.3.6.1.4.1.30932.1.1.3.8.2.0
74 name: temperatureProbe2
72 - description: Probe 2 temperature
73 - family: Sensor/Temperature/Probe2/Value
74 - unit: "degF"
75 + chart_meta:
76 + description: Probe 2 temperature
77 + family: Sensor/Temperature/Probe2/Value
78 + unit: "degF"
79 scale_factor: 0.01
80
81 - MIB: CPI-UNITY-MIB
82 symbol:
83 OID: 1.3.6.1.4.1.30932.1.1.3.9.1.0
84 name: humidityProbe1
81 - description: Probe 1 humidity
82 - family: Sensor/Humidity/Probe1/Value
83 - unit: "%"
85 + chart_meta:
86 + description: Probe 1 humidity
87 + family: Sensor/Humidity/Probe1/Value
88 + unit: "%"
89 scale_factor: 0.01
90 # TODO I am not sure for this
91
@@ -88,9 +93,10 @@ metrics:
93 symbol:
94 OID: 1.3.6.1.4.1.30932.1.1.3.9.2.0
95 name: humidityProbe2
91 - description: Probe 1 humidity
92 - family: Sensor/Humidity/Probe2/Value
93 - unit: "%"
96 + chart_meta:
97 + description: Probe 1 humidity
98 + family: Sensor/Humidity/Probe2/Value
99 + unit: "%"
100 scale_factor: 0.01
101 # TODO I am not sure for this
102
@@ -99,27 +105,30 @@ metrics:
105 symbol:
106 OID: 1.3.6.1.4.1.30932.1.1.3.13.1.0
107 name: line1curr
102 - description: Line 1 current draw
103 - family: PDU/Line/1/Current
104 - unit: "A"
108 + chart_meta:
109 + description: Line 1 current draw
110 + family: PDU/Line/1/Current
111 + unit: "A"
112 scale_factor: 0.01
113
114 - MIB: CPI-UNITY-MIB
115 symbol:
116 OID: 1.3.6.1.4.1.30932.1.1.3.13.2.0
117 name: line2curr
111 - description: Line 2 current draw
112 - family: PDU/Line/2/Current
113 - unit: "A"
118 + chart_meta:
119 + description: Line 2 current draw
120 + family: PDU/Line/2/Current
121 + unit: "A"
122 scale_factor: 0.01
123
124 - MIB: CPI-UNITY-MIB
125 symbol:
126 OID: 1.3.6.1.4.1.30932.1.1.3.13.3.0
127 name: line3curr
120 - description: Line 3 current draw
121 - family: PDU/Line/3/Current
122 - unit: "A"
128 + chart_meta:
129 + description: Line 3 current draw
130 + family: PDU/Line/3/Current
131 + unit: "A"
132 scale_factor: 0.01
133
134 ### [Legacy] Branch
@@ -127,157 +136,175 @@ metrics:
136 symbol:
137 OID: 1.3.6.1.4.1.30932.1.1.3.1.1.0
138 name: currentxy1
130 - description: XY1 current draw
131 - family: PDU/Branch/XY1/Current
132 - unit: "A"
139 + chart_meta:
140 + description: XY1 current draw
141 + family: PDU/Branch/XY1/Current
142 + unit: "A"
143 scale_factor: 0.01
144
145 - MIB: CPI-UNITY-MIB
146 symbol:
147 OID: 1.3.6.1.4.1.30932.1.1.3.1.2.0
148 name: currentyz1
139 - description: YZ1 current draw
140 - family: PDU/Branch/YZ1/Current
141 - unit: "A"
149 + chart_meta:
150 + description: YZ1 current draw
151 + family: PDU/Branch/YZ1/Current
152 + unit: "A"
153 scale_factor: 0.01
154
155 - MIB: CPI-UNITY-MIB
156 symbol:
157 OID: 1.3.6.1.4.1.30932.1.1.3.1.3.0
158 name: currentzx1
148 - description: ZX1 current draw
149 - family: PDU/Branch/ZX1/Current
150 - unit: "A"
159 + chart_meta:
160 + description: ZX1 current draw
161 + family: PDU/Branch/ZX1/Current
162 + unit: "A"
163 scale_factor: 0.01
164
165 - MIB: CPI-UNITY-MIB
166 symbol:
167 OID: 1.3.6.1.4.1.30932.1.1.3.1.4.0
168 name: currentxy2
157 - description: XY2 current draw
158 - family: PDU/Branch/XY2/Current
159 - unit: "A"
169 + chart_meta:
170 + description: XY2 current draw
171 + family: PDU/Branch/XY2/Current
172 + unit: "A"
173 scale_factor: 0.01
174
175 - MIB: CPI-UNITY-MIB
176 symbol:
177 OID: 1.3.6.1.4.1.30932.1.1.3.1.5.0
178 name: currentyz2
166 - description: YZ2 current draw
167 - family: PDU/Branch/YZ2/Current
168 - unit: "A"
179 + chart_meta:
180 + description: YZ2 current draw
181 + family: PDU/Branch/YZ2/Current
182 + unit: "A"
183 scale_factor: 0.01
184
185 - MIB: CPI-UNITY-MIB
186 symbol:
187 OID: 1.3.6.1.4.1.30932.1.1.3.1.6.0
188 name: currentzx2
175 - description: ZX2 current draw
176 - family: PDU/Branch/ZX2/Current
177 - unit: "A/100"
189 + chart_meta:
190 + description: ZX2 current draw
191 + family: PDU/Branch/ZX2/Current
192 + unit: "A/100"
193 scale_factor: 0.01
194
195 - MIB: CPI-UNITY-MIB
196 symbol:
197 OID: 1.3.6.1.4.1.30932.1.1.3.2.1.0
198 name: voltagexy1
184 - description: XY1 voltage in 1/10 volts
185 - family: PDU/Branch/XY1/Voltage
186 - unit: "V"
199 + chart_meta:
200 + description: XY1 voltage in 1/10 volts
201 + family: PDU/Branch/XY1/Voltage
202 + unit: "V"
203 scale_factor: 0.1
204
205 - MIB: CPI-UNITY-MIB
206 symbol:
207 OID: 1.3.6.1.4.1.30932.1.1.3.2.2.0
208 name: voltageyz1
193 - description: YZ1 voltage in 1/10 volts
194 - family: PDU/Branch/YZ1/Voltage
195 - unit: "V"
209 + chart_meta:
210 + description: YZ1 voltage in 1/10 volts
211 + family: PDU/Branch/YZ1/Voltage
212 + unit: "V"
213 scale_factor: 0.1
214
215 - MIB: CPI-UNITY-MIB
216 symbol:
217 OID: 1.3.6.1.4.1.30932.1.1.3.2.3.0
218 name: voltagezx1
202 - description: ZX1 voltage in 1/10 volts
203 - family: PDU/Branch/ZX1/Voltage
204 - unit: "V"
219 + chart_meta:
220 + description: ZX1 voltage in 1/10 volts
221 + family: PDU/Branch/ZX1/Voltage
222 + unit: "V"
223 scale_factor: 0.1
224
225 - MIB: CPI-UNITY-MIB
226 symbol:
227 OID: 1.3.6.1.4.1.30932.1.1.3.2.4.0
228 name: voltagexy2
211 - description: XY2 voltage in 1/10 volts
212 - family: PDU/Branch/XY2/Voltage
213 - unit: "V"
229 + chart_meta:
230 + description: XY2 voltage in 1/10 volts
231 + family: PDU/Branch/XY2/Voltage
232 + unit: "V"
233 scale_factor: 0.1
234
235 - MIB: CPI-UNITY-MIB
236 symbol:
237 OID: 1.3.6.1.4.1.30932.1.1.3.2.5.0
238 name: voltageyz2
220 - description: YZ2 voltage in 1/10 volts
221 - family: PDU/Branch/YZ2/Voltage
222 - unit: "V"
239 + chart_meta:
240 + description: YZ2 voltage in 1/10 volts
241 + family: PDU/Branch/YZ2/Voltage
242 + unit: "V"
243 scale_factor: 0.1
244
245 - MIB: CPI-UNITY-MIB
246 symbol:
247 OID: 1.3.6.1.4.1.30932.1.1.3.2.6.0
248 name: voltagezx2
229 - description: ZX2 voltage in 1/10 volts
230 - family: PDU/Branch/ZX2/Voltage
231 - unit: "V"
249 + chart_meta:
250 + description: ZX2 voltage in 1/10 volts
251 + family: PDU/Branch/ZX2/Voltage
252 + unit: "V"
253 scale_factor: 0.1
254
255 - MIB: CPI-UNITY-MIB
256 symbol:
257 OID: 1.3.6.1.4.1.30932.1.1.3.3.1.0
258 name: powerxy1
238 - description: XY1 power consumption in Watts
239 - family: PDU/Branch/XY1/Power
240 - unit: "W"
259 + chart_meta:
260 + description: XY1 power consumption in Watts
261 + family: PDU/Branch/XY1/Power
262 + unit: "W"
263
264 - MIB: CPI-UNITY-MIB
265 symbol:
266 OID: 1.3.6.1.4.1.30932.1.1.3.3.2.0
267 name: poweryz1
246 - description: YZ1 power consumption in Watts
247 - family: PDU/Branch/YZ1/Power
248 - unit: "W"
268 + chart_meta:
269 + description: YZ1 power consumption in Watts
270 + family: PDU/Branch/YZ1/Power
271 + unit: "W"
272
273 - MIB: CPI-UNITY-MIB
274 symbol:
275 OID: 1.3.6.1.4.1.30932.1.1.3.3.3.0
276 name: powerzx1
254 - description: ZX1 power consumption in Watts
255 - family: PDU/Branch/ZX1/Power
256 - unit: "W"
277 + chart_meta:
278 + description: ZX1 power consumption in Watts
279 + family: PDU/Branch/ZX1/Power
280 + unit: "W"
281
282 - MIB: CPI-UNITY-MIB
283 symbol:
284 OID: 1.3.6.1.4.1.30932.1.1.3.3.4.0
285 name: powerxy2
262 - description: XY2 power consumption in Watts
263 - family: PDU/Branch/XY2/Power
264 - unit: "W"
286 + chart_meta:
287 + description: XY2 power consumption in Watts
288 + family: PDU/Branch/XY2/Power
289 + unit: "W"
290
291 - MIB: CPI-UNITY-MIB
292 symbol:
293 OID: 1.3.6.1.4.1.30932.1.1.3.3.5.0
294 name: poweryz2
270 - description: YZ2 power consumption in Watts
271 - family: PDU/Branch/YZ2/Power
272 - unit: "W"
295 + chart_meta:
296 + description: YZ2 power consumption in Watts
297 + family: PDU/Branch/YZ2/Power
298 + unit: "W"
299
300 - MIB: CPI-UNITY-MIB
301 symbol:
302 OID: 1.3.6.1.4.1.30932.1.1.3.3.6.0
303 name: powerzx2
278 - description: ZX2 power consumption in Watts
279 - family: PDU/Branch/ZX2/Power
280 - unit: "W"
304 + chart_meta:
305 + description: ZX2 power consumption in Watts
306 + family: PDU/Branch/ZX2/Power
307 + unit: "W"
308
309 # - MIB: CPI-UNITY-MIB
310 # symbol:
@@ -389,216 +416,240 @@ metrics:
416 symbol:
417 OID: 1.3.6.1.4.1.30932.1.1.3.5.1.0
418 name: outlet1Current
392 - description: Outlet1 current draw
393 - family: PDU/Outlet/1/Current
394 - unit: "A"
419 + chart_meta:
420 + description: Outlet1 current draw
421 + family: PDU/Outlet/1/Current
422 + unit: "A"
423 scale_factor: 0.01
424
425 - MIB: CPI-UNITY-MIB
426 symbol:
427 OID: 1.3.6.1.4.1.30932.1.1.3.5.2.0
428 name: outlet2Current
401 - description: Outlet2 current draw
402 - family: PDU/Outlet/2/Current
403 - unit: "A"
429 + chart_meta:
430 + description: Outlet2 current draw
431 + family: PDU/Outlet/2/Current
432 + unit: "A"
433 scale_factor: 0.01
434
435 - MIB: CPI-UNITY-MIB
436 symbol:
437 OID: 1.3.6.1.4.1.30932.1.1.3.5.3.0
438 name: outlet3Current
410 - description: Outlet3 current draw
411 - family: PDU/Outlet/3/Current
412 - unit: "A"
439 + chart_meta:
440 + description: Outlet3 current draw
441 + family: PDU/Outlet/3/Current
442 + unit: "A"
443 scale_factor: 0.01
444
445 - MIB: CPI-UNITY-MIB
446 symbol:
447 OID: 1.3.6.1.4.1.30932.1.1.3.5.4.0
448 name: outlet4Current
419 - description: Outlet4 current draw
420 - family: PDU/Outlet/4/Current
421 - unit: "A"
449 + chart_meta:
450 + description: Outlet4 current draw
451 + family: PDU/Outlet/4/Current
452 + unit: "A"
453 scale_factor: 0.01
454
455 - MIB: CPI-UNITY-MIB
456 symbol:
457 OID: 1.3.6.1.4.1.30932.1.1.3.5.5.0
458 name: outlet5Current
428 - description: Outlet5 current draw
429 - family: PDU/Outlet/5/Current
430 - unit: "A"
459 + chart_meta:
460 + description: Outlet5 current draw
461 + family: PDU/Outlet/5/Current
462 + unit: "A"
463 scale_factor: 0.01
464
465 - MIB: CPI-UNITY-MIB
466 symbol:
467 OID: 1.3.6.1.4.1.30932.1.1.3.5.6.0
468 name: outlet6Current
437 - description: Outlet6 current draw
438 - family: PDU/Outlet/6/Current
439 - unit: "A"
469 + chart_meta:
470 + description: Outlet6 current draw
471 + family: PDU/Outlet/6/Current
472 + unit: "A"
473 scale_factor: 0.01
474
475 - MIB: CPI-UNITY-MIB
476 symbol:
477 OID: 1.3.6.1.4.1.30932.1.1.3.5.7.0
478 name: outlet7Current
446 - description: Outlet7 current draw
447 - family: PDU/Outlet/7/Current
448 - unit: "A"
479 + chart_meta:
480 + description: Outlet7 current draw
481 + family: PDU/Outlet/7/Current
482 + unit: "A"
483 scale_factor: 0.01
484
485 - MIB: CPI-UNITY-MIB
486 symbol:
487 OID: 1.3.6.1.4.1.30932.1.1.3.5.8.0
488 name: outlet8Current
455 - description: Outlet8 current draw
456 - family: PDU/Outlet/8/Current
457 - unit: "A"
489 + chart_meta:
490 + description: Outlet8 current draw
491 + family: PDU/Outlet/8/Current
492 + unit: "A"
493 scale_factor: 0.01
494
495 - MIB: CPI-UNITY-MIB
496 symbol:
497 OID: 1.3.6.1.4.1.30932.1.1.3.5.9.0
498 name: outlet9Current
464 - description: Outlet9 current draw
465 - family: PDU/Outlet/9/Current
466 - unit: "A"
499 + chart_meta:
500 + description: Outlet9 current draw
501 + family: PDU/Outlet/9/Current
502 + unit: "A"
503 scale_factor: 0.01
504
505 - MIB: CPI-UNITY-MIB
506 symbol:
507 OID: 1.3.6.1.4.1.30932.1.1.3.5.10.0
508 name: outlet10Current
473 - description: Outlet10 current draw
474 - family: PDU/Outlet/10/Current
475 - unit: "A"
509 + chart_meta:
510 + description: Outlet10 current draw
511 + family: PDU/Outlet/10/Current
512 + unit: "A"
513 scale_factor: 0.01
514
515 - MIB: CPI-UNITY-MIB
516 symbol:
517 OID: 1.3.6.1.4.1.30932.1.1.3.5.11.0
518 name: outlet11Current
482 - description: Outlet11 current draw
483 - family: PDU/Outlet/11/Current
484 - unit: "A"
519 + chart_meta:
520 + description: Outlet11 current draw
521 + family: PDU/Outlet/11/Current
522 + unit: "A"
523 scale_factor: 0.01
524
525 - MIB: CPI-UNITY-MIB
526 symbol:
527 OID: 1.3.6.1.4.1.30932.1.1.3.5.12.0
528 name: outlet12Current
491 - description: Outlet12 current draw
492 - family: PDU/Outlet/12/Current
493 - unit: "A"
529 + chart_meta:
530 + description: Outlet12 current draw
531 + family: PDU/Outlet/12/Current
532 + unit: "A"
533 scale_factor: 0.01
534
535 - MIB: CPI-UNITY-MIB
536 symbol:
537 OID: 1.3.6.1.4.1.30932.1.1.3.5.13.0
538 name: outlet13Current
500 - description: Outlet13 current draw
501 - family: PDU/Outlet/13/Current
502 - unit: "A"
539 + chart_meta:
540 + description: Outlet13 current draw
541 + family: PDU/Outlet/13/Current
542 + unit: "A"
543 scale_factor: 0.01
544
545 - MIB: CPI-UNITY-MIB
546 symbol:
547 OID: 1.3.6.1.4.1.30932.1.1.3.5.14.0
548 name: outlet14Current
509 - description: Outlet14 current draw
510 - family: PDU/Outlet/14/Current
511 - unit: "A"
549 + chart_meta:
550 + description: Outlet14 current draw
551 + family: PDU/Outlet/14/Current
552 + unit: "A"
553 scale_factor: 0.01
554
555 - MIB: CPI-UNITY-MIB
556 symbol:
557 OID: 1.3.6.1.4.1.30932.1.1.3.5.15.0
558 name: outlet15Current
518 - description: Outlet15 current draw
519 - family: PDU/Outlet/15/Current
520 - unit: "A"
559 + chart_meta:
560 + description: Outlet15 current draw
561 + family: PDU/Outlet/15/Current
562 + unit: "A"
563 scale_factor: 0.01
564
565 - MIB: CPI-UNITY-MIB
566 symbol:
567 OID: 1.3.6.1.4.1.30932.1.1.3.5.16.0
568 name: outlet16Current
527 - description: Outlet16 current draw
528 - family: PDU/Outlet/16/Current
529 - unit: "A"
569 + chart_meta:
570 + description: Outlet16 current draw
571 + family: PDU/Outlet/16/Current
572 + unit: "A"
573 scale_factor: 0.01
574
575 - MIB: CPI-UNITY-MIB
576 symbol:
577 OID: 1.3.6.1.4.1.30932.1.1.3.5.17.0
578 name: outlet17Current
536 - description: Outlet17 current draw
537 - family: PDU/Outlet/17/Current
538 - unit: "A"
579 + chart_meta:
580 + description: Outlet17 current draw
581 + family: PDU/Outlet/17/Current
582 + unit: "A"
583 scale_factor: 0.01
584
585 - MIB: CPI-UNITY-MIB
586 symbol:
587 OID: 1.3.6.1.4.1.30932.1.1.3.5.18.0
588 name: outlet18Current
545 - description: Outlet18 current draw
546 - family: PDU/Outlet/18/Current
547 - unit: "A"
589 + chart_meta:
590 + description: Outlet18 current draw
591 + family: PDU/Outlet/18/Current
592 + unit: "A"
593 scale_factor: 0.01
594
595 - MIB: CPI-UNITY-MIB
596 symbol:
597 OID: 1.3.6.1.4.1.30932.1.1.3.5.19.0
598 name: outlet19Current
554 - description: Outlet19 current draw
555 - family: PDU/Outlet/19/Current
556 - unit: "A"
599 + chart_meta:
600 + description: Outlet19 current draw
601 + family: PDU/Outlet/19/Current
602 + unit: "A"
603 scale_factor: 0.01
604
605 - MIB: CPI-UNITY-MIB
606 symbol:
607 OID: 1.3.6.1.4.1.30932.1.1.3.5.20.0
608 name: outlet20Current
563 - description: Outlet20 current draw
564 - family: PDU/Outlet/20/Current
565 - unit: "A"
609 + chart_meta:
610 + description: Outlet20 current draw
611 + family: PDU/Outlet/20/Current
612 + unit: "A"
613 scale_factor: 0.01
614
615 - MIB: CPI-UNITY-MIB
616 symbol:
617 OID: 1.3.6.1.4.1.30932.1.1.3.5.21.0
618 name: outlet21Current
572 - description: Outlet21 current draw
573 - family: PDU/Outlet/21/Current
574 - unit: "A"
619 + chart_meta:
620 + description: Outlet21 current draw
621 + family: PDU/Outlet/21/Current
622 + unit: "A"
623 scale_factor: 0.01
624
625 - MIB: CPI-UNITY-MIB
626 symbol:
627 OID: 1.3.6.1.4.1.30932.1.1.3.5.22.0
628 name: outlet22Current
581 - description: Outlet22 current draw
582 - family: PDU/Outlet/22/Current
583 - unit: "A"
629 + chart_meta:
630 + description: Outlet22 current draw
631 + family: PDU/Outlet/22/Current
632 + unit: "A"
633 scale_factor: 0.01
634
635 - MIB: CPI-UNITY-MIB
636 symbol:
637 OID: 1.3.6.1.4.1.30932.1.1.3.5.23.0
638 name: outlet23Current
590 - description: Outlet23 current draw
591 - family: PDU/Outlet/23/Current
592 - unit: "A"
639 + chart_meta:
640 + description: Outlet23 current draw
641 + family: PDU/Outlet/23/Current
642 + unit: "A"
643 scale_factor: 0.01
644
645 - MIB: CPI-UNITY-MIB
646 symbol:
647 OID: 1.3.6.1.4.1.30932.1.1.3.5.24.0
648 name: outlet24Current
599 - description: Outlet24 current draw
600 - family: PDU/Outlet/24/Current
601 - unit: "A"
649 + chart_meta:
650 + description: Outlet24 current draw
651 + family: PDU/Outlet/24/Current
652 + unit: "A"
653 scale_factor: 0.01
654
655 - MIB: CPI-UNITY-MIB
@@ -606,10 +657,12 @@ metrics:
657 OID: 1.3.6.1.4.1.30932.1.1.3.12.1.0
658 name: receptacleEnergyoutlet1s
659 metric_type: monotonic_count
609 - description: Outlet1 receptacle energy accumulated
610 - family: PDU/Outlet/1/Energy
660 + chart_meta:
661 + description: Outlet1 receptacle energy accumulated
662 + family: PDU/Outlet/1/Energy
663 + unit: "da*W"
664 scale_factor: 0.1
612 - unit: "da*W"
665 +
666
667 - MIB: CPI-UNITY-MIB
668 symbol:
@@ -626,220 +679,264 @@ metrics:
679 OID: 1.3.6.1.4.1.30932.1.1.3.12.3.0
680 name: receptacleEnergyoutlet3s
681 metric_type: monotonic_count
629 - description: Outlet3 receptacle energy accumulated
630 - family: PDU/Outlet/3/Energy
682 + chart_meta:
683 + description: Outlet3 receptacle energy accumulated
684 + family: PDU/Outlet/3/Energy
685 + unit: "da*W"
686 scale_factor: 0.1
632 - unit: "da*W"
687 +
688
689 - MIB: CPI-UNITY-MIB
690 symbol:
691 OID: 1.3.6.1.4.1.30932.1.1.3.12.4.0
692 name: receptacleEnergyoutlet4s
693 metric_type: monotonic_count
639 - description: Outlet4 receptacle energy accumulated
640 - family: PDU/Outlet/4/Energy
694 + chart_meta:
695 + description: Outlet4 receptacle energy accumulated
696 + family: PDU/Outlet/4/Energy
697 + unit: "da*W"
698 scale_factor: 0.1
642 - unit: "da*W"
699 +
700
701 - MIB: CPI-UNITY-MIB
702 symbol:
703 OID: 1.3.6.1.4.1.30932.1.1.3.12.5.0
704 name: receptacleEnergyoutlet5s
705 metric_type: monotonic_count
649 - description: Outlet5 receptacle energy accumulated
650 - family: PDU/Outlet/5/Energy
706 + chart_meta:
707 + description: Outlet5 receptacle energy accumulated
708 + family: PDU/Outlet/5/Energy
709 + unit: "da*W"
710 scale_factor: 0.1
652 - unit: "da*W"
711 +
712
713 - MIB: CPI-UNITY-MIB
714 symbol:
715 OID: 1.3.6.1.4.1.30932.1.1.3.12.6.0
716 name: receptacleEnergyoutlet6s
717 metric_type: monotonic_count
659 - description: Outlet6 receptacle energy accumulated
660 - family: PDU/Outlet/6/Energy
718 + chart_meta:
719 + description: Outlet6 receptacle energy accumulated
720 + family: PDU/Outlet/6/Energy
721 + unit: "da*W"
722 scale_factor: 0.1
662 - unit: "da*W"
723 +
724
725 - MIB: CPI-UNITY-MIB
726 symbol:
727 OID: 1.3.6.1.4.1.30932.1.1.3.12.7.0
728 name: receptacleEnergyoutlet7s
729 metric_type: monotonic_count
669 - description: Outlet7 receptacle energy accumulated
670 - family: PDU/Outlet/7/Energy
730 + chart_meta:
731 + description: Outlet7 receptacle energy accumulated
732 + family: PDU/Outlet/7/Energy
733 + unit: "da*W"
734 scale_factor: 0.1
672 - unit: "da*W"
735 +
736
737 - MIB: CPI-UNITY-MIB
738 symbol:
739 OID: 1.3.6.1.4.1.30932.1.1.3.12.8.0
740 name: receptacleEnergyoutlet8s
741 metric_type: monotonic_count
679 - description: Outlet8 receptacle energy accumulated
680 - family: PDU/Outlet/8/Energy
742 + chart_meta:
743 + description: Outlet8 receptacle energy accumulated
744 + family: PDU/Outlet/8/Energy
745 + unit: "da*W"
746 scale_factor: 0.1
682 - unit: "da*W"
747 +
748
749 - MIB: CPI-UNITY-MIB
750 symbol:
751 OID: 1.3.6.1.4.1.30932.1.1.3.12.9.0
752 name: receptacleEnergyoutlet9s
753 metric_type: monotonic_count
689 - description: Outlet9 receptacle energy accumulated
690 - family: PDU/Outlet/9/Energy
754 + chart_meta:
755 + description: Outlet9 receptacle energy accumulated
756 + family: PDU/Outlet/9/Energy
757 + unit: "da*W"
758 scale_factor: 0.1
692 - unit: "da*W"
759 +
760
761 - MIB: CPI-UNITY-MIB
762 symbol:
763 OID: 1.3.6.1.4.1.30932.1.1.3.12.10.0
764 name: receptacleEnergyoutlet10s
765 metric_type: monotonic_count
699 - description: Outlet10 receptacle energy accumulated
700 - family: PDU/Outlet/10/Energy
766 + chart_meta:
767 + description: Outlet10 receptacle energy accumulated
768 + family: PDU/Outlet/10/Energy
769 + unit: "da*W"
770 scale_factor: 0.1
702 - unit: "da*W"
771 +
772
773 - MIB: CPI-UNITY-MIB
774 symbol:
775 OID: 1.3.6.1.4.1.30932.1.1.3.12.11.0
776 name: receptacleEnergyoutlet11s
777 metric_type: monotonic_count
709 - description: Outlet11 receptacle energy accumulated
710 - family: PDU/Outlet/11/Energy
778 + chart_meta:
779 + description: Outlet11 receptacle energy accumulated
780 + family: PDU/Outlet/11/Energy
781 + unit: "da*W"
782 scale_factor: 0.1
712 - unit: "da*W"
783 +
784
785 - MIB: CPI-UNITY-MIB
786 symbol:
787 OID: 1.3.6.1.4.1.30932.1.1.3.12.12.0
788 name: receptacleEnergyoutlet12s
789 metric_type: monotonic_count
719 - description: Outlet12 receptacle energy accumulated
720 - family: PDU/Outlet/12/Energy
790 + chart_meta:
791 + description: Outlet12 receptacle energy accumulated
792 + family: PDU/Outlet/12/Energy
793 + unit: "da*W"
794 scale_factor: 0.1
722 - unit: "da*W"
795 +
796
797 - MIB: CPI-UNITY-MIB
798 symbol:
799 OID: 1.3.6.1.4.1.30932.1.1.3.12.13.0
800 name: receptacleEnergyoutlet13s
801 metric_type: monotonic_count
729 - description: Outlet13 receptacle energy accumulated
730 - family: PDU/Outlet/13/Energy
802 + chart_meta:
803 + description: Outlet13 receptacle energy accumulated
804 + family: PDU/Outlet/13/Energy
805 + unit: "da*W"
806 scale_factor: 0.1
732 - unit: "da*W"
807 +
808
809 - MIB: CPI-UNITY-MIB
810 symbol:
811 OID: 1.3.6.1.4.1.30932.1.1.3.12.14.0
812 name: receptacleEnergyoutlet14s
813 metric_type: monotonic_count
739 - description: Outlet14 receptacle energy accumulated
740 - family: PDU/Outlet/14/Energy
814 + chart_meta:
815 + description: Outlet14 receptacle energy accumulated
816 + family: PDU/Outlet/14/Energy
817 + unit: "da*W"
818 scale_factor: 0.1
742 - unit: "da*W"
819 +
820
821 - MIB: CPI-UNITY-MIB
822 symbol:
823 OID: 1.3.6.1.4.1.30932.1.1.3.12.15.0
824 name: receptacleEnergyoutlet15s
825 metric_type: monotonic_count
749 - description: Outlet15 receptacle energy accumulated
750 - family: PDU/Outlet/15/Energy
826 + chart_meta:
827 + description: Outlet15 receptacle energy accumulated
828 + family: PDU/Outlet/15/Energy
829 + unit: "da*W"
830 scale_factor: 0.1
752 - unit: "da*W"
831 +
832
833 - MIB: CPI-UNITY-MIB
834 symbol:
835 OID: 1.3.6.1.4.1.30932.1.1.3.12.16.0
836 name: receptacleEnergyoutlet16s
837 metric_type: monotonic_count
759 - description: Outlet16 receptacle energy accumulated
760 - family: PDU/Outlet/16/Energy
838 + chart_meta:
839 + description: Outlet16 receptacle energy accumulated
840 + family: PDU/Outlet/16/Energy
841 + unit: "da*W"
842 scale_factor: 0.1
762 - unit: "da*W"
843 +
844
845 - MIB: CPI-UNITY-MIB
846 symbol:
847 OID: 1.3.6.1.4.1.30932.1.1.3.12.17.0
848 name: receptacleEnergyoutlet17s
849 metric_type: monotonic_count
769 - description: Outlet17 receptacle energy accumulated
770 - family: PDU/Outlet/17/Energy
850 + chart_meta:
851 + description: Outlet17 receptacle energy accumulated
852 + family: PDU/Outlet/17/Energy
853 + unit: "da*W"
854 scale_factor: 0.1
772 - unit: "da*W"
855 +
856
857 - MIB: CPI-UNITY-MIB
858 symbol:
859 OID: 1.3.6.1.4.1.30932.1.1.3.12.18.0
860 name: receptacleEnergyoutlet18s
861 metric_type: monotonic_count
779 - description: Outlet18 receptacle energy accumulated
780 - family: PDU/Outlet/18/Energy
862 + chart_meta:
863 + description: Outlet18 receptacle energy accumulated
864 + family: PDU/Outlet/18/Energy
865 + unit: "da*W"
866 scale_factor: 0.1
782 - unit: "da*W"
867 +
868
869 - MIB: CPI-UNITY-MIB
870 symbol:
871 OID: 1.3.6.1.4.1.30932.1.1.3.12.19.0
872 name: receptacleEnergyoutlet19s
873 metric_type: monotonic_count
789 - description: Outlet19 receptacle energy accumulated
790 - family: PDU/Outlet/19/Energy
874 + chart_meta:
875 + description: Outlet19 receptacle energy accumulated
876 + family: PDU/Outlet/19/Energy
877 + unit: "da*W"
878 scale_factor: 0.1
792 - unit: "da*W"
879 +
880
881 - MIB: CPI-UNITY-MIB
882 symbol:
883 OID: 1.3.6.1.4.1.30932.1.1.3.12.20.0
884 name: receptacleEnergyoutlet20s
885 metric_type: monotonic_count
799 - description: Outlet20 receptacle energy accumulated
800 - family: PDU/Outlet/20/Energy
886 + chart_meta:
887 + description: Outlet20 receptacle energy accumulated
888 + family: PDU/Outlet/20/Energy
889 + unit: "da*W"
890 scale_factor: 0.1
802 - unit: "da*W"
891 +
892
893 - MIB: CPI-UNITY-MIB
894 symbol:
895 OID: 1.3.6.1.4.1.30932.1.1.3.12.21.0
896 name: receptacleEnergyoutlet21s
897 metric_type: monotonic_count
809 - description: Outlet21 receptacle energy accumulated
810 - family: PDU/Outlet/21/Energy
898 + chart_meta:
899 + description: Outlet21 receptacle energy accumulated
900 + family: PDU/Outlet/21/Energy
901 + unit: "da*W"
902 scale_factor: 0.1
812 - unit: "da*W"
903 +
904
905 - MIB: CPI-UNITY-MIB
906 symbol:
907 OID: 1.3.6.1.4.1.30932.1.1.3.12.22.0
908 name: receptacleEnergyoutlet22s
909 metric_type: monotonic_count
819 - description: Outlet22 receptacle energy accumulated
820 - family: PDU/Outlet/22/Energy
910 + chart_meta:
911 + description: Outlet22 receptacle energy accumulated
912 + family: PDU/Outlet/22/Energy
913 + unit: "da*W"
914 scale_factor: 0.1
822 - unit: "da*W"
915 +
916
917 - MIB: CPI-UNITY-MIB
918 symbol:
919 OID: 1.3.6.1.4.1.30932.1.1.3.12.23.0
920 name: receptacleEnergyoutlet23s
921 metric_type: monotonic_count
829 - description: Outlet23 receptacle energy accumulated
830 - family: PDU/Outlet/23/Energy
922 + chart_meta:
923 + description: Outlet23 receptacle energy accumulated
924 + family: PDU/Outlet/23/Energy
925 + unit: "da*W"
926 scale_factor: 0.1
832 - unit: "da*W"
927 +
928
929 - MIB: CPI-UNITY-MIB
930 symbol:
931 OID: 1.3.6.1.4.1.30932.1.1.3.12.24.0
932 name: receptacleEnergyoutlet24s
933 metric_type: monotonic_count
839 - description: Outlet24 receptacle energy accumulated
840 - family: PDU/Outlet/24/Energy
934 + chart_meta:
935 + description: Outlet24 receptacle energy accumulated
936 + family: PDU/Outlet/24/Energy
937 + unit: "da*W"
938 scale_factor: 0.1
842 - unit: "da*W"
939 +
940
941 ### PDU
942
@@ -852,23 +949,26 @@ metrics:
949 # Get the number of branches (breakers) in the PDU.
950 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.8
951 name: cpiPduNumberBranches
855 - description: Number of branches in the PDU
856 - family: PDU/Branch/Count
857 - unit: "{branch}"
952 + chart_meta:
953 + description: Number of branches in the PDU
954 + family: PDU/Branch/Count
955 + unit: "{branch}"
956
957 # Get the number of outlets in the PDU.
958 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.9
959 name: cpiPduNumberOutlets
862 - description: Number of outlets in the PDU
863 - family: PDU/Outlet/Count
864 - unit: "{outlet}"
960 + chart_meta:
961 + description: Number of outlets in the PDU
962 + family: PDU/Outlet/Count
963 + unit: "{outlet}"
964
965 # Set or get whether the PDU is in-service: inservice(0), outofservice(1)
966 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.10
967 name: cpiPduOutOfService
869 - description: Whether the PDU is in service
870 - family: PDU/Service/Status
871 - unit: "{status}"
968 + chart_meta:
969 + description: Whether the PDU is in service
970 + family: PDU/Service/Status
971 + unit: "{status}"
972 mapping:
973 0: in service
974 1: out of service
@@ -876,9 +976,10 @@ metrics:
976 # An indicator if the PDU firmware is being upgraded: no(0), yes(1)
977 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.12
978 name: cpiPduUpgrade
879 - description: Indicator if the PDU firmware is being upgraded
880 - family: PDU/Firmware/Upgrade/Status
881 - unit: "{status}"
979 + chart_meta:
980 + description: Indicator if the PDU firmware is being upgraded
981 + family: PDU/Firmware/Upgrade/Status
982 + unit: "{status}"
983 mapping:
984 0: no
985 1: yes
@@ -886,9 +987,10 @@ metrics:
987 # Get the role of the PDU in a daisy chain: secondary(0), primary(1), alternate(2)
988 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.13
989 name: cpiPduChainRole
889 - description: Role of the PDU in a daisy chain
890 - family: PDU/Chain/Role/Status
891 - unit: "{status}"
990 + chart_meta:
991 + description: Role of the PDU in a daisy chain
992 + family: PDU/Chain/Role/Status
993 + unit: "{status}"
994 mapping:
995 1: primary
996 2: secondary
@@ -896,9 +998,10 @@ metrics:
998 # Get the power in volt-amps for the entire PDU.
999 - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.16
1000 name: cpiPduTotalPower
899 - description: Power for the entire PDU
900 - family: PDU/Power/Total
901 - unit: "VA"
1001 + chart_meta:
1002 + description: Power for the entire PDU
1003 + family: PDU/Power/Total
1004 + unit: "VA"
1005 metric_tags:
1006 - tag: pdu_macaddress
1007 symbol:
@@ -937,9 +1040,10 @@ metrics:
1040 # Indicates if the Electronic Access Control system is ready, inactive, or in an error state: inactive(0), ready(1), error(2)
1041 - OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.3
1042 name: cpiPduEasStatus
940 - description: Status of the Electronic Access Control system
941 - family: PDU/Lock/AccessControl/Status
942 - unit: "{status}"
1043 + chart_meta:
1044 + description: Status of the Electronic Access Control system
1045 + family: PDU/Lock/AccessControl/Status
1046 + unit: "{status}"
1047 mapping:
1048 0: inactive
1049 1: ready
@@ -948,9 +1052,10 @@ metrics:
1052 # Indicates if the door sensor is closed or open: closed(0), open(1)
1053 - OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.4
1054 name: cpiPduDoorStatus
951 - description: Door sensor status, closed or open
952 - family: PDU/Lock/Door/Status
953 - unit: "{status}"
1055 + chart_meta:
1056 + description: Door sensor status, closed or open
1057 + family: PDU/Lock/Door/Status
1058 + unit: "{status}"
1059 mapping:
1060 0: closed
1061 1: open
@@ -958,9 +1063,10 @@ metrics:
1063 # Indicates if the lock is closed or open: closed(0), open(1)
1064 - OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.5
1065 name: cpiPduLockStatus
961 - description: Lock status, closed or open
962 - family: PDU/Lock/Status
963 - unit: "{status}"
1066 + chart_meta:
1067 + description: Lock status, closed or open
1068 + family: PDU/Lock/Status
1069 + unit: "{status}"
1070 mapping:
1071 0: closed
1072 1: open
@@ -1024,9 +1130,10 @@ metrics:
1130 # Get current draw in 1/100 amp of the line on the PDU. Convert the value by dividing by 100.
1131 - OID: 1.3.6.1.4.1.30932.1.10.1.3.10.1.3
1132 name: cpiPduLineCurrent
1027 - family: PDU/Line/Current
1028 - description: Current draw of the line on the PDU
1029 - unit: "A/100"
1133 + chart_meta:
1134 + description: Current draw of the line on the PDU
1135 + family: PDU/Line/Current
1136 + unit: "A/100"
1137 metric_tags:
1138 # Get the ID of the input line on the PDU.
1139 - tag: line_id
@@ -1045,45 +1152,51 @@ metrics:
1152 # Get the current draw in 1/100 amp of the branch on the PDU. Convert the value by dividing by 100.
1153 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.3
1154 name: cpiPduBranchCurrent
1048 - description: Current draw of the branch on the PDU
1049 - family: PDU/Branch/Current
1050 - unit: "A/100"
1155 + chart_meta:
1156 + description: Current draw of the branch on the PDU
1157 + family: PDU/Branch/Current
1158 + unit: "A/100"
1159
1160 # Get the maximum current draw in 1/100 amp of the branch on the PDU. Convert the value by dividing by 100.
1161 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.4
1162 name: cpiPduBranchMaxCurrent
1055 - description: Maximum current draw of the branch on the PDU
1056 - family: PDU/Branch/Current/Maximum
1057 - unit: "A/100"
1163 + chart_meta:
1164 + description: Maximum current draw of the branch on the PDU
1165 + family: PDU/Branch/Current/Maximum
1166 + unit: "A/100"
1167
1168 # Get the voltage in 1/10 volts of the branch on the PDU. Convert the value by dividing by 10.
1169 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.5
1170 name: cpiPduBranchVoltage
1062 - description: Voltage in 1/10 volts of the branch on the PDU
1063 - family: PDU/Branch/Voltage
1064 - unit: "V/10"
1171 + chart_meta:
1172 + description: Voltage in 1/10 volts of the branch on the PDU
1173 + family: PDU/Branch/Voltage
1174 + unit: "V/10"
1175
1176 # Get the power in volt-amps for the branch.
1177 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.6
1178 name: cpiPduBranchPower
1069 - description: Power in volt-amps for the branch
1070 - family: PDU/Branch/Power
1071 - unit: "VA"
1179 + chart_meta:
1180 + description: Power in volt-amps for the branch
1181 + family: PDU/Branch/Power
1182 + unit: "VA"
1183
1184 # Get the power factor for the branch.
1185 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.7
1186 name: cpiPduBranchPowerFactor
1076 - description: Power factor for the branch
1077 - family: PDU/Branch/PowerFactor
1078 - unit: "10*2.1"
1187 + chart_meta:
1188 + description: Power factor for the branch
1189 + family: PDU/Branch/PowerFactor
1190 + unit: "10*2.1"
1191 # TODO don't think this helps
1192
1193 # Get the alarm status of the branch: noalarm(0), warning(1), alarm(2)
1194 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.8
1195 name: cpiPduBranchStatus
1084 - description: Alarm status of the branch
1085 - family: PDU/Branch/Alarm/Status
1086 - unit: "{status}"
1196 + chart_meta:
1197 + description: Alarm status of the branch
1198 + family: PDU/Branch/Alarm/Status
1199 + unit: "{status}"
1200 mapping:
1201 0: noalarm
1202 1: warning
@@ -1091,10 +1204,12 @@ metrics:
1204 # Get the branch energy accumulated in decaVA-secs, divide by 360 to obtain VA-hr.
1205 - OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.9
1206 name: cpiPduBranchEnergy
1094 - description: Branch energy accumulated in decaVA-secs, divide by 360 to obtain VA-hr
1095 - family: PDU/Branch/Energy
1207 + chart_meta:
1208 + description: Branch energy accumulated in decaVA-secs, divide by 360 to obtain VA-hr
1209 + family: PDU/Branch/Energy
1210 + unit: "V"
1211 scale_factor: 0.1
1097 - unit: "V"
1212 +
1213 metric_tags:
1214 - tag: branch_id
1215 symbol:
@@ -1131,30 +1246,34 @@ metrics:
1246 # Get the current draw in 1/100 amp of the outlet on the PDU. Convert the value by dividing by 100.
1247 - OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.6
1248 name: cpiPduOutletCurrent
1134 - description: Current draw in 1/100 amp of the outlet on the PDU
1135 - family: PDU/Outlet/Current
1136 - unit: "A/100"
1249 + chart_meta:
1250 + description: Current draw in 1/100 amp of the outlet on the PDU
1251 + family: PDU/Outlet/Current
1252 + unit: "A/100"
1253
1254 # Get the voltage in 1/10 volts of the outlet on the PDU. Convert the value by dividing by 10.
1255 - OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.7
1256 name: cpiPduOutletVoltage
1141 - description: Voltage in 1/10 volts of the outlet on the PDU
1142 - family: PDU/Outlet/Voltage
1143 - unit: "V/10"
1257 + chart_meta:
1258 + description: Voltage in 1/10 volts of the outlet on the PDU
1259 + family: PDU/Outlet/Voltage
1260 + unit: "V/10"
1261
1262 # The power in Volt-Amps of the outlet on the PDU.
1263 - OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.8
1264 name: cpiPduOutletPower
1148 - description: Power in Volt-Amps of the outlet on the PDU
1149 - family: PDU/Outlet/Power
1150 - unit: "VA"
1265 + chart_meta:
1266 + description: Power in Volt-Amps of the outlet on the PDU
1267 + family: PDU/Outlet/Power
1268 + unit: "VA"
1269
1270 # Get the alarm status of the outlet: noalarm(0), warning(1), alarm(2)
1271 - OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.9
1272 name: cpiPduOutletStatus
1155 - description: Alarm status of the outlet
1156 - family: PDU/Outlet/Alarm/Status
1157 - unit: "{status}"
1273 + chart_meta:
1274 + description: Alarm status of the outlet
1275 + family: PDU/Outlet/Alarm/Status
1276 + unit: "{status}"
1277 mapping:
1278 0: noalarm
1279 1: warning
@@ -1162,10 +1281,12 @@ metrics:
1281 # Get the outlet energy accumulated in decaWatt-secs, divide by 360 to obtain Watt-hr.
1282 - OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.10
1283 name: cpiPduOutletEnergy
1165 - description: Outlet energy accumulated in decaWatt-secs, divide by 360 to obtain Watt-hr
1166 - family: PDU/Outlet/Energy
1284 + chart_meta:
1285 + description: Outlet energy accumulated in decaWatt-secs, divide by 360 to obtain Watt-hr
1286 + family: PDU/Outlet/Energy
1287 + unit: "W"
1288 scale_factor: 0.1
1168 - unit: "W"
1289 +
1290 metric_tags:
1291 - tag: outlet_id
1292 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/checkpoint.yaml
+100 -75
@@ -69,24 +69,28 @@ metrics:
69 symbols:
70 - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.2
71 name: multiProcUserTime
72 - description: "Processor user time"
73 - family: CPU/Time/User
74 - unit: "%"
72 + chart_meta:
73 + description: "Processor user time"
74 + family: CPU/Time/User
75 + unit: "%"
76 - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.3
77 name: multiProcSystemTime
77 - description: "Processor system time"
78 - family: CPU/Time/System
79 - unit: "%"
78 + chart_meta:
79 + description: "Processor system time"
80 + family: CPU/Time/System
81 + unit: "%"
82 - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.4
83 name: multiProcIdleTime
82 - description: "Processor idle time"
83 - family: CPU/Time/Idle
84 - unit: "%"
84 + chart_meta:
85 + description: "Processor idle time"
86 + family: CPU/Time/Idle
87 + unit: "%"
88 - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.5
89 name: multiProcUsage
87 - description: "Processor usage"
88 - family: CPU/Usage
89 - unit: "%"
90 + chart_meta:
91 + description: "Processor usage"
92 + family: CPU/Usage
93 + unit: "%"
94 metric_tags:
95 - symbol:
96 OID: 1.3.6.1.4.1.2620.1.6.7.5.1.1
@@ -96,50 +100,56 @@ metrics:
100 symbol:
101 OID: 1.3.6.1.4.1.2620.1.6.7.2.7.0
102 name: procNum
99 - description: "Number of processors"
100 - family: CPU/Count
101 - unit: "{processor}"
103 + chart_meta:
104 + description: "Number of processors"
105 + family: CPU/Count
106 + unit: "{processor}"
107 # Memory
108 - MIB: CHECKPOINT-MIB
109 metric_type: gauge
110 symbol:
111 OID: 1.3.6.1.4.1.2620.1.6.7.4.3.0
112 name: memTotalReal64
108 - description: "Total real memory"
109 - family: Memory/Real/Total
110 - unit: "By"
113 + chart_meta:
114 + description: "Total real memory"
115 + family: Memory/Real/Total
116 + unit: "By"
117 - MIB: CHECKPOINT-MIB
118 metric_type: gauge
119 symbol:
120 OID: 1.3.6.1.4.1.2620.1.6.7.4.4.0
121 name: memActiveReal64
116 - description: "Active real memory"
117 - family: Memory/Real/Active
118 - unit: "By"
122 + chart_meta:
123 + description: "Active real memory"
124 + family: Memory/Real/Active
125 + unit: "By"
126 - MIB: CHECKPOINT-MIB
127 metric_type: gauge
128 symbol:
129 OID: 1.3.6.1.4.1.2620.1.6.7.4.5.0
130 name: memFreeReal64
124 - description: "Free real memory"
125 - family: Memory/Real/Free
126 - unit: "By"
131 + chart_meta:
132 + description: "Free real memory"
133 + family: Memory/Real/Free
134 + unit: "By"
135 - MIB: CHECKPOINT-MIB
136 metric_type: gauge
137 symbol:
138 OID: 1.3.6.1.4.1.2620.1.6.7.4.1.0
139 name: memTotalVirtual64
132 - description: "Total virtual memory"
133 - family: Memory/Virtual/Total
134 - unit: "By"
140 + chart_meta:
141 + description: "Total virtual memory"
142 + family: Memory/Virtual/Total
143 + unit: "By"
144 - MIB: CHECKPOINT-MIB
145 metric_type: gauge
146 symbol:
147 OID: 1.3.6.1.4.1.2620.1.6.7.4.2.0
148 name: memActiveVirtual64
140 - description: "Active virtual memory"
141 - family: Memory/Virtual/Active
142 - unit: "By"
149 + chart_meta:
150 + description: "Active virtual memory"
151 + family: Memory/Virtual/Active
152 + unit: "By"
153 # Disk
154 - MIB: CHECKPOINT-MIB
155 metric_type: gauge
@@ -149,34 +159,40 @@ metrics:
159 symbols:
160 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.3
161 name: multiDiskSize
152 - description: "Disk size"
153 - family: Disk/Size/Total
154 - unit: "GBy"
162 + chart_meta:
163 + description: "Disk size"
164 + family: Disk/Size/Total
165 + unit: "GBy"
166 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.4
167 name: multiDiskUsed
157 - description: "Disk used"
158 - family: Disk/Size/Used
159 - unit: "GBy"
168 + chart_meta:
169 + description: "Disk used"
170 + family: Disk/Size/Used
171 + unit: "GBy"
172 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.5
173 name: multiDiskFreeTotalBytes
162 - description: "Disk free total bytes"
163 - family: Disk/Size/Free
164 - unit: "By"
174 + chart_meta:
175 + description: "Disk free total bytes"
176 + family: Disk/Size/Free
177 + unit: "By"
178 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.7
179 name: multiDiskFreeAvailableBytes
167 - description: "Disk free available bytes"
168 - family: Disk/Size/Available
169 - unit: "By"
180 + chart_meta:
181 + description: "Disk free available bytes"
182 + family: Disk/Size/Available
183 + unit: "By"
184 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.6
185 name: multiDiskFreeTotalPercent
172 - description: "Disk free total percent"
173 - family: Disk/Free/Percentage
174 - unit: "%"
186 + chart_meta:
187 + description: "Disk free total percent"
188 + family: Disk/Free/Percentage
189 + unit: "%"
190 - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.8
191 name: multiDiskFreeAvailablePercent
177 - description: "Disk free available percent"
178 - family: Disk/Available/Percentage
179 - unit: "%"
192 + chart_meta:
193 + description: "Disk free available percent"
194 + family: Disk/Available/Percentage
195 + unit: "%"
196 metric_tags:
197 - symbol:
198 OID: 1.3.6.1.4.1.2620.1.6.7.6.1.1
@@ -194,14 +210,16 @@ metrics:
210 symbols:
211 - OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.3
212 name: fanSpeedSensorValue
197 - description: "Sensor value"
198 - family: Sensor/FanSpeed/Value
199 - unit: "{revolution}/s"
213 + chart_meta:
214 + description: "Sensor value"
215 + family: Sensor/FanSpeed/Value
216 + unit: "{revolution}/s"
217 - OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.6
218 name: fanSpeedSensorStatus
202 - description: "Sensor is out of range true(1), false(0), reading error(2)"
203 - family: Sensor/FanSpeed/Status
204 - unit: "{status}"
219 + chart_meta:
220 + description: "Sensor is out of range true(1), false(0), reading error(2)"
221 + family: Sensor/FanSpeed/Status
222 + unit: "{status}"
223 mapping:
224 0: "false"
225 1: "true"
@@ -222,14 +240,16 @@ metrics:
240 symbols:
241 - OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.3
242 name: tempertureSensorValue
225 - description: "Sensor value"
226 - family: Sensor/Temperature/Value
227 - unit: "Cel"
243 + chart_meta:
244 + description: "Sensor value"
245 + family: Sensor/Temperature/Value
246 + unit: "Cel"
247 - OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.6
248 name: tempertureSensorStatus
230 - description: "Sensor is out of range true(1), false(0), reading error(2)"
231 - family: Sensor/Temperature/Status
232 - unit: "{status}"
249 + chart_meta:
250 + description: "Sensor is out of range true(1), false(0), reading error(2)"
251 + family: Sensor/Temperature/Status
252 + unit: "{status}"
253 mapping:
254 0: "false"
255 1: "true"
@@ -248,34 +268,39 @@ metrics:
268 symbol:
269 OID: 1.3.6.1.4.1.2620.1.1.4.0
270 name: fwAccepted
251 - description: "Number of accepted packets"
252 - family: Firewall/Packet/Accepted
253 - unit: "{packet}/s"
271 + chart_meta:
272 + description: "Number of accepted packets"
273 + family: Firewall/Packet/Accepted
274 + unit: "{packet}/s"
275 - MIB: CHECKPOINT-MIB
276 symbol:
277 OID: 1.3.6.1.4.1.2620.1.1.6.0
278 name: fwDropped
258 - description: "Number of dropped packets"
259 - family: Firewall/Packet/Dropped
260 - unit: "{packet}/s"
279 + chart_meta:
280 + description: "Number of dropped packets"
281 + family: Firewall/Packet/Dropped
282 + unit: "{packet}/s"
283 - MIB: CHECKPOINT-MIB
284 symbol:
285 OID: 1.3.6.1.4.1.2620.1.1.5.0
286 name: fwRejected
265 - description: "Number of rejected packets"
266 - family: Firewall/Packet/Rejected
267 - unit: "{packet}/s"
287 + chart_meta:
288 + description: "Number of rejected packets"
289 + family: Firewall/Packet/Rejected
290 + unit: "{packet}/s"
291 - MIB: CHECKPOINT-MIB
292 symbol:
293 OID: 1.3.6.1.4.1.2620.1.1.25.3.0
294 name: fwNumConn
272 - description: "Number of connections"
273 - family: Firewall/Connection/Active
274 - unit: "{connection}"
295 + chart_meta:
296 + description: "Number of connections"
297 + family: Firewall/Connection/Active
298 + unit: "{connection}"
299 - MIB: CHECKPOINT-MIB
300 symbol:
301 OID: 1.3.6.1.4.1.2620.1.1.25.4.0
302 name: fwPeakNumConn
279 - description: "Peak number of connections"
280 - family: Firewall/Connection/Peak
281 - unit: "{connection}/s"
303 + chart_meta:
304 + description: "Peak number of connections"
305 + family: Firewall/Connection/Peak
306 + unit: "{connection}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/chrysalis-luna-hsm.yaml
+28 -21
@@ -9,16 +9,18 @@ metrics:
9 symbol:
10 OID: 1.3.6.1.4.1.12383.3.1.1.1.0
11 name: hsmOperationRequests
12 - description: Number of operations
13 - family: HSM/Operation/Request/Total
14 - unit: "{operation}"
12 + chart_meta:
13 + description: Number of operations
14 + family: HSM/Operation/Request/Total
15 + unit: "{operation}"
16 - MIB: CHRYSALIS-UTSP-MIB
17 symbol:
18 OID: 1.3.6.1.4.1.12383.3.1.1.2.0
19 name: hsmOperationErrors
19 - description: Number of operation errors
20 - family: HSM/Operation/Error/Total
21 - unit: "{error}"
20 + chart_meta:
21 + description: Number of operation errors
22 + family: HSM/Operation/Error/Total
23 + unit: "{error}"
24 # - MIB: CHRYSALIS-UTSP-MIB
25 # symbol:
26 # OID: 1.3.6.1.4.1.12383.3.1.1.3.0
@@ -36,9 +38,10 @@ metrics:
38 symbol:
39 OID: 1.3.6.1.4.1.12383.3.1.2.1.0
40 name: ntlsOperStatus
39 - description: Current operational status of the NTL service
40 - family: HSM/NTLS/Operational/Status
41 - unit: "{status}"
41 + chart_meta:
42 + description: Current operational status of the NTL service
43 + family: HSM/NTLS/Operational/Status
44 + unit: "{status}"
45 mapping:
46 1: up
47 2: down
@@ -47,30 +50,34 @@ metrics:
50 symbol:
51 OID: 1.3.6.1.4.1.12383.3.1.2.2.0
52 name: ntlsConnectedClients
50 - description: The current number of connected clients using NTLS
51 - family: HSM/NTLS/Client/Connected
52 - unit: "{client}"
53 + chart_meta:
54 + description: The current number of connected clients using NTLS
55 + family: HSM/NTLS/Client/Connected
56 + unit: "{client}"
57 - MIB: CHRYSALIS-UTSP-MIB
58 symbol:
59 OID: 1.3.6.1.4.1.12383.3.1.2.3.0
60 name: ntlsLinks
57 - description: The current number of links in NTLS
58 - family: HSM/NTLS/Link/Active
59 - unit: "{link}"
61 + chart_meta:
62 + description: The current number of links in NTLS
63 + family: HSM/NTLS/Link/Active
64 + unit: "{link}"
65 - MIB: CHRYSALIS-UTSP-MIB
66 symbol:
67 OID: 1.3.6.1.4.1.12383.3.1.2.4.0
68 name: ntlsSuccessfulClientConnections
64 - description: The total number of successful client connections
65 - family: HSM/NTLS/Connection/Successful
66 - unit: "{connection}/s"
69 + chart_meta:
70 + description: The total number of successful client connections
71 + family: HSM/NTLS/Connection/Successful
72 + unit: "{connection}/s"
73 - MIB: CHRYSALIS-UTSP-MIB
74 symbol:
75 OID: 1.3.6.1.4.1.12383.3.1.2.5.0
76 name: ntlsFailedClientConnections
71 - description: The total number of unsuccessful client connections
72 - family: HSM/NTLS/Connection/Failed
73 - unit: "{connection}/s"
77 + chart_meta:
78 + description: The total number of unsuccessful client connections
79 + family: HSM/NTLS/Connection/Failed
80 + unit: "{connection}/s"
81 # TODO: sending tags for scalar metric is not supported yet (keep this metric and this)
82 # - MIB: CHRYSALIS-UTSP-MIB
83 # OID: 1.3.6.1.4.1.12383.3.1.2.6.0
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-access-point.yaml
+36 -27
@@ -23,49 +23,58 @@ metrics:
23 symbols:
24 - name: cDot11ActiveWirelessClients
25 OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.1
26 - description: Number of wireless clients currently associating with this device on this interface
27 - family: Interfaces/Wireless/Client/Active
28 - unit: "{client}"
26 + chart_meta:
27 + description: Number of wireless clients currently associating with this device on this interface
28 + family: Interfaces/Wireless/Client/Active
29 + unit: "{client}"
30 - name: cDot11ActiveBridges
31 OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.2
31 - description: Number of bridges currently associating with this device on this interface
32 - family: Interfaces/Wireless/Bridge/Active
33 - unit: "{bridge}"
32 + chart_meta:
33 + description: Number of bridges currently associating with this device on this interface
34 + family: Interfaces/Wireless/Bridge/Active
35 + unit: "{bridge}"
36 - name: cDot11ActiveRepeaters
37 OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.3
36 - description: Number of repeaters currently associating with this device on this interface
37 - family: Interfaces/Wireless/Repeater/Active
38 - unit: "{repeater}"
38 + chart_meta:
39 + description: Number of repeaters currently associating with this device on this interface
40 + family: Interfaces/Wireless/Repeater/Active
41 + unit: "{repeater}"
42 - name: cDot11AssStatsAssociated
43 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.1
41 - description: Number of stations associated with this device on this interface since device re-started
42 - family: Interfaces/Wireless/Station/Associated
43 - unit: "{station}/s"
44 + chart_meta:
45 + description: Number of stations associated with this device on this interface since device re-started
46 + family: Interfaces/Wireless/Station/Associated
47 + unit: "{station}/s"
48 - name: cDot11AssStatsAuthenticated
49 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.2
46 - description: Number of stations authenticated with this device on this interface since device re-started
47 - family: Interfaces/Wireless/Station/Authenticated
48 - unit: "{station}/s"
50 + chart_meta:
51 + description: Number of stations authenticated with this device on this interface since device re-started
52 + family: Interfaces/Wireless/Station/Authenticated
53 + unit: "{station}/s"
54 - name: cDot11AssStatsRoamedIn
55 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.3
51 - description: Number of stations roamed from another device to this device on this interface since device re-started
52 - family: Interfaces/Wireless/Station/RoamedIn
53 - unit: "{station}/s"
56 + chart_meta:
57 + description: Number of stations roamed from another device to this device on this interface since device re-started
58 + family: Interfaces/Wireless/Station/RoamedIn
59 + unit: "{station}/s"
60 - name: cDot11AssStatsRoamedAway
61 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.4
56 - description: Number of stations roamed away from this device on this interface since device re-started
57 - family: Interfaces/Wireless/Station/RoamedOut
58 - unit: "{station}/s"
62 + chart_meta:
63 + description: Number of stations roamed away from this device on this interface since device re-started
64 + family: Interfaces/Wireless/Station/RoamedOut
65 + unit: "{station}/s"
66 - name: cDot11AssStatsDeauthenticated
67 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.5
61 - description: Number of stations deauthenticated with this device on this interface since device re-started
62 - family: Interfaces/Wireless/Station/Deauthenticated
63 - unit: "{station}/s"
68 + chart_meta:
69 + description: Number of stations deauthenticated with this device on this interface since device re-started
70 + family: Interfaces/Wireless/Station/Deauthenticated
71 + unit: "{station}/s"
72 - name: cDot11AssStatsDisassociated
73 OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.6
66 - description: Number of stations disassociated with this device on this interface since device re-started
67 - family: Interfaces/Wireless/Station/Disassociated
68 - unit: "{station}/s"
74 + chart_meta:
75 + description: Number of stations disassociated with this device on this interface since device re-started
76 + family: Interfaces/Wireless/Station/Disassociated
77 + unit: "{station}/s"
78 metric_tags:
79 - tag: interface
80 table: ifXTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-firepower-asa.yaml
+36 -27
@@ -39,9 +39,10 @@ metrics:
39 symbols:
40 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7 # cpmCPUTotal1minRev
41 name: cpu.usage
42 - description: The overall CPU busy percentage in the last 1 minute period
43 - family: CPU/Usage
44 - unit: "%"
42 + chart_meta:
43 + description: The overall CPU busy percentage in the last 1 minute period
44 + family: CPU/Usage
45 + unit: "%"
46 metric_tags:
47 - tag: cpu_index
48 index: 1 # cpmCPUTotalIndex
@@ -49,56 +50,64 @@ metrics:
50 symbol:
51 name: memory.used
52 OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7.1.1 # cempMemPoolUsed.1.1
52 - description: Number of bytes from the memory pool that are currently in use by applications on the physical entity
53 - family: Memory/Used
54 - unit: "By"
53 + chart_meta:
54 + description: Number of bytes from the memory pool that are currently in use by applications on the physical entity
55 + family: Memory/Used
56 + unit: "By"
57 - MIB: CISCO-ENHANCED-MEMPOOL-MIB
58 symbol:
59 name: memory.free
60 OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8.1.1 # cempMemPoolFree.1.1
59 - description: Number of bytes from the memory pool that are currently unused on the physical entity
60 - family: Memory/Free
61 - unit: "By"
61 + chart_meta:
62 + description: Number of bytes from the memory pool that are currently unused on the physical entity
63 + family: Memory/Free
64 + unit: "By"
65 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
66 symbol:
67 OID: 1.3.6.1.4.1.9.9.392.1.4.1.2.0
68 name: crasNumDeclinedSessions
66 - description: Number of session setup attempts which were declined due to authentication or authorization failure
67 - family: RemoteAccess/Session/Setup/Declined
68 - unit: "{session}/s"
69 + chart_meta:
70 + description: Number of session setup attempts which were declined due to authentication or authorization failure
71 + family: RemoteAccess/Session/Setup/Declined
72 + unit: "{session}/s"
73 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
74 symbol:
75 OID: 1.3.6.1.4.1.9.9.392.1.4.1.3.0
76 name: crasNumSetupFailInsufResources
73 - description: The number of session setup attempts that failed due to insufficient resources
74 - family: RemoteAccess/Session/Setup/Failed
75 - unit: "{session}/s"
77 + chart_meta:
78 + description: The number of session setup attempts that failed due to insufficient resources
79 + family: RemoteAccess/Session/Setup/Failed
80 + unit: "{session}/s"
81 metric_type: monotonic_count
82 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
83 symbol:
84 OID: 1.3.6.1.4.1.9.9.392.1.3.1.0
85 name: crasNumSessions
81 - description: Number of currently active sessions
82 - family: RemoteAccess/Session/Active
83 - unit: "{session}"
86 + chart_meta:
87 + description: Number of currently active sessions
88 + family: RemoteAccess/Session/Active
89 + unit: "{session}"
90 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
91 symbol:
92 OID: 1.3.6.1.4.1.9.9.392.1.1.1.0
93 name: crasMaxSessionsSupportable
88 - description: The maximum number of remote access sessions that may be supported on this device
89 - family: RemoteAccess/Session/Maximum
90 - unit: "{session}"
94 + chart_meta:
95 + description: The maximum number of remote access sessions that may be supported on this device
96 + family: RemoteAccess/Session/Maximum
97 + unit: "{session}"
98 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
99 symbol:
100 OID: 1.3.6.1.4.1.9.9.392.1.3.3.0
101 name: crasNumUsers
95 - description: The number of users who have active sessions
96 - family: RemoteAccess/User/Active
97 - unit: "{user}"
102 + chart_meta:
103 + description: The number of users who have active sessions
104 + family: RemoteAccess/User/Active
105 + unit: "{user}"
106 - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
107 symbol:
108 OID: 1.3.6.1.4.1.9.9.392.1.1.2.0
109 name: crasMaxUsersSupportable
102 - description: The maximum number of remote access users for whom Remote Access sessions may be supported on this device
103 - family: RemoteAccess/User/Maximum
104 - unit: "{user}"
110 + chart_meta:
111 + description: The maximum number of remote access users for whom Remote Access sessions may be supported on this device
112 + family: RemoteAccess/User/Maximum
113 + unit: "{user}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-firepower.yaml
+28 -21
@@ -30,9 +30,10 @@ metrics:
30 symbols:
31 - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7 # cpmCPUTotal1minRev
32 name: cpu.usage
33 - description: The overall CPU busy percentage in the last 1 minute period.
34 - family: CPU/Usage
35 - unit: "%"
33 + chart_meta:
34 + description: The overall CPU busy percentage in the last 1 minute period.
35 + family: CPU/Usage
36 + unit: "%"
37 metric_tags:
38 - tag: cpu_index
39 index: 1 # cpmCPUTotalIndex
@@ -43,14 +44,16 @@ metrics:
44 symbols:
45 - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.21 # cfprSmMonitorMemFree
46 name: memory.free
46 - description: Memory free
47 - family: Memory/Free
48 - unit: "By"
47 + chart_meta:
48 + description: Memory free
49 + family: Memory/Free
50 + unit: "By"
51 - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.23 # cfprSmMonitorMemUsed
52 name: memory.used
51 - description: Memory used
52 - family: Memory/Used
53 - unit: "By"
53 + chart_meta:
54 + description: Memory used
55 + family: Memory/Used
56 + unit: "By"
57 metric_tags:
58 - tag: mem_index
59 index: 1 # cfprSmMonitorInstanceId
@@ -61,15 +64,17 @@ metrics:
64 symbols:
65 - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.17
66 name: cfprSmMonitorDataDiskAvailable
64 - description: Data disk available
65 - family: Disk/Data/Available
66 - unit: "By"
67 + chart_meta:
68 + description: Data disk available
69 + family: Disk/Data/Available
70 + unit: "By"
71 scale_factor: 1024
72 - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.18
73 name: cfprSmMonitorDataDiskTotal
70 - description: Data disk total
71 - family: Disk/Data/Total
72 - unit: "By"
74 + chart_meta:
75 + description: Data disk total
76 + family: Disk/Data/Total
77 + unit: "By"
78 scale_factor: 1024
79 metric_tags:
80 - tag: cfpr_sm_monitor_dn
@@ -83,9 +88,10 @@ metrics:
88 symbols:
89 - OID: 1.3.6.1.4.1.9.9.826.1.20.34.1.10
90 name: cfprEquipmentFanOperState
86 - description: Equipment/Fans
87 - family: Fan/Operational/Status
88 - unit: "{status}"
91 + chart_meta:
92 + description: Equipment/Fans
93 + family: Fan/Operational/Status
94 + unit: "{status}"
95 mapping:
96 0: unknown
97 1: operable
@@ -129,9 +135,10 @@ metrics:
135 symbols:
136 - OID: 1.3.6.1.4.1.9.9.826.1.20.109.1.13
137 name: cfprEquipmentPsuPower
132 - description: Psu power state
133 - family: PowerSupply/Power/Status
134 - unit: "{status}"
138 + chart_meta:
139 + description: Psu power state
140 + family: PowerSupply/Power/Status
141 + unit: "{status}"
142 mapping:
143 0: unknown
144 1: on
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-ironport-email.yaml
+228 -171
@@ -22,37 +22,42 @@ metrics:
22 symbol:
23 name: memory.usage
24 OID: 1.3.6.1.4.1.15497.1.1.1.1.0
25 - description: This object provides a general idea of how much memory is being consumed by the appliance software
26 - family: Memory/Usage
27 - unit: "%"
25 + chart_meta:
26 + description: This object provides a general idea of how much memory is being consumed by the appliance software
27 + family: Memory/Usage
28 + unit: "%"
29 - MIB: ASYNCOS-MAIL-MIB
30 symbol:
31 name: cpu.usage
32 OID: 1.3.6.1.4.1.15497.1.1.1.2.0
32 - description: This object provides a general idea of how busy the CPU is according to the appliance software, within the last 5 seconds of utilization
33 - family: CPU/Usage
34 - unit: "%"
33 + chart_meta:
34 + description: This object provides a general idea of how busy the CPU is according to the appliance software, within the last 5 seconds of utilization
35 + family: CPU/Usage
36 + unit: "%"
37 - MIB: ASYNCOS-MAIL-MIB
38 symbol:
39 name: ironport.oldestMessageAge
40 OID: 1.3.6.1.4.1.15497.1.1.1.14.0
39 - description: The number of seconds the oldest message has been in queue
40 - family: Queue/Messages/Age
41 - unit: "s"
41 + chart_meta:
42 + description: The number of seconds the oldest message has been in queue
43 + family: Queue/Messages/Age
44 + unit: "s"
45 - MIB: ASYNCOS-MAIL-MIB
46 symbol:
47 name: ironport.perCentDiskIOUtilization
48 OID: 1.3.6.1.4.1.15497.1.1.1.3.0
46 - description: Disk I/O within the last 5-15 seconds
47 - family: Disk/IO/Utilization
48 - unit: "%"
49 + chart_meta:
50 + description: Disk I/O within the last 5-15 seconds
51 + family: Disk/IO/Utilization
52 + unit: "%"
53 - MIB: ASYNCOS-MAIL-MIB
54 symbol:
55 name: ironport.perCentQueueUtilization
56 OID: 1.3.6.1.4.1.15497.1.1.1.4.0
53 - description: Percent of total queue capacity used
54 - family: Queue/Utilization
55 - unit: "%"
57 + chart_meta:
58 + description: Percent of total queue capacity used
59 + family: Queue/Utilization
60 + unit: "%"
61 # - MIB: ASYNCOS-MAIL-MIB
62 # symbol:
63 # name: ironport.queueAvailabilityStatus
@@ -91,9 +96,10 @@ metrics:
96 symbols:
97 - OID: 1.3.6.1.4.1.15497.1.1.1.8.1.2
98 name: ironport.powerSupplyStatus
94 - description: Status of the power supply
95 - family: Power/Supply/Status
96 - unit: "{status}"
99 + chart_meta:
100 + description: Status of the power supply
101 + family: Power/Supply/Status
102 + unit: "{status}"
103 mapping:
104 1: power_supply_not_installed
105 2: power_supply_healthy
@@ -101,9 +107,10 @@ metrics:
107 4: power_supply_faulty
108 - OID: 1.3.6.1.4.1.15497.1.1.1.8.1.3
109 name: ironport.powerSupplyRedundancy
104 - description: Status of a collection of one or more power supplies
105 - family: Power/Supply/Redundancy
106 - unit: "{status}"
110 + chart_meta:
111 + description: Status of a collection of one or more power supplies
112 + family: Power/Supply/Redundancy
113 + unit: "{status}"
114 mapping:
115 1: power_supply_redundancy_ok
116 2: power_supply_redundancy_lost
@@ -120,9 +127,10 @@ metrics:
127 symbols:
128 - name: ironport.degreesCelsius
129 OID: 1.3.6.1.4.1.15497.1.1.1.9.1.2
123 - description: Temperature reading for the sensor being instrumented in Centrigrade units
124 - family: Temperature/Sensors
125 - unit: "Cel"
130 + chart_meta:
131 + description: Temperature reading for the sensor being instrumented in Centrigrade units
132 + family: Temperature/Sensors
133 + unit: "Cel"
134 metric_tags:
135 - tag: ironport_temperature_name
136 symbol:
@@ -135,9 +143,10 @@ metrics:
143 symbols:
144 - name: ironport.fanRPMs
145 OID: 1.3.6.1.4.1.15497.1.1.1.10.1.2
138 - description: Speed in RPMs of the chassis fan
139 - family: Fans/Speed
140 - unit: "{rotation}/m"
146 + chart_meta:
147 + description: Speed in RPMs of the chassis fan
148 + family: Fans/Speed
149 + unit: "{rotation}/m"
150 metric_tags:
151 - tag: ironport_fan_name
152 symbol:
@@ -147,9 +156,10 @@ metrics:
156 symbol:
157 name: ironport.workQueueMessages
158 OID: 1.3.6.1.4.1.15497.1.1.1.11.0
150 - description: Number of messages in the work queue
151 - family: Queue/Work/Messages
152 - unit: "{message}"
159 + chart_meta:
160 + description: Number of messages in the work queue
161 + family: Queue/Work/Messages
162 + unit: "{message}"
163 - MIB: ASYNCOS-MAIL-MIB
164 table:
165 name: keyExpirationTable
@@ -157,9 +167,10 @@ metrics:
167 symbols:
168 - name: ironport.keySecondsUntilExpire
169 OID: 1.3.6.1.4.1.15497.1.1.1.12.1.4
160 - description: Seconds until the valid Feature Key expires
161 - family: License/Keys/Expiration
162 - unit: "s"
170 + chart_meta:
171 + description: Seconds until the valid Feature Key expires
172 + family: License/Keys/Expiration
173 + unit: "s"
174 metric_tags:
175 - tag: ironport_key_description
176 symbol:
@@ -179,14 +190,16 @@ metrics:
190 symbols:
191 - name: ironport.updates
192 OID: 1.3.6.1.4.1.15497.1.1.1.13.1.3
182 - description: The number of successful attempts that have occurred when updating a service
183 - family: Services/Updates/Successful
184 - unit: "{attempt}/s"
193 + chart_meta:
194 + description: The number of successful attempts that have occurred when updating a service
195 + family: Services/Updates/Successful
196 + unit: "{attempt}/s"
197 - name: ironport.updateFailures
198 OID: 1.3.6.1.4.1.15497.1.1.1.13.1.4
187 - description: The number of failed attempts that have occurred when updating a service.
188 - family: Services/Updates/Failed
189 - unit: "{attempt}/s"
199 + chart_meta:
200 + description: The number of failed attempts that have occurred when updating a service.
201 + family: Services/Updates/Failed
202 + unit: "{attempt}/s"
203 metric_tags:
204 - tag: ironport_update_service_name
205 symbol:
@@ -196,23 +209,26 @@ metrics:
209 symbol:
210 name: ironport.outstandingDNSRequests
211 OID: 1.3.6.1.4.1.15497.1.1.1.15.0
199 - description: Number of DNS requests that have been sent but for which no reply has been received
200 - family: DNS/Requests/Outstanding
201 - unit: "{request}/s"
212 + chart_meta:
213 + description: Number of DNS requests that have been sent but for which no reply has been received
214 + family: DNS/Requests/Outstanding
215 + unit: "{request}/s"
216 - MIB: ASYNCOS-MAIL-MIB
217 symbol:
218 name: ironport.pendingDNSRequests
219 OID: 1.3.6.1.4.1.15497.1.1.1.16.0
206 - description: Number of DNS requests waiting to be sent
207 - family: DNS/Requests/Pending
208 - unit: "{request}"
220 + chart_meta:
221 + description: Number of DNS requests waiting to be sent
222 + family: DNS/Requests/Pending
223 + unit: "{request}"
224 - MIB: ASYNCOS-MAIL-MIB
225 symbol:
226 name: ironport.raidEvents
227 OID: 1.3.6.1.4.1.15497.1.1.1.17.0
213 - description: The total number of RAID events that have occurred since the last appliance power on event
214 - family: Disk/RAID/Events
215 - unit: "{event}/s"
228 + chart_meta:
229 + description: The total number of RAID events that have occurred since the last appliance power on event
230 + family: Disk/RAID/Events
231 + unit: "{event}/s"
232 - MIB: ASYNCOS-MAIL-MIB
233 table:
234 name: raidTable
@@ -220,9 +236,10 @@ metrics:
236 symbols:
237 - name: ironport.raidStatus
238 OID: 1.3.6.1.4.1.15497.1.1.1.18.1.2
223 - description: Represents the status of a a drive attached to a RAID controller in the appliance
224 - family: Disk/RAID/Status
225 - unit: "{status}"
239 + chart_meta:
240 + description: Represents the status of a drive attached to a RAID controller in the appliance
241 + family: Disk/RAID/Status
242 + unit: "{status}"
243 mapping:
244 1: drive_healthy
245 2: drive_failure
@@ -240,16 +257,18 @@ metrics:
257 symbol:
258 name: ironport.openFilesOrSockets
259 OID: 1.3.6.1.4.1.15497.1.1.1.19.0
243 - description: This object notes how many files or sockets are open on the appliance. In normal operating conditions, the measurement is taken at least once every 5-15 seconds.
244 - unit: "{file}"
245 - family: System/Resources/Files
260 + chart_meta:
261 + description: This object notes how many files or sockets are open on the appliance. In normal operating conditions, the measurement is taken at least once every 5-15 seconds.
262 + family: System/Resources/Files
263 + unit: "{file}"
264 - MIB: ASYNCOS-MAIL-MIB
265 symbol:
266 name: ironport.mailTransferThreads
267 OID: 1.3.6.1.4.1.15497.1.1.1.20.0
250 - description: Number of threads that perform some task related to transferring mail.
251 - unit: "{thread}"
252 - family: Mail/Transfer/Threads
268 + chart_meta:
269 + description: Number of threads that perform some task related to transferring mail.
270 + family: Mail/Transfer/Threads
271 + unit: "{thread}"
272 # - MIB: ASYNCOS-MAIL-MIB
273 # symbol:
274 # name: ironport.fipsMode
@@ -263,268 +282,306 @@ metrics:
282 symbol:
283 name: ironport.perCentCPULoad
284 OID: 1.3.6.1.4.1.15497.1.1.1.26.0
266 - description: This object provides a general idea of how busy the CPU is according to the appliance software, within the last 5 seconds of ironport
267 - family: CPU/Load
268 - unit: "%"
285 + chart_meta:
286 + description: This object provides a general idea of how busy the CPU is according to the appliance software, within the last 5 seconds of ironport
287 + family: CPU/Load
288 + unit: "%"
289 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
290 symbol:
291 name: ironport.cacheClientRequests
292 OID: 1.3.6.1.4.1.15497.1.2.3.2.2.0
273 - description: The number of HTTP requests received from clients
274 - family: HTTP/Client/Requests
275 - unit: "{request}/s"
293 + chart_meta:
294 + description: The number of HTTP requests received from clients
295 + family: HTTP/Client/Requests
296 + unit: "{request}/s"
297 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
298 symbol:
299 name: ironport.cacheClientErrors
300 OID: 1.3.6.1.4.1.15497.1.2.3.2.4.0
280 - description: The number of HTTP errors caused by client connections.
281 - family: HTTP/Client/Errors
282 - unit: "{error}/s"
301 + chart_meta:
302 + description: The number of HTTP errors caused by client connections.
303 + family: HTTP/Client/Errors
304 + unit: "{error}/s"
305 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
306 symbol:
307 name: ironport.cacheClientIdleConns
308 OID: 1.3.6.1.4.1.15497.1.2.3.2.7.0
287 - description: The number of connected but idle persistent client connections
288 - family: HTTP/Client/Connections/Idle
289 - unit: "{connection}"
309 + chart_meta:
310 + description: The number of connected but idle persistent client connections
311 + family: HTTP/Client/Connections/Idle
312 + unit: "{connection}"
313 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
314 symbol:
315 name: ironport.cacheClientTotalConns
316 OID: 1.3.6.1.4.1.15497.1.2.3.2.8.0
294 - description: The current number of active + idle client connections
295 - family: HTTP/Client/Connections/Total
296 - unit: "{connection}"
317 + chart_meta:
318 + description: The current number of active + idle client connections
319 + family: HTTP/Client/Connections/Total
320 + unit: "{connection}"
321 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
322 symbol:
323 name: ironport.cacheClientMaxConns
324 OID: 1.3.6.1.4.1.15497.1.2.3.2.9.0
301 - description: The maximum number of simultaneous client connections that will be allowed
302 - family: HTTP/Client/Connections/Max
303 - unit: "{connection}"
325 + chart_meta:
326 + description: The maximum number of simultaneous client connections that will be allowed
327 + family: HTTP/Client/Connections/Max
328 + unit: "{connection}"
329 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
330 symbol:
331 name: ironport.cacheClientAccepts
332 OID: 1.3.6.1.4.1.15497.1.2.3.2.10.0
308 - description: The total number of sockets accepted from the clients
309 - family: HTTP/Client/Sockets/Accepted
310 - unit: "{socket}/s"
333 + chart_meta:
334 + description: The total number of sockets accepted from the clients
335 + family: HTTP/Client/Sockets/Accepted
336 + unit: "{socket}/s"
337 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
338 symbol:
339 name: ironport.cacheClientReqDenials
340 OID: 1.3.6.1.4.1.15497.1.2.3.2.17.0
315 - description: The number of responses blocked by access control
316 - family: HTTP/Client/Responses/Denied
317 - unit: "{response}/s"
341 + chart_meta:
342 + description: The number of responses blocked by access control
343 + family: HTTP/Client/Responses/Denied
344 + unit: "{response}/s"
345 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
346 symbol:
347 name: ironport.cacheServerRequests
348 OID: 1.3.6.1.4.1.15497.1.2.3.3.2.0
322 - description: The total number of HTTP requests sent to servers
323 - family: HTTP/Server/Requests
324 - unit: "{request}/s"
349 + chart_meta:
350 + description: The total number of HTTP requests sent to servers
351 + family: HTTP/Server/Requests
352 + unit: "{request}/s"
353 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
354 symbol:
355 name: ironport.cacheServerSockets
356 OID: 1.3.6.1.4.1.15497.1.2.3.3.3.0
329 - description: The total number of sockets opened from the servers
330 - family: HTTP/Server/Sockets
331 - unit: "{socket}"
357 + chart_meta:
358 + description: The total number of sockets opened from the servers
359 + family: HTTP/Server/Sockets
360 + unit: "{socket}"
361 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
362 symbol:
363 name: ironport.cacheServerErrors
364 OID: 1.3.6.1.4.1.15497.1.2.3.3.4.0
336 - description: The number of HTTP errors while fetching objects
337 - family: HTTP/Server/Errors
338 - unit: "{error}/s"
365 + chart_meta:
366 + description: The number of HTTP errors while fetching objects
367 + family: HTTP/Server/Errors
368 + unit: "{error}/s"
369 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
370 symbol:
371 name: ironport.cacheServerIdleConns
372 OID: 1.3.6.1.4.1.15497.1.2.3.3.7.0
343 - description: The number of connected but idle persistent server connections
344 - family: HTTP/Server/Connections/Idle
345 - unit: "{connection}"
373 + chart_meta:
374 + description: The number of connected but idle persistent server connections
375 + family: HTTP/Server/Connections/Idle
376 + unit: "{connection}"
377 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
378 symbol:
379 name: ironport.cacheServerTotalConns
380 OID: 1.3.6.1.4.1.15497.1.2.3.3.8.0
350 - description: The current number of active + idle server connections
351 - family: HTTP/Server/Connections/Total
352 - unit: "{connection}"
381 + chart_meta:
382 + description: The current number of active + idle server connections
383 + family: HTTP/Server/Connections/Total
384 + unit: "{connection}"
385 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
386 symbol:
387 name: ironport.cacheServerCloseIdleConns
388 OID: 1.3.6.1.4.1.15497.1.2.3.3.9.0
357 - description: The number of server connections closed due to idle time limits
358 - family: HTTP/Server/Connections/Closed
359 - unit: "{connection}/s"
389 + chart_meta:
390 + description: The number of server connections closed due to idle time limits
391 + family: HTTP/Server/Connections/Closed
392 + unit: "{connection}/s"
393 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
394 symbol:
395 name: ironport.cacheServerLimitIdleConns
396 OID: 1.3.6.1.4.1.15497.1.2.3.3.10.0
364 - description: The number of times the number of idle persistent connections hit the count limit and caused a connection to be closed
365 - family: HTTP/Server/Connections/Limited
366 - unit: "{connection}/s"
397 + chart_meta:
398 + description: The number of times the number of idle persistent connections hit the count limit and caused a connection to be closed
399 + family: HTTP/Server/Connections/Limited
400 + unit: "{connection}/s"
401 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
402 symbol:
403 name: ironport.cacheServerConnsThresh
404 OID: 1.3.6.1.4.1.15497.1.2.3.3.11.0
371 - description: The limit on the number of server connections
372 - family: HTTP/Server/Connections/Threshold
373 - unit: "{connection}"
405 + chart_meta:
406 + description: The limit on the number of server connections
407 + family: HTTP/Server/Connections/Threshold
408 + unit: "{connection}"
409 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
410 symbol:
411 name: ironport.cacheTotalHttpReqs
412 OID: 1.3.6.1.4.1.15497.1.2.3.6.1.0
378 - description: Total number of HTTP requests from clients
379 - family: HTTP/Requests/Total
380 - unit: "{request}/s"
413 + chart_meta:
414 + description: Total number of HTTP requests from clients
415 + family: HTTP/Requests/Total
416 + unit: "{request}/s"
417 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
418 symbol:
419 name: ironport.cacheMeanRespTime
420 OID: 1.3.6.1.4.1.15497.1.2.3.6.2.0
385 - description: The HTTP mean response time
386 - family: HTTP/Response/Time/Mean
387 - unit: "ms"
421 + chart_meta:
422 + description: The HTTP mean response time
423 + family: HTTP/Response/Time/Mean
424 + unit: "ms"
425 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
426 symbol:
427 name: ironport.cacheMeanMissRespTime
428 OID: 1.3.6.1.4.1.15497.1.2.3.6.3.0
392 - description: The HTTP mean response time of Misses
393 - family: HTTP/Response/Time/Miss
394 - unit: "ms"
429 + chart_meta:
430 + description: The HTTP mean response time of Misses
431 + family: HTTP/Response/Time/Miss
432 + unit: "ms"
433 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
434 symbol:
435 name: ironport.cacheMeanHitRespTime
436 OID: 1.3.6.1.4.1.15497.1.2.3.6.4.0
399 - description: The HTTP mean response time of Hits
400 - family: HTTP/Response/Time/Hit
401 - unit: "ms"
437 + chart_meta:
438 + description: The HTTP mean response time of Hits
439 + family: HTTP/Response/Time/Hit
440 + unit: "ms"
441 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
442 symbol:
443 name: ironport.cacheMeanHitRatio
444 OID: 1.3.6.1.4.1.15497.1.2.3.6.5.0
406 - description: The HTTP hit ratio
407 - family: Cache/Hit/Ratio
408 - unit: "%"
445 + chart_meta:
446 + description: The HTTP hit ratio
447 + family: Cache/Hit/Ratio
448 + unit: "%"
449 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
450 symbol:
451 name: ironport.cacheMeanByteHitRatio
452 OID: 1.3.6.1.4.1.15497.1.2.3.6.6.0
413 - description: The HTTP byte hit ratio
414 - family: Cache/Hit/ByteRatio
415 - unit: "%"
453 + chart_meta:
454 + description: The HTTP byte hit ratio
455 + family: Cache/Hit/ByteRatio
456 + unit: "%"
457 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
458 symbol:
459 name: ironport.cacheTotalBandwidthSaving
460 OID: 1.3.6.1.4.1.15497.1.2.3.6.7.0
420 - description: The total bandwidth savings for HTTP
421 - family: Bandwidth/Savings/Total
422 - unit: "Mbit/s"
461 + chart_meta:
462 + description: The total bandwidth savings for HTTP
463 + family: Bandwidth/Savings/Total
464 + unit: "Mbit/s"
465 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
466 symbol:
467 name: ironport.cacheDuration
468 OID: 1.3.6.1.4.1.15497.1.2.3.6.8.0
427 - description: The proxy up time
428 - family: System/Uptime
429 - unit: "s"
469 + chart_meta:
470 + description: The proxy up time
471 + family: System/Uptime
472 + unit: "s"
473 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
474 symbol:
475 name: ironport.cacheCltReplyErrPct
476 OID: 1.3.6.1.4.1.15497.1.2.3.6.9.0
434 - description: The percentage of errors in the HTTP replies to clients
435 - family: HTTP/Client/Errors/Percentage
436 - unit: "%"
477 + chart_meta:
478 + description: The percentage of errors in the HTTP replies to clients
479 + family: HTTP/Client/Errors/Percentage
480 + unit: "%"
481 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
482 symbol:
483 name: ironport.cacheThruputNow
484 OID: 1.3.6.1.4.1.15497.1.2.3.7.1.1.0
441 - description: Request throughput in the last minute
442 - family: Throughput/Requests
443 - unit: "{request}"
485 + chart_meta:
486 + description: Request throughput in the last minute
487 + family: Throughput/Requests
488 + unit: "{request}"
489 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
490 symbol:
491 name: ironport.cacheBwidthSavingNow
492 OID: 1.3.6.1.4.1.15497.1.2.3.7.2.1.0
448 - description: Bandwidth savings in the last minute
449 - family: Bandwidth/Savings/Current
450 - unit: "kbit/s"
493 + chart_meta:
494 + description: Bandwidth savings in the last minute
495 + family: Bandwidth/Savings/Current
496 + unit: "kbit/s"
497 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
498 symbol:
499 name: ironport.cacheBwidthSpentNow
500 OID: 1.3.6.1.4.1.15497.1.2.3.7.3.1.0
455 - description: Bandwidth spent in the last minute
456 - family: Bandwidth/Usage/Current
457 - unit: "kbit/s"
501 + chart_meta:
502 + description: Bandwidth spent in the last minute
503 + family: Bandwidth/Usage/Current
504 + unit: "kbit/s"
505 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
506 symbol:
507 name: ironport.cacheBwidthTotalNow
508 OID: 1.3.6.1.4.1.15497.1.2.3.7.4.1.0
462 - description: Bandwidth total in the last minute
463 - family: Bandwidth/Total/Current
464 - unit: "kbit/s"
509 + chart_meta:
510 + description: Bandwidth total in the last minute
511 + family: Bandwidth/Total/Current
512 + unit: "kbit/s"
513 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
514 symbol:
515 name: ironport.cacheHitsNow
516 OID: 1.3.6.1.4.1.15497.1.2.3.7.5.1.0
469 - description: Hit throughput in the last minute
470 - family: Cache/Hit/Throughput
471 - unit: "{hit}"
517 + chart_meta:
518 + description: Hit throughput in the last minute
519 + family: Cache/Hit/Throughput
520 + unit: "{hit}"
521 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
522 symbol:
523 name: ironport.cacheMissesNow
524 OID: 1.3.6.1.4.1.15497.1.2.3.7.6.1.0
476 - description: Miss throughput in the last minute
477 - family: Cache/Miss/Throughput
478 - unit: "{miss}"
525 + chart_meta:
526 + description: Miss throughput in the last minute
527 + family: Cache/Miss/Throughput
528 + unit: "{miss}"
529 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
530 symbol:
531 name: ironport.cacheHitRespTimeNow
532 OID: 1.3.6.1.4.1.15497.1.2.3.7.7.1.0
483 - description: Cache hit response time in the last minute
484 - family: Cache/Hit/ResponseTime
485 - unit: "ms"
533 + chart_meta:
534 + description: Cache hit response time in the last minute
535 + family: Cache/Hit/ResponseTime
536 + unit: "ms"
537 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
538 symbol:
539 name: ironport.cacheMissRespTimeNow
540 OID: 1.3.6.1.4.1.15497.1.2.3.7.8.1.0
490 - description: Cache miss response time in the last minute
491 - family: Cache/Miss/ResponseTime
492 - unit: "ms"
541 + chart_meta:
542 + description: Cache miss response time in the last minute
543 + family: Cache/Miss/ResponseTime
544 + unit: "ms"
545 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
546 symbol:
547 name: ironport.cacheTotalRespTimeNow
548 OID: 1.3.6.1.4.1.15497.1.2.3.7.9.1.0
497 - description: Cache total response time in the last minute
498 - family: Cache/ResponseTime/Total
499 - unit: "ms"
549 + chart_meta:
550 + description: Cache total response time in the last minute
551 + family: Cache/ResponseTime/Total
552 + unit: "ms"
553 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
554 symbol:
555 name: ironport.cacheErrsNow
556 OID: 1.3.6.1.4.1.15497.1.2.3.7.10.1.0
504 - description: Cache error throughput time in the last minute
505 - family: Cache/Error/Throughput
506 - unit: "{error}"
557 + chart_meta:
558 + description: Cache error throughput time in the last minute
559 + family: Cache/Error/Throughput
560 + unit: "{error}"
561 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
562 symbol:
563 name: ironport.cacheDeniedNow
564 OID: 1.3.6.1.4.1.15497.1.2.3.7.11.1.0
511 - description: Cache denial throughput time in the last minute
512 - family: Cache/Denial/Throughput
513 - unit: "{denial}"
565 + chart_meta:
566 + description: Cache denial throughput time in the last minute
567 + family: Cache/Denial/Throughput
568 + unit: "{denial}"
569 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
570 symbol:
571 name: ironport.cacheErrRespTimeNow
572 OID: 1.3.6.1.4.1.15497.1.2.3.7.12.1.0
518 - description: Cache error response time in the last minute
519 - family: Cache/Error/ResponseTime
520 - unit: "ms"
573 + chart_meta:
574 + description: Cache error response time in the last minute
575 + family: Cache/Error/ResponseTime
576 + unit: "ms"
577 - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
578 symbol:
579 name: ironport.cacheDeniedRespTimeNow
580 OID: 1.3.6.1.4.1.15497.1.2.3.7.13.1.0
525 - description: Cache denial response time in the last minute
526 - family: Cache/Denial/ResponseTime
527 - unit: "ms"
581 + chart_meta:
582 + description: Cache denial response time in the last minute
583 + family: Cache/Denial/ResponseTime
584 + unit: "ms"
585 metric_tags:
586 - tag: ironport_cache_admin
587 OID: 1.3.6.1.4.1.15497.1.2.2.1.0
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-legacy-wlc.yaml
+12 -9
@@ -42,20 +42,23 @@ metrics:
42 symbol:
43 OID: 1.3.6.1.4.1.14179.1.1.5.1 # agentCurrentCPUUtilization
44 name: cpu.usage
45 - description: Current CPU load of the switch
46 - family: CPU/Load
47 - unit: "%"
45 + chart_meta:
46 + description: Current CPU load of the switch
47 + family: CPU/Load
48 + unit: "%"
49 - MIB: AIRESPACE-SWITCHING-MIB
50 symbol:
51 OID: 1.3.6.1.4.1.14179.1.1.5.3 # agentFreeMemory
52 name: memory.free
52 - description: Free RAM of the switch
53 - family: Memory/RAM/Free
54 - unit: "By"
53 + chart_meta:
54 + description: Free RAM of the switch
55 + family: Memory/RAM/Free
56 + unit: "By"
57 - MIB: AIRESPACE-SWITCHING-MIB
58 symbol:
59 OID: 1.3.6.1.4.1.14179.1.1.5.2 # agentTotalMemory
60 name: memory.total
59 - description: Total RAM of the switch
60 - family: Memory/RAM/Total
61 - unit: "By"
61 + chart_meta:
62 + description: Total RAM of the switch
63 + family: Memory/RAM/Total
64 + unit: "By"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-load-balancer.yaml
+148 -111
@@ -18,44 +18,52 @@ metrics:
18 symbols:
19 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.6
20 name: slbStatsCreatedConnections
21 - description: Number of TCP and UDP connections created since SLB was configured
22 - family: SLB/Connection/Created
23 - unit: "{connection}/s"
21 + chart_meta:
22 + description: Number of TCP and UDP connections created since SLB was configured
23 + family: SLB/Connection/Created
24 + unit: "{connection}/s"
25 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.7
26 name: slbStatsCreatedHCConnections
26 - description: Number of connections created by SLB since it was configured (64-bit)
27 - family: SLB/Connection/Created
28 - unit: "{connection}/s"
27 + chart_meta:
28 + description: Number of connections created by SLB since it was configured (64-bit)
29 + family: SLB/Connection/Created
30 + unit: "{connection}/s"
31 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.8
32 name: slbStatsEstablishedConnections
31 - description: Number of connections established through SLB
32 - family: SLB/Connection/Established
33 - unit: "{connection}/s"
33 + chart_meta:
34 + description: Number of connections established through SLB
35 + family: SLB/Connection/Established
36 + unit: "{connection}/s"
37 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.9
38 name: slbStatsEstablishedHCConnections
36 - description: Number of connections established through SLB (64-bit)
37 - family: SLB/Connection/Established
38 - unit: "{connection}/s"
39 + chart_meta:
40 + description: Number of connections established through SLB (64-bit)
41 + family: SLB/Connection/Established
42 + unit: "{connection}/s"
43 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.10
44 name: slbStatsDestroyedConnections
41 - description: Number of TCP and UDP connections destroyed by SLB
42 - family: SLB/Connection/Destroyed
43 - unit: "{connection}/s"
45 + chart_meta:
46 + description: Number of TCP and UDP connections destroyed by SLB
47 + family: SLB/Connection/Destroyed
48 + unit: "{connection}/s"
49 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.11
50 name: slbStatsDestroyedHCConnections
46 - description: Number of TCP and UDP connections destroyed by SLB (64-bit)
47 - family: SLB/Connection/Destroyed
48 - unit: "{connection}/s"
51 + chart_meta:
52 + description: Number of TCP and UDP connections destroyed by SLB (64-bit)
53 + family: SLB/Connection/Destroyed
54 + unit: "{connection}/s"
55 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.12
56 name: slbStatsReassignedConnections
51 - description: Number of TCP and UDP connections reassigned from one real server to another
52 - family: SLB/Connection/Reassigned
53 - unit: "{connection}/s"
57 + chart_meta:
58 + description: Number of TCP and UDP connections reassigned from one real server to another
59 + family: SLB/Connection/Reassigned
60 + unit: "{connection}/s"
61 - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.13
62 name: slbStatsReassignedHCConnections
56 - description: Number of TCP and UDP connections reassigned from one real server to another (64-bit)
57 - family: SLB/Connection/Reassigned
58 - unit: "{connection}/s"
63 + chart_meta:
64 + description: Number of TCP and UDP connections reassigned from one real server to another (64-bit)
65 + family: SLB/Connection/Reassigned
66 + unit: "{connection}/s"
67 metric_tags:
68 - tag: slb_entity_index
69 index: 1 # index `slbEntity`
@@ -67,149 +75,178 @@ metrics:
75 symbols:
76 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.3
77 name: cslbxStatsCurrConnections
70 - description: Number of connections currently still open
71 - family: SLB/Connection/Current
72 - unit: "{connection}"
78 + chart_meta:
79 + description: Number of connections currently still open
80 + family: SLB/Connection/Current
81 + unit: "{connection}"
82 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.5
83 name: cslbxStatsFailedConns
75 - description: Number of connections that were load balanced to real servers that then failed to respond
76 - family: SLB/Connection/Failed
77 - unit: "{connection}/s"
84 + chart_meta:
85 + description: Number of connections that were load balanced to real servers that then failed to respond
86 + family: SLB/Connection/Failed
87 + unit: "{connection}/s"
88 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.7
89 name: cslbxStatsL4PolicyConns
80 - description: Number of connections made to the virtual servers with only layer 4 configuration
81 - family: SLB/VirtualServer/Layer4/Connection
82 - unit: "{connection}/s"
90 + chart_meta:
91 + description: Number of connections made to the virtual servers with only layer 4 configuration
92 + family: SLB/VirtualServer/Layer4/Connection
93 + unit: "{connection}/s"
94 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.26
95 name: cslbxStatsL4PolicyHCConns
85 - description: Number of connections made to the virtual servers with only layer 4 configuration (64-bit)
86 - family: SLB/VirtualServer/Layer4/Connection
87 - unit: "{connection}/s"
96 + chart_meta:
97 + description: Number of connections made to the virtual servers with only layer 4 configuration (64-bit)
98 + family: SLB/VirtualServer/Layer4/Connection
99 + unit: "{connection}/s"
100 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.8
101 name: cslbxStatsL7PolicyConns
90 - description: Number of connections made to the virtual servers with some layer 7 configuration
91 - family: SLB/VirtualServer/Layer7/Connection
92 - unit: "{connection}/s"
102 + chart_meta:
103 + description: Number of connections made to the virtual servers with some layer 7 configuration
104 + family: SLB/VirtualServer/Layer7/Connection
105 + unit: "{connection}/s"
106 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.27
107 name: cslbxStatsL7PolicyHCConns
95 - description: Number of connections made to the virtual servers with some layer 7 configuration (64-bit)
96 - family: SLB/VirtualServer/Layer7/Connection
97 - unit: "{connection}/s"
108 + chart_meta:
109 + description: Number of connections made to the virtual servers with some layer 7 configuration (64-bit)
110 + family: SLB/VirtualServer/Layer7/Connection
111 + unit: "{connection}/s"
112 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.9
113 name: cslbxStatsDroppedL4PolicyConns
100 - description: Number of connections dropped by virtual servers with only layer 4 configuration
101 - family: SLB/VirtualServer/Layer4/Dropped
102 - unit: "{connection}/s"
114 + chart_meta:
115 + description: Number of connections dropped by virtual servers with only layer 4 configuration
116 + family: SLB/VirtualServer/Layer4/Dropped
117 + unit: "{connection}/s"
118 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.28
119 name: cslbxStatsDroppedL4PolicyHCConns
105 - description: Number of connections dropped by virtual servers with only layer 4 configuration (64-bit)
106 - family: SLB/VirtualServer/Layer4/Dropped
107 - unit: "{connection}/s"
120 + chart_meta:
121 + description: Number of connections dropped by virtual servers with only layer 4 configuration (64-bit)
122 + family: SLB/VirtualServer/Layer4/Dropped
123 + unit: "{connection}/s"
124 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.10
125 name: cslbxStatsDroppedL7PolicyConns
110 - description: Number of connections dropped by virtual servers with some layer 7 policy
111 - family: SLB/VirtualServer/Layer7/Dropped
112 - unit: "{connection}/s"
126 + chart_meta:
127 + description: Number of connections dropped by virtual servers with some layer 7 policy
128 + family: SLB/VirtualServer/Layer7/Dropped
129 + unit: "{connection}/s"
130 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.29
131 name: cslbxStatsDroppedL7PolicyHCConns
115 - description: Number of connections dropped by virtual servers with some layer 7 configuration
116 - family: SLB/VirtualServer/Layer7/Dropped
117 - unit: "{connection}/s"
132 + chart_meta:
133 + description: Number of connections dropped by virtual servers with some layer 7 configuration
134 + family: SLB/VirtualServer/Layer7/Dropped
135 + unit: "{connection}/s"
136 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.11
137 name: cslbxStatsFtpConns
120 - description: Number of connections made to virtual servers with the FTP service
121 - family: SLB/VirtualServer/FTP/Connection
122 - unit: "{connection}/s"
138 + chart_meta:
139 + description: Number of connections made to virtual servers with the FTP service
140 + family: SLB/VirtualServer/FTP/Connection
141 + unit: "{connection}/s"
142 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.12
143 name: cslbxStatsHttpRedirectConns
125 - description: Number of connections made to HTTP redirect servers
126 - family: SLB/HTTPRedirect/Connection
127 - unit: "{connection}/s"
144 + chart_meta:
145 + description: Number of connections made to HTTP redirect servers
146 + family: SLB/HTTPRedirect/Connection
147 + unit: "{connection}/s"
148 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.13
149 name: cslbxStatsDroppedRedirectConns
130 - description: Number of connections dropped by HTTP redirect servers
131 - family: SLB/HTTPRedirect/Dropped
132 - unit: "{connection}/s"
150 + chart_meta:
151 + description: Number of connections dropped by HTTP redirect servers
152 + family: SLB/HTTPRedirect/Dropped
153 + unit: "{connection}/s"
154 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.14
155 name: cslbxStatsNoMatchPolicyRejects
135 - description: Number of connections rejected because they failed to match any configured policy
136 - family: SLB/Connection/Rejected/NoPolicy
137 - unit: "{connection}/s"
156 + chart_meta:
157 + description: Number of connections rejected because they failed to match any configured policy
158 + family: SLB/Connection/Rejected/NoPolicy
159 + unit: "{connection}/s"
160 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.30
161 name: cslbxStatsNoMatchPolicyHCRejects
140 - description: Number of connections rejected because they failed to match any configured policy (64-bit)
141 - family: SLB/Connection/Rejected/NoPolicy
142 - unit: "{connection}/s"
162 + chart_meta:
163 + description: Number of connections rejected because they failed to match any configured policy (64-bit)
164 + family: SLB/Connection/Rejected/NoPolicy
165 + unit: "{connection}/s"
166 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.15
167 name: cslbxStatsNoCfgPolicyRejects
145 - description: Number of connections rejected because the matching virtual server was not configured with any policy
146 - family: SLB/Connection/Rejected/NoConfig
147 - unit: "{connection}/s"
168 + chart_meta:
169 + description: Number of connections rejected because the matching virtual server was not configured with any policy
170 + family: SLB/Connection/Rejected/NoConfig
171 + unit: "{connection}/s"
172 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.31
173 name: cslbxStatsNoCfgPolicyHCRejects
150 - description: Number of connections rejected because the matching virtual server was not configured with any policy (64-bit)
151 - family: SLB/Connection/Rejected/NoConfig
152 - unit: "{connection}/s"
174 + chart_meta:
175 + description: Number of connections rejected because the matching virtual server was not configured with any policy (64-bit)
176 + family: SLB/Connection/Rejected/NoConfig
177 + unit: "{connection}/s"
178 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.16
179 name: cslbxStatsNoActiveServerRejects
155 - description: Number of connections rejected because the chosen server farm did not have any active servers
156 - family: SLB/Connection/Rejected/NoServer
157 - unit: "{connection}/s"
180 + chart_meta:
181 + description: Number of connections rejected because the chosen server farm did not have any active servers
182 + family: SLB/Connection/Rejected/NoServer
183 + unit: "{connection}/s"
184 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.17
185 name: cslbxStatsAclDenyRejects
160 - description: Number of connections rejected because the the matching client access list was configured to deny access
161 - family: SLB/Connection/Rejected/ACL
162 - unit: "{connection}/s"
186 + chart_meta:
187 + description: Number of connections rejected because the the matching client access list was configured to deny access
188 + family: SLB/Connection/Rejected/ACL
189 + unit: "{connection}/s"
190 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.32
191 name: cslbxStatsAclDenyHCRejects
165 - description: Number of connections rejected because the the matching client access list was configured to deny access (64-bit)
166 - family: SLB/Connection/Rejected/ACL
167 - unit: "{connection}/s"
192 + chart_meta:
193 + description: Number of connections rejected because the the matching client access list was configured to deny access (64-bit)
194 + family: SLB/Connection/Rejected/ACL
195 + unit: "{connection}/s"
196 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.18
197 name: cslbxStatsMaxParseLenRejects
170 - description: Number of connections rejected because the length of an HTTP request or response header exceeded the maximum L7 parse length configured for the matching virtual server
171 - family: SLB/Connection/Rejected/ParseLength
172 - unit: "{connection}/s"
198 + chart_meta:
199 + description: Number of connections rejected because the length of an HTTP request or response header exceeded the maximum L7 parse length configured for the matching virtual server
200 + family: SLB/Connection/Rejected/ParseLength
201 + unit: "{connection}/s"
202 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.19
203 name: cslbxStatsBadSslFormatRejects
175 - description: Number of connections rejected because some invalid or unrecognized SSL format was detected
176 - family: SLB/Connection/Rejected/SSL
177 - unit: "{connection}/s"
204 + chart_meta:
205 + description: Number of connections rejected because some invalid or unrecognized SSL format was detected
206 + family: SLB/Connection/Rejected/SSL
207 + unit: "{connection}/s"
208 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.20
209 name: cslbxStatsL7ParserErrorRejects
180 - description: Number of connections rejected because an error occurred while parsing the connection data at Layer 7
181 - family: SLB/Connection/Rejected/ParseError
182 - unit: "{connection}/s"
210 + chart_meta:
211 + description: Number of connections rejected because an error occurred while parsing the connection data at Layer 7
212 + family: SLB/Connection/Rejected/ParseError
213 + unit: "{connection}/s"
214 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.21
215 name: cslbxStatsVerMismatchRejects
185 - description: Number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection
186 - family: SLB/Connection/Rejected/VersionMismatch
187 - unit: "{connection}/s"
216 + chart_meta:
217 + description: Number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection
218 + family: SLB/Connection/Rejected/VersionMismatch
219 + unit: "{connection}/s"
220 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.33
221 name: cslbxStatsVerMismatchHCRejects
190 - description: Number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection (64-bit)
191 - family: SLB/Connection/Rejected/VersionMismatch
192 - unit: "{connection}/s"
222 + chart_meta:
223 + description: Number of connections rejected because the Layer 7 configuration was changed while Layer 7 parsing was occurring on the connection (64-bit)
224 + family: SLB/Connection/Rejected/VersionMismatch
225 + unit: "{connection}/s"
226 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.22
227 name: cslbxStatsOutOfMemoryRejects
195 - description: Number of connections rejected because the SLB module could not allocate the required memory
196 - family: SLB/Connection/Rejected/Memory
197 - unit: "{connection}/s"
228 + chart_meta:
229 + description: Number of connections rejected because the SLB module could not allocate the required memory
230 + family: SLB/Connection/Rejected/Memory
231 + unit: "{connection}/s"
232 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.23
233 name: cslbxStatsTimedOutConnections
200 - description: Number of connections that were terminated because they were idle longer than the configured idle timeout value
201 - family: SLB/Connection/Timeout
202 - unit: "{connection}/s"
234 + chart_meta:
235 + description: Number of connections that were terminated because they were idle longer than the configured idle timeout value
236 + family: SLB/Connection/Timeout
237 + unit: "{connection}/s"
238 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.24
239 name: cslbxStatsTcpChecksumErrorPkts
205 - description: Accumulated number of TCP packets which have checksum error
206 - family: Network/TCP/Error/Checksum
207 - unit: "{error}/s"
240 + chart_meta:
241 + description: Accumulated number of TCP packets which have checksum error
242 + family: Network/TCP/Error/Checksum
243 + unit: "{error}/s"
244 - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.25
245 name: cslbxStatsIpChecksumErrorPkts
210 - description: Accumulated number of IP packets which have checksum error
211 - family: Network/IP/Error/Checksum
212 - unit: "{packet}/s"
246 + chart_meta:
247 + description: Accumulated number of IP packets which have checksum error
248 + family: Network/IP/Error/Checksum
249 + unit: "{packet}/s"
250 metric_tags:
251 - tag: slb_entity_index
252 index: 1 # index `slbEntity` of `slbStatsTable`
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-nexus.yaml
+12 -9
@@ -29,9 +29,10 @@ metrics:
29 symbols:
30 - OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.4
31 name: entSensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
32 - description: Most recent measurement obtained by the agent for this sensor
33 - unit: "1"
34 - family: Sensor/Value
32 + chart_meta:
33 + description: Most recent measurement obtained by the agent for this sensor
34 + family: Sensor/Value
35 + unit: "1"
36 transform: |
37 {{- transformEntitySensorValue .Metric -}}
38 metric_tags:
@@ -64,15 +65,17 @@ metrics:
65 - OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7
66 # core check only
67 name: memory.used
67 - description: Number of bytes from the memory pool that are currently in use by applications on the physical entity
68 - family: Memory/Pool/Used
69 - unit: "By"
68 + chart_meta:
69 + description: Number of bytes from the memory pool that are currently in use by applications on the physical entity
70 + family: Memory/Pool/Used
71 + unit: "By"
72 - OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8
73 # core check only
74 name: memory.free
73 - description: Number of bytes from the memory pool that are currently unused on the physical entity
74 - family: Memory/Pool/Free
75 - unit: "By"
75 + chart_meta:
76 + description: Number of bytes from the memory pool that are currently unused on the physical entity
77 + family: Memory/Pool/Free
78 + unit: "By"
79 metric_tags:
80 - tag: mem
81 index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-sb.yaml
+4 -3
@@ -17,6 +17,7 @@ metrics:
17 symbol:
18 name: cpu.usage
19 OID: 1.3.6.1.4.1.9.6.1.101.1.8
20 - description: Cpu usage percentage
21 - family: CPU/Usage
22 - unit: "%"
20 + chart_meta:
21 + description: Cpu usage percentage
22 + family: CPU/Usage
23 + unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-ucs.yaml
+288 -216
@@ -25,9 +25,10 @@ metrics:
25 symbols:
26 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.7
27 name: cucsComputeBoardOperPower
28 - description: Operational power state of the board
29 - family: Board/Power/Operational/Status
30 - unit: "{status}"
28 + chart_meta:
29 + description: Operational power state of the board
30 + family: Board/Power/Operational/Status
31 + unit: "{status}"
32 mapping:
33 0: unknown
34 1: on
@@ -44,9 +45,10 @@ metrics:
45 100: not_supported
46 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.8
47 name: cucsComputeBoardOperState
47 - description: Operational state of the board
48 - family: Board/Operational/Status
49 - unit: "{status}"
48 + chart_meta:
49 + description: Operational state of the board
50 + family: Board/Operational/Status
51 + unit: "{status}"
52 mapping:
53 0: unknown
54 1: operable
@@ -82,9 +84,10 @@ metrics:
84 108: link_activate_blocked
85 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.9
86 name: cucsComputeBoardOperability
85 - description: "Operability state of the board"
86 - family: Board/Operability/Status
87 - unit: "{status}"
87 + chart_meta:
88 + description: "Operability state of the board"
89 + family: Board/Operability/Status
90 + unit: "{status}"
91 mapping:
92 0: unknown
93 1: operable
@@ -120,9 +123,10 @@ metrics:
123 108: link_activate_blocked
124 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.10
125 name: cucsComputeBoardPerf
123 - description: "Performance state of the board"
124 - family: Board/Performance/Status
125 - unit: "{status}"
126 + chart_meta:
127 + description: "Performance state of the board"
128 + family: Board/Performance/Status
129 + unit: "{status}"
130 mapping:
131 0: unknown
132 1: ok
@@ -135,9 +139,10 @@ metrics:
139 100: not_supported
140 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.11
141 name: cucsComputeBoardPower
138 - description: "Power state of the board"
139 - family: Board/Power/Status
140 - unit: "{status}"
142 + chart_meta:
143 + description: "Power state of the board"
144 + family: Board/Power/Status
145 + unit: "{status}"
146 mapping:
147 0: unknown
148 1: on
@@ -154,9 +159,10 @@ metrics:
159 100: not_supported
160 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.12
161 name: cucsComputeBoardPresence
157 - description: "Presence state of the board"
158 - family: Board/Presence/Status
159 - unit: "{status}"
162 + chart_meta:
163 + description: "Presence state of the board"
164 + family: Board/Presence/Status
165 + unit: "{status}"
166 mapping:
167 0: unknown
168 1: empty
@@ -180,9 +186,10 @@ metrics:
186 105: equipped_disc_unknown
187 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.15
188 name: cucsComputeBoardThermal
183 - description: "Thermal state of the board"
184 - family: Board/Thermal/Status
185 - unit: "{status}"
189 + chart_meta:
190 + description: "Thermal state of the board"
191 + family: Board/Thermal/Status
192 + unit: "{status}"
193 mapping:
194 0: unknown
195 1: ok
@@ -195,9 +202,10 @@ metrics:
202 100: not_supported
203 - OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.17
204 name: cucsComputeBoardVoltage
198 - description: "Voltage state of the board"
199 - family: Board/Voltage/Status
200 - unit: "{status}"
205 + chart_meta:
206 + description: "Voltage state of the board"
207 + family: Board/Voltage/Status
208 + unit: "{status}"
209 mapping:
210 0: unknown
211 1: ok
@@ -233,19 +241,22 @@ metrics:
241 symbols:
242 - name: cucsComputeMbPowerStatsConsumedPower
243 OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.4
236 - description: "Consumed power"
237 - family: Board/Power/Consumption
238 - unit: "W"
244 + chart_meta:
245 + description: "Consumed power"
246 + family: Board/Power/Consumption
247 + unit: "W"
248 - name: cucsComputeMbPowerStatsInputCurrent
249 OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.8
241 - description: "Input current"
242 - family: Board/Power/Current
243 - unit: "A"
250 + chart_meta:
251 + description: "Input current"
252 + family: Board/Power/Current
253 + unit: "A"
254 - name: cucsComputeMbPowerStatsInputVoltage
255 OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.12
246 - description: "Input voltage"
247 - family: Board/Power/Voltage
248 - unit: "V"
256 + chart_meta:
257 + description: "Input voltage"
258 + family: Board/Power/Voltage
259 + unit: "V"
260 metric_tags:
261 - symbol:
262 name: cucsComputeMbPowerStatFlex Flashn
@@ -259,19 +270,22 @@ metrics:
270 symbols:
271 - name: cucsComputeRackUnitAvailableMemory
272 OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.9
262 - description: "Rack unit available memory"
263 - family: RackUnit/Memory/Available
264 - unit: "By"
273 + chart_meta:
274 + description: "Rack unit available memory"
275 + family: RackUnit/Memory/Available
276 + unit: "By"
277 - name: cucsComputeRackUnitTotalMemory
278 OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.49
267 - description: "Rack Unit total memory"
268 - family: RackUnit/Memory/Total
269 - unit: "By"
279 + chart_meta:
280 + description: "Rack Unit total memory"
281 + family: RackUnit/Memory/Total
282 + unit: "By"
283 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.4
284 name: cucsComputeRackUnitAdminPower
272 - description: "Admin power state of the rack unit"
273 - family: RackUnit/Admin/Power
274 - unit: "{status}"
285 + chart_meta:
286 + description: "Admin power state of the rack unit"
287 + family: RackUnit/Admin/Power
288 + unit: "{status}"
289 mapping:
290 2: cycle_immediate
291 3: cycle_wait
@@ -288,18 +302,20 @@ metrics:
302 33: ipmi_reset
303 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.5
304 name: cucsComputeRackUnitAdminState
291 - description: "Admin state of the rack unit"
292 - family: RackUnit/Admin/State
293 - unit: "{status}"
305 + chart_meta:
306 + description: "Admin state of the rack unit"
307 + family: RackUnit/Admin/State
308 + unit: "{status}"
309 mapping:
310 1: in_service
311 2: out_of_service
312 3: in_maintenance
313 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.7
314 name: cucsComputeRackUnitAssociation
300 - description: "Association state of the rack unit"
301 - family: RackUnit/Association/Status
302 - unit: "{status}"
315 + chart_meta:
316 + description: "Association state of the rack unit"
317 + family: RackUnit/Association/Status
318 + unit: "{status}"
319 mapping:
320 0: none
321 1: establishing
@@ -309,17 +325,19 @@ metrics:
325 5: throttled
326 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.8
327 name: cucsComputeRackUnitAvailability
312 - description: "Availability state of the rack unit"
313 - family: RackUnit/Availability/Status
314 - unit: "{status}"
328 + chart_meta:
329 + description: "Availability state of the rack unit"
330 + family: RackUnit/Availability/Status
331 + unit: "{status}"
332 mapping:
333 0: unavailable
334 1: available
335 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.10
336 name: cucsComputeRackUnitCheckPoint
320 - description: "Checkpoint state of the rack unit"
321 - family: RackUnit/Checkpoint/Status
322 - unit: "{status}"
337 + chart_meta:
338 + description: "Checkpoint state of the rack unit"
339 + family: RackUnit/Checkpoint/Status
340 + unit: "{status}"
341 mapping:
342 0: unknown
343 1: removing
@@ -328,9 +346,10 @@ metrics:
346 4: discovered
347 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.40
348 name: cucsComputeRackUnitOperPower
331 - description: "Operational power state of the rack unit"
332 - family: RackUnit/Power/Operational
333 - unit: "{status}"
349 + chart_meta:
350 + description: "Operational power state of the rack unit"
351 + family: RackUnit/Power/Operational
352 + unit: "{status}"
353 mapping:
354 0: unknown
355 1: on
@@ -347,9 +366,10 @@ metrics:
366 100: not_supported
367 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.42
368 name: cucsComputeRackUnitOperState
350 - description: "Operational state of the rack unit"
351 - family: RackUnit/Operational/Status
352 - unit: "{status}"
369 + chart_meta:
370 + description: "Operational state of the rack unit"
371 + family: RackUnit/Operational/Status
372 + unit: "{status}"
373 mapping:
374 0: indeterminate
375 1: unassociated
@@ -386,9 +406,10 @@ metrics:
406 212: svnic_not_present
407 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.43
408 name: cucsComputeRackUnitOperability
389 - description: "Operability state of the rack unit"
390 - family: RackUnit/Operability/Status
391 - unit: "{status}"
409 + chart_meta:
410 + description: "Operability state of the rack unit"
411 + family: RackUnit/Operability/Status
412 + unit: "{status}"
413 mapping:
414 0: unknown
415 1: operable
@@ -424,9 +445,10 @@ metrics:
445 108: link_activate_blocked
446 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.45
447 name: cucsComputeRackUnitPresence
427 - description: "Presence state of the rack unit"
428 - family: RackUnit/Presence/Status
429 - unit: "{status}"
448 + chart_meta:
449 + description: "Presence state of the rack unit"
450 + family: RackUnit/Presence/Status
451 + unit: "{status}"
452 mapping:
453 0: unknown
454 1: empty
@@ -446,20 +468,23 @@ metrics:
468 102: equipped_deprecated
469 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.35
470 name: cucsComputeRackUnitNumOfCores
449 - description: "Number of cores"
450 - family: RackUnit/CPU/Cores
451 - unit: "{core}"
471 + chart_meta:
472 + description: "Number of cores"
473 + family: RackUnit/CPU/Cores
474 + unit: "{core}"
475 - OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.36
476 name: cucsComputeRackUnitNumOfCpus
454 - description: "Number of cpus"
455 - family: RackUnit/CPU/Count
456 - unit: "{cpu}"
477 + chart_meta:
478 + description: "Number of cpus"
479 + family: RackUnit/CPU/Count
480 + unit: "{cpu}"
481 - symbol:
482 name: cucsComputeRackUnitNumOfThreads
483 OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.39
460 - description: "Number of threads"
461 - family: RackUnit/CPU/Threads
462 - unit: "{thread}"
484 + chart_meta:
485 + description: "Number of threads"
486 + family: RackUnit/CPU/Threads
487 + unit: "{thread}"
488 metric_tags:
489 - symbol:
490 name: cucsComputeRackUnitDn
@@ -493,24 +518,28 @@ metrics:
518 symbols:
519 - name: cucsComputeRackUnitMbTempStatsAmbientTemp
520 OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.4
496 - description: "Ambient temperature"
497 - family: RackUnit/Temperature/Ambient
498 - unit: "Cel"
521 + chart_meta:
522 + description: "Ambient temperature"
523 + family: RackUnit/Temperature/Ambient
524 + unit: "Cel"
525 - name: cucsComputeRackUnitMbTempStatsFrontTemp
526 OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.8
501 - description: "Front temperature"
502 - family: RackUnit/Temperature/Front
503 - unit: "Cel"
527 + chart_meta:
528 + description: "Front temperature"
529 + family: RackUnit/Temperature/Front
530 + unit: "Cel"
531 - name: cucsComputeRackUnitMbTempStatsIoh1Temp
532 OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.13
506 - description: "Ioh1 temperature"
507 - family: RackUnit/Temperature/IOH1
508 - unit: "Cel"
533 + chart_meta:
534 + description: "Ioh1 temperature"
535 + family: RackUnit/Temperature/IOH1
536 + unit: "Cel"
537 - name: cucsComputeRackUnitMbTempStatsRearTemp
538 OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.21
511 - description: "Rear temperature"
512 - family: RackUnit/Temperature/Rear
513 - unit: "Cel"
539 + chart_meta:
540 + description: "Rear temperature"
541 + family: RackUnit/Temperature/Rear
542 + unit: "Cel"
543 metric_tags:
544 - symbol:
545 name: cucsComputeRackUnitMbTempStatFlex Flashn
@@ -523,9 +552,10 @@ metrics:
552 symbols:
553 - OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.9
554 name: cucsEquipmentFanOperState
526 - description: "Operational state of the fan"
527 - family: Fan/Operational/Status
528 - unit: "{status}"
555 + chart_meta:
556 + description: "Operational state of the fan"
557 + family: Fan/Operational/Status
558 + unit: "{status}"
559 mapping:
560 0: unknown
561 1: operable
@@ -561,9 +591,10 @@ metrics:
591 108: link_activate_blocked
592 - OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.10
593 name: cucsEquipmentFanOperability
564 - description: "Operability state of the fan"
565 - family: Fan/Operability/Status
566 - unit: "{status}"
594 + chart_meta:
595 + description: "Operability state of the fan"
596 + family: Fan/Operability/Status
597 + unit: "{status}"
598 mapping:
599 0: unknown
600 1: operable
@@ -599,9 +630,10 @@ metrics:
630 108: link_activate_blocked
631 - OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.11
632 name: cucsEquipmentFanPerf
602 - description: "Performance state of the fan"
603 - family: Fan/Performance/Status
604 - unit: "{status}"
633 + chart_meta:
634 + description: "Performance state of the fan"
635 + family: Fan/Performance/Status
636 + unit: "{status}"
637 mapping:
638 0: unknown
639 1: ok
@@ -614,9 +646,10 @@ metrics:
646 100: not_supported
647 - OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.12
648 name: cucsEquipmentFanPower
617 - description: "Power state of the fan"
618 - family: Fan/Power/Status
619 - unit: "{status}"
649 + chart_meta:
650 + description: "Power state of the fan"
651 + family: Fan/Power/Status
652 + unit: "{status}"
653 mapping:
654 0: unknown
655 1: on
@@ -633,9 +666,10 @@ metrics:
666 100: not_supported
667 - OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.13
668 name: cucsEquipmentFanPresence
636 - description: "Presence state of the fan"
637 - family: Fan/Presence/Status
638 - unit: "{status}"
669 + chart_meta:
670 + description: "Presence state of the fan"
671 + family: Fan/Presence/Status
672 + unit: "{status}"
673 mapping:
674 0: unknown
675 1: empty
@@ -678,9 +712,10 @@ metrics:
712 symbols:
713 - OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.7
714 name: cucsEquipmentPsuOperState
681 - description: "Operational state of the psu"
682 - family: PowerSupply/Operational/Status
683 - unit: "{status}"
715 + chart_meta:
716 + description: "Operational state of the psu"
717 + family: PowerSupply/Operational/Status
718 + unit: "{status}"
719 mapping:
720 0: unknown
721 1: operable
@@ -716,9 +751,10 @@ metrics:
751 108: link_activate_blocked
752 - OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.8
753 name: cucsEquipmentPsuOperability
719 - description: "Operability state of the psu"
720 - family: PowerSupply/Operability/Status
721 - unit: "{status}"
754 + chart_meta:
755 + description: "Operability state of the psu"
756 + family: PowerSupply/Operability/Status
757 + unit: "{status}"
758 mapping:
759 0: unknown
760 1: operable
@@ -754,9 +790,10 @@ metrics:
790 108: link_activate_blocked
791 - OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.9
792 name: cucsEquipmentPsuPerf
757 - description: "Performance state of the psu"
758 - family: PowerSupply/Performance/Status
759 - unit: "{status}"
793 + chart_meta:
794 + description: "Performance state of the psu"
795 + family: PowerSupply/Performance/Status
796 + unit: "{status}"
797 mapping:
798 0: unknown
799 1: ok
@@ -769,9 +806,10 @@ metrics:
806 100: not_supported
807 - OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.10
808 name: cucsEquipmentPsuPower
772 - description: "Power state of the psu"
773 - family: PowerSupply/Power/Status
774 - unit: "{status}"
809 + chart_meta:
810 + description: "Power state of the psu"
811 + family: PowerSupply/Power/Status
812 + unit: "{status}"
813 mapping:
814 0: unknown
815 1: on
@@ -788,9 +826,10 @@ metrics:
826 100: not_supported
827 - OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.11
828 name: cucsEquipmentPsuPresence
791 - description: "Presence state of the psu"
792 - family: PowerSupply/Presence/Status
793 - unit: "{status}"
829 + chart_meta:
830 + description: "Presence state of the psu"
831 + family: PowerSupply/Presence/Status
832 + unit: "{status}"
833 mapping:
834 0: unknown
835 1: empty
@@ -837,14 +876,16 @@ metrics:
876 symbols:
877 - name: cucsMemoryUnitCapacity
878 OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.6
840 - description: "Capacity of the memory unit"
841 - family: Memory/Capacity
842 - unit: "By"
879 + chart_meta:
880 + description: "Capacity of the memory unit"
881 + family: Memory/Capacity
882 + unit: "By"
883 - OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.13
884 name: cucsMemoryUnitOperState
845 - description: "Operational state of the memory unit"
846 - family: Memory/Operational/Status
847 - unit: "{status}"
885 + chart_meta:
886 + description: "Operational state of the memory unit"
887 + family: Memory/Operational/Status
888 + unit: "{status}"
889 mapping:
890 0: unknown
891 1: operable
@@ -880,9 +921,10 @@ metrics:
921 108: link_activate_blocked
922 - OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.14
923 name: cucsMemoryUnitOperability
883 - description: "Operability state of the memory unit"
884 - family: Memory/Operability/Status
885 - unit: "{status}"
924 + chart_meta:
925 + description: "Operability state of the memory unit"
926 + family: Memory/Operability/Status
927 + unit: "{status}"
928 mapping:
929 0: unknown
930 1: operable
@@ -918,9 +960,10 @@ metrics:
960 108: link_activate_blocked
961 - OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.15
962 name: cucsMemoryUnitPerf
921 - description: "Performance state of the memory unit"
922 - family: Memory/Performance/Status
923 - unit: "{status}"
963 + chart_meta:
964 + description: "Performance state of the memory unit"
965 + family: Memory/Performance/Status
966 + unit: "{status}"
967 mapping:
968 0: unknown
969 1: ok
@@ -933,9 +976,10 @@ metrics:
976 100: not_supported
977 - OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.16
978 name: cucsMemoryUnitPower
936 - description: "Power state of the memory unit"
937 - family: Memory/Power/Status
938 - unit: "{status}"
979 + chart_meta:
980 + description: "Power state of the memory unit"
981 + family: Memory/Power/Status
982 + unit: "{status}"
983 mapping:
984 0: unknown
985 1: on
@@ -952,9 +996,10 @@ metrics:
996 100: not_supported
997 - OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.17
998 name: cucsMemoryUnitPresence
955 - description: "Presence state of the memory unit"
956 - family: Memory/Presence/Status
957 - unit: "{status}"
999 + chart_meta:
1000 + description: "Presence state of the memory unit"
1001 + family: Memory/Presence/Status
1002 + unit: "{status}"
1003 mapping:
1004 0: unknown
1005 1: empty
@@ -1022,9 +1067,10 @@ metrics:
1067 symbols:
1068 - name: cucsMemoryUnitEnvStatsTemperature
1069 OID: 1.3.6.1.4.1.9.9.719.1.30.12.1.6
1025 - description: "Temperature"
1026 - family: Memory/Temperature
1027 - unit: "Cel"
1070 + chart_meta:
1071 + description: "Temperature"
1072 + family: Memory/Temperature
1073 + unit: "Cel"
1074 metric_tags:
1075 - symbol:
1076 name: cucsMemoryUnitEnvStatFlex Flashn
@@ -1038,9 +1084,10 @@ metrics:
1084 symbols:
1085 - name: cucsProcessorEnvStatsTemperature
1086 OID: 1.3.6.1.4.1.9.9.719.1.41.2.1.10
1041 - description: "Temperature"
1042 - family: Processor/Temperature
1043 - unit: "Cel"
1087 + chart_meta:
1088 + description: "Temperature"
1089 + family: Processor/Temperature
1090 + unit: "Cel"
1091 metric_tags:
1092 - symbol:
1093 name: cucsProcessorEnvStatFlex Flashn
@@ -1057,24 +1104,28 @@ metrics:
1104 # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
1105 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.5
1106 name: cucsProcessorUnitCores
1060 - description: "Number of cores"
1061 - family: Processor/Cores/Total
1062 - unit: "{core}"
1107 + chart_meta:
1108 + description: "Number of cores"
1109 + family: Processor/Cores/Total
1110 + unit: "{core}"
1111 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.6
1112 name: cucsProcessorUnitCoresEnabled
1065 - description: "Number of cores enabled"
1066 - family: Processor/Cores/Enabled
1067 - unit: "{core}"
1113 + chart_meta:
1114 + description: "Number of cores enabled"
1115 + family: Processor/Cores/Enabled
1116 + unit: "{core}"
1117 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.20
1118 name: cucsProcessorUnitThreads
1070 - description: "Number of threads"
1071 - family: Processor/Threads
1072 - unit: "{thread}"
1119 + chart_meta:
1120 + description: "Number of threads"
1121 + family: Processor/Threads
1122 + unit: "{thread}"
1123 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.9
1124 name: cucsProcessorUnitOperState
1075 - description: "Operational state of the processor unit"
1076 - family: Processor/Operational/Status
1077 - unit: "{status}"
1125 + chart_meta:
1126 + description: "Operational state of the processor unit"
1127 + family: Processor/Operational/Status
1128 + unit: "{status}"
1129 mapping:
1130 0: unknown
1131 1: operable
@@ -1110,9 +1161,10 @@ metrics:
1161 108: link_activate_blocked
1162 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.10
1163 name: cucsProcessorUnitOperability
1113 - description: "Operability state of the processor unit"
1114 - family: Processor/Operability/Status
1115 - unit: "{status}"
1164 + chart_meta:
1165 + description: "Operability state of the processor unit"
1166 + family: Processor/Operability/Status
1167 + unit: "{status}"
1168 mapping:
1169 0: unknown
1170 1: operable
@@ -1148,9 +1200,10 @@ metrics:
1200 108: link_activate_blocked
1201 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.11
1202 name: cucsProcessorUnitPerf
1151 - description: "Performance state of the processor unit"
1152 - family: Processor/Performance/Status
1153 - unit: "{status}"
1203 + chart_meta:
1204 + description: "Performance state of the processor unit"
1205 + family: Processor/Performance/Status
1206 + unit: "{status}"
1207 mapping:
1208 0: unknown
1209 1: ok
@@ -1163,9 +1216,10 @@ metrics:
1216 100: not_supported
1217 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.12
1218 name: cucsProcessorUnitPower
1166 - description: "Power state of the processor unit"
1167 - family: Processor/Power/Status
1168 - unit: "{status}"
1219 + chart_meta:
1220 + description: "Power state of the processor unit"
1221 + family: Processor/Power/Status
1222 + unit: "{status}"
1223 mapping:
1224 0: unknown
1225 1: on
@@ -1182,9 +1236,10 @@ metrics:
1236 100: not_supported
1237 - OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.13
1238 name: cucsProcessorUnitPresence
1185 - description: "Presence state of the processor unit"
1186 - family: Processor/Presence/Status
1187 - unit: "{status}"
1239 + chart_meta:
1240 + description: "Presence state of the processor unit"
1241 + family: Processor/Presence/Status
1242 + unit: "{status}"
1243 mapping:
1244 0: unknown
1245 1: empty
@@ -1240,24 +1295,28 @@ metrics:
1295 symbols:
1296 - name: cucsStorageFlexFlashCardReadIOErrorCount
1297 OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.19
1243 - description: "Read io error count"
1244 - family: Storage/FlexFlash/Error/Read
1245 - unit: "{error}"
1298 + chart_meta:
1299 + description: "Read io error count"
1300 + family: Storage/FlexFlash/Error/Read
1301 + unit: "{error}"
1302 - name: cucsStorageFlexFlashCardSize
1303 OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.22
1248 - description: "Size of the flex flash card"
1249 - family: Storage/FlexFlash/Capacity
1250 - unit: "By"
1304 + chart_meta:
1305 + description: "Size of the flex flash card"
1306 + family: Storage/FlexFlash/Capacity
1307 + unit: "By"
1308 - name: cucsStorageFlexFlashCardWriteIOErrorCount
1309 OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.26
1253 - description: "Write io error count"
1254 - family: Storage/FlexFlash/Error/Write
1255 - unit: "{error}"
1310 + chart_meta:
1311 + description: "Write io error count"
1312 + family: Storage/FlexFlash/Error/Write
1313 + unit: "{error}"
1314 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.6
1315 name: cucsStorageFlexFlashCardCardMode
1258 - description: "Mode of the flex flash card"
1259 - family: Storage/FlexFlash/Mode/Status
1260 - unit: "{status}"
1316 + chart_meta:
1317 + description: "Mode of the flex flash card"
1318 + family: Storage/FlexFlash/Mode/Status
1319 + unit: "{status}"
1320 mapping:
1321 0: ff_phy_drive_unpaired_primary
1322 1: ff_phy_drive_primary
@@ -1265,9 +1324,10 @@ metrics:
1324 3: ff_phy_drive_secondary_unhealthy
1325 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.8
1326 name: cucsStorageFlexFlashCardConnectionProtocol
1268 - description: "Connection protocol of the flex flash card"
1269 - family: Storage/FlexFlash/Protocol/Type
1270 - unit: "{status}"
1327 + chart_meta:
1328 + description: "Connection protocol of the flex flash card"
1329 + family: Storage/FlexFlash/Protocol/Type
1330 + unit: "{status}"
1331 mapping:
1332 0: unspecified
1333 1: sas
@@ -1275,14 +1335,16 @@ metrics:
1335 3: nvme
1336 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.29
1337 name: cucsStorageFlexFlashCardDrivesEnabled
1278 - description: "Number of drives enabled"
1279 - family: Storage/FlexFlash/Drive/Enabled
1280 - unit: "{drive}"
1338 + chart_meta:
1339 + description: "Number of drives enabled"
1340 + family: Storage/FlexFlash/Drive/Enabled
1341 + unit: "{drive}"
1342 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.5
1343 name: cucsStorageFlexFlashCardCardHealth
1283 - description: "Health state of the flex flash card"
1284 - family: Storage/FlexFlash/Health/Status
1285 - unit: "{status}"
1344 + chart_meta:
1345 + description: "Health state of the flex flash card"
1346 + family: Storage/FlexFlash/Health/Status
1347 + unit: "{status}"
1348 mapping:
1349 0: ff_phy_health_na
1350 1: ff_phy_health_ok
@@ -1292,9 +1354,10 @@ metrics:
1354 5: ff_phy_raid_out_of_sync
1355 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.17
1356 name: cucsStorageFlexFlashCardOperability
1295 - description: "Operability state of the flex flash card"
1296 - family: Storage/FlexFlash/Operability/Status
1297 - unit: "{status}"
1357 + chart_meta:
1358 + description: "Operability state of the flex flash card"
1359 + family: Storage/FlexFlash/Operability/Status
1360 + unit: "{status}"
1361 mapping:
1362 0: unknown
1363 1: operable
@@ -1330,9 +1393,10 @@ metrics:
1393 108: link_activate_blocked
1394 - OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.18
1395 name: cucsStorageFlexFlashCardPresence
1333 - description: "Presence state of the flex flash card"
1334 - family: Storage/FlexFlash/Presence/Status
1335 - unit: "{status}"
1396 + chart_meta:
1397 + description: "Presence state of the flex flash card"
1398 + family: Storage/FlexFlash/Presence/Status
1399 + unit: "{status}"
1400 mapping:
1401 0: unknown
1402 1: empty
@@ -1356,9 +1420,10 @@ metrics:
1420 105: equipped_disc_unknown
1421 - name: cucsStorageFlexFlashCardCardState
1422 OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.27
1359 - description: "State of the flex flash card"
1360 - family: Storage/FlexFlash/Status
1361 - unit: "{status}"
1423 + chart_meta:
1424 + description: "State of the flex flash card"
1425 + family: Storage/FlexFlash/Status
1426 + unit: "{status}"
1427 mapping:
1428 0: undefined
1429 1: configured
@@ -1370,9 +1435,10 @@ metrics:
1435 - symbol:
1436 OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.28
1437 name: cucsStorageFlexFlashCardCardSync
1373 - description: "Sync state of the flex flash card"
1374 - family: Storage/FlexFlash/Sync/Status
1375 - unit: "{status}"
1438 + chart_meta:
1439 + description: "Sync state of the flex flash card"
1440 + family: Storage/FlexFlash/Sync/Status
1441 + unit: "{status}"
1442 mapping:
1443 0: na
1444 1: manual
@@ -1403,14 +1469,16 @@ metrics:
1469 symbols:
1470 - name: cucsStorageFlexFlashDriveSize
1471 OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.18
1406 - description: "Size of the flex flash drive"
1407 - family: Storage/FlexFlash/Drive/Capacity
1408 - unit: "By"
1472 + chart_meta:
1473 + description: "Size of the flex flash drive"
1474 + family: Storage/FlexFlash/Drive/Capacity
1475 + unit: "By"
1476 - OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.5
1477 name: cucsStorageFlexFlashDriveConnectionProtocol
1411 - description: "Connection protocol of the flex flash drive"
1412 - family: Storage/FlexFlash/Drive/Protocol
1413 - unit: "{status}"
1478 + chart_meta:
1479 + description: "Connection protocol of the flex flash drive"
1480 + family: Storage/FlexFlash/Drive/Protocol
1481 + unit: "{status}"
1482 mapping:
1483 0: unspecified
1484 1: sas
@@ -1418,9 +1486,10 @@ metrics:
1486 3: nvme
1487 - OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.8
1488 name: cucsStorageFlexFlashDriveDriveType
1421 - description: "Type of the flex flash drive"
1422 - family: Storage/FlexFlash/Drive/Type
1423 - unit: "{status}"
1489 + chart_meta:
1490 + description: "Type of the flex flash drive"
1491 + family: Storage/FlexFlash/Drive/Type
1492 + unit: "{status}"
1493 mapping:
1494 0: unknown
1495 1: scu
@@ -1429,9 +1498,10 @@ metrics:
1498 4: drivers
1499 - OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.14
1500 name: cucsStorageFlexFlashDriveOperability
1432 - description: "Operability state of the flex flash drive"
1433 - family: Storage/FlexFlash/Drive/Operability
1434 - unit: "{status}"
1501 + chart_meta:
1502 + description: "Operability state of the flex flash drive"
1503 + family: Storage/FlexFlash/Drive/Operability
1504 + unit: "{status}"
1505 mapping:
1506 0: unknown
1507 1: operable
@@ -1467,9 +1537,10 @@ metrics:
1537 108: link_activate_blocked
1538 - OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.15
1539 name: cucsStorageFlexFlashDrivePresence
1470 - description: "Presence state of the flex flash drive"
1471 - family: Storage/FlexFlash/Drive/Presence
1472 - unit: "{status}"
1540 + chart_meta:
1541 + description: "Presence state of the flex flash drive"
1542 + family: Storage/FlexFlash/Drive/Presence
1543 + unit: "{status}"
1544 mapping:
1545 0: unknown
1546 1: empty
@@ -1493,9 +1564,10 @@ metrics:
1564 105: equipped_disc_unknown
1565 - OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.25
1566 name: cucsStorageFlexFlashDriveOperationState
1496 - description: "Operation state of the flex flash drive"
1497 - family: Storage/FlexFlash/Drive/Operation
1498 - unit: "{status}"
1567 + chart_meta:
1568 + description: "Operation state of the flex flash drive"
1569 + family: Storage/FlexFlash/Drive/Operation
1570 + unit: "{status}"
1571 mapping:
1572 0: partition_non_mirrored
1573 1: partition_mirrored
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-wan-optimizer.yaml
+56 -42
@@ -27,100 +27,114 @@ metrics:
27 symbol:
28 OID: 1.3.6.1.4.1.9.9.178.1.6.2.1.0
29 name: cceAlarmCriticalCount
30 - description: Number of alarms currently raised with a severity of 'critical'
31 - family: Alarm/Critical/Raised
32 - unit: "{alarm}"
30 + chart_meta:
31 + description: Number of alarms currently raised with a severity of 'critical'
32 + family: Alarm/Critical/Raised
33 + unit: "{alarm}"
34 - MIB: CISCO-CONTENT-ENGINE-MIB
35 symbol:
36 OID: 1.3.6.1.4.1.9.9.178.1.6.2.2.0
37 name: cceAlarmMajorCount
37 - description: Number of alarms currently raised with a severity of 'major'
38 - family: Alarm/Major/Raised
39 - unit: "{alarm}"
38 + chart_meta:
39 + description: Number of alarms currently raised with a severity of 'major'
40 + family: Alarm/Major/Raised
41 + unit: "{alarm}"
42 - MIB: CISCO-CONTENT-ENGINE-MIB
43 symbol:
44 OID: 1.3.6.1.4.1.9.9.178.1.6.2.3.0
45 name: cceAlarmMinorCount
44 - description: Number of alarms currently raised with a severity of 'minor'
45 - family: Alarm/Minor/Raised
46 - unit: "{alarm}"
46 + chart_meta:
47 + description: Number of alarms currently raised with a severity of 'minor'
48 + family: Alarm/Minor/Raised
49 + unit: "{alarm}"
50 - MIB: CISCO-WAN-OPTIMIZATION-MIB
51 symbol:
52 OID: 1.3.6.1.4.1.9.9.762.1.2.1.1.0
53 name: cwoTfoStatsTotalOptConn
51 - description: This object contains total number of TCP connections optimized since TFO was started or its statistics were last reset
52 - family: TFO/Connection/Optimized/Total
53 - unit: "{connection}/s"
54 + chart_meta:
55 + description: This object contains total number of TCP connections optimized since TFO was started or its statistics were last reset
56 + family: TFO/Connection/Optimized/Total
57 + unit: "{connection}/s"
58 - MIB: CISCO-WAN-OPTIMIZATION-MIB
59 symbol:
60 OID: 1.3.6.1.4.1.9.9.762.1.2.1.2.0
61 name: cwoTfoStatsActiveOptConn
58 - description: This object contains number of currently active TCP connections getting optimized
59 - family: TFO/Connection/Optimized/Active
60 - unit: "{connection}"
62 + chart_meta:
63 + description: This object contains number of currently active TCP connections getting optimized
64 + family: TFO/Connection/Optimized/Active
65 + unit: "{connection}"
66 - MIB: CISCO-WAN-OPTIMIZATION-MIB
67 symbol:
68 OID: 1.3.6.1.4.1.9.9.762.1.2.1.4.0
69 name: cwoTfoStatsActiveOptTCPPlusConn
65 - description: This object contains number of active TCP connections going through TCP plus other optimization
66 - family: TFO/Connection/Optimized/TCPPlus
67 - unit: "{connection}"
70 + chart_meta:
71 + description: This object contains number of active TCP connections going through TCP plus other optimization
72 + family: TFO/Connection/Optimized/TCPPlus
73 + unit: "{connection}"
74 - MIB: CISCO-WAN-OPTIMIZATION-MIB
75 symbol:
76 OID: 1.3.6.1.4.1.9.9.762.1.2.1.5.0
77 name: cwoTfoStatsActiveOptTCPOnlyConn
72 - description: This object contains number of active connections going through only TCP optimization
73 - family: TFO/Connection/Optimized/TCPOnly
74 - unit: "{connection}"
78 + chart_meta:
79 + description: This object contains number of active connections going through only TCP optimization
80 + family: TFO/Connection/Optimized/TCPOnly
81 + unit: "{connection}"
82 - MIB: CISCO-WAN-OPTIMIZATION-MIB
83 symbol:
84 OID: 1.3.6.1.4.1.9.9.762.1.2.1.6.0
85 name: cwoTfoStatsActiveOptTCPPrepConn
79 - description: This object contains number of current active TCP connections that were originated by an accelerator to acquire data in anticipation of its future use
80 - family: TFO/Connection/Preposition/Active
81 - unit: "{connection}"
86 + chart_meta:
87 + description: This object contains number of current active TCP connections that were originated by an accelerator to acquire data in anticipation of its future use
88 + family: TFO/Connection/Preposition/Active
89 + unit: "{connection}"
90 - MIB: CISCO-WAN-OPTIMIZATION-MIB
91 symbol:
92 OID: 1.3.6.1.4.1.9.9.762.1.2.1.7.0
93 name: cwoTfoStatsActiveADConn
86 - description: This object contains number of current active TCP connections in the auto-discovery state
87 - family: TFO/Connection/AutoDiscovery/Active
88 - unit: "{connection}"
94 + chart_meta:
95 + description: This object contains number of current active TCP connections in the auto-discovery state
96 + family: TFO/Connection/AutoDiscovery/Active
97 + unit: "{connection}"
98 - MIB: CISCO-WAN-OPTIMIZATION-MIB
99 symbol:
100 OID: 1.3.6.1.4.1.9.9.762.1.2.1.8.0
101 name: cwoTfoStatsReservedConn
93 - description: This object contains number of TCP connections reserved for the MAPI accelerator
94 - family: TFO/Connection/Reserved/MAPI
95 - unit: "{connection}"
102 + chart_meta:
103 + description: This object contains number of TCP connections reserved for the MAPI accelerator
104 + family: TFO/Connection/Reserved/MAPI
105 + unit: "{connection}"
106 - MIB: CISCO-WAN-OPTIMIZATION-MIB
107 symbol:
108 OID: 1.3.6.1.4.1.9.9.762.1.2.1.9.0
109 name: cwoTfoStatsPendingConn
100 - description: This object contains number of TCP connections, which are pending in queue of connections to be optimized
101 - family: TFO/Connection/Queue/Pending
102 - unit: "{connection}"
110 + chart_meta:
111 + description: This object contains number of TCP connections, which are pending in queue of connections to be optimized
112 + family: TFO/Connection/Queue/Pending
113 + unit: "{connection}"
114 - MIB: CISCO-WAN-OPTIMIZATION-MIB
115 symbol:
116 OID: 1.3.6.1.4.1.9.9.762.1.2.1.10.0
117 name: cwoTfoStatsActivePTConn
107 - description: This object contains number of active Pass Through TCP connections. Connections which are not selected for optimization are called Pass Through.
108 - family: TFO/Connection/PassThrough/Active
109 - unit: "{connection}"
118 + chart_meta:
119 + description: This object contains number of active Pass Through TCP connections. Connections which are not selected for optimization are called Pass Through.
120 + family: TFO/Connection/PassThrough/Active
121 + unit: "{connection}"
122 - MIB: CISCO-WAN-OPTIMIZATION-MIB
123 symbol:
124 OID: 1.3.6.1.4.1.9.9.762.1.2.1.11.0
125 name: cwoTfoStatsTotalNormalClosedConn
114 - description: This object contains total number of optimized TCP connections which were closed normally since TFO was started or its statistics were last reset.
115 - family: TFO/Connection/Closed/Normal
116 - unit: "{connection}/s"
126 + chart_meta:
127 + description: This object contains total number of optimized TCP connections which were closed normally since TFO was started or its statistics were last reset.
128 + family: TFO/Connection/Closed/Normal
129 + unit: "{connection}/s"
130 - MIB: CISCO-WAN-OPTIMIZATION-MIB
131 symbol:
132 OID: 1.3.6.1.4.1.9.9.762.1.2.1.12.0
133 name: cwoTfoStatsResetConn
121 - description: This object contains total number of optimized TCP connections, which are reset since TFO was started or its statistics were last reset.
122 - family: TFO/Connection/Closed/Reset
123 - unit: "{connection}/s"
134 + chart_meta:
135 + description: This object contains total number of optimized TCP connections, which are reset since TFO was started or its statistics were last reset.
136 + family: TFO/Connection/Closed/Reset
137 + unit: "{connection}/s"
138 # - MIB: CISCO-WAN-OPTIMIZATION-MIB
139 # symbol:
140 # OID: 1.3.6.1.4.1.9.9.762.1.2.1.13.0
src/go/plugin/go.d/config/go.d/snmp.profiles/default/citrix-netscaler.yaml
+112 -112
@@ -23,14 +23,14 @@ metrics:
23 symbol:
24 name: cpu.usage
25 OID: 1.3.6.1.4.1.5951.4.1.1.41.1.0
26 - description: CPU utilization percentage
27 - unit: "%"
26 + description: CPU utilization percentage
27 + unit: "%"
28 - MIB: NS-ROOT-MIB
29 symbol:
30 name: memory.usage
31 OID: 1.3.6.1.4.1.5951.4.1.1.41.2.0
32 - description: Percentage of memory utilization on NetScaler
33 - unit: "%"
32 + description: Percentage of memory utilization on NetScaler
33 + unit: "%"
34 # - MIB: NS-ROOT-MIB
35 # symbol:
36 # name: netscaler.sysHighAvailabilityMode
@@ -57,15 +57,15 @@ metrics:
57 symbol:
58 name: netscaler.haTotStateTransitions
59 OID: 1.3.6.1.4.1.5951.4.1.1.23.4.0
60 - metric_type: monotonic_count
61 - description: Total number of master state changes of the NetScaler appliance
62 - unit: "{state_transition}"
60 + description: Total number of master state changes of the NetScaler appliance
61 + unit: "{state_transition}"
62 + metric_type: monotonic_count
63 - MIB: NS-ROOT-MIB
64 symbol:
65 name: netscaler.haTimeofLastStateTransition
66 OID: 1.3.6.1.4.1.5951.4.1.1.23.5.0
67 - description: Time since last master state transition
68 - unit: "ms"
67 + description: Time since last master state transition
68 + unit: "ms"
69 # - MIB: NS-ROOT-MIB
70 # symbol:
71 # name: netscaler.haCurStatus
@@ -98,246 +98,246 @@ metrics:
98 symbol:
99 name: netscaler.svcCount
100 OID: 1.3.6.1.4.1.5951.4.1.2.6.1.0
101 - description: Number of services defined on the NetScaler appliance
102 - unit: "{service}"
101 + description: Number of services defined on the NetScaler appliance
102 + unit: "{service}"
103 - MIB: NS-ROOT-MIB
104 symbol:
105 name: netscaler.serverCount
106 OID: 1.3.6.1.4.1.5951.4.1.2.6.2.0
107 - description: Number of servers defined on the NetScaler appliance
108 - unit: "{server}"
107 + description: Number of servers defined on the NetScaler appliance
108 + unit: "{server}"
109 - MIB: NS-ROOT-MIB
110 symbol:
111 name: netscaler.svcgroupCount
112 OID: 1.3.6.1.4.1.5951.4.1.2.6.3.0
113 - description: Number of service groups defined on the NetScaler appliance
114 - unit: "{service_group}"
113 + description: Number of service groups defined on the NetScaler appliance
114 + unit: "{service_group}"
115 - MIB: NS-ROOT-MIB
116 symbol:
117 name: netscaler.svcgroupmemCount
118 OID: 1.3.6.1.4.1.5951.4.1.2.6.4.0
119 - description: Number of service group members defined on the NetScaler appliance
120 - unit: "{service_group_member}"
119 + description: Number of service group members defined on the NetScaler appliance
120 + unit: "{service_group_member}"
121 - MIB: NS-ROOT-MIB
122 symbol:
123 name: netscaler.syssvcCount
124 OID: 1.3.6.1.4.1.5951.4.1.2.6.5.0
125 - description: Number of system services
126 - unit: "{service}"
125 + description: Number of system services
126 + unit: "{service}"
127 - MIB: NS-ROOT-MIB
128 symbol:
129 name: netscaler.sysupsvcCount
130 OID: 1.3.6.1.4.1.5951.4.1.2.6.6.0
131 - description: Number of system up services
132 - unit: "{service}"
131 + description: Number of system up services
132 + unit: "{service}"
133 - MIB: NS-ROOT-MIB
134 symbol:
135 name: netscaler.sysupsvcitmCount
136 OID: 1.3.6.1.4.1.5951.4.1.2.6.7.0
137 - description: Number of system up service items
138 - unit: "{service_item}"
137 + description: Number of system up service items
138 + unit: "{service_item}"
139 - MIB: NS-ROOT-MIB
140 symbol:
141 name: netscaler.curConfigVservers
142 OID: 1.3.6.1.4.1.5951.4.1.3.5.1.0
143 - description: Total number of vservers configured on the NetScaler
144 - unit: "{vserver}"
143 + description: Total number of vservers configured on the NetScaler
144 + unit: "{vserver}"
145 - MIB: NS-ROOT-MIB
146 symbol:
147 name: netscaler.vsvrBindCount
148 OID: 1.3.6.1.4.1.5951.4.1.3.5.2.0
149 - description: Number of virtual server bindings on the NetScaler appliance
150 - unit: "{binding}"
149 + description: Number of virtual server bindings on the NetScaler appliance
150 + unit: "{binding}"
151 - MIB: NS-ROOT-MIB
152 symbol:
153 name: netscaler.vsvrSvcGrpBindCount
154 OID: 1.3.6.1.4.1.5951.4.1.3.5.3.0
155 - description: Number of virtual server service group bindings on the NetScaler appliance
156 - unit: "{binding}"
155 + description: Number of virtual server service group bindings on the NetScaler appliance
156 + unit: "{binding}"
157 - MIB: NS-ROOT-MIB
158 symbol:
159 name: netscaler.curConfigLbVservers
160 OID: 1.3.6.1.4.1.5951.4.1.3.5.4.0
161 - description: Number of load balancing vservers configured on the NetScaler
162 - unit: "{vserver}"
161 + description: Number of load balancing vservers configured on the NetScaler
162 + unit: "{vserver}"
163 - MIB: NS-ROOT-MIB
164 symbol:
165 name: netscaler.curConfigGslbVservers
166 OID: 1.3.6.1.4.1.5951.4.1.3.5.5.0
167 - description: Number of GSLB vservers configured on the NetScaler
168 - unit: "{vserver}"
167 + description: Number of GSLB vservers configured on the NetScaler
168 + unit: "{vserver}"
169 - MIB: NS-ROOT-MIB
170 symbol:
171 name: netscaler.totSpilloverCount
172 OID: 1.3.6.1.4.1.5951.4.1.3.5.6.0
173 - metric_type: monotonic_count
174 - description: Number of times spillover occurred on the NetScaler
175 - unit: "{spillover}"
173 + description: Number of times spillover occurred on the NetScaler
174 + unit: "{spillover}"
175 + metric_type: monotonic_count
176 - MIB: NS-ROOT-MIB
177 symbol:
178 name: netscaler.sslCurSessions
179 OID: 1.3.6.1.4.1.5951.4.1.1.47.296.0
180 - description: Number of active SSL sessions on the NetScaler appliance
181 - unit: "{session}"
180 + description: Number of active SSL sessions on the NetScaler appliance
181 + unit: "{session}"
182 - MIB: NS-ROOT-MIB
183 symbol:
184 name: netscaler.sslSessionsPerSec
185 OID: 1.3.6.1.4.1.5951.4.1.1.47.3.0
186 - description: SSL sessions per second between client and NetScaler appliance
187 - unit: "1.s"
186 + description: SSL sessions per second between client and NetScaler appliance
187 + unit: "1.s"
188 - MIB: NS-ROOT-MIB
189 symbol:
190 name: netscaler.tcpCurClientConnEstablished
191 OID: 1.3.6.1.4.1.5951.4.1.1.46.12.0
192 - description: Current client connections in the established state
193 - unit: "{connection}"
192 + description: Current client connections in the established state
193 + unit: "{connection}"
194 - MIB: NS-ROOT-MIB
195 symbol:
196 name: netscaler.tcpErrAnyPortFail
197 OID: 1.3.6.1.4.1.5951.4.1.1.46.69.0
198 - metric_type: monotonic_count
199 - description: Port allocations failed on mapped IP address
200 - unit: "{failure}"
198 + description: Port allocations failed on mapped IP address
199 + unit: "{failure}"
200 + metric_type: monotonic_count
201 - MIB: NS-ROOT-MIB
202 symbol:
203 name: netscaler.tcpErrIpPortFail
204 OID: 1.3.6.1.4.1.5951.4.1.1.46.70.0
205 - metric_type: monotonic_count
206 - description: Port allocations failed on subnet or vserver IP address
207 - unit: "{failure}"
205 + description: Port allocations failed on subnet or vserver IP address
206 + unit: "{failure}"
207 + metric_type: monotonic_count
208 - MIB: NS-ROOT-MIB
209 symbol:
210 name: netscaler.tcpErrRetransmit
211 OID: 1.3.6.1.4.1.5951.4.1.1.46.59.0
212 - metric_type: monotonic_count
213 - description: TCP packets retransmitted
214 - unit: "{packet}"
212 + description: TCP packets retransmitted
213 + unit: "{packet}"
214 + metric_type: monotonic_count
215 - MIB: NS-ROOT-MIB
216 symbol:
217 name: netscaler.tcpTotRxPkts
218 OID: 1.3.6.1.4.1.5951.4.1.1.46.61.0
219 - metric_type: monotonic_count
220 - description: TCP packets received
221 - unit: "{packet}"
219 + description: TCP packets received
220 + unit: "{packet}"
221 + metric_type: monotonic_count
222 - MIB: NS-ROOT-MIB
223 symbol:
224 name: netscaler.tcpTotTxPkts
225 OID: 1.3.6.1.4.1.5951.4.1.1.46.63.0
226 - metric_type: monotonic_count
227 - description: TCP packets transmitted
228 - unit: "{packet}"
226 + description: TCP packets transmitted
227 + unit: "{packet}"
228 + metric_type: monotonic_count
229 - MIB: NS-ROOT-MIB
230 symbol:
231 name: netscaler.httpTotGets
232 OID: 1.3.6.1.4.1.5951.4.1.1.48.45.0
233 - metric_type: monotonic_count
234 - description: HTTP requests received using the GET method
235 - unit: "{request}"
233 + description: HTTP requests received using the GET method
234 + unit: "{request}"
235 + metric_type: monotonic_count
236 - MIB: NS-ROOT-MIB
237 symbol:
238 name: netscaler.httpTotPosts
239 OID: 1.3.6.1.4.1.5951.4.1.1.48.46.0
240 - metric_type: monotonic_count
241 - description: HTTP requests received using the POST method
242 - unit: "{request}"
240 + description: HTTP requests received using the POST method
241 + unit: "{request}"
242 + metric_type: monotonic_count
243 - MIB: NS-ROOT-MIB
244 symbol:
245 name: netscaler.httpTotOthers
246 OID: 1.3.6.1.4.1.5951.4.1.1.48.47.0
247 - metric_type: monotonic_count
248 - description: HTTP requests received using methods other than GET and POST
249 - unit: "{request}"
247 + description: HTTP requests received using methods other than GET and POST
248 + unit: "{request}"
249 + metric_type: monotonic_count
250 - MIB: NS-ROOT-MIB
251 symbol:
252 name: netscaler.httpTotRxRequestBytes
253 OID: 1.3.6.1.4.1.5951.4.1.1.48.48.0
254 - metric_type: monotonic_count
255 - description: Bytes of HTTP data received
256 - unit: "By"
254 + description: Bytes of HTTP data received
255 + unit: "By"
256 + metric_type: monotonic_count
257 - MIB: NS-ROOT-MIB
258 symbol:
259 name: netscaler.httpTotRxResponseBytes
260 OID: 1.3.6.1.4.1.5951.4.1.1.48.49.0
261 - metric_type: monotonic_count
262 - description: Bytes received as response data
263 - unit: "By"
261 + description: Bytes received as response data
262 + unit: "By"
263 + metric_type: monotonic_count
264 - MIB: NS-ROOT-MIB
265 symbol:
266 name: netscaler.httpTotTxRequestBytes
267 OID: 1.3.6.1.4.1.5951.4.1.1.48.50.0
268 - metric_type: monotonic_count
269 - description: Bytes of HTTP data transmitted
270 - unit: "By"
268 + description: Bytes of HTTP data transmitted
269 + unit: "By"
270 + metric_type: monotonic_count
271 - MIB: NS-ROOT-MIB
272 symbol:
273 name: netscaler.httpTotTxResponseBytes
274 OID: 1.3.6.1.4.1.5951.4.1.1.48.51.0
275 - metric_type: monotonic_count
276 - description: Bytes transmitted as response data
277 - unit: "By"
275 + description: Bytes transmitted as response data
276 + unit: "By"
277 + metric_type: monotonic_count
278 - MIB: NS-ROOT-MIB
279 symbol:
280 name: netscaler.httpTot10Requests
281 OID: 1.3.6.1.4.1.5951.4.1.1.48.52.0
282 - metric_type: monotonic_count
283 - description: HTTP/1.0 requests received
284 - unit: "{request}"
282 + description: HTTP/1.0 requests received
283 + unit: "{request}"
284 + metric_type: monotonic_count
285 - MIB: NS-ROOT-MIB
286 symbol:
287 name: netscaler.httpTotResponses
288 OID: 1.3.6.1.4.1.5951.4.1.1.48.53.0
289 - metric_type: monotonic_count
290 - description: HTTP responses sent including HTTP/1.0 and HTTP/1.1 responses
291 - unit: "{response}"
289 + description: HTTP responses sent including HTTP/1.0 and HTTP/1.1 responses
290 + unit: "{response}"
291 + metric_type: monotonic_count
292 - MIB: NS-ROOT-MIB
293 symbol:
294 name: netscaler.httpTot10Responses
295 OID: 1.3.6.1.4.1.5951.4.1.1.48.54.0
296 - metric_type: monotonic_count
297 - description: HTTP/1.0 responses sent
298 - unit: "{response}"
296 + description: HTTP/1.0 responses sent
297 + unit: "{response}"
298 + metric_type: monotonic_count
299 - MIB: NS-ROOT-MIB
300 symbol:
301 name: netscaler.httpErrIncompleteRequests
302 OID: 1.3.6.1.4.1.5951.4.1.1.48.57.0
303 - metric_type: monotonic_count
304 - description: HTTP requests received with incomplete headers
305 - unit: "{request}"
303 + description: HTTP requests received with incomplete headers
304 + unit: "{request}"
305 + metric_type: monotonic_count
306 - MIB: NS-ROOT-MIB
307 symbol:
308 name: netscaler.httpErrIncompleteResponses
309 OID: 1.3.6.1.4.1.5951.4.1.1.48.58.0
310 - metric_type: monotonic_count
311 - description: HTTP responses received with incomplete headers
312 - unit: "{response}"
310 + description: HTTP responses received with incomplete headers
311 + unit: "{response}"
312 + metric_type: monotonic_count
313 - MIB: NS-ROOT-MIB
314 symbol:
315 name: netscaler.httpErrIncompleteHeaders
316 OID: 1.3.6.1.4.1.5951.4.1.1.48.60.0
317 - metric_type: monotonic_count
318 - description: HTTP requests and responses with incomplete headers
319 - unit: "{header}"
317 + description: HTTP requests and responses with incomplete headers
318 + unit: "{header}"
319 + metric_type: monotonic_count
320 - MIB: NS-ROOT-MIB
321 symbol:
322 name: netscaler.httpErrServerBusy
323 OID: 1.3.6.1.4.1.5951.4.1.1.48.61.0
324 - metric_type: monotonic_count
325 - description: HTTP error responses indicating server busy
326 - unit: "{error}"
324 + description: HTTP error responses indicating server busy
325 + unit: "{error}"
326 + metric_type: monotonic_count
327 - MIB: NS-ROOT-MIB
328 symbol:
329 name: netscaler.svcTotalClients
330 OID: 1.3.6.1.4.1.5951.4.1.2.1.1.48.0
331 - metric_type: monotonic_count
332 - description: Total number of established client connections
333 - unit: "{connection}"
331 + description: Total number of established client connections
332 + unit: "{connection}"
333 + metric_type: monotonic_count
334 - MIB: NS-ROOT-MIB
335 symbol:
336 name: netscaler.svcTotalServers
337 OID: 1.3.6.1.4.1.5951.4.1.2.1.1.49.0
338 - metric_type: monotonic_count
339 - description: Total number of established server connections
340 - unit: "{connection}"
338 + description: Total number of established server connections
339 + unit: "{connection}"
340 + metric_type: monotonic_count
341 - MIB: NS-ROOT-MIB
342 table:
343 name: vserverTable
@@ -554,21 +554,21 @@ metrics:
554 symbol:
555 name: netscaler.tcpCurClientConn
556 OID: 1.3.6.1.4.1.5951.4.1.1.46.2.0
557 - description: Client connections including opening, established, and closing states
558 - unit: "{connection}"
557 + description: Client connections including opening, established, and closing states
558 + unit: "{connection}"
559 - MIB: NS-ROOT-MIB
560 symbol:
561 name: netscaler.tcpCurServerConnEstablished
562 OID: 1.3.6.1.4.1.5951.4.1.1.46.10.0
563 - description: Current server connections in the established state
564 - unit: "{connection}"
563 + description: Current server connections in the established state
564 + unit: "{connection}"
565 - MIB: NS-ROOT-MIB
566 symbol:
567 name: netscaler.sslTotSessions
568 OID: 1.3.6.1.4.1.5951.4.1.1.47.204.0
569 - metric_type: monotonic_count
570 - description: Number of SSL sessions on the NetScaler appliance
571 - unit: "{session}"
569 + description: Number of SSL sessions on the NetScaler appliance
570 + unit: "{session}"
571 + metric_type: monotonic_count
572 - MIB: NS-ROOT-MIB
573 table:
574 name: lbvserverTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cradlepoint.yaml
+28 -21
@@ -64,39 +64,46 @@ metrics:
64 symbols:
65 - name: cradlepoint.mdmSignalStrength
66 OID: 1.3.6.1.4.1.20992.1.2.2.1.4
67 - description: The cellular modems signal strength, given in dBm's.
68 - family: Cellular/Modem/Signal/Strength
69 - unit: "dBm"
67 + chart_meta:
68 + description: The cellular modems signal strength, given in dBm's.
69 + family: Cellular/Modem/Signal/Strength
70 + unit: "dBm"
71 - name: cradlepoint.mdmECIO
72 OID: 1.3.6.1.4.1.20992.1.2.2.1.6
72 - description: The cellular modems Ec/Io ratio given in dBm's.
73 - family: Cellular/Modem/Signal/ECIO
74 - unit: "dBm"
73 + chart_meta:
74 + description: The cellular modems Ec/Io ratio given in dBm's.
75 + family: Cellular/Modem/Signal/ECIO
76 + unit: "dBm"
77 - name: cradlepoint.mdmCINR
78 OID: 1.3.6.1.4.1.20992.1.2.2.1.12
77 - description: The cellular modems CINR ratio given in dBm's.
78 - family: Cellular/Modem/Signal/CINR
79 - unit: "dBm"
79 + chart_meta:
80 + description: The cellular modems CINR ratio given in dBm's.
81 + family: Cellular/Modem/Signal/CINR
82 + unit: "dBm"
83 - name: cradlepoint.mdmSINR
84 OID: 1.3.6.1.4.1.20992.1.2.2.1.13
82 - description: The cellular modems SINR ratio given in dBm's.
83 - family: Cellular/Modem/Signal/SINR
84 - unit: "dBm"
85 + chart_meta:
86 + description: The cellular modems SINR ratio given in dBm's.
87 + family: Cellular/Modem/Signal/SINR
88 + unit: "dBm"
89 - name: cradlepoint.mdmRSRP
90 OID: 1.3.6.1.4.1.20992.1.2.2.1.14
87 - description: The cellular modems RSRP given in dBm's.
88 - family: Cellular/Modem/Signal/RSRP
89 - unit: "dBm"
91 + chart_meta:
92 + description: The cellular modems RSRP given in dBm's.
93 + family: Cellular/Modem/Signal/RSRP
94 + unit: "dBm"
95 - name: cradlepoint.mdmRSRQ
96 OID: 1.3.6.1.4.1.20992.1.2.2.1.15
92 - description: The cellular modems RSRQ given in dBm's.
93 - family: Cellular/Modem/Signal/RSRQ
94 - unit: "dBm"
97 + chart_meta:
98 + description: The cellular modems RSRQ given in dBm's.
99 + family: Cellular/Modem/Signal/RSRQ
100 + unit: "dBm"
101 - OID: 1.3.6.1.4.1.20992.1.2.2.1.5
102 name: cradlepoint.mdmStatus
97 - description: Modem Status
98 - family: Cellular/Modem/Connection/Status
99 - unit: "{status}"
103 + chart_meta:
104 + description: Modem Status
105 + family: Cellular/Modem/Connection/Status
106 + unit: "{status}"
107 mapping:
108 1: established
109 2: establishing
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cyberpower-pdu.yaml
+152 -114
@@ -19,9 +19,10 @@ metrics:
19 symbols:
20 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.2
21 name: cyberpower.ePDULoadStatusLoad
22 - description: "Phase/bank load"
23 - family: Load/Current
24 - unit: "dA"
22 + chart_meta:
23 + description: "Phase/bank load"
24 + family: Load/Current
25 + unit: "dA"
26 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.3
27 name: ePDULoadStatusLoadState
28 family: Load/Status
@@ -33,24 +34,28 @@ metrics:
34 4: LoadOverload
35 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.6
36 name: cyberpower.ePDULoadStatusVoltage
36 - description: "Phase/bank voltage measured"
37 - family: Voltage/Value
38 - unit: "dV"
37 + chart_meta:
38 + description: "Phase/bank voltage measured"
39 + family: Voltage/Value
40 + unit: "dV"
41 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.7
42 name: cyberpower.ePDULoadStatusActivePower
41 - description: "Phase/bank active power"
42 - family: Power/Active
43 - unit: "W"
43 + chart_meta:
44 + description: "Phase/bank active power"
45 + family: Power/Active
46 + unit: "W"
47 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.8
48 name: cyberpower.ePDULoadStatusApparentPower
46 - description: "Phase/bank apparent power"
47 - family: Power/Apparent
48 - unit: "VA"
49 + chart_meta:
50 + description: "Phase/bank apparent power"
51 + family: Power/Apparent
52 + unit: "VA"
53 - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.9
54 name: cyberpower.ePDULoadStatusPowerFactor
51 - description: "Power factor of the output"
52 - family: Power/Factor
53 - unit: "%"
55 + chart_meta:
56 + description: "Power factor of the output"
57 + family: Power/Factor
58 + unit: "%"
59 metric_tags:
60 - symbol:
61 OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.1
@@ -63,9 +68,10 @@ metrics:
68 symbols:
69 - OID: 1.3.6.1.4.1.3808.1.1.3.2.4.1.1.5
70 name: ePDULoadBankConfigAlarm
66 - description: Bank Alarm
67 - family: Bank/Alarm/Status
68 - unit: "{status}"
71 + chart_meta:
72 + description: Bank Alarm
73 + family: Bank/Alarm/Status
74 + unit: "{status}"
75 mapping:
76 1: noLoadAlarm
77 2: underCurrentAlarm
@@ -83,27 +89,31 @@ metrics:
89 symbols:
90 - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.7
91 name: cyberpower.ePDUOutletStatusLoad
86 - description: "Measured Outlet load for an Outlet Monitored Rack PDU"
87 - family: Outlet/Load/Current
88 - unit: "dA"
92 + chart_meta:
93 + description: "Measured Outlet load for an Outlet Monitored Rack PDU"
94 + family: Outlet/Load/Current
95 + unit: "dA"
96 - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.8
97 name: cyberpower.ePDUOutletStatusActivePower
91 - description: "Measured Outlet load for an Outlet Monitored Rack PDU"
92 - family: Outlet/Power/Active
93 - unit: "W"
98 + chart_meta:
99 + description: "Measured Outlet load for an Outlet Monitored Rack PDU"
100 + family: Outlet/Power/Active
101 + unit: "W"
102 - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.4
103 name: ePDUOutletStatusOutletState
96 - description: Outlet state
97 - family: Outlet/Operational/Status
98 - unit: "{status}"
104 + chart_meta:
105 + description: Outlet state
106 + family: Outlet/Operational/Status
107 + unit: "{status}"
108 mapping:
109 1: outletStatusOn
110 2: outletStatusOff
111 - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.9
112 name: ePDUOutletStatusAlarm
104 - description: Outlet Alarm
105 - family: Outlet/Alarm/Status
106 - unit: "{status}"
113 + chart_meta:
114 + description: Outlet Alarm
115 + family: Outlet/Alarm/Status
116 + unit: "{status}"
117 mapping:
118 1: noLoadAlarm
119 2: underCurrentAlarm
@@ -122,9 +132,10 @@ metrics:
132 symbol:
133 OID: 1.3.6.1.4.1.3808.1.1.3.4.1.1
134 name: ePDUPowerSupply1Status
125 - description: Power Supply 1 Status
126 - family: PowerSupply/1/Operational/Status
127 - unit: "{status}"
135 + chart_meta:
136 + description: Power Supply 1 Status
137 + family: PowerSupply/1/Operational/Status
138 + unit: "{status}"
139 mapping:
140 1: powerSupplyOneOk
141 2: powerSupplyOneFailed
@@ -132,9 +143,10 @@ metrics:
143 symbol:
144 OID: 1.3.6.1.4.1.3808.1.1.3.4.1.2
145 name: ePDUPowerSupply2Status
135 - description: Power Supply 2 Status
136 - family: PowerSupply/2/Operational/Status
137 - unit: "{status}"
146 + chart_meta:
147 + description: Power Supply 2 Status
148 + family: PowerSupply/2/Operational/Status
149 + unit: "{status}"
150 mapping:
151 1: powerSupplyTwoOk
152 2: powerSupplyTwoFailed
@@ -161,9 +173,10 @@ metrics:
173 symbols:
174 - OID: 1.3.6.1.4.1.3808.1.1.3.5.2.1.3
175 name: ePDUStatusBankState
164 - description: Bank load state
165 - family: Bank/Load/Status
166 - unit: "{status}"
176 + chart_meta:
177 + description: Bank load state
178 + family: Bank/Load/Status
179 + unit: "{status}"
180 mapping:
181 1: bankLoadNormal
182 2: bankLoadLow
@@ -185,9 +198,10 @@ metrics:
198 symbols:
199 - OID: 1.3.6.1.4.1.3808.1.1.3.5.4.1.3
200 name: ePDUStatusPhaseState
188 - description: Phase load state
189 - family: Phase/Load/Status
190 - unit: "{status}"
201 + chart_meta:
202 + description: Phase load state
203 + family: Phase/Load/Status
204 + unit: "{status}"
205 mapping:
206 1: phase_load_normal
207 2: phase_load_low
@@ -209,9 +223,10 @@ metrics:
223 symbols:
224 - OID: 1.3.6.1.4.1.3808.1.1.3.5.6.1.3
225 name: ePDUStatusOutletState
212 - description: Outlet load state
213 - family: Outlet/Load/Status
214 - unit: "{status}"
226 + chart_meta:
227 + description: Outlet load state
228 + family: Outlet/Load/Status
229 + unit: "{status}"
230 mapping:
231 1: outletLoadNormal
232 2: outletLoadLow
@@ -230,16 +245,18 @@ metrics:
245 symbol:
246 OID: 1.3.6.1.4.1.3808.1.1.3.5.7
247 name: cyberpower.ePDUStatusInputVoltage
233 - description: "Input voltage"
234 - family: Input/Voltage/Value
235 - unit: "dV"
248 + chart_meta:
249 + description: "Input voltage"
250 + family: Input/Voltage/Value
251 + unit: "dV"
252 - MIB: CPS-MIB
253 symbol:
254 OID: 1.3.6.1.4.1.3808.1.1.3.5.8
255 name: cyberpower.ePDUStatusInputFrequency
240 - description: "Input frequency"
241 - family: Input/Frequency/Value
242 - unit: "dHz"
256 + chart_meta:
257 + description: "Input frequency"
258 + family: Input/Frequency/Value
259 + unit: "dHz"
260 - MIB: CPS-MIB
261 table:
262 OID: 1.3.6.1.4.1.3808.1.1.6.3.4
@@ -247,38 +264,44 @@ metrics:
264 symbols:
265 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.5
266 name: cyberpower.ePDU2DeviceStatusCurrentLoad
250 - description: "Power consumption of the Rack PDU load"
251 - family: Rack/Load/Current
252 - unit: "dA"
267 + chart_meta:
268 + description: "Power consumption of the Rack PDU load"
269 + family: Rack/Load/Current
270 + unit: "dA"
271 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.6
272 name: cyberpower.ePDU2DeviceStatusCurrentPeakLoad
255 - description: "Peak power consumption of the Rack PDU load"
256 - family: Rack/Load/Current/Peak
257 - unit: "dA/s"
273 + chart_meta:
274 + description: "Peak power consumption of the Rack PDU load"
275 + family: Rack/Load/Current/Peak
276 + unit: "dA/s"
277 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.15
278 name: cyberpower.ePDU2DeviceStatusApparentPower
260 - description: "Apparent power consumption of the Rack PDU load"
261 - family: Rack/Power/Apparent
262 - unit: "VA"
279 + chart_meta:
280 + description: "Apparent power consumption of the Rack PDU load"
281 + family: Rack/Power/Apparent
282 + unit: "VA"
283 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.16
284 name: cyberpower.ePDU2DeviceStatusPowerFactor
265 - description: "Power factor of the Rack PDU load"
266 - family: Rack/Power/Factor
267 - unit: "%"
285 + chart_meta:
286 + description: "Power factor of the Rack PDU load"
287 + family: Rack/Power/Factor
288 + unit: "%"
289 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.17
290 name: ePDU2DeviceStatusRoleType
270 - description: Rack PDU role on Daisy Chain group
271 - family: Rack/Role/Status
272 - unit: "{status}"
291 + chart_meta:
292 + description: Rack PDU role on Daisy Chain group
293 + family: Rack/Role/Status
294 + unit: "{status}"
295 mapping:
296 1: standalone
297 2: host
298 3: slave
299 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.4
300 name: ePDU2DeviceStatusLoadState
279 - description: Rack PDU load state
280 - family: Rack/Load/Status
281 - unit: "{status}"
301 + chart_meta:
302 + description: Rack PDU load state
303 + family: Rack/Load/Status
304 + unit: "{status}"
305 mapping:
306 1: noLoadAlarm
307 2: underCurrentAlarm
@@ -287,25 +310,28 @@ metrics:
310 - symbol:
311 OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.12
312 name: ePDU2DeviceStatusPowerSupplyAlarm
290 - description: Rack PDU Power Supply alarm
291 - family: Rack/PowerSupply/Alarm/Status
292 - unit: "{status}"
313 + chart_meta:
314 + description: Rack PDU Power Supply alarm
315 + family: Rack/PowerSupply/Alarm/Status
316 + unit: "{status}"
317 mapping:
318 1: normal
319 2: alarm
320 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.13
321 name: ePDU2DeviceStatusPowerSupply1Status
298 - description: Rack PDU Power Supply 1 alarm
299 - family: Rack/PowerSupply/1/Alarm/Status
300 - unit: "{status}"
322 + chart_meta:
323 + description: Rack PDU Power Supply 1 alarm
324 + family: Rack/PowerSupply/1/Alarm/Status
325 + unit: "{status}"
326 mapping:
327 1: normal
328 2: alarm
329 - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.14
330 name: ePDU2DeviceStatusPowerSupply2Status
306 - description: Rack PDU Power Supply 2 alarm
307 - family: Rack/PowerSupply/2/Alarm/Status
308 - unit: "{status}"
331 + chart_meta:
332 + description: Rack PDU Power Supply 2 alarm
333 + family: Rack/PowerSupply/2/Alarm/Status
334 + unit: "{status}"
335 mapping:
336 1: normal
337 2: alarm
@@ -325,34 +351,40 @@ metrics:
351 symbols:
352 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.5
353 name: cyberpower.ePDU2PhaseStatusLoad
328 - description: "Current draw of the load on the Rack PDU phase"
329 - family: Rack/Phase/Load/Current
330 - unit: "dA"
354 + chart_meta:
355 + description: "Current draw of the load on the Rack PDU phase"
356 + family: Rack/Phase/Load/Current
357 + unit: "dA"
358 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.6
359 name: cyberpower.ePDU2PhaseStatusVoltage
333 - description: "Voltage of the Rack PDU phase"
334 - family: Rack/Phase/Voltage/Value
335 - unit: "V"
360 + chart_meta:
361 + description: "Voltage of the Rack PDU phase"
362 + family: Rack/Phase/Voltage/Value
363 + unit: "V"
364 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.7
365 name: cyberpower.ePDU2PhaseStatusPower
338 - description: "Load power consumed on the Rack PDU phase"
339 - family: Rack/Phase/Power/Active
340 - unit: "kW"
366 + chart_meta:
367 + description: "Load power consumed on the Rack PDU phase"
368 + family: Rack/Phase/Power/Active
369 + unit: "kW"
370 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.8
371 name: cyberpower.ePDU2PhaseStatusApparentPower
343 - description: "Load apparent power consumed on the Rack PDU phase"
344 - family: Rack/Phase/Power/Apparent
345 - unit: "mkVA"
372 + chart_meta:
373 + description: "Load apparent power consumed on the Rack PDU phase"
374 + family: Rack/Phase/Power/Apparent
375 + unit: "mkVA"
376 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.9
377 name: cyberpower.ePDU2PhaseStatusPowerFactor
348 - description: "Load power factor of the Rack PDU phase"
349 - family: Rack/Phase/Power/Factor
350 - unit: "%"
378 + chart_meta:
379 + description: "Load power factor of the Rack PDU phase"
380 + family: Rack/Phase/Power/Factor
381 + unit: "%"
382 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.10
383 name: cyberpower.ePDU2PhaseStatusPeakLoad
353 - description: "Peak current of the Rack PDU phase load in tenths of Amps"
354 - family: Rack/Phase/Load/Current/Peak
355 - unit: "dA/s"
384 + chart_meta:
385 + description: "Peak current of the Rack PDU phase load in tenths of Amps"
386 + family: Rack/Phase/Load/Current/Peak
387 + unit: "dA/s"
388 - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.4
389 name: ePDU2PhaseStatusLoadState
390 description:
@@ -375,14 +407,16 @@ metrics:
407 symbols:
408 - OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.5
409 name: cyberpower.ePDU2BankStatusLoad
378 - description: "Current draw of the load on the Rack PDU bank"
379 - family: Rack/Bank/Load/Current
380 - unit: "dA"
410 + chart_meta:
411 + description: "Current draw of the load on the Rack PDU bank"
412 + family: Rack/Bank/Load/Current
413 + unit: "dA"
414 - OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.6
415 name: cyberpower.ePDU2BankStatusPeakLoad
383 - description: "Peak current of the Rack PDU bank load in tenths of Amps"
384 - family: Rack/Bank/Load/Current/Peak
385 - unit: "dA/s"
416 + chart_meta:
417 + description: "Peak current of the Rack PDU bank load in tenths of Amps"
418 + family: Rack/Bank/Load/Current/Peak
419 + unit: "dA/s"
420 - OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.4
421 name: ePDU2BankStatusLoadState
422 description: Load status of the Rack PDU bank
@@ -407,9 +441,10 @@ metrics:
441 symbols:
442 - OID: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5
443 name: ePDU2OutletSwitchedStatusState
410 - description: Switch state of the Rack PDU switched outlet
411 - family: Rack/Outlet/Switched/Status
412 - unit: "{status}"
444 + chart_meta:
445 + description: Switch state of the Rack PDU switched outlet
446 + family: Rack/Outlet/Switched/Status
447 + unit: "{status}"
448 mapping:
449 1: outletStatusOn
450 2: outletStatusOff
@@ -426,23 +461,26 @@ metrics:
461 symbol:
462 OID: 1.3.6.1.4.1.3808.1.1.4.2.1.0
463 name: cyberpower.envirTemperature
429 - description: "Environment temperature"
430 - family: Environment/Temperature/Value
431 - unit: "degF/10"
464 + chart_meta:
465 + description: "Environment temperature"
466 + family: Environment/Temperature/Value
467 + unit: "degF/10"
468 - MIB: CPS-MIB
469 symbol:
470 OID: 1.3.6.1.4.1.3808.1.1.4.2.6.0
471 name: cyberpower.envirTemperatureCelsius
436 - description: "Environment temperature expressed in Celsius"
437 - family: Environment/Temperature/Value
438 - unit: "Cel"
472 + chart_meta:
473 + description: "Environment temperature expressed in Celsius"
474 + family: Environment/Temperature/Value
475 + unit: "Cel"
476 - MIB: CPS-MIB
477 symbol:
478 OID: 1.3.6.1.4.1.3808.1.1.4.3.1.0
479 name: cyberpower.envirHumidity
443 - description: "Environment relative humidity expressed in persentage"
444 - family: Environment/Humidity/Value
445 - unit: "%"
480 + chart_meta:
481 + description: "Environment relative humidity expressed in percentage"
482 + family: Environment/Humidity/Value
483 + unit: "%"
484 metric_tags:
485 - OID: 1.3.6.1.4.1.3808.1.1.3.1.1.0
486 symbol: ePDUIdentName
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-force10.yaml
+4 -4
@@ -16,11 +16,11 @@ metrics:
16 symbol:
17 OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.4
18 name: cpu.usage
19 - description: Cpu utilization in percentage for last 5 minutes.
20 - unit: "%"
19 + description: Cpu utilization in percentage for last 5 minutes.
20 + unit: "%"
21 - MIB: F10-S-SERIES-CHASSIS-MIB
22 symbol:
23 OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.5
24 name: memory.usage
25 - description: Total memory usage in percentage.
26 - unit: "%"
25 + description: Total memory usage in percentage.
26 + unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-os10.yaml
+15 -28
@@ -25,8 +25,9 @@ metrics:
25 symbols:
26 - OID: 1.3.6.1.2.1.25.3.3.1.2
27 name: cpu.usage
28 - description: "Average over the last minute of the percentage of time that this processor was not idle"
29 - unit: "%"
28 + chart_meta:
29 + description: "Average over the last minute of the percentage of time that this processor was not idle"
30 + unit: "%"
31 metric_tags:
32 - tag: hr_processor_frw_id
33 symbol:
@@ -36,20 +37,23 @@ metrics:
37 symbol:
38 name: memory.total
39 OID: 1.3.6.1.2.1.25.2.3.1.5.1
39 - description: "Size of the storage represented by this entry in units of hrStorageAllocationUnits"
40 - unit: "kBy"
40 + chart_meta:
41 + description: "Size of the storage represented by this entry in units of hrStorageAllocationUnits"
42 + unit: "kBy"
43 - MIB: HOST-RESOURCES-MIB
44 symbol:
45 name: memory.used
46 OID: 1.3.6.1.2.1.25.2.3.1.6.1
45 - description: "Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits"
46 - unit: "kBy"
47 + chart_meta:
48 + description: "Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits"
49 + unit: "kBy"
50 - MIB: DELLEMC-OS10-CHASSIS-MIB
51 symbol:
52 name: dell.os10ChassisTemp
53 OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.11
51 - description: "Temperature of the chassis"
52 - unit: "{temperature}"
54 + chart_meta:
55 + description: "Temperature of the chassis"
56 + unit: "{temperature}"
57 - MIB: DELLEMC-OS10-CHASSIS-MIB
58 table:
59 OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4
@@ -57,8 +61,9 @@ metrics:
61 symbols:
62 - OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.5
63 name: dell.os10CardTemp
60 - description: "Temperature of the card"
61 - unit: "{temperature}"
64 + chart_meta:
65 + description: "Temperature of the card"
66 + unit: "{temperature}"
67 # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
68 metric_tags:
69 - symbol:
@@ -203,50 +208,34 @@ metrics:
208 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.6
209 name: dell.os10bgp4V2PeerLocalPort
210 tag: dell_os10bgp4_v2_peer_local_port
206 - description: "Local port for the TCP connection between the BGP peers"
207 - unit: "{port}"
211 - symbol:
212 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.7
213 name: dell.os10bgp4V2PeerLocalAs
214 tag: dell_os10bgp4_v2_peer_local_as
212 - description: "AS that this peering session is representing itself as to the remote peer"
213 - unit: "1"
215 - symbol:
216 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.8
217 name: dell.os10bgp4V2PeerLocalIdentifier
218 tag: dell_os10bgp4_v2_peer_local_identifier
218 - description: "BGP Identifier of the local system for this peering session"
219 - unit: "{identifier}"
219 - symbol:
220 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.9
221 name: dell.os10bgp4V2PeerRemotePort
222 tag: dell_os10bgp4_v2_peer_remote_port
224 - description: "Remote port for the TCP connection between the BGP peers"
225 - unit: "{port}"
223 - symbol:
224 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.10
225 name: dell.os10bgp4V2PeerRemoteAs
226 tag: dell_os10bgp4_v2_peer_remote_as
230 - description: "Remote autonomous system number received in the BGP OPEN message"
231 - unit: "1"
227 - symbol:
228 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.11
229 name: dell.os10bgp4V2PeerRemoteIdentifier
230 tag: dell_os10bgp4_v2_peer_remote_identifier
236 - description: "BGP Identifier of this entry's remote BGP peer"
237 - unit: "{identifier}"
231 - symbol:
232 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.14
233 name: dell.os10bgp4V2PeerDescription
234 tag: dell_os10bgp4_v2_peer_description
242 - description: "User configured description identifying this peer"
243 - unit: "TBD"
235 - symbol:
236 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.12
237 name: dell.os10bgp4V2PeerAdminStatus
238 tag: dell_os10bgp4_v2_peer_admin_status
248 - description: "Whether the BGP FSM for this remote peer is halted or running"
249 - unit: "TBD"
239 mapping:
240 1: halted
241 2: running
@@ -254,8 +243,6 @@ metrics:
243 OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.13
244 name: dell.os10bgp4V2PeerState
245 tag: dell_os10bgp4_v2_peer_state
257 - description: "BGP peer connection state"
258 - unit: "TBD"
246 mapping:
247 1: idle
248 2: connect
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-powerconnect.yaml
+6 -6
@@ -99,20 +99,20 @@ metrics:
99 name: cpu.usage
100 OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.9.0
101 extract_value: 60 Secs.*?(\d+[.]?\d+)
102 - description: "Cpu usage in percent over 60 seconds"
103 - unit: "%"
102 + description: "Cpu usage in percent over 60 seconds"
103 + unit: "%"
104 - MIB: DNOS-SWITCHING-MIB
105 symbol:
106 name: memory.free
107 OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.1.0
108 - description: "Amount of free memory"
109 - unit: "By"
108 + description: "Amount of free memory"
109 + unit: "By"
110 - MIB: DNOS-SWITCHING-MIB
111 symbol:
112 name: memory.total
113 OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.2.0
114 - description: "Total amount of memory"
115 - unit: "By"
114 + description: "Total amount of memory"
115 + unit: "By"
116 # - MIB: Dell-Vendor-MIB
117 # symbol:
118 # name: productStatusGlobalStatus
src/go/plugin/go.d/config/go.d/snmp.profiles/default/exagrid.yaml
+30 -30
@@ -19,92 +19,92 @@ metrics:
19 symbol:
20 OID: 1.3.6.1.4.1.14941.4.1.1.0
21 name: egLandingSpaceConfiguredWholeGigabytes
22 - description: The amount of configured landing space scaled to GigaBytes (10^9) bytes
23 - unit: "By"
22 + description: The amount of configured landing space scaled to GigaBytes (10^9) bytes
23 + unit: "By"
24 - MIB: EXAGRID-MIB
25 symbol:
26 OID: 1.3.6.1.4.1.14941.4.1.2.0
27 name: egLandingSpaceConfiguredFractionalGigabytes
28 - description: The amount of configured landing space below 1 Gigabyte in bytes
29 - unit: "By"
28 + description: The amount of configured landing space below 1 Gigabyte in bytes
29 + unit: "By"
30 - MIB: EXAGRID-MIB
31 symbol:
32 OID: 1.3.6.1.4.1.14941.4.1.3.0
33 name: egLandingSpaceAvailableWholeGigabytes
34 - description: The amount of available landing space scaled to GigaBytes (10^9) bytes
35 - unit: "By"
34 + description: The amount of available landing space scaled to GigaBytes (10^9) bytes
35 + unit: "By"
36 - MIB: EXAGRID-MIB
37 symbol:
38 OID: 1.3.6.1.4.1.14941.4.1.4.0
39 name: egLandingSpaceAvailableFractionalGigabytes
40 - description: The amount of available landing space below 1 Gigabyte in bytes
41 - unit: "By"
40 + description: The amount of available landing space below 1 Gigabyte in bytes
41 + unit: "By"
42 - MIB: EXAGRID-MIB
43 symbol:
44 OID: 1.3.6.1.4.1.14941.4.2.1.0
45 name: egRetentionSpaceConfiguredWholeGigabytes
46 - description: The amount of configured retention space scaled to GigaBytes (10^9) bytes
47 - unit: "By"
46 + description: The amount of configured retention space scaled to GigaBytes (10^9) bytes
47 + unit: "By"
48 - MIB: EXAGRID-MIB
49 symbol:
50 OID: 1.3.6.1.4.1.14941.4.2.2.0
51 name: egRetentionSpaceConfiguredFractionalGigabytes
52 - description: The amount of configured retention space below 1 Gigabyte in bytes
53 - unit: "By"
52 + description: The amount of configured retention space below 1 Gigabyte in bytes
53 + unit: "By"
54 - MIB: EXAGRID-MIB
55 symbol:
56 OID: 1.3.6.1.4.1.14941.4.2.3.0
57 name: egRetentionSpaceAvailableWholeGigabytes
58 - description: The amount of available retention space scaled to GigaBytes (10^9) bytes
59 - unit: "By"
58 + description: The amount of available retention space scaled to GigaBytes (10^9) bytes
59 + unit: "By"
60 - MIB: EXAGRID-MIB
61 symbol:
62 OID: 1.3.6.1.4.1.14941.4.2.4.0
63 name: egRetentionSpaceAvailableFractionalGigabytes
64 - description: The amount of available retention space below 1 Gigabyte in bytes
65 - unit: "By"
64 + description: The amount of available retention space below 1 Gigabyte in bytes
65 + unit: "By"
66 - MIB: EXAGRID-MIB
67 symbol:
68 OID: 1.3.6.1.4.1.14941.4.3.1.0
69 name: egBackupDataAvailableWholeGigabytes
70 - description: The amount of data available for restore by a backup application scaled to GigaBytes (10^9) bytes
71 - unit: "By"
70 + description: The amount of data available for restore by a backup application scaled to GigaBytes (10^9) bytes
71 + unit: "By"
72 - MIB: EXAGRID-MIB
73 symbol:
74 OID: 1.3.6.1.4.1.14941.4.3.2.0
75 name: egBackupDataAvailableFractionalGigabytes
76 - description: The amount of data available for restore by a backup application below 1 Gigabyte in bytes
77 - unit: "By"
76 + description: The amount of data available for restore by a backup application below 1 Gigabyte in bytes
77 + unit: "By"
78 - MIB: EXAGRID-MIB
79 symbol:
80 OID: 1.3.6.1.4.1.14941.4.3.3.0
81 name: egBackupDataSpaceConsumedWholeGigabytes
82 - description: The amount of consumed retention space scaled to GigaBytes (10^9) bytes
83 - unit: "By"
82 + description: The amount of consumed retention space scaled to GigaBytes (10^9) bytes
83 + unit: "By"
84 - MIB: EXAGRID-MIB
85 symbol:
86 OID: 1.3.6.1.4.1.14941.4.3.4.0
87 name: egBackupDataSpaceConsumedFractionalGigabytes
88 - description: The amount of consumed retention space below 1 Gigabyte in bytes
89 - unit: "By"
88 + description: The amount of consumed retention space below 1 Gigabyte in bytes
89 + unit: "By"
90 - MIB: EXAGRID-MIB
91 symbol:
92 OID: 1.3.6.1.4.1.14941.4.4.1.0
93 name: egPendingDeduplicationWholeGigabytes
94 - description: The amount of data not yet deduplicated scaled to GigaBytes (10^9) bytes
95 - unit: "By"
94 + description: The amount of data not yet deduplicated scaled to GigaBytes (10^9) bytes
95 + unit: "By"
96 - MIB: EXAGRID-MIB
97 symbol:
98 OID: 1.3.6.1.4.1.14941.4.4.2.0
99 name: egPendingDeduplicationFractionalGigabytes
100 - description: The amount of data not yet deduplicated below 1 Gigabyte in bytes
101 - unit: "By"
100 + description: The amount of data not yet deduplicated below 1 Gigabyte in bytes
101 + unit: "By"
102 - MIB: EXAGRID-MIB
103 symbol:
104 OID: 1.3.6.1.4.1.14941.4.4.3.0
105 name: egPendingDeduplicationAge
106 - description: The amount of time that data has been available for deduplication, but has not yet been deduplicated
107 - unit: "ms"
106 + description: The amount of time that data has been available for deduplication, but has not yet been deduplicated
107 + unit: "ms"
108 # - MIB: EXAGRID-MIB
109 # symbol:
110 # OID: 1.3.6.1.4.1.14941.4.6
src/go/plugin/go.d/config/go.d/snmp.profiles/default/f5-big-ip.yaml
+62 -62
@@ -61,57 +61,57 @@ metrics:
61 symbol:
62 OID: 1.3.6.1.4.1.3375.2.1.1.2.1.44.0
63 name: sysStatMemoryTotal
64 - description: The total memory available in bytes for TMM (Traffic Management Module)
65 - unit: "By"
64 + description: The total memory available in bytes for TMM (Traffic Management Module)
65 + unit: "By"
66 - MIB: F5-BIGIP-SYSTEM-MIB
67 metric_type: gauge
68 symbol:
69 OID: 1.3.6.1.4.1.3375.2.1.1.2.1.45.0
70 name: sysStatMemoryUsed
71 - description: The memory in use in bytes for TMM (Traffic Management Module)
72 - unit: "By"
71 + description: The memory in use in bytes for TMM (Traffic Management Module)
72 + unit: "By"
73 - MIB: F5-BIGIP-SYSTEM-MIB
74 metric_type: gauge
75 symbol:
76 OID: 1.3.6.1.4.1.3375.2.1.1.2.21.28.0
77 name: sysGlobalTmmStatMemoryTotal
78 - description: The total memory available in bytes for TMM (Traffic Management Module)
79 - unit: "By"
78 + description: The total memory available in bytes for TMM (Traffic Management Module)
79 + unit: "By"
80 - MIB: F5-BIGIP-SYSTEM-MIB
81 metric_type: gauge
82 symbol:
83 OID: 1.3.6.1.4.1.3375.2.1.1.2.21.29.0
84 name: sysGlobalTmmStatMemoryUsed
85 - description: The memory in use in bytes for TMM (Traffic Management Module)
86 - unit: "By"
85 + description: The memory in use in bytes for TMM (Traffic Management Module)
86 + unit: "By"
87 - MIB: F5-BIGIP-SYSTEM-MIB
88 metric_type: gauge
89 symbol:
90 OID: 1.3.6.1.4.1.3375.2.1.1.2.20.44.0
91 name: sysGlobalHostOtherMemoryTotal
92 - description: The total other non-TMM memory in bytes for the system
93 - unit: "By"
92 + description: The total other non-TMM memory in bytes for the system
93 + unit: "By"
94 - MIB: F5-BIGIP-SYSTEM-MIB
95 metric_type: gauge
96 symbol:
97 OID: 1.3.6.1.4.1.3375.2.1.1.2.20.45.0
98 name: sysGlobalHostOtherMemoryUsed
99 - description: The other non-TMM memory in bytes currently in use for the system
100 - unit: "By"
99 + description: The other non-TMM memory in bytes currently in use for the system
100 + unit: "By"
101 - MIB: F5-BIGIP-SYSTEM-MIB
102 metric_type: gauge
103 symbol:
104 OID: 1.3.6.1.4.1.3375.2.1.1.2.20.46.0
105 name: sysGlobalHostSwapTotal
106 - description: The total swap in bytes for the system
107 - unit: "By"
106 + description: The total swap in bytes for the system
107 + unit: "By"
108 - MIB: F5-BIGIP-SYSTEM-MIB
109 metric_type: gauge
110 symbol:
111 OID: 1.3.6.1.4.1.3375.2.1.1.2.20.47.0
112 name: sysGlobalHostSwapUsed
113 - description: The swap in bytes currently in use for the system
114 - unit: "By"
113 + description: The swap in bytes currently in use for the system
114 + unit: "By"
115 # CPU
116 - MIB: F5-BIGIP-SYSTEM-MIB
117 table:
@@ -174,130 +174,130 @@ metrics:
174 symbol:
175 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.2.0
176 name: sysTcpStatOpen
177 - description: The number of current open connections
178 - unit: "{connection}"
177 + description: The number of current open connections
178 + unit: "{connection}"
179 - MIB: F5-BIGIP-SYSTEM-MIB
180 symbol:
181 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.3.0
182 name: sysTcpStatCloseWait
183 - description: The number of current connections in CLOSE-WAIT/LAST-ACK
184 - unit: "{connection}"
183 + description: The number of current connections in CLOSE-WAIT/LAST-ACK
184 + unit: "{connection}"
185 - MIB: F5-BIGIP-SYSTEM-MIB
186 symbol:
187 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.4.0
188 name: sysTcpStatFinWait
189 - description: The number of current connections in FIN-WAIT/CLOSING
190 - unit: "{connection}"
189 + description: The number of current connections in FIN-WAIT/CLOSING
190 + unit: "{connection}"
191 - MIB: F5-BIGIP-SYSTEM-MIB
192 symbol:
193 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.5.0
194 name: sysTcpStatTimeWait
195 - description: The number of current connections in TIME-WAIT
196 - unit: "{connection}"
195 + description: The number of current connections in TIME-WAIT
196 + unit: "{connection}"
197 - MIB: F5-BIGIP-SYSTEM-MIB
198 metric_type: monotonic_count
199 symbol:
200 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.6.0
201 name: sysTcpStatAccepts
202 - description: The number of connections accepted
203 - unit: "{connection}"
202 + description: The number of connections accepted
203 + unit: "{connection}"
204 - MIB: F5-BIGIP-SYSTEM-MIB
205 metric_type: monotonic_count
206 symbol:
207 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.7.0
208 name: sysTcpStatAcceptfails
209 - description: The number of connections not accepted
210 - unit: "{connection}"
209 + description: The number of connections not accepted
210 + unit: "{connection}"
211 - MIB: F5-BIGIP-SYSTEM-MIB
212 metric_type: monotonic_count
213 symbol:
214 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.8.0
215 name: sysTcpStatConnects
216 - description: The number of connections established
217 - unit: "{connection}"
216 + description: The number of connections established
217 + unit: "{connection}"
218 - MIB: F5-BIGIP-SYSTEM-MIB
219 metric_type: monotonic_count
220 symbol:
221 OID: 1.3.6.1.4.1.3375.2.1.1.2.12.9.0
222 name: sysTcpStatConnfails
223 - description: The number of connections failures
224 - unit: "{connection}"
223 + description: The number of connections failures
224 + unit: "{connection}"
225 # UDP stats
226 - MIB: F5-BIGIP-SYSTEM-MIB
227 symbol:
228 OID: 1.3.6.1.4.1.3375.2.1.1.2.13.2.0
229 name: sysUdpStatOpen
230 - description: The number of current open connections
231 - unit: "{connection}"
230 + description: The number of current open connections
231 + unit: "{connection}"
232 - MIB: F5-BIGIP-SYSTEM-MIB
233 metric_type: monotonic_count
234 symbol:
235 OID: 1.3.6.1.4.1.3375.2.1.1.2.13.3.0
236 name: sysUdpStatAccepts
237 - description: The number of connections accepted
238 - unit: "{connection}"
237 + description: The number of connections accepted
238 + unit: "{connection}"
239 - MIB: F5-BIGIP-SYSTEM-MIB
240 metric_type: monotonic_count
241 symbol:
242 OID: 1.3.6.1.4.1.3375.2.1.1.2.13.4.0
243 name: sysUdpStatAcceptfails
244 - description: The number of connections not accepted
245 - unit: "{connection}"
244 + description: The number of connections not accepted
245 + unit: "{connection}"
246 - MIB: F5-BIGIP-SYSTEM-MIB
247 metric_type: monotonic_count
248 symbol:
249 OID: 1.3.6.1.4.1.3375.2.1.1.2.13.5.0
250 name: sysUdpStatConnects
251 - description: The number of connections established
252 - unit: "{connection}"
251 + description: The number of connections established
252 + unit: "{connection}"
253 - MIB: F5-BIGIP-SYSTEM-MIB
254 metric_type: monotonic_count
255 symbol:
256 OID: 1.3.6.1.4.1.3375.2.1.1.2.13.6.0
257 name: sysUdpStatConnfails
258 - description: The number of connections failures
259 - unit: "{connection}"
258 + description: The number of connections failures
259 + unit: "{connection}"
260 - MIB: F5-BIGIP-SYSTEM-MIB
261 symbol:
262 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.2.0
263 name: sysClientsslStatCurConns
264 - description: The current number of concurrent connections with established SSL sessions being maintained by the filter
265 - unit: "{connection}"
264 + description: The current number of concurrent connections with established SSL sessions being maintained by the filter
265 + unit: "{connection}"
266 - MIB: F5-BIGIP-SYSTEM-MIB
267 metric_type: monotonic_count
268 symbol:
269 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.10.0
270 name: sysClientsslStatEncryptedBytesIn
271 - description: The total encrypted bytes received
272 - unit: "By"
271 + description: The total encrypted bytes received
272 + unit: "By"
273 - MIB: F5-BIGIP-SYSTEM-MIB
274 metric_type: monotonic_count
275 symbol:
276 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.11.0
277 name: sysClientsslStatEncryptedBytesOut
278 - description: The total encrypted bytes sent
279 - unit: "By"
278 + description: The total encrypted bytes sent
279 + unit: "By"
280 - MIB: F5-BIGIP-SYSTEM-MIB
281 metric_type: monotonic_count
282 symbol:
283 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.12.0
284 name: sysClientsslStatDecryptedBytesIn
285 - description: The total decrypted bytes received
286 - unit: "By"
285 + description: The total decrypted bytes received
286 + unit: "By"
287 - MIB: F5-BIGIP-SYSTEM-MIB
288 metric_type: monotonic_count
289 symbol:
290 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.13.0
291 name: sysClientsslStatDecryptedBytesOut
292 - description: The total decrypted bytes sent
293 - unit: "By"
292 + description: The total decrypted bytes sent
293 + unit: "By"
294 - MIB: F5-BIGIP-SYSTEM-MIB
295 metric_type: monotonic_count
296 symbol:
297 OID: 1.3.6.1.4.1.3375.2.1.1.2.9.29.0
298 name: sysClientsslStatHandshakeFailures
299 - description: The total number of handshake failures
300 - unit: "{connection}"
299 + description: The total number of handshake failures
300 + unit: "{connection}"
301
302 # Metrics from F5-BIGIP-LOCAL-MIB provide monitoring information about virtual servers, nodes, and pools.
303 # These concepts are related to the LTM (Local Traffic Management) features of BIG IP devices.
@@ -312,8 +312,8 @@ metrics:
312 symbol:
313 OID: 1.3.6.1.4.1.3375.2.2.10.1.1
314 name: ltmVirtualServNumber
315 - description: The number of ltmVirtualServ entries in the table
316 - unit: "{virtual_server}"
315 + description: The number of ltmVirtualServ entries in the table
316 + unit: "{virtual_server}"
317
318 - MIB: F5-BIGIP-LOCAL-MIB
319 table:
@@ -454,8 +454,8 @@ metrics:
454 symbol:
455 OID: 1.3.6.1.4.1.3375.2.2.4.1.1
456 name: ltmNodeAddrNumber
457 - description: The number of ltmNodeAddr entries in the table
458 - unit: "{node}"
457 + description: The number of ltmNodeAddr entries in the table
458 + unit: "{node}"
459
460 - MIB: F5-BIGIP-LOCAL-MIB
461 table:
@@ -619,8 +619,8 @@ metrics:
619 symbol:
620 OID: 1.3.6.1.4.1.3375.2.2.5.1.1
621 name: ltmPoolNumber
622 - description: The number of ltmPool entries in the table
623 - unit: "{pool}"
622 + description: The number of ltmPool entries in the table
623 + unit: "{pool}"
624
625 - MIB: F5-BIGIP-LOCAL-MIB
626 table:
@@ -721,8 +721,8 @@ metrics:
721 symbol:
722 OID: 1.3.6.1.4.1.3375.2.2.5.3.1
723 name: ltmPoolMemberNumber
724 - description: The number of ltmPoolMember entries in the table
725 - unit: "{member}"
724 + description: The number of ltmPoolMember entries in the table
725 + unit: "{member}"
726
727 - MIB: F5-BIGIP-LOCAL-MIB
728 table:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-appliance.yaml
+100 -75
@@ -73,62 +73,70 @@ metrics:
73 symbol:
74 name: cpu.usage
75 OID: 1.3.6.1.4.1.12356.103.2.1.1.0
76 - description: Current CPU usage
77 - family: CPU/Usage
78 - unit: "%"
76 + chart_meta:
77 + description: Current CPU usage
78 + family: CPU/Usage
79 + unit: "%"
80 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
81 symbol:
82 name: memory.used
83 OID: 1.3.6.1.4.1.12356.103.2.1.2.0
83 - description: Current memory used
84 - family: Memory/Used
85 - unit: "By"
84 + chart_meta:
85 + description: Current memory used
86 + family: Memory/Used
87 + unit: "By"
88 scale_factor: 1024
89 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
90 symbol:
91 name: memory.total
92 OID: 1.3.6.1.4.1.12356.103.2.1.3.0
91 - description: Total physical and swap memory installed
92 - family: Memory/Total
93 - unit: "By"
93 + chart_meta:
94 + description: Total physical and swap memory installed
95 + family: Memory/Total
96 + unit: "By"
97 scale_factor: 1024
98 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
99 symbol:
100 name: fmSysDiskUsage
101 OID: 1.3.6.1.4.1.12356.103.2.1.4.0
99 - description: Current hard disk usage
100 - family: Disk/Space/Used
101 - unit: "By"
102 + chart_meta:
103 + description: Current hard disk usage
104 + family: Disk/Space/Used
105 + unit: "By"
106 scale_factor: 1048576
107 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
108 symbol:
109 name: fmSysDiskCapacity
110 OID: 1.3.6.1.4.1.12356.103.2.1.5.0
107 - description: Total hard disk capacity
108 - family: Disk/Space/Total
109 - unit: "By"
111 + chart_meta:
112 + description: Total hard disk capacity
113 + family: Disk/Space/Total
114 + unit: "By"
115 scale_factor: 1048576
116 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
117 symbol:
118 name: fmSysCpuUsageExcludedNice
119 OID: 1.3.6.1.4.1.12356.103.2.1.6.0
115 - description: Current CPU usage excluded nice processes usage (percentage)
116 - family: CPU/Usage/ExcludeNice
117 - unit: "%"
120 + chart_meta:
121 + description: Current CPU usage excluded nice processes usage (percentage)
122 + family: CPU/Usage/ExcludeNice
123 + unit: "%"
124 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
125 symbol:
126 name: fmLogRate
127 OID: 1.3.6.1.4.1.12356.103.2.1.9.0
122 - description: Log receiving rate in number of logs per second
123 - family: Log/Rate/In
124 - unit: "{log}/s"
128 + chart_meta:
129 + description: Log receiving rate in number of logs per second
130 + family: Log/Rate/In
131 + unit: "{log}/s"
132 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
133 symbol:
134 name: fmRaidLevel
135 OID: 1.3.6.1.4.1.12356.103.7.1.1.0
129 - description: RAID Level
130 - family: Storage/RAID/Level
131 - unit: "{status}"
136 + chart_meta:
137 + description: RAID Level
138 + family: Storage/RAID/Level
139 + unit: "{status}"
140 mapping:
141 0: unavailable
142 1: linear
@@ -149,9 +157,10 @@ metrics:
157 symbol:
158 name: fmRaidState
159 OID: 1.3.6.1.4.1.12356.103.7.1.2.0
152 - description: RAID Status
153 - family: Storage/RAID/Operational/Status
154 - unit: "{status}"
160 + chart_meta:
161 + description: RAID Status
162 + family: Storage/RAID/Operational/Status
163 + unit: "{status}"
164 mapping:
165 0: unavailable
166 1: ok
@@ -164,24 +173,27 @@ metrics:
173 symbol:
174 name: fmRaidSize
175 OID: 1.3.6.1.4.1.12356.103.7.1.3.0
167 - description: Raid size in GB
168 - family: Storage/RAID/Space/Total
169 - unit: "By"
176 + chart_meta:
177 + description: Raid size in GB
178 + family: Storage/RAID/Space/Total
179 + unit: "By"
180 scale_factor: 1073741824 # GB => bytes
181 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
182 symbol:
183 name: fmRaidDiskNumber
184 OID: 1.3.6.1.4.1.12356.103.7.1.4.0
175 - description: Disk numbers in the Raid
176 - family: Storage/RAID/Disk/Count
177 - unit: "{disk}"
185 + chart_meta:
186 + description: Disk numbers in the Raid
187 + family: Storage/RAID/Disk/Count
188 + unit: "{disk}"
189 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
190 symbol:
191 name: fmHaMode
192 OID: 1.3.6.1.4.1.12356.103.9.1.1.0
182 - description: High availability mode
183 - family: HighAvailability/Mode
184 - unit: "{status}"
193 + chart_meta:
194 + description: High availability mode
195 + family: HighAvailability/Mode
196 + unit: "{status}"
197 mapping:
198 0: standalone
199 1: master
@@ -190,16 +202,18 @@ metrics:
202 symbol:
203 name: fmHaClusterId
204 OID: 1.3.6.1.4.1.12356.103.9.1.2.0
193 - description: Ha cluster ID
194 - family: HighAvailability/Cluster/ID
195 - unit: "1"
205 + chart_meta:
206 + description: Ha cluster ID
207 + family: HighAvailability/Cluster/ID
208 + unit: "1"
209 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
210 symbol:
211 name: fmHaPeerNumber
212 OID: 1.3.6.1.4.1.12356.103.9.1.3.0
200 - description: Peer numbers in the Ha
201 - family: HighAvailability/Peer/Count
202 - unit: "{peer}"
213 + chart_meta:
214 + description: Peer numbers in the Ha
215 + family: HighAvailability/Peer/Count
216 + unit: "{peer}"
217 - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
218 table:
219 OID: 1.3.6.1.4.1.12356.103.6.2
@@ -207,9 +221,10 @@ metrics:
221 symbols:
222 - OID: 1.3.6.1.4.1.12356.103.6.2.1.4
223 name: fmDeviceEntMode
210 - description: Device management mode
211 - family: Device/Mode
212 - unit: "{status}"
224 + chart_meta:
225 + description: Device management mode
226 + family: Device/Mode
227 + unit: "{status}"
228 mapping:
229 0: unregistered
230 1: fmg
@@ -217,9 +232,10 @@ metrics:
232 3: fmg-faz
233 - OID: 1.3.6.1.4.1.12356.103.6.2.1.10
234 name: fmDeviceEntHaMode
220 - description: Device high availability mode
221 - family: Device/HighAvailability/Mode
222 - unit: "{status}"
235 + chart_meta:
236 + description: Device high availability mode
237 + family: Device/HighAvailability/Mode
238 + unit: "{status}"
239 mapping:
240 0: standalone
241 1: a-p
@@ -229,18 +245,20 @@ metrics:
245 5: fmg
246 - OID: 1.3.6.1.4.1.12356.103.6.2.1.12
247 name: fmDeviceEntConnectState
232 - description: Device connection status
233 - family: Device/Connection/Status
234 - unit: "{status}"
248 + chart_meta:
249 + description: Device connection status
250 + family: Device/Connection/Status
251 + unit: "{status}"
252 mapping:
253 0: unknown
254 1: up
255 2: down
256 - OID: 1.3.6.1.4.1.12356.103.6.2.1.13
257 name: fmDeviceEntDbState
241 - description: Device database status
242 - family: Device/Database/Status
243 - unit: "{status}"
258 + chart_meta:
259 + description: Device database status
260 + family: Device/Database/Status
261 + unit: "{status}"
262 mapping:
263 0: unknown
264 1: not-modified
@@ -248,18 +266,20 @@ metrics:
266
267 - OID: 1.3.6.1.4.1.12356.103.6.2.1.14
268 name: fmDeviceEntConfigState
251 - description: Device config status
252 - family: Device/Configuration/Status
253 - unit: "{status}"
269 + chart_meta:
270 + description: Device config status
271 + family: Device/Configuration/Status
272 + unit: "{status}"
273 mapping:
274 0: unknown
275 1: in-sync
276 2: out-of-sync
277 - OID: 1.3.6.1.4.1.12356.103.6.2.1.15
278 name: fmDeviceEntState
260 - description: Device status
261 - family: Device/Operational/Status
262 - unit: "{status}"
279 + chart_meta:
280 + description: Device status
281 + family: Device/Operational/Status
282 + unit: "{status}"
283 mapping:
284 0: none
285 1: unknown
@@ -280,9 +300,10 @@ metrics:
300 - symbol:
301 OID: 1.3.6.1.4.1.12356.103.6.2.1.18
302 name: fmDeviceEntSupportState
283 - description: The support status of the device
284 - family: Device/Support/Status
285 - unit: "{status}"
303 + chart_meta:
304 + description: The support status of the device
305 + family: Device/Support/Status
306 + unit: "{status}"
307 mapping:
308 0: expired
309 1: valid
@@ -318,14 +339,16 @@ metrics:
339 symbols:
340 - name: fmRaidDiskEntSize
341 OID: 1.3.6.1.4.1.12356.103.7.2.1.3
321 - description: Raid disk size in GB
322 - family: Storage/RAID/Disk/Size
323 - unit: "GBy"
342 + chart_meta:
343 + description: Raid disk size in GB
344 + family: Storage/RAID/Disk/Size
345 + unit: "GBy"
346 - OID: 1.3.6.1.4.1.12356.103.7.2.1.2
347 name: fmRaidDiskEntState
326 - description: Raid disk status
327 - family: Storage/RAID/Disk/Status
328 - unit: "{status}"
348 + chart_meta:
349 + description: Raid disk status
350 + family: Storage/RAID/Disk/Status
351 + unit: "{status}"
352 mapping:
353 0: unavailable
354 1: unused
@@ -346,9 +369,10 @@ metrics:
369 # TODO: transformation, separate metrics for types
370 - OID: 1.3.6.1.4.1.12356.103.8.2.1.5
371 name: fmSensorEntState
349 - description: Sensor status
350 - family: Sensor/Operational/Status
351 - unit: "{status}"
372 + chart_meta:
373 + description: Sensor status
374 + family: Sensor/Operational/Status
375 + unit: "{status}"
376 mapping:
377 0: ok
378 1: failed
@@ -378,9 +402,10 @@ metrics:
402 symbols:
403 - OID: 1.3.6.1.4.1.12356.103.9.2.1.6
404 name: fmHaPeerEntState
381 - description: Peer status
382 - family: HighAvailability/Peer/Status
383 - unit: "{status}"
405 + chart_meta:
406 + description: Peer status
407 + family: HighAvailability/Peer/Status
408 + unit: "{status}"
409 mapping:
410 0: down
411 1: negotiating
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-fortigate.yaml
+120 -90
@@ -70,9 +70,10 @@ metrics:
70 symbol:
71 OID: 1.3.6.1.4.1.12356.101.4.1.3.0
72 name: fgSysCpuUsage
73 - description: Current CPU usage
74 - family: CPU/Usage
75 - unit: "%"
73 + chart_meta:
74 + description: Current CPU usage
75 + family: CPU/Usage
76 + unit: "%"
77
78 ### Processors
79 - MIB: FORTINET-FORTIGATE-MIB
@@ -82,19 +83,22 @@ metrics:
83 symbols:
84 - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.6
85 name: fgProcessorPktRxCount
85 - description: Number of packets received by this processor
86 - family: Processor/Packet/In
87 - unit: "{packet}/s"
86 + chart_meta:
87 + description: Number of packets received by this processor
88 + family: Processor/Packet/In
89 + unit: "{packet}/s"
90 - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.7
91 name: fgProcessorPktTxCount
90 - description: Number of packets transmitted by this processor
91 - family: Processor/Packet/Out
92 - unit: "{packet}/s"
92 + chart_meta:
93 + description: Number of packets transmitted by this processor
94 + family: Processor/Packet/Out
95 + unit: "{packet}/s"
96 - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.8
97 name: fgProcessorPktDroppedCount
95 - description: Number of packets dropped by this processor
96 - family: Processor/Packet/Dropped
97 - unit: "{drop}/s"
98 + chart_meta:
99 + description: Number of packets dropped by this processor
100 + family: Processor/Packet/Dropped
101 + unit: "{drop}/s"
102 metric_tags:
103 - tag: processor_index
104 symbol:
@@ -108,15 +112,17 @@ metrics:
112 # The processor's CPU usage (percentage), which is an average calculated over the last minute.
113 - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.2
114 name: fgProcessorUsage
111 - description: Processor CPU usage averaged over last minute
112 - family: Processor/Usage/Total
113 - unit: "%"
115 + chart_meta:
116 + description: Processor CPU usage averaged over last minute
117 + family: Processor/Usage/Total
118 + unit: "%"
119 # The processor's CPU system space usage, which is an average calculated over the last minute.
120 - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.10
121 name: fgProcessorSysUsage
117 - description: Processor CPU system space usage averaged over last minute
118 - family: Processor/Usage/System
119 - unit: "%"
122 + chart_meta:
123 + description: Processor CPU system space usage averaged over last minute
124 + family: Processor/Usage/System
125 + unit: "%"
126 metric_tags:
127 # A unique identifier within the fgProcessorTable.
128 - tag: processor_index
@@ -130,34 +136,38 @@ metrics:
136 # Current memory utilization (percentage).
137 OID: 1.3.6.1.4.1.12356.101.4.1.4.0
138 name: fgSysMemUsage
133 - description: Current memory utilization
134 - family: Memory/Usage
135 - unit: "%"
139 + chart_meta:
140 + description: Current memory utilization
141 + family: Memory/Usage
142 + unit: "%"
143 - MIB: FORTINET-FORTIGATE-MIB
144 symbol:
145 # Total physical memory (RAM) installed (KB).
146 OID: 1.3.6.1.4.1.12356.101.4.1.5.0
147 name: fgSysMemCapacity
141 - description: Total physical memory installed in kilobytes
142 - family: Memory/Total
143 - unit: "By"
148 + chart_meta:
149 + description: Total physical memory installed in kilobytes
150 + family: Memory/Total
151 + unit: "By"
152 scale_factor: 1024
153 - MIB: FORTINET-FORTIGATE-MIB
154 symbol:
155 # Current lowmem utilization (percentage). Lowmem is memory available for the kernel's own data structures and kernel specific tables. The system can get into a bad state if it runs out of lowmem.
156 OID: 1.3.6.1.4.1.12356.101.4.1.9.0
157 name: fgSysLowMemUsage
150 - description: Current low memory utilization
151 - family: Memory/LowMem/Usage
152 - unit: "%"
158 + chart_meta:
159 + description: Current low memory utilization
160 + family: Memory/LowMem/Usage
161 + unit: "%"
162 - MIB: FORTINET-FORTIGATE-MIB
163 symbol:
164 # Total lowmem capacity (KB). See fgSysLowMemUsage for the description of lowmem.
165 OID: 1.3.6.1.4.1.12356.101.4.1.10.0
166 name: fgSysLowMemCapacity
158 - description: Total low memory capacity in kilobytes
159 - family: Memory/LowMem/Total
160 - unit: "By"
167 + chart_meta:
168 + description: Total low memory capacity in kilobytes
169 + family: Memory/LowMem/Total
170 + unit: "By"
171 scale_factor: 1024
172
173 ### Disk
@@ -166,18 +176,20 @@ metrics:
176 # Current hard disk usage (MB), if disk is present.
177 OID: 1.3.6.1.4.1.12356.101.4.1.6.0
178 name: fgSysDiskUsage
169 - description: Current hard disk usage in megabytes
170 - family: Disk/Space/Used
171 - unit: "By"
179 + chart_meta:
180 + description: Current hard disk usage in megabytes
181 + family: Disk/Space/Used
182 + unit: "By"
183 scale_factor: 1048576
184 - MIB: FORTINET-FORTIGATE-MIB
185 symbol:
186 # Total hard disk capacity (MB), if disk is present.
187 OID: 1.3.6.1.4.1.12356.101.4.1.7.0
188 name: fgSysDiskCapacity
178 - description: Total hard disk capacity in megabytes
179 - family: Disk/Space/Total
180 - unit: "By"
189 + chart_meta:
190 + description: Total hard disk capacity in megabytes
191 + family: Disk/Space/Total
192 + unit: "By"
193 scale_factor: 1048576
194
195 ### Virtual Domains
@@ -190,18 +202,20 @@ metrics:
202 # Operation mode of the virtual domain: nat(1), transparent(2)
203 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.3
204 name: fgVdEntOpMode
193 - description: Operation mode of the virtual domain
194 - family: VirtualDomain/OperationMode
195 - unit: "{status}"
205 + chart_meta:
206 + description: Operation mode of the virtual domain
207 + family: VirtualDomain/OperationMode
208 + unit: "{status}"
209 mapping:
210 1: nat
211 2: transparent
212 # HA cluster member state of the virtual domain on this device: master(1), backup(2), standalone(3)
213 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.4
214 name: fgVdEntHaState
202 - description: HA cluster member state of the virtual domain
203 - family: VirtualDomain/HighAvailability/Status
204 - unit: "{status}"
215 + chart_meta:
216 + description: HA cluster member state of the virtual domain
217 + family: VirtualDomain/HighAvailability/Status
218 + unit: "{status}"
219 mapping:
220 1: master
221 2: backup
@@ -209,27 +223,31 @@ metrics:
223 # CPU usage of the virtual domain (percentage).
224 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.5
225 name: fgVdEntCpuUsage
212 - description: CPU usage of the virtual domain
213 - family: VirtualDomain/CPU/Usage
214 - unit: "%"
226 + chart_meta:
227 + description: CPU usage of the virtual domain
228 + family: VirtualDomain/CPU/Usage
229 + unit: "%"
230 # Memory usage of the virtual domain (percentage).
231 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.6
232 name: fgVdEntMemUsage
218 - description: Memory usage of the virtual domain
219 - family: VirtualDomain/Memory/Usage
220 - unit: "%"
233 + chart_meta:
234 + description: Memory usage of the virtual domain
235 + family: VirtualDomain/Memory/Usage
236 + unit: "%"
237 # Number of active sessions on the virtual domain.
238 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.7
239 name: fgVdEntSesCount
224 - description: Number of active sessions on the virtual domain
225 - family: VirtualDomain/Session/Active
226 - unit: "{session}"
240 + chart_meta:
241 + description: Number of active sessions on the virtual domain
242 + family: VirtualDomain/Session/Active
243 + unit: "{session}"
244 # The session setup rate on the virtual domain.
245 - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.8
246 name: fgVdEntSesRate
230 - description: Session setup rate on the virtual domain
231 - family: VirtualDomain/Session/Rate
232 - unit: "{session}/s"
247 + chart_meta:
248 + description: Session setup rate on the virtual domain
249 + family: VirtualDomain/Session/Rate
250 + unit: "{session}/s"
251 metric_tags:
252 - tag: virtualdomain_index
253 symbol:
@@ -245,17 +263,19 @@ metrics:
263 # The number of virtual domains in vdTable.
264 OID: 1.3.6.1.4.1.12356.101.3.1.1.0
265 name: fgVdNumber
248 - description: Number of virtual domains in vdTable
249 - family: VirtualDomain/Count/Active
250 - unit: "{domain}"
266 + chart_meta:
267 + description: Number of virtual domains in vdTable
268 + family: VirtualDomain/Count/Active
269 + unit: "{domain}"
270 - MIB: FORTINET-FORTIGATE-MIB
271 symbol:
272 # The maximum number of virtual domains allowed on the device as allowed by hardware and/or licensing.
273 OID: 1.3.6.1.4.1.12356.101.3.1.2.0
274 name: fgVdMaxVdoms
256 - description: Maximum number of virtual domains allowed on the device
257 - family: VirtualDomain/Count/Maximum
258 - unit: "{domain}"
275 + chart_meta:
276 + description: Maximum number of virtual domains allowed on the device
277 + family: VirtualDomain/Count/Maximum
278 + unit: "{domain}"
279
280 ### Interfaces
281 # Fortinet specific extensions to MIB-2 ifTable.
@@ -286,49 +306,55 @@ metrics:
306 # Number of active sessions on the device.
307 OID: 1.3.6.1.4.1.12356.101.4.1.8.0
308 name: fgSysSesCount
289 - description: Number of active sessions on the device
290 - family: Session/Active/Count
291 - unit: "{session}"
309 + chart_meta:
310 + description: Number of active sessions on the device
311 + family: Session/Active/Count
312 + unit: "{session}"
313 - MIB: FORTINET-FORTIGATE-MIB
314 symbol:
315 # The average session setup rate over the past minute.
316 OID: 1.3.6.1.4.1.12356.101.4.1.11.0
317 name: fgSysSesRate1
297 - description: Average session setup rate over the past minute
298 - family: Session/Rate/Average
299 - unit: "{session}/s"
318 + chart_meta:
319 + description: Average session setup rate over the past minute
320 + family: Session/Rate/Average
321 + unit: "{session}/s"
322 - MIB: FORTINET-FORTIGATE-MIB
323 symbol:
324 # Number of active ipv6 sessions on the device.
325 OID: 1.3.6.1.4.1.12356.101.4.1.15.0
326 name: fgSysSes6Count
305 - description: Number of active IPv6 sessions on the device
306 - family: Session/IPv6/Active/Count
307 - unit: "{session}"
327 + chart_meta:
328 + description: Number of active IPv6 sessions on the device
329 + family: Session/IPv6/Active/Count
330 + unit: "{session}"
331 - MIB: FORTINET-FORTIGATE-MIB
332 symbol:
333 # The average ipv6 session setup rate over the past minute.
334 OID: 1.3.6.1.4.1.12356.101.4.1.16.0
335 name: fgSysSes6Rate1
313 - description: Average IPv6 session setup rate over the past minute
314 - family: Session/IPv6/Rate/Average
315 - unit: "{session}/s"
336 + chart_meta:
337 + description: Average IPv6 session setup rate over the past minute
338 + family: Session/IPv6/Rate/Average
339 + unit: "{session}/s"
340 - MIB: FORTINET-FORTIGATE-MIB
341 symbol:
342 # HTTP proxy current connections.
343 OID: 1.3.6.1.4.1.12356.101.10.100.4.0
344 name: fgApHTTPConnections
321 - description: Current number of HTTP proxy connections
322 - family: Proxy/HTTP/Connection/Active
323 - unit: "{connection}"
345 + chart_meta:
346 + description: Current number of HTTP proxy connections
347 + family: Proxy/HTTP/Connection/Active
348 + unit: "{connection}"
349 - MIB: FORTINET-FORTIGATE-MIB
350 symbol:
351 # Maximum number of connections supported by HTTP proxy.
352 OID: 1.3.6.1.4.1.12356.101.10.100.5.0
353 name: fgApHTTPMaxConnections
329 - description: Maximum number of connections supported by HTTP proxy
330 - family: Proxy/HTTP/Connection/Maximum
331 - unit: "{connection}"
354 + chart_meta:
355 + description: Maximum number of connections supported by HTTP proxy
356 + family: Proxy/HTTP/Connection/Maximum
357 + unit: "{connection}"
358
359 ### Firewall
360 # Firewall policy statistics table.
@@ -340,15 +366,17 @@ metrics:
366 # Number of packets matched to policy (passed or blocked, depending on policy action). Count is from the time the policy became active.
367 - OID: 1.3.6.1.4.1.12356.101.5.1.2.1.1.2
368 name: fgFwPolPktCount
343 - description: Number of packets matched to firewall policy
344 - family: Firewall/Policy/Packet/Count
345 - unit: "{packet}/s"
369 + chart_meta:
370 + description: Number of packets matched to firewall policy
371 + family: Firewall/Policy/Packet/Count
372 + unit: "{packet}/s"
373 # Number of bytes in packets matching the policy.
374 - OID: 1.3.6.1.4.1.12356.101.5.1.2.1.1.3
375 name: fgFwPolByteCount
349 - description: Number of bytes in packets matching firewall policy
350 - family: Firewall/Policy/Throughput/Total
351 - unit: "By/s"
376 + chart_meta:
377 + description: Number of bytes in packets matching firewall policy
378 + family: Firewall/Policy/Throughput/Total
379 + unit: "By/s"
380 metric_tags:
381 # Internal virtual domain index used to uniquely identify rows in this table. This index is also used by other tables referencing a virtual domain.
382 - index: 1
@@ -365,15 +393,17 @@ metrics:
393 # Number of packets matched to policy (passed or blocked, depending on policy action). Count is from the time the policy became active.
394 - OID: 1.3.6.1.4.1.12356.101.5.1.2.2.1.2
395 name: fgFwPol6PktCount
368 - description: Number of packets matched to firewall policy6
369 - family: Firewall/Policy6/Packet/Count
370 - unit: "{packet}/s"
396 + chart_meta:
397 + description: Number of packets matched to firewall policy6
398 + family: Firewall/Policy6/Packet/Count
399 + unit: "{packet}/s"
400 # Number of bytes in packets matching the policy. See fgFwPol6PktCount.
401 - OID: 1.3.6.1.4.1.12356.101.5.1.2.2.1.3
402 name: fgFwPol6ByteCount
374 - description: Number of bytes in packets matching firewall policy6
375 - family: Firewall/Policy6/Throughput/Total
376 - unit: "By/s"
403 + chart_meta:
404 + description: Number of bytes in packets matching firewall policy6
405 + family: Firewall/Policy6/Throughput/Total
406 + unit: "By/s"
407 metric_tags:
408 # Internal virtual domain index used to uniquely identify rows in this table. This index is also used by other tables referencing a virtual domain.
409 - index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-fortiswitch.yaml
+20 -15
@@ -26,38 +26,43 @@ metrics:
26 symbol:
27 name: cpu.usage
28 OID: 1.3.6.1.4.1.12356.106.4.1.2.0
29 - description: Current CPU usage
30 - family: CPU/Usage
31 - unit: "%"
29 + chart_meta:
30 + description: Current CPU usage
31 + family: CPU/Usage
32 + unit: "%"
33 - MIB: FORTINET-FORTISWITCH-MIB
34 symbol:
35 name: memory.used
36 OID: 1.3.6.1.4.1.12356.106.4.1.3.0
36 - description: Current system memory usage
37 - family: Memory/Used
38 - unit: "By"
37 + chart_meta:
38 + description: Current system memory usage
39 + family: Memory/Used
40 + unit: "By"
41 scale_factor: 1024
42 - MIB: FORTINET-FORTISWITCH-MIB
43 symbol:
44 name: memory.total
45 OID: 1.3.6.1.4.1.12356.106.4.1.4.0
44 - description: Total physical memory installed
45 - family: Memory/Total
46 - unit: "By"
46 + chart_meta:
47 + description: Total physical memory installed
48 + family: Memory/Total
49 + unit: "By"
50 scale_factor: 1024
51 - MIB: FORTINET-FORTISWITCH-MIB
52 symbol:
53 name: fsSysDiskUsage
54 OID: 1.3.6.1.4.1.12356.106.4.1.5.0
52 - description: Current hard disk usage
53 - family: Disk/Space/Used
54 - unit: "By"
55 + chart_meta:
56 + description: Current hard disk usage
57 + family: Disk/Space/Used
58 + unit: "By"
59 scale_factor: 1024
60 - MIB: FORTINET-FORTISWITCH-MIB
61 symbol:
62 name: fsSysDiskCapacity
63 OID: 1.3.6.1.4.1.12356.106.4.1.6.0
60 - description: Total hard disk capacity
61 - family: Disk/Space/Total
62 - unit: "By"
64 + chart_meta:
65 + description: Total hard disk capacity
66 + family: Disk/Space/Total
67 + unit: "By"
68 scale_factor: 1024
src/go/plugin/go.d/config/go.d/snmp.profiles/default/hp-ilo.yaml
+16 -16
@@ -27,8 +27,8 @@ metrics:
27 symbol:
28 OID: 1.3.6.1.4.1.232.9.2.2.32.0
29 name: cpqSm2CntlrServerPowerState
30 - description: Power state of the server
31 - unit: "{state}"
30 + description: Power state of the server
31 + unit: "{state}"
32
33 # Status of battery.
34 # NOTE: other(1), batteryOk(2), batteryFailed(3), batteryDisconnected(4)
@@ -36,16 +36,16 @@ metrics:
36 symbol:
37 OID: 1.3.6.1.4.1.232.9.2.2.5.0
38 name: cpqSm2CntlrBatteryStatus
39 - description: Status of the battery
40 - unit: "{state}"
39 + description: Status of the battery
40 + unit: "{state}"
41
42 # Charge level of battery.
43 - MIB: CPQSM2-MIB
44 symbol:
45 OID: 1.3.6.1.4.1.232.9.2.2.6.0
46 name: cpqSm2CntlrBatteryPercentCharged
47 - description: Charge level of the battery
48 - unit: "%"
47 + description: Charge level of the battery
48 + unit: "%"
49
50 # A bitmap of self-test errors.
51 # NOTE: 0 indicates that no errors have occurred.
@@ -53,8 +53,8 @@ metrics:
53 symbol:
54 OID: 1.3.6.1.4.1.232.9.2.2.9.0
55 name: cpqSm2CntlrSelfTestErrors
56 - description: Bitmap of self-test errors
57 - unit: "{error}"
56 + description: Bitmap of self-test errors
57 + unit: "{error}"
58
59 # Whether a remote session is active.
60 # NOTE: other(1), active(2), inactive(3)
@@ -62,8 +62,8 @@ metrics:
62 symbol:
63 OID: 1.3.6.1.4.1.232.9.2.2.16.0
64 name: cpqSm2CntlrRemoteSessionStatus
65 - description: Status of remote session activity
66 - unit: "{state}"
65 + description: Status of remote session activity
66 + unit: "{state}"
67
68 # Status of the remote interface.
69 # NOTE: other(1), ok(2), notResponding(3)
@@ -71,8 +71,8 @@ metrics:
71 symbol:
72 OID: 1.3.6.1.4.1.232.9.2.2.17.0
73 name: cpqSm2CntlrInterfaceStatus
74 - description: Status of the remote interface
75 - unit: "{state}"
74 + description: Status of the remote interface
75 + unit: "{state}"
76
77 # Event log.
78
@@ -81,8 +81,8 @@ metrics:
81 symbol:
82 OID: 1.3.6.1.4.1.232.9.2.3.1.0
83 name: cpqSm2EventTotalEntries
84 - description: Number of entries in the event log
85 - unit: "{entry}"
84 + description: Number of entries in the event log
85 + unit: "{entry}"
86
87 # Network interfaces and traffic.
88
@@ -220,5 +220,5 @@ metrics:
220 symbol:
221 OID: 1.3.6.1.4.1.232.18.2.5.3.0
222 name: cpqNicVtVirusActivity
223 - description: Virus activity detection status
224 - unit: "{state}"
223 + description: Virus activity detection status
224 + unit: "{state}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/hpe-bladesystem-enclosure.yaml
-2
@@ -435,8 +435,6 @@ metrics:
435 OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.9
436 name: cpqRackPowerSupplyMaxPwrOutput
437 tag: cpq_rack_power_supply_max_pwr_output
438 - description: The maximum power output of the power supply in watts
439 - unit: "W"
438 - symbol:
439 OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.16
440 name: cpqRackPowerSupplyPresent
src/go/plugin/go.d/config/go.d/snmp.profiles/default/hpe-msa.yaml
-22
@@ -26,8 +26,6 @@ metrics:
26 OID: 1.3.6.1.3.94.1.8.1.3
27 name: connUnitSensorName
28 tag: hpe_fibrechannel_conn_unit_sensor_name
29 - description: Textual identification of the sensor intended primarily for operator use
30 - unit: "{sensor}"
29 - symbol:
30 OID: 1.3.6.1.3.94.1.8.1.8
31 name: connUnitSensorCharacteristic
@@ -43,8 +41,6 @@ metrics:
41 8: frequency
42 9: power
43 10: door
46 - description: Characteristics being monitored by this sensor
47 - unit: "1"
44 - symbol:
45 OID: 1.3.6.1.3.94.1.8.1.4
46 name: connUnitSensorStatus
@@ -55,8 +51,6 @@ metrics:
51 3: ok
52 4: warning
53 5: failed
58 - description: Status indicated by the sensor
59 - unit: "{status}"
54 - MIB: FCMGMT-MIB
55 table:
56 OID: 1.3.6.1.3.94.1.10
@@ -90,8 +84,6 @@ metrics:
84 17: ac
85 18: dc
86 19: ssa
93 - description: Type of the port
94 - unit: "{port_type}"
87 - symbol:
88 OID: 1.3.6.1.3.94.1.10.1.8
89 name: connUnitPortTransmitterType
@@ -108,8 +100,6 @@ metrics:
100 9: shortwave_no_ofc
101 10: longwave_led
102 11: ssa
111 - description: Technology of the port transceiver
112 - unit: "{transmitter_type}"
103 - symbol:
104 OID: 1.3.6.1.3.94.1.10.1.9
105 name: connUnitPortModuleType
@@ -124,26 +114,18 @@ metrics:
114 7: gbic_no_serial_id
115 8: gbic_not_installed
116 9: small_form_factor
127 - description: Module type of the port connector
128 - unit: "{module_type}"
117 - symbol:
118 OID: 1.3.6.1.3.94.1.10.1.10
119 name: connUnitPortWwn
120 tag: hpe_fibrechannel_conn_unit_port_wwn
133 - description: World Wide Name of the port if applicable
134 - unit: "{wwn}"
121 - symbol:
122 OID: 1.3.6.1.3.94.1.10.1.15
123 name: connUnitPortSpeed
124 tag: hpe_fibrechannel_conn_unit_port_speed
139 - description: Speed of the port in kilobytes per second
140 - unit: "kBy/s"
125 - symbol:
126 OID: 1.3.6.1.3.94.1.10.1.17
127 name: connUnitPortName
128 tag: hpe_fibrechannel_conn_unit_port_name
145 - description: String describing the addressed port
146 - unit: "{port}"
129 # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
130 - symbol:
131 OID: 1.3.6.1.3.94.1.10.1.6
@@ -155,8 +137,6 @@ metrics:
137 3: offline
138 4: bypassed
139 5: diagnostics
158 - description: User selected state of the port hardware
159 - unit: "{state}"
140 - symbol:
141 OID: 1.3.6.1.3.94.1.10.1.7
142 name: connUnitPortStatus
@@ -171,8 +151,6 @@ metrics:
151 7: initializing
152 8: bypass
153 9: ols
174 - description: Overall protocol status for the port
175 - unit: "{status}"
154 metric_tags:
155 - tag: hpe_fibrechannel_cpq_si_sys_serial_num
156 OID: 1.3.6.1.4.1.232.2.2.2.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/huawei-switches.yaml
-2
@@ -90,5 +90,3 @@ metrics:
90 mapping:
91 1: up
92 2: down
93 - description: The status of the stack port
94 - unit: "{status}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/infoblox-ipam.yaml
+20 -20
@@ -64,20 +64,20 @@ metrics:
64 symbol:
65 name: cpu.usage
66 OID: 1.3.6.1.4.1.7779.3.1.1.2.1.8.1.1.0
67 - description: Current average CPU usage
68 - unit: "%"
67 + description: Current average CPU usage
68 + unit: "%"
69 - MIB: IB-PLATFORMONE-MIB
70 symbol:
71 name: memory.usage
72 OID: 1.3.6.1.4.1.7779.3.1.1.2.1.8.2.1.0
73 - description: Current Memory usage
74 - unit: "%"
73 + description: Current Memory usage
74 + unit: "%"
75 - MIB: IB-DHCPONE-MIB
76 symbol:
77 name: ibDhcpDeferredQueueSize
78 OID: 1.3.6.1.4.1.7779.3.1.1.4.1.4.0
79 - description: The size of deferred dynamic DNS update queue
80 - unit: "{session}"
79 + description: The size of deferred dynamic DNS update queue
80 + unit: "{session}"
81 - MIB: IB-DNSONE-MIB
82 table:
83 name: ibZoneStatisticsTable
@@ -122,36 +122,36 @@ metrics:
122 symbol:
123 name: ibDDNSUpdateSuccess
124 OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.1.0
125 - metric_type: monotonic_count
126 - description: Number of successful dynamic DNS update
127 - unit: "{update}"
125 + description: Number of successful dynamic DNS update
126 + unit: "{update}"
127 + metric_type: monotonic_count
128 - MIB: IB-DNSONE-MIB
129 symbol:
130 name: ibDDNSUpdateFailure
131 OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.2.0
132 - metric_type: monotonic_count
133 - description: Number of failure dynamic DNS update
134 - unit: "{update}"
132 + description: Number of failure dynamic DNS update
133 + unit: "{update}"
134 + metric_type: monotonic_count
135 - MIB: IB-DNSONE-MIB
136 symbol:
137 name: ibDDNSUpdateReject
138 OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.3.0
139 - metric_type: monotonic_count
140 - description: Number of dynamic DNS update rejects maybe due to permission failure
141 - unit: "{update}"
139 + description: Number of dynamic DNS update rejects maybe due to permission failure
140 + unit: "{update}"
141 + metric_type: monotonic_count
142 - MIB: IB-DNSONE-MIB
143 symbol:
144 name: ibDDNSUpdatePrerequisiteReject
145 OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.4.0
146 - metric_type: monotonic_count
147 - description: Number of dynamic DNS update rejects due to prerequisite failure
148 - unit: "{update}"
146 + description: Number of dynamic DNS update rejects due to prerequisite failure
147 + unit: "{update}"
148 + metric_type: monotonic_count
149 - MIB: IB-DNSONE-MIB
150 symbol:
151 name: ibDnsQueryRate
152 OID: 1.3.6.1.4.1.7779.3.1.1.3.1.6.0
153 - description: DNS query rate
154 - unit: "cs"
153 + description: DNS query rate
154 + unit: "cs"
155 - MIB: IB-PLATFORMONE-MIB
156 table:
157 name: ibClusterReplicationStatusTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/juniper-pulse-secure.yaml
+80 -60
@@ -20,142 +20,162 @@ metrics:
20 symbol:
21 OID: 1.3.6.1.4.1.12532.10.0
22 name: iveCpuUtil
23 - description: The cpu utilization of the ive system
24 - family: CPU/Usage
25 - unit: "%"
23 + chart_meta:
24 + description: The cpu utilization of the ive system
25 + family: CPU/Usage
26 + unit: "%"
27 - MIB: JUNIPER-IVE-MIB
28 symbol:
29 OID: 1.3.6.1.4.1.12532.11.0
30 name: iveMemoryUtil
30 - description: The memory utilization of the ive system
31 - family: Memory/Usage
32 - unit: "%"
31 + chart_meta:
32 + description: The memory utilization of the ive system
33 + family: Memory/Usage
34 + unit: "%"
35 - MIB: JUNIPER-IVE-MIB
36 symbol:
37 OID: 1.3.6.1.4.1.12532.24.0
38 name: iveSwapUtil
37 - description: The swap utilization of the ive system
38 - family: Memory/Swap/Usage
39 - unit: "%"
39 + chart_meta:
40 + description: The swap utilization of the ive system
41 + family: Memory/Swap/Usage
42 + unit: "%"
43 - MIB: JUNIPER-IVE-MIB
44 symbol:
45 OID: 1.3.6.1.4.1.12532.1.0
46 name: logFullPercent
44 - description: Percentage of log file full
45 - family: Storage/Log/Usage
46 - unit: "%"
47 + chart_meta:
48 + description: Percentage of log file full
49 + family: Storage/Log/Usage
50 + unit: "%"
51 - MIB: JUNIPER-IVE-MIB
52 symbol:
53 OID: 1.3.6.1.4.1.12532.25.0
54 name: diskFullPercent
51 - description: Percentage of disk space full
52 - family: Storage/Disk/Usage
53 - unit: "%"
55 + chart_meta:
56 + description: Percentage of disk space full
57 + family: Storage/Disk/Usage
58 + unit: "%"
59 - MIB: JUNIPER-IVE-MIB
60 symbol:
61 OID: 1.3.6.1.4.1.12532.42.0
62 name: iveTemperature
58 - description: The Temperature of MAG application blade
59 - family: Environment/Temperature/Value
60 - unit: "Cel"
63 + chart_meta:
64 + description: The Temperature of MAG application blade
65 + family: Environment/Temperature/Value
66 + unit: "Cel"
67 - MIB: JUNIPER-IVE-MIB
68 symbol:
69 OID: 1.3.6.1.4.1.12532.2.0
70 name: signedInWebUsers
65 - description: Number of signed-in web users
66 - family: User/SignedIn/Web
67 - unit: "{user}"
71 + chart_meta:
72 + description: Number of signed-in web users
73 + family: User/SignedIn/Web
74 + unit: "{user}"
75 - MIB: JUNIPER-IVE-MIB
76 symbol:
77 OID: 1.3.6.1.4.1.12532.3.0
78 name: signedInMailUsers
72 - description: Number of signed-in mail users
73 - family: User/SignedIn/Mail
74 - unit: "{user}"
79 + chart_meta:
80 + description: Number of signed-in mail users
81 + family: User/SignedIn/Mail
82 + unit: "{user}"
83 - MIB: JUNIPER-IVE-MIB
84 symbol:
85 OID: 1.3.6.1.4.1.12532.43.0
86 name: iveVPNTunnels
79 - description: The number of concurrent pulse ipsec and nc users
80 - family: VPN/Tunnel/Active
81 - unit: "{tunnel}"
87 + chart_meta:
88 + description: The number of concurrent pulse ipsec and nc users
89 + family: VPN/Tunnel/Active
90 + unit: "{tunnel}"
91 - MIB: JUNIPER-IVE-MIB
92 symbol:
93 OID: 1.3.6.1.4.1.12532.12.0
94 name: iveConcurrentUsers
86 - description: The total number of concurrent user licenses used for the ive node
87 - family: License/User/NodeUsed
88 - unit: "{license}"
95 + chart_meta:
96 + description: The total number of concurrent user licenses used for the ive node
97 + family: License/User/NodeUsed
98 + unit: "{license}"
99 - MIB: JUNIPER-IVE-MIB
100 symbol:
101 OID: 1.3.6.1.4.1.12532.13.0
102 name: clusterConcurrentUsers
93 - description: The total number of concurrent user licenses used for the cluster
94 - family: License/User/ClusterUsed
95 - unit: "{license}"
103 + chart_meta:
104 + description: The total number of concurrent user licenses used for the cluster
105 + family: License/User/ClusterUsed
106 + unit: "{license}"
107 - MIB: JUNIPER-IVE-MIB
108 symbol:
109 OID: 1.3.6.1.4.1.12532.14.0
110 name: iveTotalHits
100 - description: The total number of hits to the ive since last reboot
101 - family: Hit/Total
102 - unit: "{hit}/s"
111 + chart_meta:
112 + description: The total number of hits to the ive since last reboot
113 + family: Hit/Total
114 + unit: "{hit}/s"
115 - MIB: JUNIPER-IVE-MIB
116 symbol:
117 OID: 1.3.6.1.4.1.12532.15.0
118 name: iveFileHits
107 - description: The total number of file hits to the ive since last reboot
108 - family: Hit/File
109 - unit: "{hit}/s"
119 + chart_meta:
120 + description: The total number of file hits to the ive since last reboot
121 + family: Hit/File
122 + unit: "{hit}/s"
123 - MIB: JUNIPER-IVE-MIB
124 symbol:
125 OID: 1.3.6.1.4.1.12532.16.0
126 name: iveWebHits
114 - description: The total number of hits via the web interface since the last reboot
115 - family: Hit/WebInterface
116 - unit: "{hit}/s"
127 + chart_meta:
128 + description: The total number of hits via the web interface since the last reboot
129 + family: Hit/WebInterface
130 + unit: "{hit}/s"
131 - MIB: JUNIPER-IVE-MIB
132 symbol:
133 OID: 1.3.6.1.4.1.12532.17.0
134 name: iveAppletHits
121 - description: The total number of applet hits to the ive since last reboot
122 - family: Hit/Applet
123 - unit: "{hit}"
135 + chart_meta:
136 + description: The total number of applet hits to the ive since last reboot
137 + family: Hit/Applet
138 + unit: "{hit}"
139 - MIB: JUNIPER-IVE-MIB
140 symbol:
141 OID: 1.3.6.1.4.1.12532.18.0
142 name: ivetermHits
128 - description: The total number of terminal hits to the ive since last reboot
129 - family: Hit/Terminal
130 - unit: "{hit}/s"
143 + chart_meta:
144 + description: The total number of terminal hits to the ive since last reboot
145 + family: Hit/Terminal
146 + unit: "{hit}/s"
147 - MIB: JUNIPER-IVE-MIB
148 symbol:
149 OID: 1.3.6.1.4.1.12532.19.0
150 name: iveSAMHits
135 - description: The total number of sam secure application manager hits since last reboot
136 - family: Hit/SAM
137 - unit: "{hit}/s"
151 + chart_meta:
152 + description: The total number of sam secure application manager hits since last reboot
153 + family: Hit/SAM
154 + unit: "{hit}/s"
155 - MIB: JUNIPER-IVE-MIB
156 symbol:
157 OID: 1.3.6.1.4.1.12532.20.0
158 name: iveNCHits
142 - description: The total number of nc network connect hits since last reboot
143 - family: Hit/NetworkConnect
144 - unit: "{hit}/s"
159 + chart_meta:
160 + description: The total number of nc network connect hits since last reboot
161 + family: Hit/NetworkConnect
162 + unit: "{hit}/s"
163 - MIB: JUNIPER-IVE-MIB
164 symbol:
165 OID: 1.3.6.1.4.1.12532.21.0
166 name: meetingHits
149 - description: The total number of meeting hits since last reboot
150 - family: Hit/Meeting
151 - unit: "{hit}/s"
167 + chart_meta:
168 + description: The total number of meeting hits since last reboot
169 + family: Hit/Meeting
170 + unit: "{hit}/s"
171 - MIB: JUNIPER-IVE-MIB
172 symbol:
173 OID: 1.3.6.1.4.1.12532.44.0
174 name: iveSSLConnections
156 - description: Total number of ssl connection
157 - family: SSL/Connection/Active
158 - unit: "{connection}"
175 + chart_meta:
176 + description: Total number of ssl connection
177 + family: SSL/Connection/Active
178 + unit: "{connection}"
179 # Commented since iveTotalSignedInUsers is not present in the most recent JUNIPER-IVE-MIB we managed to find
180 # - MIB: JUNIPER-IVE-MIB
181 # symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/mcafee-web-gateway.yaml
+94 -94
@@ -13,224 +13,224 @@ metrics:
13 symbol:
14 name: cpu.usage
15 OID: 1.3.6.1.4.1.1230.2.7.2.5.1.0
16 - description: Current overall CPU usage in percent
17 - unit: "%"
16 + description: Current overall CPU usage in percent
17 + unit: "%"
18 - MIB: MCAFEE-MWG-MIB
19 symbol:
20 name: memory.usage
21 OID: 1.3.6.1.4.1.1230.2.7.2.5.15.0
22 - description: Virtual memory consumption of the main processes divided by RAM + half of SWAP space. Projected to 0-100.
23 - unit: "%"
22 + description: Virtual memory consumption of the main processes divided by RAM + half of SWAP space. Projected to 0-100.
23 + unit: "%"
24 - MIB: MCAFEE-MWG-MIB
25 symbol:
26 name: mcafee.mwg.stMalwareDetected
27 OID: 1.3.6.1.4.1.1230.2.7.2.1.2.0
28 - metric_type: monotonic_count
29 - description: Number of infections detected by the McAfee Gateway Antimalware Engine
30 - unit: "{infection}"
28 + description: Number of infections detected by the McAfee Gateway Antimalware Engine
29 + unit: "{infection}"
30 + metric_type: monotonic_count
31 - MIB: MCAFEE-MWG-MIB
32 symbol:
33 name: mcafee.mwg.stConnectionsLegitimate
34 OID: 1.3.6.1.4.1.1230.2.7.2.1.3.0
35 - metric_type: monotonic_count
36 - description: Number of connections that not have been blocked
37 - unit: "{connection}"
35 + description: Number of connections that not have been blocked
36 + unit: "{connection}"
37 + metric_type: monotonic_count
38 - MIB: MCAFEE-MWG-MIB
39 symbol:
40 name: mcafee.mwg.stBlockedByAntiMalware
41 OID: 1.3.6.1.4.1.1230.2.7.2.1.4.0
42 - metric_type: monotonic_count
43 - description: Number of connections blocked by Anti-Malware
44 - unit: "{connection}"
42 + description: Number of connections blocked by Anti-Malware
43 + unit: "{connection}"
44 + metric_type: monotonic_count
45 - MIB: MCAFEE-MWG-MIB
46 symbol:
47 name: mcafee.mwg.stConnectionsBlocked
48 OID: 1.3.6.1.4.1.1230.2.7.2.1.5.0
49 - metric_type: monotonic_count
50 - description: Number of blocked connections
51 - unit: "{connection}"
49 + description: Number of blocked connections
50 + unit: "{connection}"
51 + metric_type: monotonic_count
52 - MIB: MCAFEE-MWG-MIB
53 symbol:
54 name: mcafee.mwg.stBlockedByMediaFilter
55 OID: 1.3.6.1.4.1.1230.2.7.2.1.6.0
56 - metric_type: monotonic_count
57 - description: Number of connections that have been blocked by the Media-Type filter
58 - unit: "{connection}"
56 + description: Number of connections that have been blocked by the Media-Type filter
57 + unit: "{connection}"
58 + metric_type: monotonic_count
59 - MIB: MCAFEE-MWG-MIB
60 symbol:
61 name: mcafee.mwg.stBlockedByURLFilter
62 OID: 1.3.6.1.4.1.1230.2.7.2.1.7.0
63 - metric_type: monotonic_count
64 - description: Number of connection that have been blocked by the URL filter
65 - unit: "{connection}"
63 + description: Number of connection that have been blocked by the URL filter
64 + unit: "{connection}"
65 + metric_type: monotonic_count
66 - MIB: MCAFEE-MWG-MIB
67 symbol:
68 name: mcafee.mwg.stMimeType
69 OID: 1.3.6.1.4.1.1230.2.7.2.1.8.0
70 - metric_type: monotonic_count
71 - description: Number of media types detected by the Media Type filter
72 - unit: "{media_type}"
70 + description: Number of media types detected by the Media Type filter
71 + unit: "{media_type}"
72 + metric_type: monotonic_count
73 - MIB: MCAFEE-MWG-MIB
74 symbol:
75 name: mcafee.mwg.stCategories
76 OID: 1.3.6.1.4.1.1230.2.7.2.1.9.0
77 - metric_type: monotonic_count
78 - description: Number of categories detected by the URL filter
79 - unit: "{category}"
77 + description: Number of categories detected by the URL filter
78 + unit: "{category}"
79 + metric_type: monotonic_count
80 - MIB: MCAFEE-MWG-MIB
81 symbol:
82 name: mcafee.mwg.stHttpRequests
83 OID: 1.3.6.1.4.1.1230.2.7.2.2.1.0
84 - metric_type: monotonic_count
85 - description: Number of HTTP requests
86 - unit: "{request}"
84 + description: Number of HTTP requests
85 + unit: "{request}"
86 + metric_type: monotonic_count
87 - MIB: MCAFEE-MWG-MIB
88 symbol:
89 name: mcafee.mwg.stHttpTraffic
90 OID: 1.3.6.1.4.1.1230.2.7.2.2.2.0
91 - metric_type: monotonic_count
92 - description: Number of bytes tranferred between proxy and server(s) using the HTTP protocol
93 - unit: "By"
91 + description: Number of bytes tranferred between proxy and server(s) using the HTTP protocol
92 + unit: "By"
93 + metric_type: monotonic_count
94 - MIB: MCAFEE-MWG-MIB
95 symbol:
96 name: mcafee.mwg.stHttpBytesFromClient
97 OID: 1.3.6.1.4.1.1230.2.7.2.2.3.0
98 - metric_type: monotonic_count
99 - description: Number of bytes transferred from client to proxy using the HTTP protocol
100 - unit: "By"
98 + description: Number of bytes transferred from client to proxy using the HTTP protocol
99 + unit: "By"
100 + metric_type: monotonic_count
101 - MIB: MCAFEE-MWG-MIB
102 symbol:
103 name: mcafee.mwg.stHttpBytesFromServer
104 OID: 1.3.6.1.4.1.1230.2.7.2.2.4.0
105 - metric_type: monotonic_count
106 - description: Number of bytes transferred from server to proxy using the HTTP protocol
107 - unit: "By"
105 + description: Number of bytes transferred from server to proxy using the HTTP protocol
106 + unit: "By"
107 + metric_type: monotonic_count
108 - MIB: MCAFEE-MWG-MIB
109 symbol:
110 name: mcafee.mwg.stHttpBytesToClient
111 OID: 1.3.6.1.4.1.1230.2.7.2.2.5.0
112 - metric_type: monotonic_count
113 - description: Number of bytes transferred from proxy to client(s) using the HTTP protocol
114 - unit: "By"
112 + description: Number of bytes transferred from proxy to client(s) using the HTTP protocol
113 + unit: "By"
114 + metric_type: monotonic_count
115 - MIB: MCAFEE-MWG-MIB
116 symbol:
117 name: mcafee.mwg.stHttpBytesToServer
118 OID: 1.3.6.1.4.1.1230.2.7.2.2.6.0
119 - metric_type: monotonic_count
120 - description: Number of bytes transferred from proxy to server(s) using the HTTP protocol
121 - unit: "By"
119 + description: Number of bytes transferred from proxy to server(s) using the HTTP protocol
120 + unit: "By"
121 + metric_type: monotonic_count
122 - MIB: MCAFEE-MWG-MIB
123 symbol:
124 name: mcafee.mwg.stHttpsRequests
125 OID: 1.3.6.1.4.1.1230.2.7.2.3.1.0
126 - metric_type: monotonic_count
127 - description: Number of HTTPS requests
128 - unit: "{request}"
126 + description: Number of HTTPS requests
127 + unit: "{request}"
128 + metric_type: monotonic_count
129 - MIB: MCAFEE-MWG-MIB
130 symbol:
131 name: mcafee.mwg.stHttpsTraffic
132 OID: 1.3.6.1.4.1.1230.2.7.2.3.2.0
133 - metric_type: monotonic_count
134 - description: Number of bytes tranferred between proxy and server(s) using the HTTPS protocol
135 - unit: "By"
133 + description: Number of bytes tranferred between proxy and server(s) using the HTTPS protocol
134 + unit: "By"
135 + metric_type: monotonic_count
136 - MIB: MCAFEE-MWG-MIB
137 symbol:
138 name: mcafee.mwg.stHttpsBytesFromClient
139 OID: 1.3.6.1.4.1.1230.2.7.2.3.3.0
140 - metric_type: monotonic_count
141 - description: Number of bytes tranferred from client(s) to proxy using the HTTPS protocol
142 - unit: "By"
140 + description: Number of bytes tranferred from client(s) to proxy using the HTTPS protocol
141 + unit: "By"
142 + metric_type: monotonic_count
143 - MIB: MCAFEE-MWG-MIB
144 symbol:
145 name: mcafee.mwg.stHttpsBytesFromServer
146 OID: 1.3.6.1.4.1.1230.2.7.2.3.4.0
147 - metric_type: monotonic_count
148 - description: Number of bytes tranferred from server(s) to proxy using the HTTPS protocol
149 - unit: "By"
147 + description: Number of bytes tranferred from server(s) to proxy using the HTTPS protocol
148 + unit: "By"
149 + metric_type: monotonic_count
150 - MIB: MCAFEE-MWG-MIB
151 symbol:
152 name: mcafee.mwg.stHttpsBytesToClient
153 OID: 1.3.6.1.4.1.1230.2.7.2.3.5.0
154 - metric_type: monotonic_count
155 - description: Number of bytes tranferred from proxy to client(s) and proxy using the HTTPS protocol
156 - unit: "By"
154 + description: Number of bytes tranferred from proxy to client(s) and proxy using the HTTPS protocol
155 + unit: "By"
156 + metric_type: monotonic_count
157 - MIB: MCAFEE-MWG-MIB
158 symbol:
159 name: mcafee.mwg.stHttpsBytesToServer
160 OID: 1.3.6.1.4.1.1230.2.7.2.3.6.0
161 - metric_type: monotonic_count
162 - description: Number of bytes tranferred from proxy to server(s) and proxy using the HTTPS protocol
163 - unit: "By"
161 + description: Number of bytes tranferred from proxy to server(s) and proxy using the HTTPS protocol
162 + unit: "By"
163 + metric_type: monotonic_count
164 - MIB: MCAFEE-MWG-MIB
165 symbol:
166 name: mcafee.mwg.stFtpTraffic
167 OID: 1.3.6.1.4.1.1230.2.7.2.4.1.0
168 - metric_type: monotonic_count
169 - description: Number of bytes transmitted between proxy and server(s) using the FTP protocol
170 - unit: "By"
168 + description: Number of bytes transmitted between proxy and server(s) using the FTP protocol
169 + unit: "By"
170 + metric_type: monotonic_count
171 - MIB: MCAFEE-MWG-MIB
172 symbol:
173 name: mcafee.mwg.stFtpBytesFromClient
174 OID: 1.3.6.1.4.1.1230.2.7.2.4.2.0
175 - metric_type: monotonic_count
176 - description: Number of bytes tranferred from proxy to client(s) using the FTP protocol
177 - unit: "By"
175 + description: Number of bytes tranferred from proxy to client(s) using the FTP protocol
176 + unit: "By"
177 + metric_type: monotonic_count
178 - MIB: MCAFEE-MWG-MIB
179 symbol:
180 name: mcafee.mwg.stFtpBytesFromServer
181 OID: 1.3.6.1.4.1.1230.2.7.2.4.3.0
182 - metric_type: monotonic_count
183 - description: Number of bytes tranferred from server(s) to proxy using the FTP protocol
184 - unit: "By"
182 + description: Number of bytes tranferred from server(s) to proxy using the FTP protocol
183 + unit: "By"
184 + metric_type: monotonic_count
185 - MIB: MCAFEE-MWG-MIB
186 symbol:
187 name: mcafee.mwg.stFtpBytesToClient
188 OID: 1.3.6.1.4.1.1230.2.7.2.4.4.0
189 - metric_type: monotonic_count
190 - description: Number of bytes tranferred from proxy to client(s) using the FTP protocol
191 - unit: "By"
189 + description: Number of bytes tranferred from proxy to client(s) using the FTP protocol
190 + unit: "By"
191 + metric_type: monotonic_count
192 - MIB: MCAFEE-MWG-MIB
193 symbol:
194 name: mcafee.mwg.stFtpBytesToServer
195 OID: 1.3.6.1.4.1.1230.2.7.2.4.5.0
196 - metric_type: monotonic_count
197 - description: Number of bytes tranferred from proxy to server(s) using the FTP protocol
198 - unit: "By"
196 + description: Number of bytes tranferred from proxy to server(s) using the FTP protocol
197 + unit: "By"
198 + metric_type: monotonic_count
199 - MIB: MCAFEE-MWG-MIB
200 symbol:
201 name: mcafee.mwg.stClientCount
202 OID: 1.3.6.1.4.1.1230.2.7.2.5.2.0
203 - metric_type: monotonic_count
204 - description: Currently connected clients
205 - unit: "{client}"
203 + description: Currently connected clients
204 + unit: "{client}"
205 + metric_type: monotonic_count
206 - MIB: MCAFEE-MWG-MIB
207 symbol:
208 name: mcafee.mwg.stConnectedSockets
209 OID: 1.3.6.1.4.1.1230.2.7.2.5.3.0
210 - metric_type: monotonic_count
211 - description: Number of open network sockets in use by the proxy
212 - unit: "{socket}"
210 + description: Number of open network sockets in use by the proxy
211 + unit: "{socket}"
212 + metric_type: monotonic_count
213 - MIB: MCAFEE-MWG-MIB
214 symbol:
215 name: mcafee.mwg.stResolveHostViaDNS
216 OID: 1.3.6.1.4.1.1230.2.7.2.5.6.0
217 - metric_type: monotonic_count
218 - description: Time to resolve DNS in ms
219 - unit: "ms"
217 + description: Time to resolve DNS in ms
218 + unit: "ms"
219 + metric_type: monotonic_count
220 - MIB: MCAFEE-MWG-MIB
221 symbol:
222 name: mcafee.mwg.stTimeConsumedByRuleEngine
223 OID: 1.3.6.1.4.1.1230.2.7.2.5.7.0
224 - metric_type: monotonic_count
225 - description: Average time used by the rule engine in ms
226 - unit: "ms"
224 + description: Average time used by the rule engine in ms
225 + unit: "ms"
226 + metric_type: monotonic_count
227 - MIB: MCAFEE-MWG-MIB
228 symbol:
229 name: mcafee.mwg.stTimeForTransaction
230 OID: 1.3.6.1.4.1.1230.2.7.2.5.8.0
231 - metric_type: monotonic_count
232 - description: Average time for transaction in ms
233 - unit: "ms"
231 + description: Average time for transaction in ms
232 + unit: "ms"
233 + metric_type: monotonic_count
234 - MIB: MCAFEE-MWG-MIB
235 table:
236 name: stCategoriesTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/mikrotik-router.yaml
+60 -45
@@ -29,47 +29,55 @@ metrics:
29 symbols:
30 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.6
31 name: mtxrOpticalTemperature
32 - description: Temperature at sensor chip
33 - family: Hardware/OpticalModule/Temperature/Value
34 - unit: "Cel"
32 + chart_meta:
33 + description: Temperature at sensor chip
34 + family: Hardware/OpticalModule/Temperature/Value
35 + unit: "Cel"
36 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.10
37 name: mtxrOpticalRxPower
37 - description: Received optical power
38 - family: Hardware/OpticalModule/Power/In
39 - unit: "mW"
38 + chart_meta:
39 + description: Received optical power
40 + family: Hardware/OpticalModule/Power/In
41 + unit: "mW"
42 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.7
43 name: mtxrOpticalSupplyVoltage
42 - description: Supply voltage
43 - family: Hardware/OpticalModule/Voltage/Supply
44 - unit: "V"
44 + chart_meta:
45 + description: Supply voltage
46 + family: Hardware/OpticalModule/Voltage/Supply
47 + unit: "V"
48 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.8
49 name: mtxrOpticalTxBiasCurrent
47 - description: Transmit bias current
48 - family: Hardware/OpticalModule/Current/TxBias
49 - unit: "mA"
50 + chart_meta:
51 + description: Transmit bias current
52 + family: Hardware/OpticalModule/Current/TxBias
53 + unit: "mA"
54 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.5
55 name: mtxrOpticalWavelength
52 - description: Optical wavelength
53 - family: Hardware/OpticalModule/Wavelength
54 - unit: "nm"
56 + chart_meta:
57 + description: Optical wavelength
58 + family: Hardware/OpticalModule/Wavelength
59 + unit: "nm"
60 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.9
61 name: mtxrOpticalTxPower
57 - description: Transmit optical power
58 - family: Hardware/OpticalModule/Power/Out
59 - unit: "mW"
62 + chart_meta:
63 + description: Transmit optical power
64 + family: Hardware/OpticalModule/Power/Out
65 + unit: "mW"
66 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.4
67 name: mtxrOpticalTxFault
62 - description: Indicates whether the optical transceiver is experiencing a transmit fault
63 - family: Hardware/OpticalModule/Transmit/Fault/Status
64 - unit: "{status}"
68 + chart_meta:
69 + description: Indicates whether the optical transceiver is experiencing a transmit fault
70 + family: Hardware/OpticalModule/Transmit/Fault/Status
71 + unit: "{status}"
72 mapping:
73 0: 'ok'
74 1: 'fault'
75 - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.3
76 name: mtxrOpticalRxLoss
70 - description: Indicates whether there is a loss of received optical signal (Rx Loss)
71 - family: Hardware/OpticalModule/Receive/Loss/Status
72 - unit: "{status}"
77 + chart_meta:
78 + description: Indicates whether there is a loss of received optical signal (Rx Loss)
79 + family: Hardware/OpticalModule/Receive/Loss/Status
80 + unit: "{status}"
81 mapping:
82 0: 'ok'
83 1: 'loss'
@@ -89,24 +97,28 @@ metrics:
97 symbols:
98 - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.6
99 name: mtxrPOEPower
92 - description: Power over ethernet
93 - family: Interface/PoE/Power
94 - unit: "W"
100 + chart_meta:
101 + description: Power over ethernet
102 + family: Interface/PoE/Power
103 + unit: "W"
104 - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.4
105 name: mtxrPOEVoltage
97 - description: Power over ethernet voltage
98 - family: Interface/PoE/Voltage
99 - unit: "V"
106 + chart_meta:
107 + description: Power over ethernet voltage
108 + family: Interface/PoE/Voltage
109 + unit: "V"
110 - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.5
111 name: mtxrPOECurrent
102 - description: Power over ethernet current
103 - family: Interface/PoE/Current
104 - unit: "mA"
112 + chart_meta:
113 + description: Power over ethernet current
114 + family: Interface/PoE/Current
115 + unit: "mA"
116 - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.3
117 name: mtxrPOEStatus
107 - description: Power over ethernet status
108 - family: Interface/PoE/Status
109 - unit: "{status}"
118 + chart_meta:
119 + description: Power over ethernet status
120 + family: Interface/PoE/Status
121 + unit: "{status}"
122 mapping:
123 1: disabled
124 2: waiting_for_load
@@ -130,9 +142,10 @@ metrics:
142 symbols:
143 - OID: 1.3.6.1.2.1.25.3.3.1.2
144 name: cpu.usage
133 - description: The average, over the last minute, of the percentage of time that this processor was not idle.
134 - family: CPU/Usage
135 - unit: "%"
145 + chart_meta:
146 + description: The average, over the last minute, of the percentage of time that this processor was not idle.
147 + family: CPU/Usage
148 + unit: "%"
149 metric_tags:
150 - tag: cpu_index
151 index: 1
@@ -145,18 +158,20 @@ metrics:
158 symbols:
159 - OID: 1.3.6.1.2.1.25.2.3.1.5
160 name: memory.total
148 - description: Total size of the storage in bytes
149 - family: Memory/Total
150 - unit: "By"
161 + chart_meta:
162 + description: Total size of the storage in bytes
163 + family: Memory/Total
164 + unit: "By"
165 transform: |
166 {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
167 {{- $factor := int64 $unit -}}
168 {{- setValue .Metric (mul .Metric.Value $factor) -}}
169 - OID: 1.3.6.1.2.1.25.2.3.1.6
170 name: memory.used
157 - description: Amount of storage currently allocated in bytes
158 - family: Memory/Used
159 - unit: "By"
171 + chart_meta:
172 + description: Amount of storage currently allocated in bytes
173 + family: Memory/Used
174 + unit: "By"
175 transform: |
176 {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
177 {{- $factor := int64 $unit -}}
src/go/plugin/go.d/config/go.d/snmp.profiles/default/nasuni-filer.yaml
+96 -96
@@ -21,293 +21,293 @@ metrics:
21 symbol:
22 OID: 1.3.6.1.4.1.42040.1.6.0
23 name: nasuni.filerTotalUnprotectedData
24 - description: Total amount of unprotected data on the filer
25 - unit: "By"
24 + description: Total amount of unprotected data on the filer
25 + unit: "By"
26 - MIB: NASUNI-FILER-MIB
27 symbol:
28 OID: 1.3.6.1.4.1.42040.1.7.0
29 name: nasuni.filerPushesCompleted
30 - description: Number of completed pushes
31 - unit: "{push}"
30 + description: Number of completed pushes
31 + unit: "{push}"
32 - MIB: NASUNI-FILER-MIB
33 symbol:
34 OID: 1.3.6.1.4.1.42040.1.8.0
35 name: nasuni.filerTotalPushed
36 - description: Total amount of data pushed
37 - unit: "By"
36 + description: Total amount of data pushed
37 + unit: "By"
38 - MIB: NASUNI-FILER-MIB
39 symbol:
40 OID: 1.3.6.1.4.1.42040.1.9.0
41 name: nasuni.filerTotalRead
42 - description: Total amount of data read
43 - unit: "By"
42 + description: Total amount of data read
43 + unit: "By"
44 - MIB: NASUNI-FILER-MIB
45 symbol:
46 OID: 1.3.6.1.4.1.42040.1.10.0
47 name: nasuni.filerOpensForRead
48 - description: Number of opens for read
49 - unit: "{open}"
48 + description: Number of opens for read
49 + unit: "{open}"
50 - MIB: NASUNI-FILER-MIB
51 symbol:
52 OID: 1.3.6.1.4.1.42040.1.11.0
53 name: nasuni.filerOpensForWrite
54 - description: Number of opens for write
55 - unit: "{open}"
54 + description: Number of opens for write
55 + unit: "{open}"
56 - MIB: NASUNI-FILER-MIB
57 symbol:
58 OID: 1.3.6.1.4.1.42040.1.12.0
59 name: nasuni.filerMergeConflicts
60 - description: Number of merge conflicts
61 - unit: "{conflict}"
60 + description: Number of merge conflicts
61 + unit: "{conflict}"
62 - MIB: NASUNI-FILER-MIB
63 symbol:
64 OID: 1.3.6.1.4.1.42040.1.13.0
65 name: nasuni.filerReadHits
66 - description: Number of read hits
67 - unit: "{hit}"
66 + description: Number of read hits
67 + unit: "{hit}"
68 - MIB: NASUNI-FILER-MIB
69 symbol:
70 OID: 1.3.6.1.4.1.42040.1.14.0
71 name: nasuni.filerReadMisses
72 - description: Number of read misses
73 - unit: "{miss}"
72 + description: Number of read misses
73 + unit: "{miss}"
74 - MIB: NASUNI-FILER-MIB
75 metric_type: gauge
76 symbol:
77 OID: 1.3.6.1.4.1.42040.1.100.1.0
78 name: nasuni.filerCacheTotal
79 - description: Total cache size
80 - unit: "By"
79 + description: Total cache size
80 + unit: "By"
81 - MIB: NASUNI-FILER-MIB
82 metric_type: gauge
83 symbol:
84 OID: 1.3.6.1.4.1.42040.1.100.2.0
85 name: nasuni.filerCacheUsed
86 - description: Used cache size
87 - unit: "By"
86 + description: Used cache size
87 + unit: "By"
88 - MIB: NASUNI-FILER-MIB
89 metric_type: gauge
90 symbol:
91 OID: 1.3.6.1.4.1.42040.1.100.3.0
92 name: nasuni.filerCacheFree
93 - description: Free cache size
94 - unit: "By"
93 + description: Free cache size
94 + unit: "By"
95 - MIB: NASUNI-FILER-MIB
96 symbol:
97 OID: 1.3.6.1.4.1.42040.1.103.1.0
98 name: nasuni.filerTotalShares
99 - description: Total number of shares
100 - unit: "{share}"
99 + description: Total number of shares
100 + unit: "{share}"
101 - MIB: NASUNI-FILER-MIB
102 symbol:
103 OID: 1.3.6.1.4.1.42040.1.103.2.0
104 name: nasuni.filerTotalShareLocks
105 - description: Total number of share locks
106 - unit: "{lock}"
105 + description: Total number of share locks
106 + unit: "{lock}"
107 - MIB: NASUNI-FILER-MIB
108 symbol:
109 OID: 1.3.6.1.4.1.42040.1.103.3.0
110 name: nasuni.filerTotalShareClients
111 - description: Total number of share clients
112 - unit: "{client}"
111 + description: Total number of share clients
112 + unit: "{client}"
113 - MIB: NASUNI-FILER-MIB
114 symbol:
115 OID: 1.3.6.1.4.1.42040.1.104.1.0
116 name: nasuni.filerTotalExports
117 - description: Total number of exports
118 - unit: "{export}"
117 + description: Total number of exports
118 + unit: "{export}"
119 - MIB: NASUNI-FILER-MIB
120 symbol:
121 OID: 1.3.6.1.4.1.42040.1.105.1.0
122 name: nasuni.filerTotalIscsiTargets
123 - description: Total number of iSCSI targets
124 - unit: "{target}"
123 + description: Total number of iSCSI targets
124 + unit: "{target}"
125 - MIB: NASUNI-FILER-MIB
126 symbol:
127 OID: 1.3.6.1.4.1.42040.1.105.2.0
128 name: nasuni.filerTotalIscsiClients
129 - description: Total number of iSCSI clients
130 - unit: "{client}"
129 + description: Total number of iSCSI clients
130 + unit: "{client}"
131 - MIB: NASUNI-FILER-MIB
132 symbol:
133 OID: 1.3.6.1.4.1.42040.1.109.1.0
134 name: nasuni.filerTotalFtpdirs
135 - description: Total number of FTP directories
136 - unit: "{directory}"
135 + description: Total number of FTP directories
136 + unit: "{directory}"
137 - MIB: NASUNI-FILER-MIB
138 symbol:
139 OID: 1.3.6.1.4.1.42040.1.106.1.0
140 name: nasuni.filerTotalMobileLicenses
141 - description: Total number of mobile licenses
142 - unit: "{license}"
141 + description: Total number of mobile licenses
142 + unit: "{license}"
143 - MIB: NASUNI-FILER-MIB
144 symbol:
145 OID: 1.3.6.1.4.1.42040.1.106.2.0
146 name: nasuni.filerNumIOSLicenses
147 - description: Number of iOS licenses
148 - unit: "{license}"
147 + description: Number of iOS licenses
148 + unit: "{license}"
149 - MIB: NASUNI-FILER-MIB
150 symbol:
151 OID: 1.3.6.1.4.1.42040.1.106.3.0
152 name: nasuni.filerNumAndroidLicenses
153 - description: Number of Android licenses
154 - unit: "{license}"
153 + description: Number of Android licenses
154 + unit: "{license}"
155 - MIB: NASUNI-FILER-MIB
156 symbol:
157 OID: 1.3.6.1.4.1.42040.1.108.1.0
158 name: nasuni.filerCloudOut
159 - description: Amount of data sent to cloud
160 - unit: "By"
159 + description: Amount of data sent to cloud
160 + unit: "By"
161 - MIB: NASUNI-FILER-MIB
162 symbol:
163 OID: 1.3.6.1.4.1.42040.1.108.2.0
164 name: nasuni.filerCloudIn
165 - description: Amount of data received from cloud
166 - unit: "By"
165 + description: Amount of data received from cloud
166 + unit: "By"
167 - MIB: NASUNI-FILER-MIB
168 symbol:
169 OID: 1.3.6.1.4.1.42040.1.108.3.0
170 name: nasuni.filerMobileOut
171 - description: Amount of data sent to mobile
172 - unit: "By"
171 + description: Amount of data sent to mobile
172 + unit: "By"
173 - MIB: NASUNI-FILER-MIB
174 symbol:
175 OID: 1.3.6.1.4.1.42040.1.108.4.0
176 name: nasuni.filerMobileIn
177 - description: Amount of data received from mobile
178 - unit: "By"
177 + description: Amount of data received from mobile
178 + unit: "By"
179 - MIB: NASUNI-FILER-MIB
180 symbol:
181 OID: 1.3.6.1.4.1.42040.1.108.5.0
182 name: nasuni.filerUIOut
183 - description: Amount of data sent to UI
184 - unit: "By"
183 + description: Amount of data sent to UI
184 + unit: "By"
185 - MIB: NASUNI-FILER-MIB
186 symbol:
187 OID: 1.3.6.1.4.1.42040.1.108.6.0
188 name: nasuni.filerUIIn
189 - description: Amount of data received from UI
190 - unit: "By"
189 + description: Amount of data received from UI
190 + unit: "By"
191 - MIB: NASUNI-FILER-MIB
192 symbol:
193 OID: 1.3.6.1.4.1.42040.1.108.7.0
194 name: nasuni.filerClientsOut
195 - description: Amount of data sent to clients
196 - unit: "By"
195 + description: Amount of data sent to clients
196 + unit: "By"
197 - MIB: NASUNI-FILER-MIB
198 symbol:
199 OID: 1.3.6.1.4.1.42040.1.108.8.0
200 name: nasuni.filerClientsIn
201 - description: Amount of data received from clients
202 - unit: "By"
201 + description: Amount of data received from clients
202 + unit: "By"
203 - MIB: NASUNI-FILER-MIB
204 symbol:
205 OID: 1.3.6.1.4.1.42040.1.108.9.0
206 name: nasuni.filerMigrationOut
207 - description: Amount of data sent during migration
208 - unit: "By"
207 + description: Amount of data sent during migration
208 + unit: "By"
209 - MIB: NASUNI-FILER-MIB
210 symbol:
211 OID: 1.3.6.1.4.1.42040.1.108.10.0
212 name: nasuni.filerMigrationIn
213 - description: Amount of data received during migration
214 - unit: "By"
213 + description: Amount of data received during migration
214 + unit: "By"
215 - MIB: NASUNI-FILER-MIB
216 symbol:
217 OID: 1.3.6.1.4.1.42040.3.1.0
218 name: nasuni.accountLicensedCapacity
219 - description: Licensed account capacity
220 - unit: "By"
219 + description: Licensed account capacity
220 + unit: "By"
221 - MIB: NASUNI-FILER-MIB
222 symbol:
223 OID: 1.3.6.1.4.1.42040.3.2.0
224 name: nasuni.accountUsedCapacity
225 - description: Used account capacity
226 - unit: "By"
225 + description: Used account capacity
226 + unit: "By"
227 - MIB: NASUNI-FILER-MIB
228 symbol:
229 OID: 1.3.6.1.4.1.42040.3.3.0
230 name: nasuni.accountPercentUsedCapacity
231 - description: Percent of used account capacity
232 - unit: "%"
231 + description: Percent of used account capacity
232 + unit: "%"
233 - MIB: NASUNI-FILER-MIB
234 symbol:
235 OID: 1.3.6.1.4.1.42040.1.102.1.0
236 name: nasuni.filerAmbientTemp
237 - description: Ambient temperature of the filer
238 - unit: "Cel"
237 + description: Ambient temperature of the filer
238 + unit: "Cel"
239 - MIB: NASUNI-FILER-MIB
240 symbol:
241 OID: 1.3.6.1.4.1.42040.1.102.2.0
242 name: nasuni.filerInletTemp
243 - description: Inlet temperature of the filer
244 - unit: "Cel"
243 + description: Inlet temperature of the filer
244 + unit: "Cel"
245 - MIB: NASUNI-FILER-MIB
246 symbol:
247 OID: 1.3.6.1.4.1.42040.1.102.3.0
248 name: nasuni.filerExhaustTemp
249 - description: Exhaust temperature of the filer
250 - unit: "Cel"
249 + description: Exhaust temperature of the filer
250 + unit: "Cel"
251 - MIB: NASUNI-FILER-MIB
252 symbol:
253 OID: 1.3.6.1.4.1.42040.1.102.4.0
254 name: nasuni.filerNumPowerSupplies
255 - description: Number of power supplies
256 - unit: "{power_supply}"
255 + description: Number of power supplies
256 + unit: "{power_supply}"
257 - MIB: NASUNI-FILER-MIB
258 symbol:
259 OID: 1.3.6.1.4.1.42040.1.102.5.0
260 name: nasuni.filerPowerSupplyErrors
261 - description: Number of power supply errors
262 - unit: "{error}"
261 + description: Number of power supply errors
262 + unit: "{error}"
263 - MIB: NASUNI-FILER-MIB
264 symbol:
265 OID: 1.3.6.1.4.1.42040.1.102.6.0
266 name: nasuni.filerNumRaidArrays
267 - description: Number of RAID arrays
268 - unit: "{raid_array}"
267 + description: Number of RAID arrays
268 + unit: "{raid_array}"
269 - MIB: NASUNI-FILER-MIB
270 symbol:
271 OID: 1.3.6.1.4.1.42040.1.102.7.0
272 name: nasuni.filerRaidArrayErrors
273 - description: Number of RAID array errors
274 - unit: "{error}"
273 + description: Number of RAID array errors
274 + unit: "{error}"
275 - MIB: NASUNI-FILER-MIB
276 symbol:
277 OID: 1.3.6.1.4.1.42040.1.102.8.0
278 name: nasuni.filerNumRaidDisks
279 - description: Number of RAID disks
280 - unit: "{raid_disk}"
279 + description: Number of RAID disks
280 + unit: "{raid_disk}"
281 - MIB: NASUNI-FILER-MIB
282 symbol:
283 OID: 1.3.6.1.4.1.42040.1.102.9.0
284 name: nasuni.filerRaidDiskErrors
285 - description: Number of RAID disk errors
286 - unit: "{error}"
285 + description: Number of RAID disk errors
286 + unit: "{error}"
287 - MIB: NASUNI-FILER-MIB
288 symbol:
289 OID: 1.3.6.1.4.1.42040.1.101.10.0
290 name: nasuni.filerDiskCount
291 - description: Number of disks
292 - unit: "{disk}"
291 + description: Number of disks
292 + unit: "{disk}"
293 - MIB: NASUNI-FILER-MIB
294 symbol:
295 OID: 1.3.6.1.4.1.42040.1.101.6.0
296 name: nasuni.filerPhysCpuCount
297 - description: Number of physical CPUs
298 - unit: "{cpu}"
297 + description: Number of physical CPUs
298 + unit: "{cpu}"
299 - MIB: NASUNI-FILER-MIB
300 symbol:
301 OID: 1.3.6.1.4.1.42040.1.101.7.0
302 name: nasuni.filerCoreCount
303 - description: Number of CPU cores
304 - unit: "{core}"
303 + description: Number of CPU cores
304 + unit: "{core}"
305 - MIB: NASUNI-FILER-MIB
306 symbol:
307 OID: 1.3.6.1.4.1.42040.2.1.0
308 name: nasuni.volumeCount
309 - description: Number of volumes
310 - unit: "{volume}"
309 + description: Number of volumes
310 + unit: "{volume}"
311 - MIB: NASUNI-FILER-MIB
312 table:
313 OID: 1.3.6.1.4.1.42040.2.2
src/go/plugin/go.d/config/go.d/snmp.profiles/default/nec-univerge.yaml
+84 -84
@@ -15,251 +15,251 @@ metrics:
15 symbol:
16 name: nec.picoCelsius
17 OID: 1.3.6.1.4.1.119.2.3.84.2.1.1.0
18 - description: Temperature in Celsius
19 - unit: "Cel"
18 + description: Temperature in Celsius
19 + unit: "Cel"
20 - MIB: PICO-SMI
21 symbol:
22 name: nec.picoFahrenheit
23 OID: 1.3.6.1.4.1.119.2.3.84.2.1.2.0
24 - description: Temperature in Fahrenheit
25 - unit: "degF"
24 + description: Temperature in Fahrenheit
25 + unit: "degF"
26 - MIB: PICO-SMI
27 symbol:
28 name: nec.picoVoltage
29 OID: 1.3.6.1.4.1.119.2.3.84.2.2.0
30 - description: Voltage level
31 - unit: "V"
30 + description: Voltage level
31 + unit: "V"
32 - MIB: PICO-SMI
33 symbol:
34 name: cpu.usage
35 OID: 1.3.6.1.4.1.119.2.3.84.2.5.3.0
36 - description: CPU usage percentage
37 - unit: "%"
36 + description: CPU usage percentage
37 + unit: "%"
38 - MIB: PICO-SMI
39 symbol:
40 name: memory.usage
41 OID: 1.3.6.1.4.1.119.2.3.84.2.6.2.0
42 - description: Memory usage percentage
43 - unit: "%"
42 + description: Memory usage percentage
43 + unit: "%"
44 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
45 symbol:
46 name: nec.pikeGlobalActiveTunnels
47 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1.0
48 - description: Number of active IPsec tunnels
49 - unit: "{tunnel}"
48 + description: Number of active IPsec tunnels
49 + unit: "{tunnel}"
50 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
51 symbol:
52 name: nec.pikeGlobalInNotifys
53 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6.0
54 - description: Number of inbound notifications
55 - unit: "{notification}"
54 + description: Number of inbound notifications
55 + unit: "{notification}"
56 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
57 symbol:
58 name: nec.pikeGlobalInP2Exchgs
59 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7.0
60 - description: Number of inbound phase 2 exchanges
61 - unit: "{exchange}"
60 + description: Number of inbound phase 2 exchanges
61 + unit: "{exchange}"
62 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
63 symbol:
64 name: nec.pikeGlobalInP2ExchgInvalids
65 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8.0
66 - description: Number of invalid inbound phase 2 exchanges
67 - unit: "{exchange}"
66 + description: Number of invalid inbound phase 2 exchanges
67 + unit: "{exchange}"
68 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
69 symbol:
70 name: nec.pikeGlobalInP2ExchgRejects
71 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9.0
72 - description: Number of rejected inbound phase 2 exchanges
73 - unit: "{exchange}"
72 + description: Number of rejected inbound phase 2 exchanges
73 + unit: "{exchange}"
74 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
75 symbol:
76 name: nec.pikeGlobalInP2SaDelRequests
77 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10.0
78 - description: Number of inbound phase 2 SA delete requests
79 - unit: "{request}"
78 + description: Number of inbound phase 2 SA delete requests
79 + unit: "{request}"
80 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
81 symbol:
82 name: nec.pikeGlobalOutNotifys
83 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14.0
84 - description: Number of outbound notifications
85 - unit: "{notification}"
84 + description: Number of outbound notifications
85 + unit: "{notification}"
86 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
87 symbol:
88 name: nec.pikeGlobalOutP2Exchgs
89 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15.0
90 - description: Number of outbound phase 2 exchanges
91 - unit: "{exchange}"
90 + description: Number of outbound phase 2 exchanges
91 + unit: "{exchange}"
92 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
93 symbol:
94 name: nec.pikeGlobalOutP2ExchgInvalids
95 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16.0
96 - description: Number of invalid outbound phase 2 exchanges
97 - unit: "{exchange}"
96 + description: Number of invalid outbound phase 2 exchanges
97 + unit: "{exchange}"
98 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
99 symbol:
100 name: nec.pikeGlobalOutP2ExchgRejects
101 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17.0
102 - description: Number of rejected outbound phase 2 exchanges
103 - unit: "{exchange}"
102 + description: Number of rejected outbound phase 2 exchanges
103 + unit: "{exchange}"
104 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
105 symbol:
106 name: nec.pikeGlobalOutP2SaDelRequests
107 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18.0
108 - description: Number of outbound phase 2 SA delete requests
109 - unit: "{request}"
108 + description: Number of outbound phase 2 SA delete requests
109 + unit: "{request}"
110 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
111 symbol:
112 name: nec.pikeGlobalInitTunnels
113 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19.0
114 - description: Number of initiated IPsec tunnels
115 - unit: "{tunnel}"
114 + description: Number of initiated IPsec tunnels
115 + unit: "{tunnel}"
116 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
117 symbol:
118 name: nec.pikeGlobalInitTunnelFails
119 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20.0
120 - description: Number of failed initiated tunnels
121 - unit: "{tunnel}"
120 + description: Number of failed initiated tunnels
121 + unit: "{tunnel}"
122 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
123 symbol:
124 name: nec.pikeGlobalRespTunnelFails
125 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21.0
126 - description: Number of failed responder tunnels
127 - unit: "{tunnel}"
126 + description: Number of failed responder tunnels
127 + unit: "{tunnel}"
128 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
129 symbol:
130 name: nec.pikeGlobalAuthFails
131 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23.0
132 - description: Number of authentication failures
133 - unit: "{failure}"
132 + description: Number of authentication failures
133 + unit: "{failure}"
134 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
135 symbol:
136 name: nec.pikeGlobalDecryptFails
137 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24.0
138 - description: Number of decryption failures
139 - unit: "{failure}"
138 + description: Number of decryption failures
139 + unit: "{failure}"
140 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
141 symbol:
142 name: nec.pikeGlobalHashValidFails
143 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25.0
144 - description: Number of hash validation failures
145 - unit: "{failure}"
144 + description: Number of hash validation failures
145 + unit: "{failure}"
146 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
147 symbol:
148 name: nec.pikeGlobalRespTunnels
149 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27.0
150 - description: Number of responder IPsec tunnels
151 - unit: "{tunnel}"
150 + description: Number of responder IPsec tunnels
151 + unit: "{tunnel}"
152 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
153 symbol:
154 name: nec.pikeGlobalInP1SaDelRequests
155 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30.0
156 - description: Number of inbound phase 1 SA delete requests
157 - unit: "{request}"
156 + description: Number of inbound phase 1 SA delete requests
157 + unit: "{request}"
158 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
159 symbol:
160 name: nec.pikeGlobalOutP1SaDelRequests
161 OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31.0
162 - description: Number of outbound phase 1 SA delete requests
163 - unit: "{request}"
162 + description: Number of outbound phase 1 SA delete requests
163 + unit: "{request}"
164 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
165 symbol:
166 name: nec.pipSecGlobalActiveTunnels
167 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1.0
168 - description: Number of active IPsec tunnels
169 - unit: "{tunnel}"
168 + description: Number of active IPsec tunnels
169 + unit: "{tunnel}"
170 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
171 symbol:
172 name: nec.pipSecGlobalInOctets
173 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3.0
174 - description: Number of inbound octets
175 - unit: "By"
174 + description: Number of inbound octets
175 + unit: "By"
176 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
177 symbol:
178 name: nec.pipSecGlobalInPkts
179 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9.0
180 - description: Number of inbound packets
181 - unit: "{packet}"
180 + description: Number of inbound packets
181 + unit: "{packet}"
182 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
183 symbol:
184 name: nec.pipSecGlobalInDrops
185 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10.0
186 - description: Number of inbound dropped packets
187 - unit: "{packet}"
186 + description: Number of inbound dropped packets
187 + unit: "{packet}"
188 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
189 symbol:
190 name: nec.pipSecGlobalInReplayDrops
191 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11.0
192 - description: Number of inbound replay dropped packets
193 - unit: "{packet}"
192 + description: Number of inbound replay dropped packets
193 + unit: "{packet}"
194 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
195 symbol:
196 name: nec.pipSecGlobalInAuths
197 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12.0
198 - description: Number of inbound authentications
199 - unit: "{authentication}"
198 + description: Number of inbound authentications
199 + unit: "{authentication}"
200 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
201 symbol:
202 name: nec.pipSecGlobalInAuthFails
203 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13.0
204 - description: Number of inbound authentication failures
205 - unit: "{failure}"
204 + description: Number of inbound authentication failures
205 + unit: "{failure}"
206 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
207 symbol:
208 name: nec.pipSecGlobalInDecrypts
209 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14.0
210 - description: Number of inbound decryptions
211 - unit: "{decryption}"
210 + description: Number of inbound decryptions
211 + unit: "{decryption}"
212 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
213 symbol:
214 name: nec.pipSecGlobalInDecryptFails
215 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15.0
216 - description: Number of inbound decryption failures
217 - unit: "{failure}"
216 + description: Number of inbound decryption failures
217 + unit: "{failure}"
218 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
219 symbol:
220 name: nec.pipSecGlobalOutOctets
221 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16.0
222 - description: Number of outbound octets
223 - unit: "By"
222 + description: Number of outbound octets
223 + unit: "By"
224 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
225 symbol:
226 name: nec.pipSecGlobalOutPkts
227 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22.0
228 - description: Number of outbound packets
229 - unit: "{packet}"
228 + description: Number of outbound packets
229 + unit: "{packet}"
230 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
231 symbol:
232 name: nec.pipSecGlobalOutDrops
233 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23.0
234 - description: Number of outbound dropped packets
235 - unit: "{packet}"
234 + description: Number of outbound dropped packets
235 + unit: "{packet}"
236 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
237 symbol:
238 name: nec.pipSecGlobalOutAuths
239 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24.0
240 - description: Number of outbound authentications
241 - unit: "{authentication}"
240 + description: Number of outbound authentications
241 + unit: "{authentication}"
242 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
243 symbol:
244 name: nec.pipSecGlobalOutAuthFails
245 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25.0
246 - description: Number of outbound authentication failures
247 - unit: "{failure}"
246 + description: Number of outbound authentication failures
247 + unit: "{failure}"
248 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
249 symbol:
250 name: nec.pipSecGlobalOutEncrypts
251 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26.0
252 - description: Number of outbound encryptions
253 - unit: "{encryption}"
252 + description: Number of outbound encryptions
253 + unit: "{encryption}"
254 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
255 symbol:
256 name: nec.pipSecGlobalOutEncryptFails
257 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27.0
258 - description: Number of outbound encryption failures
259 - unit: "{failure}"
258 + description: Number of outbound encryption failures
259 + unit: "{failure}"
260 - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
261 symbol:
262 name: nec.pipSecGlobalNoSaFails
263 OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33.0
264 - description: Number of no SA failures
265 - unit: "{failure}"
264 + description: Number of no SA failures
265 + unit: "{failure}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/netapp.yaml
+136 -102
@@ -59,9 +59,10 @@ metrics:
59 name: cfInterconnectStatus
60 # The current status of the interconnect.
61 # The partialFailure(3) status indicates that one of the links in the interconnect hardware is down.
62 - description: The current status of the interconnect
63 - family: ClusterFailover/Interconnect/Status
64 - unit: "{status}"
62 + chart_meta:
63 + description: The current status of the interconnect
64 + family: ClusterFailover/Interconnect/Status
65 + unit: "{status}"
66 - MIB: NETAPP-MIB
67 symbol:
68 OID: 1.3.6.1.4.1.789.1.2.2.23.0
@@ -70,24 +71,27 @@ metrics:
71 # This indicates how fast read operations are cycling through system memory;
72 # when the appliance is reading very large files (larger than the machine's memory size),
73 # buffer cache age will be very low.
73 - description: Age in minutes of the oldest read-only blocks in the buffer cache
74 - family: Cache/Buffer/Age
75 - unit: "min"
74 + chart_meta:
75 + description: Age in minutes of the oldest read-only blocks in the buffer cache
76 + family: Cache/Buffer/Age
77 + unit: "min"
78 - MIB: NETAPP-MIB
79 symbol:
80 OID: 1.3.6.1.4.1.789.1.8.3.6.36.0
81 name: ncHttpActiveCliConns
80 - description: Number of currently active TCP/IP connections to HTTP clients
81 - family: Network/HTTP/Connection/Active
82 - unit: "{connection}"
82 + chart_meta:
83 + description: Number of currently active TCP/IP connections to HTTP clients
84 + family: Network/HTTP/Connection/Active
85 + unit: "{connection}"
86
87 - MIB: NETAPP-MIB
88 symbol:
89 OID: 1.3.6.1.4.1.789.1.26.8.0
90 name: extcache64Hits
88 - description: Number of wafl buffers read from the external cache
89 - family: Cache/External/Hit/Count
90 - unit: "{buffer}/s"
91 + chart_meta:
92 + description: Number of wafl buffers read from the external cache
93 + family: Cache/External/Hit/Count
94 + unit: "{buffer}/s"
95
96 # Snap vaults (https://oidref.com/1.3.6.1.4.1.789.1.19.11.1.15)
97 - MIB: NETAPP-MIB
@@ -97,30 +101,35 @@ metrics:
101 symbols:
102 - OID: 1.3.6.1.4.1.789.1.19.11.1.11
103 name: svTotalTransMBs
100 - family: SnapVault/Transfer/Throughput/Total
101 - description: Transfer size
102 - unit: "By/s"
104 + chart_meta:
105 + description: Transfer size
106 + family: SnapVault/Transfer/Throughput/Total
107 + unit: "By/s"
108 scale_factor: 1048576
109 - OID: 1.3.6.1.4.1.789.1.19.11.1.7
110 name: svTotalSuccesses
106 - family: SnapVault/Transfer/Success/Count
107 - description: Successful transfers
108 - unit: "{transfer}/s"
111 + chart_meta:
112 + description: Successful transfers
113 + family: SnapVault/Transfer/Success/Count
114 + unit: "{transfer}/s"
115 - OID: 1.3.6.1.4.1.789.1.19.11.1.9
116 name: svTotalFailures
111 - family: SnapVault/Transfer/Failure/Count
112 - description: Failed or aborted transfers
113 - unit: "{transfer}/s"
117 + chart_meta:
118 + description: Failed or aborted transfers
119 + family: SnapVault/Transfer/Failure/Count
120 + unit: "{transfer}/s"
121 - OID: 1.3.6.1.4.1.789.1.19.11.1.6
122 name: svLag
116 - family: SnapVault/Sync/Lag
117 - description: Shows how far away the destination is from the source.
118 - unit: "cs"
123 + chart_meta:
124 + description: Shows how far away the destination is from the source.
125 + family: SnapVault/Sync/Lag
126 + unit: "cs"
127 - OID: 1.3.6.1.4.1.789.1.19.11.1.4
128 name: svStatus
121 - family: SnapVault/Transfer/Status
122 - description: Current transfer status
123 - unit: "{status}"
129 + chart_meta:
130 + description: Current transfer status
131 + family: SnapVault/Transfer/Status
132 + unit: "{status}"
133 mapping:
134 1: idle
135 2: transferring
@@ -131,9 +140,10 @@ metrics:
140 12: paused
141 - OID: 1.3.6.1.4.1.789.1.19.11.1.5
142 name: svState
134 - family: SnapVault/Relationship/Status
135 - description: Current state of the SnapVault relationship
136 - unit: "{status}"
143 + chart_meta:
144 + description: Current state of the SnapVault relationship
145 + family: SnapVault/Relationship/Status
146 + unit: "{status}"
147 mapping:
148 1: uninitialized
149 2: snapvaulted
@@ -165,30 +175,35 @@ metrics:
175 symbols:
176 - OID: 1.3.6.1.4.1.789.1.9.20.1.11
177 name: snapmirrorTotalTransMBs
168 - family: SnapMirror/Transfer/Throughput/Total
169 - description: Transfer size
170 - unit: "By/s"
178 + chart_meta:
179 + description: Transfer size
180 + family: SnapMirror/Transfer/Throughput/Total
181 + unit: "By/s"
182 scale_factor: 1048576
183 - OID: 1.3.6.1.4.1.789.1.9.20.1.7
184 name: snapmirrorTotalSuccesses
174 - family: SnapMirror/Transfer/Success/Count
175 - description: Successful transfers
176 - unit: "{transfer}/s"
185 + chart_meta:
186 + description: Successful transfers
187 + family: SnapMirror/Transfer/Success/Count
188 + unit: "{transfer}/s"
189 - OID: 1.3.6.1.4.1.789.1.9.20.1.9
190 name: snapmirrorTotalFailures
179 - family: SnapMirror/Transfer/Failure/Count
180 - description: Failed or aborted transfers
181 - unit: "{transfer}/s"
191 + chart_meta:
192 + description: Failed or aborted transfers
193 + family: SnapMirror/Transfer/Failure/Count
194 + unit: "{transfer}/s"
195 - OID: 1.3.6.1.4.1.789.1.9.20.1.6
196 name: snapmirrorLag
184 - description: How far behind from the source the destination is
185 - family: SnapMirror/Sync/Lag
186 - unit: "cs"
197 + chart_meta:
198 + description: How far behind from the source the destination is
199 + family: SnapMirror/Sync/Lag
200 + unit: "cs"
201 - OID: 1.3.6.1.4.1.789.1.9.20.1.4
202 name: snapmirrorStatus
189 - family: SnapMirror/Transfer/Status
190 - description: Current transfer status of the SnapMirror
191 - unit: "{status}"
203 + chart_meta:
204 + description: Current transfer status of the SnapMirror
205 + family: SnapMirror/Transfer/Status
206 + unit: "{status}"
207 mapping:
208 1: uninitialized
209 2: snapmirrored
@@ -198,9 +213,10 @@ metrics:
213 6: unknown
214 - OID: 1.3.6.1.4.1.789.1.9.20.1.5
215 name: snapmirrorState
201 - family: SnapMirror/Status
202 - description: Current state of the SnapMirror
203 - unit: "{status}"
216 + chart_meta:
217 + description: Current state of the SnapMirror
218 + family: SnapMirror/Status
219 + unit: "{status}"
220 mapping:
221 1: idle
222 2: transferring
@@ -231,9 +247,10 @@ metrics:
247 symbols:
248 - OID: 1.3.6.1.4.1.789.1.5.4.1.20
249 name: dfStatus
234 - description: The status of the file system
235 - family: FileSystem/Status
236 - unit: "{status}"
250 + chart_meta:
251 + description: The status of the file system
252 + family: FileSystem/Status
253 + unit: "{status}"
254 mapping:
255 1: unmounted
256 2: mounted
@@ -247,9 +264,10 @@ metrics:
264 10: replayed
265 - OID: 1.3.6.1.4.1.789.1.5.4.1.21
266 name: dfMirrorStatus
250 - description: The status of the file system
251 - family: FileSystem/Mirror/Status
252 - unit: "{status}"
267 + chart_meta:
268 + description: The status of the file system
269 + family: FileSystem/Mirror/Status
270 + unit: "{status}"
271 mapping:
272 1: invalid
273 2: uninitialized
@@ -263,32 +281,37 @@ metrics:
281 10: limbo
282 - OID: 1.3.6.1.4.1.789.1.5.4.1.14
283 name: dfHighTotalKBytes
266 - description: Total capacity for the referenced file system
267 - family: FileSystem/Space/Total
268 - unit: "By"
284 + chart_meta:
285 + description: Total capacity for the referenced file system
286 + family: FileSystem/Space/Total
287 + unit: "By"
288 scale_factor: 1024
289 - OID: 1.3.6.1.4.1.789.1.5.4.1.16
290 name: dfHighUsedKBytes
272 - description: The total disk space that is in use on the referenced file system
273 - family: FileSystem/Space/Used
274 - unit: "By"
291 + chart_meta:
292 + description: The total disk space that is in use on the referenced file system
293 + family: FileSystem/Space/Used
294 + unit: "By"
295 scale_factor: 1024
296 - OID: 1.3.6.1.4.1.789.1.5.4.1.18
297 name: dfHighAvailKBytes
278 - description: Total disk space that is free for use on the referenced file system
279 - family: FileSystem/Space/Available
280 - unit: "By"
298 + chart_meta:
299 + description: Total disk space that is free for use on the referenced file system
300 + family: FileSystem/Space/Available
301 + unit: "By"
302 scale_factor: 1024
303 - OID: 1.3.6.1.4.1.789.1.5.4.1.7
304 name: dfInodesUsed
284 - description: Total number of inodes in use on the referenced file system
285 - family: FileSystem/Inode/Used
286 - unit: "{inode}"
305 + chart_meta:
306 + description: Total number of inodes in use on the referenced file system
307 + family: FileSystem/Inode/Used
308 + unit: "{inode}"
309 - OID: 1.3.6.1.4.1.789.1.5.4.1.8
310 name: dfInodesFree
289 - description: Total number of inodes that are available for use on the referenced file system
290 - family: FileSystem/Inode/Free
291 - unit: "{inode}"
311 + chart_meta:
312 + description: Total number of inodes that are available for use on the referenced file system
313 + family: FileSystem/Inode/Free
314 + unit: "{inode}"
315 metric_tags:
316 - tag: df_index
317 symbol:
@@ -311,61 +334,72 @@ metrics:
334 symbols:
335 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.25
336 name: if64InOctets
314 - description: The total number of octets received on the interface, including framing characters
315 - family: Interfaces/Traffic/Total/In
316 - unit: "bits/s"
337 + chart_meta:
338 + description: The total number of octets received on the interface, including framing characters
339 + family: Interfaces/Traffic/Total/In
340 + unit: "bits/s"
341 scale_factor: 8
342 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.31
343 name: if64OutOctets
320 - description: The total number of octets transmitted out of the interface, including framing characters
321 - family: Interfaces/Traffic/Total/Out
322 - unit: "bits/s"
344 + chart_meta:
345 + description: The total number of octets transmitted out of the interface, including framing characters
346 + family: Interfaces/Traffic/Total/Out
347 + unit: "bits/s"
348 scale_factor: 8
349 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.26
350 name: if64InUcastPkts
326 - description: The number of unicast packets delivered to a higher-layer protocol
327 - family: Interfaces/Packet/Unicast/In
328 - unit: "packets/s"
351 + chart_meta:
352 + description: The number of unicast packets delivered to a higher-layer protocol
353 + family: Interfaces/Packet/Unicast/In
354 + unit: "packets/s"
355 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.32
356 name: if64OutUcastPkts
331 - description: The total number of unicast packets requested to be transmitted
332 - family: Interfaces/Packet/Unicast/Out
333 - unit: "packets/s"
357 + chart_meta:
358 + description: The total number of unicast packets requested to be transmitted
359 + family: Interfaces/Packet/Unicast/Out
360 + unit: "packets/s"
361 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.27
362 name: if64InNUcastPkts
336 - description: The number of non-unicast (broadcast/multicast) packets delivered to a higher-layer protocol
337 - family: Interfaces/Packet/NonUnicast/In
338 - unit: "packets/s"
363 + chart_meta:
364 + description: The number of non-unicast (broadcast/multicast) packets delivered to a higher-layer protocol
365 + family: Interfaces/Packet/NonUnicast/In
366 + unit: "packets/s"
367 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.33
368 name: if64OutNUcastPkts
341 - description: The total number of non-unicast packets requested to be transmitted
342 - family: Interfaces/Packet/NonUnicast/Out
343 - unit: "packets/s"
369 + chart_meta:
370 + description: The total number of non-unicast packets requested to be transmitted
371 + family: Interfaces/Packet/NonUnicast/Out
372 + unit: "packets/s"
373 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.28
374 name: if64InDiscards
346 - description: The number of inbound packets discarded even though no errors were detected
347 - family: Interfaces/Discard/In
348 - unit: "packets/s"
375 + chart_meta:
376 + description: The number of inbound packets discarded even though no errors were detected
377 + family: Interfaces/Discard/In
378 + unit: "packets/s"
379 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.34
380 name: if64OutDiscards
351 - description: The number of outbound packets discarded even though no errors were detected
352 - family: Interfaces/Discard/Out
353 - unit: "packets/s"
381 + chart_meta:
382 + description: The number of outbound packets discarded even though no errors were detected
383 + family: Interfaces/Discard/Out
384 + unit: "packets/s"
385 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.29
386 name: if64InErrors
356 - description: The number of inbound packets containing errors preventing delivery to higher-layer protocol
357 - family: Interfaces/Error/Total/In
358 - unit: "errors/s"
387 + chart_meta:
388 + description: The number of inbound packets containing errors preventing delivery to higher-layer protocol
389 + family: Interfaces/Error/Total/In
390 + unit: "errors/s"
391 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.35
392 name: if64OutErrors
361 - description: The number of outbound packets that could not be transmitted due to errors
362 - family: Interfaces/Error/Total/Out
363 - unit: "errors/s"
393 + chart_meta:
394 + description: The number of outbound packets that could not be transmitted due to errors
395 + family: Interfaces/Error/Total/Out
396 + unit: "errors/s"
397 - OID: 1.3.6.1.4.1.789.1.22.1.2.1.30
398 name: if64InUnknownProtos
366 - description: The number of packets discarded due to unknown or unsupported protocol
367 - family: Interfaces/Error/UnknownProtocol/In
368 - unit: "packets/s"
399 + chart_meta:
400 + description: The number of packets discarded due to unknown or unsupported protocol
401 + family: Interfaces/Error/UnknownProtocol/In
402 + unit: "packets/s"
403 metric_tags:
404 - tag: interface_index
405 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/netgear-switch.yaml
+6 -6
@@ -13,21 +13,21 @@ metrics:
13 symbol:
14 name: memory.free
15 OID: 1.3.6.1.4.1.4526.10.1.1.4.1.0
16 - description: "Serial number of the switch."
17 - unit: "{serial_number}"
16 + description: "Serial number of the switch."
17 + unit: "{serial_number}"
18 - MIB: NETGEAR-SWITCHING-MIB
19 symbol:
20 name: memory.total
21 OID: 1.3.6.1.4.1.4526.10.1.1.4.2.0
22 - description: "FRU Number of the switch"
23 - unit: "{fru_number}"
22 + description: "FRU Number of the switch"
23 + unit: "{fru_number}"
24 - MIB: NETGEAR-SWITCHING-MIB
25 symbol:
26 name: cpu.usage
27 OID: 1.3.6.1.4.1.4526.10.1.1.4.9.0 # agentSwitchCpuProcessTotalUtilization.0
28 extract_value: 60 Secs.*?([\d\.]+)
29 - description: "Burned-In MAC Address"
30 - unit: "{mac_address}"
29 + description: "Burned-In MAC Address"
30 + unit: "{mac_address}"
31 metric_tags:
32 - OID: 1.3.6.1.4.1.4526.10.1.1.1.3.0
33 symbol: agentInventoryMachineModel
src/go/plugin/go.d/config/go.d/snmp.profiles/default/nvidia-cumulus-linux-switch.yaml
+60 -60
@@ -14,158 +14,158 @@ metrics:
14 symbol:
15 name: cumulus.l3HostTableCurrentEntries
16 OID: 1.3.6.1.4.1.40310.1.1.1.0
17 - description: The number of L3 Host table entries currently in use
18 - unit: "{entry}"
17 + description: The number of L3 Host table entries currently in use
18 + unit: "{entry}"
19 - MIB: CUMULUS-RESOURCES-MIB
20 symbol:
21 name: cumulus.l3HostTableMaxEntries
22 OID: 1.3.6.1.4.1.40310.1.1.2.0
23 - description: The maximum possible entries in the L3 Host table
24 - unit: "{entry}"
23 + description: The maximum possible entries in the L3 Host table
24 + unit: "{entry}"
25 - MIB: CUMULUS-RESOURCES-MIB
26 symbol:
27 name: cumulus.l3RoutingTableCurrentEntries
28 OID: 1.3.6.1.4.1.40310.1.1.3.0
29 - description: The number of L3 Routing table entries currently in use
30 - unit: "{entry}"
29 + description: The number of L3 Routing table entries currently in use
30 + unit: "{entry}"
31 - MIB: CUMULUS-RESOURCES-MIB
32 symbol:
33 name: cumulus.l3RoutingTableMaxEntries
34 OID: 1.3.6.1.4.1.40310.1.1.4.0
35 - description: The maximum possible entries in the L3 Routing table
36 - unit: "{entry}"
35 + description: The maximum possible entries in the L3 Routing table
36 + unit: "{entry}"
37 - MIB: CUMULUS-RESOURCES-MIB
38 symbol:
39 name: cumulus.l3NextHopTableCurrentEntries
40 OID: 1.3.6.1.4.1.40310.1.1.5.0
41 - description: The number of L3 Next Hop table entries currently in use
42 - unit: "{entry}"
41 + description: The number of L3 Next Hop table entries currently in use
42 + unit: "{entry}"
43 - MIB: CUMULUS-RESOURCES-MIB
44 symbol:
45 name: cumulus.l3NextHopTableMaxEntries
46 OID: 1.3.6.1.4.1.40310.1.1.6.0
47 - description: The maximum possible entries in the L3 Next Hop table
48 - unit: "{entry}"
47 + description: The maximum possible entries in the L3 Next Hop table
48 + unit: "{entry}"
49 - MIB: CUMULUS-RESOURCES-MIB
50 symbol:
51 name: cumulus.l3EcmpNextHopTableCurrentEntries
52 OID: 1.3.6.1.4.1.40310.1.1.9.0
53 - description: The number of ECMP Next Hop table entries currently in use
54 - unit: "{entry}"
53 + description: The number of ECMP Next Hop table entries currently in use
54 + unit: "{entry}"
55 - MIB: CUMULUS-RESOURCES-MIB
56 symbol:
57 name: cumulus.l3EcmpNextHopTableMaxEntries
58 OID: 1.3.6.1.4.1.40310.1.1.10.0
59 - description: The maximum possible entries in the ECMP Next Hop table
60 - unit: "{entry}"
59 + description: The maximum possible entries in the ECMP Next Hop table
60 + unit: "{entry}"
61 - MIB: CUMULUS-RESOURCES-MIB
62 symbol:
63 name: cumulus.ingressAclCurrentEntries
64 OID: 1.3.6.1.4.1.40310.1.1.11.0
65 - description: TBD
66 - unit: "TBD"
65 + description: TBD
66 + unit: "TBD"
67 - MIB: CUMULUS-RESOURCES-MIB
68 symbol:
69 name: cumulus.ingressAclMaxEntries
70 OID: 1.3.6.1.4.1.40310.1.1.12.0
71 - description: TBD
72 - unit: "TBD"
71 + description: TBD
72 + unit: "TBD"
73 - MIB: CUMULUS-RESOURCES-MIB
74 symbol:
75 name: cumulus.ingressAclCurrentCounters
76 OID: 1.3.6.1.4.1.40310.1.1.13.0
77 - description: TBD
78 - unit: "TBD"
77 + description: TBD
78 + unit: "TBD"
79 - MIB: CUMULUS-RESOURCES-MIB
80 symbol:
81 name: cumulus.ingressAclMaxCounters
82 OID: 1.3.6.1.4.1.40310.1.1.14.0
83 - description: TBD
84 - unit: "TBD"
83 + description: TBD
84 + unit: "TBD"
85 - MIB: CUMULUS-RESOURCES-MIB
86 symbol:
87 name: cumulus.ingressAclCurrentMeters
88 OID: 1.3.6.1.4.1.40310.1.1.15.0
89 - description: TBD
90 - unit: "TBD"
89 + description: TBD
90 + unit: "TBD"
91 - MIB: CUMULUS-RESOURCES-MIB
92 symbol:
93 name: cumulus.ingressAclMaxMeters
94 OID: 1.3.6.1.4.1.40310.1.1.16.0
95 - description: TBD
96 - unit: "TBD"
95 + description: TBD
96 + unit: "TBD"
97 - MIB: CUMULUS-RESOURCES-MIB
98 symbol:
99 name: cumulus.ingressAclCurrentSlices
100 OID: 1.3.6.1.4.1.40310.1.1.17.0
101 - description: TBD
102 - unit: "TBD"
101 + description: TBD
102 + unit: "TBD"
103 - MIB: CUMULUS-RESOURCES-MIB
104 symbol:
105 name: cumulus.ingressAclMaxSlices
106 OID: 1.3.6.1.4.1.40310.1.1.18.0
107 - description: TBD
108 - unit: "TBD"
107 + description: TBD
108 + unit: "TBD"
109 - MIB: CUMULUS-RESOURCES-MIB
110 symbol:
111 name: cumulus.egressAclCurrentEntries
112 OID: 1.3.6.1.4.1.40310.1.1.19.0
113 - description: TBD
114 - unit: "TBD"
113 + description: TBD
114 + unit: "TBD"
115 - MIB: CUMULUS-RESOURCES-MIB
116 symbol:
117 name: cumulus.egressAclMaxEntries
118 OID: 1.3.6.1.4.1.40310.1.1.20.0
119 - description: TBD
120 - unit: "TBD"
119 + description: TBD
120 + unit: "TBD"
121 - MIB: CUMULUS-RESOURCES-MIB
122 symbol:
123 name: cumulus.egressAclCurrentCounters
124 OID: 1.3.6.1.4.1.40310.1.1.21.0
125 - description: TBD
126 - unit: "TBD"
125 + description: TBD
126 + unit: "TBD"
127 - MIB: CUMULUS-RESOURCES-MIB
128 symbol:
129 name: cumulus.egressAclMaxCounters
130 OID: 1.3.6.1.4.1.40310.1.1.22.0
131 - description: TBD
132 - unit: "TBD"
131 + description: TBD
132 + unit: "TBD"
133 - MIB: CUMULUS-RESOURCES-MIB
134 symbol:
135 name: cumulus.egressAclCurrentMeters
136 OID: 1.3.6.1.4.1.40310.1.1.23.0
137 - description: TBD
138 - unit: "TBD"
137 + description: TBD
138 + unit: "TBD"
139 - MIB: CUMULUS-RESOURCES-MIB
140 symbol:
141 name: cumulus.egressAclMaxMeters
142 OID: 1.3.6.1.4.1.40310.1.1.24.0
143 - description: TBD
144 - unit: "TBD"
143 + description: TBD
144 + unit: "TBD"
145 - MIB: CUMULUS-RESOURCES-MIB
146 symbol:
147 name: cumulus.egressAclCurrentSlices
148 OID: 1.3.6.1.4.1.40310.1.1.25.0
149 - description: TBD
150 - unit: "TBD"
149 + description: TBD
150 + unit: "TBD"
151 - MIB: CUMULUS-RESOURCES-MIB
152 symbol:
153 name: cumulus.egressAclMaxSlices
154 OID: 1.3.6.1.4.1.40310.1.1.26.0
155 - description: TBD
156 - unit: "TBD"
155 + description: TBD
156 + unit: "TBD"
157 - MIB: CUMULUS-RESOURCES-MIB
158 symbol:
159 name: cumulus.l2MacTableCurrentEntries
160 OID: 1.3.6.1.4.1.40310.1.2.1.0
161 - description: The number of L2 Mac table entries currently in use
162 - unit: "{entry}"
161 + description: The number of L2 Mac table entries currently in use
162 + unit: "{entry}"
163 - MIB: CUMULUS-RESOURCES-MIB
164 symbol:
165 name: cumulus.l2MacTableMaxEntries
166 OID: 1.3.6.1.4.1.40310.1.2.2.0
167 - description: The maximum possible entries in the L2 Mac table
168 - unit: "{entry}"
167 + description: The maximum possible entries in the L2 Mac table
168 + unit: "{entry}"
169 - MIB: CUMULUS-COUNTERS-MIB
170 table:
171 name: discardClCountersTable
@@ -324,23 +324,23 @@ metrics:
324 symbol:
325 name: cumulus.poeTotalSystemPower
326 OID: 1.3.6.1.4.1.40310.3.1.1.0
327 - description: The total power available to the system, shown with 3 decimal place of precision (milliwatts)
328 - unit: "mW"
327 + description: The total power available to the system, shown with 3 decimal place of precision (milliwatts)
328 + unit: "mW"
329 - MIB: CUMULUS-POE-MIB
330 symbol:
331 name: cumulus.poeTotalUsedPower
332 OID: 1.3.6.1.4.1.40310.3.1.2.0
333 - description: The total power USED by ports in the system, shown with 3 decimal places of precision (milliwatts)
334 - unit: "mW"
333 + description: The total power USED by ports in the system, shown with 3 decimal places of precision (milliwatts)
334 + unit: "mW"
335 - MIB: CUMULUS-POE-MIB
336 symbol:
337 name: cumulus.poeTotalAvailablePower
338 OID: 1.3.6.1.4.1.40310.3.1.3.0
339 - description: The total UNUSED and available power for the system in the common pool for new devices, shown with 3 decimal places of precision (milliwatts)
340 - unit: "mW"
339 + description: The total UNUSED and available power for the system in the common pool for new devices, shown with 3 decimal places of precision (milliwatts)
340 + unit: "mW"
341 - MIB: CUMULUS-POE-MIB
342 symbol:
343 name: cumulus.poeLastUpdateTime
344 OID: 1.3.6.1.4.1.40310.3.1.4.0
345 - description: The system uptime timestamp when the objects in this MIB were last updated
346 - unit: "s"
345 + description: The system uptime timestamp when the objects in this MIB were last updated
346 + unit: "s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/opengear-infrastructure-manager.yaml
-16
@@ -27,20 +27,14 @@ metrics:
27 name: ogSerialPortStatusPort
28 OID: 1.3.6.1.4.1.25049.16.1.1.2
29 tag: og_serial_port_status_port
30 - description: Serial port number
31 - unit: "{serial_port}"
30 - symbol:
31 name: ogSerialPortStatusSpeed
32 OID: 1.3.6.1.4.1.25049.16.1.1.5
33 tag: og_serial_port_status_speed
36 - description: Serial port speed in bits per second
37 - unit: "bit/s"
34 - symbol:
35 name: ogSerialPortStatusLabel
36 OID: 1.3.6.1.4.1.25049.16.1.1.11
37 tag: og_serial_port_status_label
42 - description: The label of the port
43 - unit: "TBD"
38 - symbol:
39 OID: 1.3.6.1.4.1.25049.16.1.1.6
40 name: ogSerialPortStatusDCD
@@ -48,8 +42,6 @@ metrics:
42 mapping:
43 0: off
44 1: on
51 - description: The status of the DCD signal
52 - unit: "TBD"
45 - symbol:
46 OID: 1.3.6.1.4.1.25049.16.1.1.7
47 name: ogSerialPortStatusDTR
@@ -57,8 +49,6 @@ metrics:
49 mapping:
50 0: off
51 1: on
60 - description: The status of the DTR signal
61 - unit: "TBD"
52 - symbol:
53 OID: 1.3.6.1.4.1.25049.16.1.1.8
54 name: ogSerialPortStatusDSR
@@ -66,8 +56,6 @@ metrics:
56 mapping:
57 0: off
58 1: on
69 - description: The status of the DSR signal
70 - unit: "TBD"
59 - symbol:
60 OID: 1.3.6.1.4.1.25049.16.1.1.9
61 name: ogSerialPortStatusCTS
@@ -75,8 +63,6 @@ metrics:
63 mapping:
64 0: off
65 1: on
78 - description: The status of the CTS signal
79 - unit: "TBD"
66 - symbol:
67 OID: 1.3.6.1.4.1.25049.16.1.1.10
68 name: ogSerialPortStatusRTS
@@ -84,8 +70,6 @@ metrics:
70 mapping:
71 0: off
72 1: on
87 - description: The status of the RTS signal
88 - unit: "TBD"
73 - MIB: OG-STATUS-MIB
74 table:
75 name: ogRpcStatusTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/palo-alto.yaml
+64 -48
@@ -82,58 +82,66 @@ metrics:
82 symbol:
83 OID: 1.3.6.1.4.1.25461.2.1.2.3.1.0
84 name: panSessionUtilization
85 - description: Session table utilization percentage
86 - family: Session/Utilization
87 - unit: "%"
85 + chart_meta:
86 + description: Session table utilization percentage
87 + family: Session/Utilization
88 + unit: "%"
89 - MIB: PAN-COMMON-MIB
90 symbol:
91 OID: 1.3.6.1.4.1.25461.2.1.2.3.2.0
92 name: panSessionMax
92 - description: Total number of sessions supported
93 - family: Session/Maximum
94 - unit: "{session}"
93 + chart_meta:
94 + description: Total number of sessions supported
95 + family: Session/Maximum
96 + unit: "{session}"
97 - MIB: PAN-COMMON-MIB
98 symbol:
99 OID: 1.3.6.1.4.1.25461.2.1.2.3.3.0
100 name: panSessionActive
99 - description: Total number of active sessions
100 - family: Session/Active/Total
101 - unit: "{session}"
101 + chart_meta:
102 + description: Total number of active sessions
103 + family: Session/Active/Total
104 + unit: "{session}"
105 - MIB: PAN-COMMON-MIB
106 symbol:
107 OID: 1.3.6.1.4.1.25461.2.1.2.3.4.0
108 name: panSessionActiveTcp
106 - description: Total number of active TCP sessions
107 - family: Session/Active/TCP
108 - unit: "{session}"
109 + chart_meta:
110 + description: Total number of active TCP sessions
111 + family: Session/Active/TCP
112 + unit: "{session}"
113 - MIB: PAN-COMMON-MIB
114 symbol:
115 OID: 1.3.6.1.4.1.25461.2.1.2.3.5.0
116 name: panSessionActiveUdp
113 - description: Total number of active UDP sessions
114 - family: Session/Active/UDP
115 - unit: "{session}"
117 + chart_meta:
118 + description: Total number of active UDP sessions
119 + family: Session/Active/UDP
120 + unit: "{session}"
121 - MIB: PAN-COMMON-MIB
122 symbol:
123 OID: 1.3.6.1.4.1.25461.2.1.2.3.6.0
124 name: panSessionActiveICMP
120 - description: Total number of active ICMP sessions
121 - family: Session/Active/ICMP
122 - unit: "{session}"
125 + chart_meta:
126 + description: Total number of active ICMP sessions
127 + family: Session/Active/ICMP
128 + unit: "{session}"
129 - MIB: PAN-COMMON-MIB
130 symbol:
131 OID: 1.3.6.1.4.1.25461.2.1.2.3.7.0
132 name: panSessionActiveSslProxy
127 - description: Total number of active SSL proxy sessions
128 - family: Session/SSLProxy/Active
129 - unit: "{session}"
133 + chart_meta:
134 + description: Total number of active SSL proxy sessions
135 + family: Session/SSLProxy/Active
136 + unit: "{session}"
137 - MIB: PAN-COMMON-MIB
138 symbol:
139 OID: 1.3.6.1.4.1.25461.2.1.2.3.8.0
140 name: panSessionSslProxyUtilization
134 - description: SSL proxy session utilization percentage
135 - family: Session/SSLProxy/Utilization
136 - unit: "%"
141 + chart_meta:
142 + description: SSL proxy session utilization percentage
143 + family: Session/SSLProxy/Utilization
144 + unit: "%"
145
146 #
147 # GlobalProtect gateway utilization
@@ -142,37 +150,42 @@ metrics:
150 symbol:
151 OID: 1.3.6.1.4.1.25461.2.1.2.5.1.1.0
152 name: panGPGWUtilizationPct
145 - description: GlobalProtect Gateway utilization percentage
146 - family: GlobalProtect/Gateway/Utilization
147 - unit: "%"
153 + chart_meta:
154 + description: GlobalProtect Gateway utilization percentage
155 + family: GlobalProtect/Gateway/Utilization
156 + unit: "%"
157 - MIB: PAN-COMMON-MIB
158 symbol:
159 OID: 1.3.6.1.4.1.25461.2.1.2.5.1.2.0
160 name: panGPGWUtilizationMaxTunnels
152 - description: Max tunnels allowed
153 - family: GlobalProtect/Gateway/Tunnel/Maximum
154 - unit: "{tunnel}"
161 + chart_meta:
162 + description: Max tunnels allowed
163 + family: GlobalProtect/Gateway/Tunnel/Maximum
164 + unit: "{tunnel}"
165 - MIB: PAN-COMMON-MIB
166 symbol:
167 OID: 1.3.6.1.4.1.25461.2.1.2.5.1.3.0
168 name: panGPGWUtilizationActiveTunnels
159 - description: Number of active tunnels
160 - family: GlobalProtect/Gateway/Tunnel/Active
161 - unit: "{tunnel}"
169 + chart_meta:
170 + description: Number of active tunnels
171 + family: GlobalProtect/Gateway/Tunnel/Active
172 + unit: "{tunnel}"
173 - MIB: PAN-ENTITY-EXT-MIB
174 symbol:
175 OID: 1.3.6.1.4.1.25461.1.1.7.1.1.2.0
176 name: panEntityTotalPowerUsed
166 - description: Total power used on the system in watts
167 - family: System/Power/Used
168 - unit: "W"
177 + chart_meta:
178 + description: Total power used on the system in watts
179 + family: System/Power/Used
180 + unit: "W"
181 - MIB: PAN-ENTITY-EXT-MIB
182 symbol:
183 OID: 1.3.6.1.4.1.25461.1.1.7.1.1.1.0
184 name: panEntityTotalPowerAvail
173 - description: Total power available on the system in watts
174 - family: System/Power/Available
175 - unit: "W"
185 + chart_meta:
186 + description: Total power available on the system in watts
187 + family: System/Power/Available
188 + unit: "W"
189 - MIB: PAN-ENTITY-EXT-MIB
190 table:
191 OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1
@@ -180,14 +193,16 @@ metrics:
193 symbols:
194 - OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1.1.1
195 name: panEntryFRUModulePowerUsed
183 - description: Power used by the FRU Module in watts
184 - family: FRU/Module/Power
185 - unit: "W"
196 + chart_meta:
197 + description: Power used by the FRU Module in watts
198 + family: FRU/Module/Power
199 + unit: "W"
200 - OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1.1.2
201 name: panEntryFRUModuleNumPorts
188 - description: Number of ports on the FRU Module
189 - family: FRU/Module/Port/Count
190 - unit: "{port}"
202 + chart_meta:
203 + description: Number of ports on the FRU Module
204 + family: FRU/Module/Port/Count
205 + unit: "{port}"
206 metric_tags:
207 - MIB: ENTITY-MIB
208 symbol:
@@ -203,9 +218,10 @@ metrics:
218 symbols:
219 - OID: 1.3.6.1.4.1.25461.1.1.7.1.3.1.1.1
220 name: panEntryFanTrayPowerUsed
206 - description: Power used by the Fan Tray in watts
207 - family: FRU/FanTray/Power
208 - unit: "W"
221 + chart_meta:
222 + description: Power used by the Fan Tray in watts
223 + family: FRU/FanTray/Power
224 + unit: "W"
225 metric_tags:
226 - MIB: ENTITY-MIB
227 symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/riverbed-interceptor.yaml
+6 -6
@@ -8,20 +8,20 @@ metrics:
8 symbol:
9 name: memory.total
10 OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1 (hrStorageSize at index 1)
11 - description: Size of the storage represented by this entry in units of hrStorageAllocationUnits
12 - unit: "By"
11 + description: Size of the storage represented by this entry in units of hrStorageAllocationUnits
12 + unit: "By"
13 - MIB: HOST-RESOURCES-MIB
14 symbol:
15 name: memory.used
16 OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 (hrStorageUsed at index 1)
17 - description: Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits
18 - unit: "By"
17 + description: Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits
18 + unit: "By"
19 - MIB: INTERCEPTOR-MIB
20 symbol:
21 name: cpu.usage
22 OID: 1.3.6.1.4.1.17163.1.3.5.1.4.0
23 - description: TBD
24 - unit: "TBD"
23 + description: TBD
24 + unit: "TBD"
25 # - MIB: INTERCEPTOR-MIB
26 # symbol:
27 # name: riverbed.interceptor.health
src/go/plugin/go.d/config/go.d/snmp.profiles/default/ruckus-unleashed.yaml
+31 -31
@@ -18,81 +18,81 @@ metrics:
18 symbol:
19 name: cpu.usage
20 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.13.0
21 - description: CPU utilization
22 - unit: "%"
21 + description: CPU utilization
22 + unit: "%"
23 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
24 symbol:
25 name: memory.usage
26 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.14.0
27 - description: Memory utilization
28 - unit: "%"
27 + description: Memory utilization
28 + unit: "%"
29 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
30 symbol:
31 name: ruckusUnleashedSystemStatsNumRegisteredAP
32 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.15.0
33 - description: Number of registered AP
34 - unit: "{access_point}"
33 + description: Number of registered AP
34 + unit: "{access_point}"
35 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
36 symbol:
37 name: ruckusUnleashedSystemStatsNumAP
38 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.1.0
39 - description: Number of AP
40 - unit: "{access_point}"
39 + description: Number of AP
40 + unit: "{access_point}"
41 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
42 symbol:
43 name: ruckusUnleashedSystemStatsWLANTotalRxPkts
44 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.5.0
45 - metric_type: monotonic_count
46 - description: Total received packets of wireless interfaces
47 - unit: "{packet}"
45 + description: Total received packets of wireless interfaces
46 + unit: "{packet}"
47 + metric_type: monotonic_count
48 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
49 symbol:
50 name: ruckusUnleashedSystemStatsWLANTotalRxBytes
51 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.6.0
52 - metric_type: monotonic_count
53 - description: Total received bytes of wireless interfaces
54 - unit: "By"
52 + description: Total received bytes of wireless interfaces
53 + unit: "By"
54 + metric_type: monotonic_count
55 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
56 symbol:
57 name: ruckusUnleashedSystemStatsWLANTotalTxPkts
58 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.8.0
59 - metric_type: monotonic_count
60 - description: Total transmitted packets of wireless interfaces
61 - unit: "{packet}"
59 + description: Total transmitted packets of wireless interfaces
60 + unit: "{packet}"
61 + metric_type: monotonic_count
62 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
63 symbol:
64 name: ruckusUnleashedSystemStatsWLANTotalTxBytes
65 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.9.0
66 - metric_type: monotonic_count
67 - description: Total transmitted bytes of wireless interfaces
68 - unit: "By"
66 + description: Total transmitted bytes of wireless interfaces
67 + unit: "By"
68 + metric_type: monotonic_count
69 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
70 symbol:
71 name: ruckusUnleashedSystemStatsWLANTotalTxFail
72 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.11.0
73 - metric_type: monotonic_count
74 - description: Total transmitted fail packets of wireless interfaces
75 - unit: "{packet}"
73 + description: Total transmitted fail packets of wireless interfaces
74 + unit: "{packet}"
75 + metric_type: monotonic_count
76 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
77 symbol:
78 name: ruckusUnleashedSystemStatsWLANTotalTxRetry
79 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.12.0
80 - metric_type: monotonic_count
81 - description: Total transmitted retry packets of wireless interfaces
82 - unit: "{packet}"
80 + description: Total transmitted retry packets of wireless interfaces
81 + unit: "{packet}"
82 + metric_type: monotonic_count
83 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
84 symbol:
85 name: ruckusUnleashedSystemStatsWLANTotalAssocFail
86 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.16.0
87 - metric_type: monotonic_count
88 - description: Total number of failed station associations.
89 - unit: "{session}"
87 + description: Total number of failed station associations.
88 + unit: "{session}"
89 + metric_type: monotonic_count
90 - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
91 symbol:
92 name: ruckusUnleashedSystemStatsAllNumSta
93 OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.30.0
94 - description: Number of All client devices
95 - unit: "{device}"
94 + description: Number of All client devices
95 + unit: "{device}"
96 metric_tags:
97 - OID: 1.3.6.1.4.1.25053.1.15.1.1.1.1.9.0
98 symbol: ruckusUnleashedSystemModel
src/go/plugin/go.d/config/go.d/snmp.profiles/default/ruckus-wap.yaml
+4 -4
@@ -14,11 +14,11 @@ metrics:
14 symbol:
15 name: cpu.usage
16 OID: 1.3.6.1.4.1.25053.1.1.11.1.1.1.1.0
17 - description: CPU utilization
18 - unit: "%"
17 + description: CPU utilization
18 + unit: "%"
19 - MIB: RUCKUS-SYSTEM-MIB
20 symbol:
21 name: memory.usage
22 OID: 1.3.6.1.4.1.25053.1.1.11.1.1.1.2.0
23 - description: Memory utilization
24 - unit: "%"
23 + description: Memory utilization
24 + unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/servertech-pdu4.yaml
-4
@@ -586,14 +586,10 @@ metrics:
586 name: servertech.sentry4.st4OcpCurrentCapacity
587 OID: 1.3.6.1.4.1.1718.4.1.6.2.1.7
588 tag: servertech_sentry4_st4_ocp_current_capacity
589 - description: "Current capacity of the ocp"
590 - unit: "A"
589 - symbol:
590 name: servertech.sentry4.st4OcpCurrentCapacityMax
591 OID: 1.3.6.1.4.1.1718.4.1.6.2.1.8
592 tag: servertech_sentry4_st4_ocp_current_capacity_max
595 - description: "Maximum current capacity of the ocp"
596 - unit: "A"
593 - symbol:
594 name: servertech.sentry4.st4OcpBranchCount
595 OID: 1.3.6.1.4.1.1718.4.1.6.2.1.20
src/go/plugin/go.d/config/go.d/snmp.profiles/default/silverpeak-edgeconnect.yaml
+2 -2
@@ -31,8 +31,8 @@ metrics:
31 symbol:
32 OID: 1.3.6.1.4.1.23867.3.1.1.1.4.0
33 name: silverpeak.mgmt.spsActiveAlarmCount
34 - description: The number of active alarm entries in the alarm table - spsActiveAlarmTable, defined under silverpeakMgmtMIBTables subtree.
35 - unit: "{alarm}"
34 + description: The number of active alarm entries in the alarm table - spsActiveAlarmTable, defined under silverpeakMgmtMIBTables subtree.
35 + unit: "{alarm}"
36 - MIB: SILVERPEAK-MGMT-MIB
37 table:
38 OID: 1.3.6.1.4.1.23867.3.1.1.2.1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/sophos-xgs-firewall.yaml
+31 -31
@@ -15,85 +15,85 @@ metrics:
15 symbol:
16 name: cpu.usage
17 OID: 1.3.6.1.2.1.25.3.3.1.2.196608
18 - description: "The average, over the last minute, of the percentage of time that this processor was not idle."
19 - unit: "%"
18 + description: "The average, over the last minute, of the percentage of time that this processor was not idle."
19 + unit: "%"
20 - MIB: SFOS-FIREWALL-MIB
21 symbol:
22 name: memory.usage
23 OID: 1.3.6.1.4.1.2604.5.1.2.5.2.0
24 - description: "Percentage usage of main memory"
25 - unit: "%"
24 + description: "Percentage usage of main memory"
25 + unit: "%"
26 - MIB: SFOS-FIREWALL-MIB
27 symbol:
28 name: memory.total
29 OID: 1.3.6.1.4.1.2604.5.1.2.5.1.0
30 - description: "Memory capacity in MB"
31 - unit: "MBy"
30 + description: "Memory capacity in MB"
31 + unit: "MBy"
32 - MIB: SFOS-FIREWALL-MIB
33 symbol:
34 name: sfosDiskCapacity
35 OID: 1.3.6.1.4.1.2604.5.1.2.4.1.0
36 - description: "Disk capacity in MB"
37 - unit: "MBy"
36 + description: "Disk capacity in MB"
37 + unit: "MBy"
38 - MIB: SFOS-FIREWALL-MIB
39 symbol:
40 name: sfosDiskPercentUsage
41 OID: 1.3.6.1.4.1.2604.5.1.2.4.2.0
42 - description: "% Disk usage"
43 - unit: "%"
42 + description: "% Disk usage"
43 + unit: "%"
44 - MIB: SFOS-FIREWALL-MIB
45 symbol:
46 name: sfosSwapCapacity
47 OID: 1.3.6.1.4.1.2604.5.1.2.5.3.0
48 - description: "Swap Capacity in MB"
49 - unit: "MBy"
48 + description: "Swap Capacity in MB"
49 + unit: "MBy"
50 - MIB: SFOS-FIREWALL-MIB
51 symbol:
52 name: sfosSwapPercentUsage
53 OID: 1.3.6.1.4.1.2604.5.1.2.5.4.0
54 - description: "% usage of swap"
55 - unit: "%"
54 + description: "% usage of swap"
55 + unit: "%"
56 - MIB: SFOS-FIREWALL-MIB
57 symbol:
58 name: sfosLiveUsersCount
59 OID: 1.3.6.1.4.1.2604.5.1.2.6.0
60 - description: "Display live user count login into captive portal"
61 - unit: "{session}"
60 + description: "Display live user count login into captive portal"
61 + unit: "{session}"
62 - MIB: SFOS-FIREWALL-MIB
63 symbol:
64 name: sfosHTTPHits
65 OID: 1.3.6.1.4.1.2604.5.1.2.7.0
66 - metric_type: monotonic_count
67 - description: "Number of HTTP hits"
68 - unit: "{request}"
66 + description: "Number of HTTP hits"
67 + unit: "{request}"
68 + metric_type: monotonic_count
69 - MIB: SFOS-FIREWALL-MIB
70 symbol:
71 name: sfosFTPHits
72 OID: 1.3.6.1.4.1.2604.5.1.2.8.0
73 - metric_type: monotonic_count
74 - description: "Number of FTP hits"
75 - unit: "{request}"
73 + description: "Number of FTP hits"
74 + unit: "{request}"
75 + metric_type: monotonic_count
76 - MIB: SFOS-FIREWALL-MIB
77 symbol:
78 name: sfosPOP3Hits
79 OID: 1.3.6.1.4.1.2604.5.1.2.9.1.0
80 - metric_type: monotonic_count
81 - description: "Number of POP3 hits"
82 - unit: "{request}"
80 + description: "Number of POP3 hits"
81 + unit: "{request}"
82 + metric_type: monotonic_count
83 - MIB: SFOS-FIREWALL-MIB
84 symbol:
85 name: sfosImapHits
86 OID: 1.3.6.1.4.1.2604.5.1.2.9.2.0
87 - metric_type: monotonic_count
88 - description: "Number of IMAP hits"
89 - unit: "{request}"
87 + description: "Number of IMAP hits"
88 + unit: "{request}"
89 + metric_type: monotonic_count
90 - MIB: SFOS-FIREWALL-MIB
91 symbol:
92 name: sfosSmtpHits
93 OID: 1.3.6.1.4.1.2604.5.1.2.9.3.0
94 - metric_type: monotonic_count
95 - description: "Number of SMTP hits"
96 - unit: "{request}"
94 + description: "Number of SMTP hits"
95 + unit: "{request}"
96 + metric_type: monotonic_count
97 - MIB: SFOS-FIREWALL-MIB
98 table:
99 name: sfosIPSecVpnTunnelTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/tripplite-pdu.yaml
+72 -54
@@ -19,9 +19,10 @@ metrics:
19 symbols:
20 - OID: 1.3.6.1.4.1.850.1.1.1.2.1.10
21 name: tlpDeviceStatus
22 - description: The currently most critical alarm status for the device
23 - family: Device/Alarm/Status
24 - unit: "{status}"
22 + chart_meta:
23 + description: The currently most critical alarm status for the device
24 + family: Device/Alarm/Status
25 + unit: "{status}"
26 mapping:
27 0: none
28 1: critical
@@ -62,29 +63,34 @@ metrics:
63 symbols:
64 - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.6
65 name: tlpPduDeviceTemperatureC
65 - description: The ambient temperature at or near the PDU casing.
66 - family: Environment/Temperature/Value
67 - unit: "Cel"
66 + chart_meta:
67 + description: The ambient temperature at or near the PDU casing.
68 + family: Environment/Temperature/Value
69 + unit: "Cel"
70 - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.7
71 name: tlpPduDeviceTemperatureF
70 - description: The ambient temperature at or near the PDU casing.
71 - family: Environment/Temperature/Value
72 - unit: "F"
72 + chart_meta:
73 + description: The ambient temperature at or near the PDU casing.
74 + family: Environment/Temperature/Value
75 + unit: "F"
76 - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.8
77 name: tlpPduDevicePhaseImbalance
75 - description: The percentage of imbalance of the three phases.
76 - family: Phase/Imbalance/Value
77 - unit: "%"
78 + chart_meta:
79 + description: The percentage of imbalance of the three phases.
80 + family: Phase/Imbalance/Value
81 + unit: "%"
82 - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.9
83 name: tlpPduDeviceOutputPowerTotal
80 - description: The AC output total power for all circuits.
81 - family: Output/Power/Total
82 - unit: "W"
84 + chart_meta:
85 + description: The AC output total power for all circuits.
86 + family: Output/Power/Total
87 + unit: "W"
88 - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.1
89 name: tlpPduDeviceMainLoadState
85 - description: The current state of the main output of the device
86 - family: Output/Main/Status
87 - unit: "{status}"
90 + chart_meta:
91 + description: The current state of the main output of the device
92 + family: Output/Main/Status
93 + unit: "{status}"
94 mapping:
95 0: unknown
96 1: off
@@ -108,24 +114,28 @@ metrics:
114 symbols:
115 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.4
116 name: tlpPduOutputVoltage
111 - description: The magnitude of the present output voltage for a given output line.
112 - family: Output/Phase/Voltage/Value
113 - unit: "V"
117 + chart_meta:
118 + description: The magnitude of the present output voltage for a given output line.
119 + family: Output/Phase/Voltage/Value
120 + unit: "V"
121 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.5
122 name: tlpPduOutputCurrent
116 - description: The output current, in hundreths of amps, for a given phase.
117 - family: Output/Phase/Current/Value
118 - unit: "mA"
123 + chart_meta:
124 + description: The output current, in hundreths of amps, for a given phase.
125 + family: Output/Phase/Current/Value
126 + unit: "mA"
127 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.10
128 name: tlpPduOutputSource
121 - description: The present source of output power.
122 - family: Output/Source/Status
123 - unit: "{status}"
129 + chart_meta:
130 + description: The present source of output power.
131 + family: Output/Source/Status
132 + unit: "{status}"
133 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.11
134 name: tlpPduOutputFrequency
126 - description: The present output frequency.
127 - family: Output/Frequency/Value
128 - unit: "Hz"
135 + chart_meta:
136 + description: The present output frequency.
137 + family: Output/Frequency/Value
138 + unit: "Hz"
139 # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
140 metric_tags:
141 - tag: tlp_device_index
@@ -155,24 +165,28 @@ metrics:
165 symbols:
166 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.4
167 name: tlpPduOutletState
158 - description: The current state of the outlet.
159 - family: Outlet/Operational/Status
160 - unit: "{status}"
168 + chart_meta:
169 + description: The current state of the outlet.
170 + family: Outlet/Operational/Status
171 + unit: "{status}"
172 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.7
173 name: tlpPduOutletVoltage
163 - description: The magnitude of the present output voltage for a given outlet.
164 - family: Outlet/Voltage/Value
165 - unit: "V"
174 + chart_meta:
175 + description: The magnitude of the present output voltage for a given outlet.
176 + family: Outlet/Voltage/Value
177 + unit: "V"
178 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.8
179 name: tlpPduOutletCurrent
168 - description: The present output current, in hundreths of amps, of a given outlet.
169 - family: Outlet/Current/Value
170 - unit: "mA"
180 + chart_meta:
181 + description: The present output current, in hundreths of amps, of a given outlet.
182 + family: Outlet/Current/Value
183 + unit: "mA"
184 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.9
185 name: tlpPduOutletPower
173 - description: The output power of a given outlet.
174 - family: Outlet/Power/Active
175 - unit: "W"
186 + chart_meta:
187 + description: The output power of a given outlet.
188 + family: Outlet/Power/Active
189 + unit: "W"
190 metric_tags:
191 - tag: tlp_pdu_outlet_name
192 symbol:
@@ -190,9 +204,10 @@ metrics:
204 symbols:
205 - OID: 1.3.6.1.4.1.850.1.1.3.2.3.5.1.1.2
206 name: tlpPduBreakerStatus
193 - description: The current state of the bank breaker
194 - family: Breaker/Status
195 - unit: "{status}"
207 + chart_meta:
208 + description: The current state of the bank breaker
209 + family: Breaker/Status
210 + unit: "{status}"
211 mapping:
212 0: open
213 1: closed
@@ -215,9 +230,10 @@ metrics:
230 symbol:
231 OID: 1.3.6.1.4.1.850.1.3.1.0
232 name: tlpAlarmsPresent
218 - description: The present number of active alarm conditions.
219 - family: Alarm/Active/Count
220 - unit: "{alarm}"
233 + chart_meta:
234 + description: The present number of active alarm conditions.
235 + family: Alarm/Active/Count
236 + unit: "{alarm}"
237
238 - MIB: TRIPPLITE-PRODUCTS
239 table:
@@ -226,17 +242,19 @@ metrics:
242 symbols:
243 - OID: 1.3.6.1.4.1.850.1.3.2.1.8
244 name: tlpAlarmState
229 - description: The current state of this alarm condition
230 - family: Alarm/Condition/Status
231 - unit: "{status}"
245 + chart_meta:
246 + description: The current state of this alarm condition
247 + family: Alarm/Condition/Status
248 + unit: "{status}"
249 mapping:
250 1: active
251 2: inactive
252 - OID: 1.3.6.1.4.1.850.1.3.2.1.9
253 name: tlpAlarmAcknowledged
237 - description: Denotes whether the alarm condition has been acknowledged
238 - family: Alarm/Condition/Acknowledgment/Status
239 - unit: "{status}"
254 + chart_meta:
255 + description: Denotes whether the alarm condition has been acknowledged
256 + family: Alarm/Condition/Acknowledgment/Status
257 + unit: "{status}"
258 mapping:
259 1: not_acknowledged
260 2: acknowledged
src/go/plugin/go.d/config/go.d/snmp.profiles/default/tripplite-ups.yaml
+68 -51
@@ -31,9 +31,10 @@ metrics:
31 symbol:
32 OID: 1.3.6.1.4.1.850.100.1.12.1.0
33 name: tlUpsMainOutletState
34 - description: The current state of the main output of the device
35 - family: Outlet/Main/Status
36 - unit: "{status}"
34 + chart_meta:
35 + description: The current state of the main output of the device
36 + family: Outlet/Main/Status
37 + unit: "{status}"
38 mapping:
39 unknown: 0
40 off: 1
@@ -43,37 +44,42 @@ metrics:
44 symbol:
45 OID: 1.3.6.1.4.1.850.100.1.13.1.0
46 name: tlUpsTemperature
46 - description: The ambient temperature
47 - family: Environment/Temperature/Value
48 - unit: "Cel"
47 + chart_meta:
48 + description: The ambient temperature
49 + family: Environment/Temperature/Value
50 + unit: "Cel"
51 - MIB: TRIPPLITE-12X
52 symbol:
53 OID: 1.3.6.1.4.1.850.100.1.2.1.0
54 name: tlUpsBatteryAge # The age of the battery in years.
53 - description: The age of the battery in years
54 - family: Battery/Age/Internal
55 - unit: "{year}"
55 + chart_meta:
56 + description: The age of the battery in years
57 + family: Battery/Age/Internal
58 + unit: "{year}"
59 - MIB: TRIPPLITE-12X
60 symbol:
61 OID: 1.3.6.1.4.1.850.100.1.2.2.0
62 name: tlUpsTemperatureF
60 - description: The ambient temperature (F)
61 - family: Environment/Temperature/Value
62 - unit: "degF"
63 + chart_meta:
64 + description: The ambient temperature (F)
65 + family: Environment/Temperature/Value
66 + unit: "degF"
67 - MIB: TRIPPLITE-12X
68 symbol:
69 OID: 1.3.6.1.4.1.850.100.1.2.3.0
70 name: tlUpsExternalBatteryAge # The age of the battery in years.
67 - description: The age of external battery in years
68 - family: Battery/Age/External
69 - unit: "{year}"
71 + chart_meta:
72 + description: The age of external battery in years
73 + family: Battery/Age/External
74 + unit: "{year}"
75 - MIB: TRIPPLITE-12X
76 symbol:
77 OID: 1.3.6.1.4.1.850.100.1.6.1.0
78 name: tlUpsAlarmsPresent
74 - description: The present number of active alarm conditions
75 - family: Alarm/Active/Count
76 - unit: "{alarm}"
79 + chart_meta:
80 + description: The present number of active alarm conditions
81 + family: Alarm/Active/Count
82 + unit: "{alarm}"
83 # - MIB: TRIPPLITE-12X
84 # symbol:
85 # OID: 1.3.6.1.4.1.850.100.1.9.1.0
@@ -88,23 +94,26 @@ metrics:
94 symbol:
95 OID: 1.3.6.1.4.1.850.101.1.1.1.0
96 name: tlEnvTemperatureC
91 - description: The ambient temperature (C)
92 - family: Environment/Temperature/Value
93 - unit: "Cel"
97 + chart_meta:
98 + description: The ambient temperature (C)
99 + family: Environment/Temperature/Value
100 + unit: "Cel"
101 - MIB: TRIPPLITE-12X
102 symbol:
103 OID: 1.3.6.1.4.1.850.101.1.1.2.0
104 name: tlEnvTemperatureF
98 - description: The ambient temperature (F)
99 - family: Environment/Temperature/Value
100 - unit: "degF"
105 + chart_meta:
106 + description: The ambient temperature (F)
107 + family: Environment/Temperature/Value
108 + unit: "degF"
109 - MIB: TRIPPLITE-12X
110 symbol:
111 OID: 1.3.6.1.4.1.850.101.1.1.5.0
112 name: tlEnvTemperatureInAlarm
105 - description: Indicates whether or not temperature is in alarm
106 - family: Environment/Temperature/Alarm/Status
107 - unit: "{status}"
113 + chart_meta:
114 + description: Indicates whether or not temperature is in alarm
115 + family: Environment/Temperature/Alarm/Status
116 + unit: "{status}"
117 mapping:
118 true: 1
119 false: 2
@@ -112,16 +121,18 @@ metrics:
121 symbol:
122 OID: 1.3.6.1.4.1.850.101.1.2.1.0
123 name: tlEnvHumidity
115 - description: The ambient humidity (%)
116 - family: Environment/Humidity/Value
117 - unit: "%"
124 + chart_meta:
125 + description: The ambient humidity (%)
126 + family: Environment/Humidity/Value
127 + unit: "%"
128 - MIB: TRIPPLITE-12X
129 symbol:
130 OID: 1.3.6.1.4.1.850.101.1.2.4.0
131 name: tlEnvHumidityInAlarm
122 - description: Indicates whether or not humidity is in alarm
123 - family: Environment/Humidity/Alarm/Status
124 - unit: "{status}"
132 + chart_meta:
133 + description: Indicates whether or not humidity is in alarm
134 + family: Environment/Humidity/Alarm/Status
135 + unit: "{status}"
136 mapping:
137 true: 1
138 false: 2
@@ -132,9 +143,10 @@ metrics:
143 symbols:
144 - OID: 1.3.6.1.4.1.850.100.1.3.2.1.3
145 name: tlUpsInputVoltage
135 - description: The magnitude of the present input voltage
136 - family: Input/Voltage/Value
137 - unit: "V"
146 + chart_meta:
147 + description: The magnitude of the present input voltage
148 + family: Input/Voltage/Value
149 + unit: "V"
150 metric_tags:
151 - tag: tl_ups_input_voltage_index
152 symbol:
@@ -154,21 +166,24 @@ metrics:
166 symbols:
167 - OID: 1.3.6.1.4.1.850.100.1.4.7.1.3
168 name: tlUpsOutputCircuitLoadCurrent
157 - description: The magnitude of the present output current
158 - family: Output/Circuit/Current/Value
159 - unit: "A"
169 + chart_meta:
170 + description: The magnitude of the present output current
171 + family: Output/Circuit/Current/Value
172 + unit: "A"
173 scale_factor: 0.1
174 - OID: 1.3.6.1.4.1.850.100.1.4.7.1.4
175 name: tlUpsOutputCircuitVoltage
163 - description: The magnitude of the present circuit voltage
164 - family: Output/Circuit/Voltage/Value
165 - unit: "V"
176 + chart_meta:
177 + description: The magnitude of the present circuit voltage
178 + family: Output/Circuit/Voltage/Value
179 + unit: "V"
180 scale_factor: 0.1
181 - OID: 1.3.6.1.4.1.850.100.1.4.7.1.5
182 name: tlUpsOutputCircuitPower
169 - description: The magnitude of the present power in watts
170 - family: Output/Circuit/Power/Active
171 - unit: "W"
183 + chart_meta:
184 + description: The magnitude of the present power in watts
185 + family: Output/Circuit/Power/Active
186 + unit: "W"
187 metric_tags:
188 - tag: tl_ups_output_circuit_index
189 index: 1
@@ -186,9 +201,10 @@ metrics:
201 symbols:
202 - OID: 1.3.6.1.4.1.850.101.2.1.1.3
203 name: tlEnvContactStatus
189 - description: The current status of the contact
190 - family: Environment/Contact/Status
191 - unit: "{status}"
204 + chart_meta:
205 + description: The current status of the contact
206 + family: Environment/Contact/Status
207 + unit: "{status}"
208 mapping:
209 0: normal
210 1: alarm
@@ -212,9 +228,10 @@ metrics:
228 symbols:
229 - OID: 1.3.6.1.4.1.850.100.1.11.2.1.5
230 name: tlUpsOutletGroupState
215 - description: The current state of the outlet group
216 - family: Outlet/Group/Status
217 - unit: "{status}"
231 + chart_meta:
232 + description: The current state of the outlet group
233 + family: Outlet/Group/Status
234 + unit: "{status}"
235 mapping:
236 0: unknown
237 1: off
src/go/plugin/go.d/config/go.d/snmp.profiles/default/velocloud-edge.yaml
+6 -6
@@ -18,17 +18,17 @@ metrics:
18 symbol:
19 name: memory.total
20 OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1
21 - description: Size of the storage represented by this entry, in units of hrStorageAllocationUnits
22 - unit: "{storage_unit}"
21 + description: Size of the storage represented by this entry, in units of hrStorageAllocationUnits
22 + unit: "{storage_unit}"
23 - MIB: HOST-RESOURCES-MIB
24 symbol:
25 name: memory.used
26 OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1
27 - description: Amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
28 - unit: "{storage_unit}"
27 + description: Amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
28 + unit: "{storage_unit}"
29 - MIB: HOST-RESOURCES-MIB
30 symbol:
31 name: cpu.usage
32 OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
33 - description: Average over the last minute of the percentage of time that this processor was not idle
34 - unit: "%"
33 + description: Average over the last minute of the percentage of time that this processor was not idle
34 + unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/vertiv-liebert-ac.yaml
+18 -18
@@ -7,14 +7,14 @@ metrics:
7 symbol:
8 OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.1.0
9 name: lgpEnvTemperatureSettingDegF
10 - description: The temperature setting used to control the well known temperature object 'lgpEnvControlTemperature'
11 - unit: "degF"
10 + description: The temperature setting used to control the well known temperature object 'lgpEnvControlTemperature'
11 + unit: "degF"
12 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
13 symbol:
14 OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.2.0
15 name: lgpEnvTemperatureToleranceDegF
16 - description: The acceptable variance from 'lgpEnvTemperatureSettingDegF' without initiating a control action
17 - unit: "degF"
16 + description: The acceptable variance from 'lgpEnvTemperatureSettingDegF' without initiating a control action
17 + unit: "degF"
18 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
19 table:
20 OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.3
@@ -41,44 +41,44 @@ metrics:
41 symbol:
42 OID: 1.3.6.1.4.1.476.1.42.3.4.6.1.0
43 name: lgpEnvStatisticsComp1RunHr
44 - description: Accumulated run hours of compressor 1
45 - unit: "h"
44 + description: Accumulated run hours of compressor 1
45 + unit: "h"
46 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
47 symbol:
48 OID: 1.3.6.1.4.1.476.1.42.3.4.6.2.0
49 name: lgpEnvStatisticsComp2RunHr
50 - description: Accumulated run hours of compressor 2
51 - unit: "h"
50 + description: Accumulated run hours of compressor 2
51 + unit: "h"
52 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
53 symbol:
54 OID: 1.3.6.1.4.1.476.1.42.3.4.6.3.0
55 name: lgpEnvStatisticsFanRunHr
56 - description: Accumulated run hours of the main fan
57 - unit: "h"
56 + description: Accumulated run hours of the main fan
57 + unit: "h"
58 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
59 symbol:
60 OID: 1.3.6.1.4.1.476.1.42.3.4.6.4.0
61 name: lgpEnvStatisticsHumRunHr
62 - description: Accumulated run hours of the humidifier
63 - unit: "h"
62 + description: Accumulated run hours of the humidifier
63 + unit: "h"
64 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
65 symbol:
66 OID: 1.3.6.1.4.1.476.1.42.3.4.6.7.0
67 name: lgpEnvStatisticsReheat1RunHr
68 - description: Accumulated run hours of reheat element 1
69 - unit: "h"
68 + description: Accumulated run hours of reheat element 1
69 + unit: "h"
70 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
71 symbol:
72 OID: 1.3.6.1.4.1.476.1.42.3.4.6.8.0
73 name: lgpEnvStatisticsReheat2RunHr
74 - description: Accumulated run hours of reheat element 2
75 - unit: "h"
74 + description: Accumulated run hours of reheat element 2
75 + unit: "h"
76 - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
77 symbol:
78 OID: 1.3.6.1.4.1.476.1.42.3.4.6.9.0
79 name: lgpEnvStatisticsReheat3RunHr
80 - description: Accumulated run hours of reheat element 3
81 - unit: "h"
80 + description: Accumulated run hours of reheat element 3
81 + unit: "h"
82 metric_tags:
83 - tag: lgp_agent_ident_model
84 OID: 1.3.6.1.4.1.476.1.42.2.1.2.0
src/go/plugin/go.d/config/go.d/snmp.profiles/default/vmware-esx.yaml
-6
@@ -40,8 +40,6 @@ metrics:
40 3: marginal
41 4: critical
42 5: failed
43 - description: "Status of the hardware host bus adapter"
44 - unit: "{status}"
43 - MIB: VMWARE-ENV-MIB
44 table:
45 OID: 1.3.6.1.4.1.6876.4.20.3
@@ -68,8 +66,6 @@ metrics:
66 8: temperature_sensor
67 9: raid_controller
68 10: voltage
71 - description: "Hardware component reporting environmental state"
72 - unit: "{hardware_component}"
69 - symbol:
70 OID: 1.3.6.1.4.1.6876.4.20.3.1.3
71 name: vmwHardwareStatus
@@ -80,5 +76,3 @@ metrics:
76 3: marginal
77 4: critical
78 5: failed
83 - description: "Last reported state of this component"
84 - unit: "{status}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/zyxel-switch.yaml
+4 -4
@@ -17,14 +17,14 @@ metrics:
17 symbol:
18 name: cpu.usage
19 OID: 1.3.6.1.4.1.890.1.15.3.2.4.0
20 - description: Device CPU usage (%)
21 - unit: "%"
20 + description: Device CPU usage (%)
21 + unit: "%"
22 - MIB: ZYXEL-ES-COMMON
23 symbol:
24 name: memory.usage
25 OID: 1.3.6.1.4.1.890.1.15.3.2.5.0
26 - description: Device memory usage (%)
27 - unit: "%"
26 + description: Device memory usage (%)
27 + unit: "%"
28
29 # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
30 metric_tags: