chore(go.d/snmp-profiles): charts meta fixes and fam updates p4 (#20623)
Ilya Mashchenko committed
Jul 4, 2025 at 11:53 UTC
872d0d1229e569627de652875a9f0a63306da70b
109 files changed
+3385
-2966
src/go/plugin/go.d/collector/snmp/ddsnmp/transform.go
+17
-17
@@ -8,7 +8,6 @@ import (
8
"math"
9
"net"
10
"strconv"
11
- "strings"
11
"text/template"
12
13
"github.com/Masterminds/sprig/v3"
@@ -169,23 +168,24 @@ func newMetricTransformFuncMap() template.FuncMap {
168
sensorScale := m.Tags["rm:sensor_scale"]
169
sensorPrecision := m.Tags["rm:sensor_precision"]
170
171
+ famPrefix := "Hardware/Sensor/"
172
config := map[string]map[string]interface{}{
173
- "1": {"name": "unspecified", "family": "Sensor/Generic/Value", "desc": "Unspecified or vendor-specific sensor"},
174
- "2": {"name": "unknown", "family": "Sensor/Unknown/Value", "desc": "Unknown sensor type"},
175
- "3": {"name": "voltage_ac", "unit": "V", "family": "Sensor/Voltage/AC", "desc": "AC voltage"},
176
- "4": {"name": "voltage_dc", "unit": "V", "family": "Sensor/Voltage/DC", "desc": "DC voltage"},
177
- "5": {"name": "current", "unit": "A", "family": "Sensor/Current/Value", "desc": "Current draw"},
178
- "6": {"name": "power", "unit": "W", "family": "Sensor/Power/Value", "desc": "Power consumption"},
179
- "7": {"name": "frequency", "unit": "Hz", "family": "Sensor/Frequency/Value", "desc": "Frequency"},
180
- "8": {"name": "temperature", "unit": "Cel", "family": "Sensor/Temperature/Value", "desc": "Temperature reading"},
181
- "9": {"name": "humidity", "unit": "%", "family": "Sensor/Humidity/Value", "desc": "Relative humidity"},
182
- "10": {"name": "fan_speed", "unit": "{revolution}/min", "family": "Sensor/FanSpeed/Value", "desc": "Fan rotation speed"},
183
- "11": {"name": "airflow", "unit": "m3/min", "family": "Sensor/Airflow/Value", "desc": "Airflow in cubic meters per minute"},
184
- "12": {"name": "sensor_state", "family": "Sensor/State/Value", "desc": "Boolean sensor state", "mapping": map[int64]string{
173
+ "1": {"name": "unspecified", "family": "Generic", "desc": "Unspecified or vendor-specific sensor"},
174
+ "2": {"name": "unknown", "family": "Unknown", "desc": "Unknown sensor type"},
175
+ "3": {"name": "voltage_ac", "unit": "V", "family": "Voltage/AC", "desc": "AC voltage"},
176
+ "4": {"name": "voltage_dc", "unit": "V", "family": "Voltage/DC", "desc": "DC voltage"},
177
+ "5": {"name": "current", "unit": "A", "family": "Current", "desc": "Current draw"},
178
+ "6": {"name": "power", "unit": "W", "family": "Power", "desc": "Power consumption"},
179
+ "7": {"name": "frequency", "unit": "Hz", "family": "Frequency", "desc": "Frequency"},
180
+ "8": {"name": "temperature", "unit": "Cel", "family": "Temperature", "desc": "Temperature reading"},
181
+ "9": {"name": "humidity", "unit": "%", "family": "Humidity", "desc": "Relative humidity"},
182
+ "10": {"name": "fan_speed", "unit": "{revolution}/min", "family": "FanSpeed", "desc": "Fan rotation speed"},
183
+ "11": {"name": "airflow", "unit": "m3/min", "family": "Airflow", "desc": "Airflow in cubic meters per minute"},
184
+ "12": {"name": "sensor_state", "family": "State", "desc": "Boolean sensor state", "mapping": map[int64]string{
185
0: "false", 1: "true", 2: "true",
186
}},
187
- "13": {"name": "special_enum", "family": "Sensor/Enum/Value", "desc": "Vendor-specific enumerated sensor"},
188
- "14": {"name": "power_dbm", "unit": "dBm", "family": "Sensor/Power/Value", "desc": "Power in decibel-milliwatts"},
187
+ "13": {"name": "special_enum", "family": "Enum", "desc": "Vendor-specific enumerated sensor"},
188
+ "14": {"name": "power_dbm", "unit": "dBm", "family": "Power", "desc": "Power in decibel-milliwatts"},
189
}
190
191
conf, ok := config[sensorType]
@@ -199,7 +199,7 @@ func newMetricTransformFuncMap() template.FuncMap {
199
m.Name = m.Name + "_" + name
200
}
201
if family, ok := conf["family"].(string); ok {
202
- m.Family = strings.TrimSuffix(family, "/Value") + "/Status"
202
+ m.Family = famPrefix + family + "/Status"
203
}
204
m.Mappings = map[int64]string{
205
1: "ok",
@@ -238,7 +238,7 @@ func newMetricTransformFuncMap() template.FuncMap {
238
m.Name = m.Name + "_" + name
239
}
240
if family, ok := conf["family"].(string); ok {
241
- m.Family = family
241
+ m.Family = famPrefix + family + "/Value"
242
}
243
if desc, ok := conf["desc"].(string); ok {
244
m.Description = desc
src/go/plugin/go.d/config/go.d/snmp.profiles/default/3com-huawei.yaml
+5
-5
@@ -14,7 +14,7 @@ metrics:
14
OID: 1.3.6.1.4.1.43.45.1.6.1.1.1.3
15
chart_meta:
16
description: Cpu usage percentage
17
- family: CPU/Usage
17
+ family: 'System/CPU/Usage'
18
unit: "%"
19
metric_tags:
20
- tag: cpu_index
@@ -28,13 +28,13 @@ metrics:
28
OID: 1.3.6.1.4.1.43.45.1.6.1.2.1.1.2
29
chart_meta:
30
description: Total memory size
31
- family: Memory/Total
31
+ family: 'System/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
35
chart_meta:
36
description: Free memory size
37
- family: Memory/Free
37
+ family: 'System/Memory/Free'
38
unit: "By"
39
metric_tags:
40
- tag: mem_index
@@ -48,7 +48,7 @@ metrics:
48
name: hwDevMFanStatus
49
chart_meta:
50
description: Fan status
51
- family: Fan/Status
51
+ family: 'Hardware/Fan/Status'
52
unit: "{status}"
53
mapping:
54
1: active
@@ -67,7 +67,7 @@ metrics:
67
name: hwDevMPowerStatus
68
chart_meta:
69
description: Power status
70
- family: PowerSupply/Status
70
+ family: 'Hardware/PowerSupply/Status'
71
unit: "{status}"
72
mapping:
73
1: active
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_arista-queue.yaml
+2
-2
@@ -12,7 +12,7 @@ metrics:
12
name: aristaIngressQueuePktsDropped
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
15
+ family: 'Network/Interface/Queue/Ingress/Packet/Dropped'
16
unit: "{packet}"
17
metric_tags:
18
- tag: interface_index
@@ -35,7 +35,7 @@ metrics:
35
name: aristaEgressQueuePktsDropped
36
chart_meta:
37
description: The number of packets discarded from this egress queue.
38
- family: Interfaces/Queue/Egress/Packet/Dropped
38
+ family: 'Network/Interface/Queue/Egress/Packet/Dropped'
39
unit: "{packet}"
40
metric_tags:
41
- tag: interface_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_aruba-switch-cpu-memory.yaml
+3
-3
@@ -13,7 +13,7 @@ metrics:
13
name: wlsxSysExtProcessorLoad
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
16
+ family: 'System/CPU/Usage'
17
unit: "%"
18
metric_tags:
19
- tag: cpu_index
@@ -31,14 +31,14 @@ metrics:
31
name: wlsxSysExtMemorySize
32
chart_meta:
33
description: Total memory
34
- family: Memory/Total
34
+ family: 'System/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
39
chart_meta:
40
description: Used memory
41
- family: Memory/Used
41
+ family: 'System/Memory/Used'
42
unit: "By"
43
scale_factor: 1024
44
metric_tags:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_avaya-utilization-management-mib.yaml
new
+66
@@ -0,0 +1,66 @@
1
+# https://mibbrowser.online/mibdb_search.php?mib=UTILIZATION-MANAGEMENT-MIB
2
+
3
+metrics:
4
+ # CPU
5
+ - MIB: UTILIZATION-MANAGEMENT-MIB
6
+ table:
7
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1
8
+ name: genCpuUtilizationTable
9
+ symbols:
10
+ - OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.6
11
+ name: genCpuCurrentUtilization
12
+ chart_meta:
13
+ description: The current CPU utilization. The sample interval is 5 seconds.
14
+ family: 'System/CPU/Usage'
15
+ unit: "%"
16
+ metric_tags:
17
+ - tag: cpu_index
18
+ index: 1
19
+
20
+ # Memory
21
+ - MIB: UTILIZATION-MANAGEMENT-MIB
22
+ table:
23
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6
24
+ name: genMemUtilizationTable
25
+ symbols:
26
+ - OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.2
27
+ name: genMemUtilizationPhyRam
28
+ chart_meta:
29
+ description: The total size of the physical RAM
30
+ family: 'System/Memory/Module/Total'
31
+ unit: "By"
32
+ - OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.3
33
+ name: genMemUtilizationPercentUsed
34
+ chart_meta:
35
+ description: The percentage of memory used
36
+ family: 'System/Memory/Module/Used'
37
+ unit: "%"
38
+ metric_tags:
39
+ - tag: mem_module_index
40
+ index: 1
41
+
42
+ - MIB: UTILIZATION-MANAGEMENT-MIB
43
+ symbol:
44
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.2.1
45
+ name: genMemUtilizationTotalRAM
46
+ scale_factor: 1048576 # MB => Bytes
47
+ chart_meta:
48
+ description: The total size of the RAM
49
+ family: 'System/Memory/Ram/Total'
50
+ unit: "By"
51
+ - MIB: UTILIZATION-MANAGEMENT-MIB
52
+ symbol:
53
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.2.3.1
54
+ name: genMemUtilizationDynAllocMemUsed
55
+ chart_meta:
56
+ description: The dynamically allocated memory has been used
57
+ family: 'System/Memory/Allocated/Used'
58
+ unit: "By"
59
+ - MIB: UTILIZATION-MANAGEMENT-MIB
60
+ symbol:
61
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.2.3.3
62
+ name: genMemUtilizationDynAllocMemAvailable
63
+ chart_meta:
64
+ description: The available dynamically allocated memory
65
+ family: 'System/Memory/Allocated/Available'
66
+ unit: "By"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-asa.yaml
+9
-9
@@ -13,7 +13,7 @@ metrics:
13
name: cfwConnectionStatValue
14
chart_meta:
15
description: Current status of the resource statistic
16
- family: Firewall/Connection/Count
16
+ family: 'Network/Firewall/Connection/Count'
17
unit: "{connection}"
18
metric_tags:
19
- tag: service_type
@@ -62,7 +62,7 @@ metrics:
62
41: protoSnmp
63
- tag: stat_type
64
index: 2
65
- mapping:
65
+ mapping: # TODO: create a separate metric for each type via transform
66
1: other
67
2: totalOpen # Total number of connections opened since system startup
68
3: currentOpen # Current number of open connections
@@ -77,7 +77,7 @@ metrics:
77
name: crasNumDeclinedSessions
78
chart_meta:
79
description: Number of session setup attempts declined due to authentication or authorization failure
80
- family: RemoteAccess/Session/Declined
80
+ family: 'Network/VPN/RemoteAccess/Session/Declined'
81
unit: "{session}/s"
82
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
83
symbol:
@@ -85,7 +85,7 @@ metrics:
85
name: crasNumSessions
86
chart_meta:
87
description: Number of currently active sessions
88
- family: RemoteAccess/Session/Active
88
+ family: 'Network/VPN/RemoteAccess/Session/Active'
89
unit: "{session}"
90
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
91
symbol:
@@ -93,7 +93,7 @@ metrics:
93
name: crasNumUsers
94
chart_meta:
95
description: Number of users who have active sessions
96
- family: RemoteAccess/User/Active
96
+ family: 'Network/VPN/RemoteAccess/User/Active'
97
unit: "{user}"
98
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
99
metric_type: monotonic_count
@@ -102,7 +102,7 @@ metrics:
102
name: crasNumSetupFailInsufResources
103
chart_meta:
104
description: Number of session setup attempts failed due to insufficient resources
105
- family: RemoteAccess/Session/Failed
105
+ family: 'Network/VPN/RemoteAccess/Session/Failed'
106
unit: "{failure}/s"
107
- MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
108
symbol:
@@ -110,7 +110,7 @@ metrics:
110
name: cipSecGlobalActiveTunnels
111
chart_meta:
112
description: Number of currently active IPsec Phase-2 Tunnels
113
- family: IPSec/Phase2/Tunnel/Active
113
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Active'
114
unit: "{tunnel}"
115
- MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
116
metric_type: monotonic_count
@@ -119,7 +119,7 @@ metrics:
119
name: cipSecGlobalHcInOctets
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
122
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Traffic/In'
123
unit: "By/s"
124
- MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
125
metric_type: monotonic_count
@@ -128,5 +128,5 @@ metrics:
128
name: cipSecGlobalHcOutOctets
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
131
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Traffic/Out'
132
unit: "By/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-base.yaml
+31
-28
@@ -20,7 +20,7 @@ metrics:
20
OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.1
21
chart_meta:
22
description: Administratively desired FRU power state
23
- family: FRU/Power/Admin/Status
23
+ family: 'Hardware/FRU/Power/Status/Admin'
24
unit: "{status}"
25
mapping:
26
1: on
@@ -32,7 +32,7 @@ metrics:
32
OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.2
33
chart_meta:
34
description: Operational FRU power state
35
- family: FRU/Power/Operational/Status
35
+ family: 'Hardware/FRU/Power/Status/Operational'
36
unit: "{status}"
37
mapping:
38
1: off_env_other
@@ -51,7 +51,7 @@ metrics:
51
name: cefcFRUCurrent
52
chart_meta:
53
description: Current supplied by the FRU or current required to operate the FRU
54
- family: FRU/Power/Current
54
+ family: 'Hardware/FRU/Power/Current'
55
unit: "A"
56
metric_tags:
57
- tag: fru_index
@@ -65,40 +65,40 @@ metrics:
65
name: cpmCPUTotalMonIntervalValue
66
chart_meta:
67
description: Overall CPU busy percentage in the last monitoring interval
68
- family: CPU/Usage
68
+ family: 'System/CPU/Usage'
69
unit: "%"
70
- OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7
71
name: cpmCPUTotal1minRev
72
chart_meta:
73
description: Overall CPU busy percentage in the last 1 minute period
74
- family: CPU/Usage
74
+ family: 'System/CPU/Usage'
75
unit: "%"
76
- OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.12
77
name: cpmCPUMemoryUsed
78
chart_meta:
79
description: Overall CPU wide system memory which is currently under use
80
- family: CPU/Memory/Used
80
+ family: 'System/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
84
chart_meta:
85
description: Overall CPU wide system memory which is currently free
86
- family: CPU/Memory/Free
86
+ family: 'System/CPU/Memory/Free'
87
unit: "By"
88
metric_tags:
89
- tag: cpu_index
90
index: 1
91
+
92
- MIB: CISCO-IF-EXTENSION-MIB
93
metric_type: monotonic_count
94
table:
94
- OID: 1.3.6.1.4.1.9.9.276.1.1.2
95
name: cieIfInterfaceTable
96
symbols:
97
- OID: 1.3.6.1.4.1.9.9.276.1.1.2.1.1
98
name: cieIfResetCount
99
chart_meta:
100
description: Number of times the interface was internally reset and brought up
101
- family: Interfaces/Reset/Count
101
+ family: 'Network/Interface/Reset/Count'
102
unit: "{reset}/s"
103
metric_tags:
104
- tag: interface
@@ -107,6 +107,7 @@ metrics:
107
symbol:
108
OID: 1.3.6.1.2.1.31.1.1.1.1
109
name: ifName
110
+
111
- MIB: CISCO-ENVMON-MIB
112
table:
113
OID: 1.3.6.1.4.1.9.9.13.1.3
@@ -116,13 +117,13 @@ metrics:
117
name: ciscoEnvMonTemperatureStatusValue
118
chart_meta:
119
description: Current measurement of the testpoint
119
- family: Environment/Temperature/Value
120
+ family: 'Hardware/Sensor/Temperature/Value'
121
unit: "Cel"
122
- OID: 1.3.6.1.4.1.9.9.13.1.3.1.6
123
name: ciscoEnvMonTemperatureState
124
chart_meta:
125
description: Current state of the testpoint
125
- family: Environment/Temperature/Status
126
+ family: 'Hardware/Sensor/Temperature/Status'
127
unit: "{status}"
128
mapping:
129
1: normal
@@ -148,7 +149,7 @@ metrics:
149
name: ciscoEnvMonSupplyState
150
chart_meta:
151
description: Current state of the power supply
151
- family: Environment/PowerSupply/Status
152
+ family: 'Hardware/PowerSupply/Status'
153
unit: "{status}"
154
mapping:
155
1: normal
@@ -184,7 +185,7 @@ metrics:
185
name: ciscoEnvMonFanState
186
chart_meta:
187
description: Current state of the fan
187
- family: Environment/Fan/Status
188
+ family: 'Hardware/Fan/Status'
189
unit: "{status}"
190
mapping:
191
1: normal
@@ -211,14 +212,16 @@ metrics:
212
name: cswStackPortOperStatus
213
chart_meta:
214
description: State of the stackport
214
- family: StackWise/Port/Status
215
+ family: 'Hardware/StackWise/Port/Status'
216
unit: "{status}"
217
mapping:
218
1: up
219
2: down
220
3: forcedDown
221
metric_tags:
221
- - tag: interface
222
+ - tag: stack_port_index
223
+ index: 1
224
+ - tag: _interface
225
table: ifXTable
226
MIB: IF-MIB
227
symbol:
@@ -235,7 +238,7 @@ metrics:
238
name: cswSwitchState
239
chart_meta:
240
description: Current state of a switch
238
- family: StackWise/Switch/Status
241
+ family: 'Hardware/StackWise/Switch/Status'
242
unit: "{status}"
243
mapping:
244
1: waiting
@@ -271,7 +274,7 @@ metrics:
274
name: cefcFanTrayOperStatus
275
chart_meta:
276
description: Operational state of the fan or fan tray
274
- family: Environment/FanTray/Status
277
+ family: 'Hardware/FanTray/Status'
278
unit: "{status}"
279
tag: cefc_fan_tray_oper_status
280
mapping:
@@ -300,19 +303,19 @@ metrics:
303
name: ciscoMemoryPoolUsed
304
chart_meta:
305
description: Number of bytes from the memory pool currently in use
303
- family: MemoryPool/Used
306
+ family: 'System/Memory/Pool/Used'
307
unit: "By"
308
- OID: 1.3.6.1.4.1.9.9.48.1.1.1.6
309
name: ciscoMemoryPoolFree
310
chart_meta:
311
description: Number of bytes from the memory pool currently unused
309
- family: MemoryPool/Free
312
+ family: 'System/Memory/Pool/Free'
313
unit: "By"
314
- OID: 1.3.6.1.4.1.9.9.48.1.1.1.7
315
name: ciscoMemoryPoolLargestFree
316
chart_meta:
317
description: Largest number of contiguous bytes from the memory pool currently unused
315
- family: MemoryPool/LargestFree
318
+ family: 'System/Memory/Pool/LargestFree'
319
unit: "By"
320
metric_tags:
321
- tag: mem_pool_index
@@ -331,7 +334,7 @@ metrics:
334
name: cfwConnectionStatCount
335
chart_meta:
336
description: Integer that contains the value of the resource statistic.
334
- family: Firewall/Connection/Count
337
+ family: 'Network/Firewall/Connection/Count'
338
unit: "1"
339
metric_tags:
340
- tag: conn_stat_id
@@ -390,7 +393,7 @@ metrics:
393
name: cfwHardwareStatusValue
394
chart_meta:
395
description: Current status of the resource
393
- family: Firewall/Hardware/Status
396
+ family: 'Hardware/Firewall/Status'
397
unit: "{status}"
398
mapping:
399
1: other
@@ -420,7 +423,7 @@ metrics:
423
name: cvsChassisUpTime
424
chart_meta:
425
description: Up time for the chassis since last re-initialization
423
- family: VirtualSwitch/Chassis/Uptime
426
+ family: 'System/VirtualSwitch/Chassis/Uptime'
427
unit: "cs"
428
metric_tags:
429
- tag: chassis_switch_id
@@ -443,7 +446,7 @@ metrics:
446
name: rttMonLatestRttOperSense
447
chart_meta:
448
description: Sense code for the completion status of the latest RTT operation
446
- family: RTT/Operation/Sense
449
+ family: 'Network/RTT/Operation/Status'
450
unit: "{status}"
451
mapping:
452
0: other
@@ -518,7 +521,7 @@ metrics:
521
name: rttMonCtrlOperState
522
chart_meta:
523
description: Used to manage the state of the probe that is implementing conceptual RTT control row.
521
- family: RTT/Control/State
524
+ family: 'Network/RTT/Control/Status/State'
525
unit: "{status}"
526
mapping:
527
1: reset
@@ -532,7 +535,7 @@ metrics:
535
name: rttMonCtrlOperTimeoutOccurred
536
chart_meta:
537
description: Indicates if a timeout occurred for the RTT operation
535
- family: RTT/Control/Timeout
538
+ family: 'Network/RTT/Control/Status/Timeout'
539
unit: "{status}"
540
mapping:
541
1: timeout_occurred
@@ -541,7 +544,7 @@ metrics:
544
name: rttMonCtrlOperConnectionLostOccurred
545
chart_meta:
546
description: Indicates if a connection lost occurred for the RTT operation
544
- family: RTT/Control/ConnectionLost
547
+ family: 'Network/RTT/Control/Status/ConnectionLost'
548
unit: "{status}"
549
mapping:
550
1: connection_lost_occurred
@@ -550,7 +553,7 @@ metrics:
553
name: rttMonCtrlOperOverThresholdOccurred
554
chart_meta:
555
description: Indicates if the latest RTT operation exceeded its configured threshold value
553
- family: RTT/Control/OverThreshold
556
+ family: 'Network/RTT/Control/Status/OverThreshold'
557
unit: "{status}"
558
mapping:
559
1: over_threshold_occurred
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-catalyst.yaml
+7
-6
@@ -29,7 +29,7 @@ metrics:
29
name: entSensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
30
chart_meta:
31
description: Most recent measurement obtained by the agent for this sensor
32
- family: Sensor/Value
32
+ family: 'Hardware/Sensor/Value'
33
unit: "1"
34
transform: |
35
{{- transformEntitySensorValue .Metric -}}
@@ -54,6 +54,7 @@ metrics:
54
symbol:
55
OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.3
56
name: entSensorPrecision
57
+
58
- MIB: CISCO-IF-EXTENSION-MIB # TODO: this is not Catalyst-specific, need to add to other Cisco devices
59
table:
60
OID: 1.3.6.1.4.1.9.9.276.1.1.1
@@ -63,30 +64,30 @@ metrics:
64
name: cieIfLastInTime
65
chart_meta:
66
description: "Elapsed time in milliseconds since last protocol input packet was received"
66
- family: Interfaces/Activity
67
+ family: 'Network/Interface/Activity/In'
68
unit: "ms"
69
- OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.2
70
name: cieIfLastOutTime
71
chart_meta:
72
description: "Elapsed time in milliseconds since last protocol output packet was transmitted"
72
- family: Interfaces/Activity
73
+ family: 'Network/Interface/Activity/Out'
74
unit: "ms"
75
- OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.10
76
name: cieIfInputQueueDrops
77
chart_meta:
78
description: "Number of input packets which were dropped"
78
- family: Interfaces/Drops
79
+ family: 'Network/Interface/Queue/Drops/In'
80
unit: "{drop}/s"
81
- OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.11
82
name: cieIfOutputQueueDrops
83
chart_meta:
84
description: "Number of output packets dropped by the interface"
84
- family: Interfaces/Drops
85
+ family: 'Network/Interface/Queue/Drops/Out'
86
unit: "{drop}/s"
87
metric_tags:
88
- tag: interface
89
MIB: IF-MIB
90
+ table: ifXTable
91
symbol:
92
OID: 1.3.6.1.2.1.31.1.1.1.1
93
name: ifName
92
- table: ifXTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-cpu-memory.yaml
+6
-6
@@ -10,7 +10,7 @@ metrics:
10
name: cpmCPUTotal1minRev
11
chart_meta:
12
description: The overall CPU busy percentage in the last 1 minute period
13
- family: CPU/Usage
13
+ family: 'System/CPU/Usage'
14
unit: "%"
15
metric_tags:
16
- tag: cpu
@@ -25,24 +25,24 @@ metrics:
25
name: ciscoMemoryPoolUsed
26
chart_meta:
27
description: Number of bytes from the memory pool currently in use
28
- family: MemoryPool/Used
28
+ family: 'System/Memory/Pool/Used'
29
unit: "By"
30
- OID: 1.3.6.1.4.1.9.9.48.1.1.1.6
31
name: ciscoMemoryPoolFree
32
chart_meta:
33
description: Number of bytes from the memory pool currently unused
34
- family: MemoryPool/Free
34
+ family: 'System/Memory/Pool/Free'
35
unit: "By"
36
- OID: 1.3.6.1.4.1.9.9.48.1.1.1.7
37
name: ciscoMemoryPoolLargestFree
38
chart_meta:
39
description: Largest number of contiguous bytes from the memory pool currently unused
40
- family: MemoryPool/LargestFree
40
+ family: 'System/Memory/Pool/LargestFree'
41
unit: "By"
42
metric_tags:
43
+ - tag: mem_pool_index
44
+ index: 1
45
- tag: mem_pool_name
46
symbol:
47
OID: 1.3.6.1.4.1.9.9.48.1.1.1.2
48
name: ciscoMemoryPoolName
47
- - tag: mem_pool_index
48
- index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-ipsec-flow-monitor.yaml
+21
-21
@@ -8,49 +8,49 @@ metrics:
8
name: cikeTunLifeTime
9
chart_meta:
10
description: The negotiated lifetime of the IPsec Phase-1 IKE Tunnel in seconds
11
- family: IPSec/Phase1/Tunnel/Lifetime
11
+ family: 'Network/VPN/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
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
17
+ family: 'Network/VPN/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
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
23
+ family: 'Network/VPN/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
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
29
+ family: 'Network/VPN/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
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
35
+ family: 'Network/VPN/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
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
41
+ family: 'Network/VPN/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
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
47
+ family: 'Network/VPN/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
51
chart_meta:
52
description: The status of the IPsec Phase-1 IKE Tunnel
53
- family: IPSec/Phase1/Tunnel/Status
53
+ family: 'Network/VPN/IPSec/Phase1/Tunnel/Status'
54
unit: "{status}"
55
mapping:
56
1: active
@@ -59,7 +59,7 @@ metrics:
59
name: cipSecTunIkeTunnelAlive
60
chart_meta:
61
description: The existence status of the IPsec Phase-1 IKE Tunnel
62
- family: IPSec/Phase1/Tunnel/Existence
62
+ family: 'Network/VPN/IPSec/Phase1/Tunnel/Existence'
63
unit: "{status}"
64
mapping:
65
1: exists
@@ -84,73 +84,73 @@ metrics:
84
name: cipSecTunLifeTime
85
chart_meta:
86
description: The negotiated lifetime of the IPsec Phase-2 Tunnel in seconds.
87
- family: IPSec/Phase2/Tunnel/Lifetime
87
+ family: 'Network/VPN/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
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
93
+ family: 'Network/VPN/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
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
99
+ family: 'Network/VPN/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
103
chart_meta:
104
description: The total number of packets received by this IPsec Phase-2 Tunnel
105
- family: IPSec/Phase2/Tunnel/Packet/In
105
+ family: 'Network/VPN/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
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
111
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Failure/Auth/In'
112
unit: "{failure}/s"
113
- OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.48
114
name: cipSecTunOutAuthFails
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
117
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Failure/Auth/Out'
118
unit: "{failure}/s"
119
- OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.38
120
name: cipSecTunInDecryptFails
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
123
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Failure/Decrypt/In'
124
unit: "{failure}/s"
125
- OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.50
126
name: cipSecTunOutEncryptFails
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
129
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Failure/Encrypt/Out'
130
unit: "{failure}/s"
131
- OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.39
132
name: cipSecTunOutOctets
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
135
+ family: 'Network/VPN/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
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
141
+ family: 'Network/VPN/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
145
chart_meta:
146
description: The total number of packets sent by this IPsec Phase-2 Tunnel
147
- family: IPSec/Phase2/Tunnel/Packet/Out
147
+ family: 'Network/VPN/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
151
chart_meta:
152
description: The status of the IPsec Phase-2 Tunnel
153
- family: IPSec/Phase2/Tunnel/Status
153
+ family: 'Network/VPN/IPSec/Phase2/Tunnel/Status'
154
unit: "{status}"
155
mapping:
156
1: active
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-voice.yaml
+31
-29
@@ -10,14 +10,14 @@ metrics:
10
OID: 1.3.6.1.2.1.25.5.1.1.2
11
chart_meta:
12
description: Total amount of real system memory allocated to this process
13
- family: Process/Memory/Usage
13
+ family: 'System/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
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
20
+ family: 'System/Process/CPU/Time'
21
unit: "cs"
22
metric_tags:
23
- tag: run_index
@@ -25,6 +25,7 @@ metrics:
25
symbol:
26
name: hrSWRunIndex
27
OID: 1.3.6.1.2.1.25.4.2.1.1
28
+
29
- MIB: HOST-RESOURCES-MIB
30
table:
31
name: hrSWRunTable
@@ -34,7 +35,7 @@ metrics:
35
OID: 1.3.6.1.2.1.25.4.2.1.7
36
chart_meta:
37
description: The status of this running piece of software
37
- family: Process/Run/Status
38
+ family: 'System/Process/Run/Status'
39
unit: "{status}"
40
mapping:
41
1: running
@@ -56,37 +57,37 @@ metrics:
57
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.5
58
chart_meta:
59
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
+ family: 'Voice/CVP/Connect/Latency'
61
unit: "ms"
62
- name: ccvpSipIntAvgLatency2
63
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.6
64
chart_meta:
65
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
+ family: 'Voice/CVP/Connect/Latency'
67
unit: "ms"
68
- name: ccvpSipIntConnectsRcv
69
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.4
70
chart_meta:
71
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
+ family: 'Voice/CVP/Connect/Received'
73
unit: "{connect}/s"
74
- name: ccvpSipIntNewCalls
75
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.3
76
chart_meta:
77
description: Number of SIP INVITE messages received by CVP since system start time
77
- family: Voice/CVP/Invite/Received
78
+ family: 'Voice/CVP/Invite/Received'
79
unit: "{invite}/s"
80
- name: ccvpSipRtActiveCalls
81
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.1
82
chart_meta:
83
description: Number of active calls being handled by the CVP SIP service
83
- family: Voice/CVP/Call/Active
84
+ family: 'Voice/CVP/Call/Active'
85
unit: "{call}"
86
- name: ccvpSipRtTotalCallLegs
87
OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.2
88
chart_meta:
89
description: Number of SIP call legs being handled by the SIP service
89
- family: Voice/CVP/CallLeg/Active
90
+ family: 'Voice/CVP/CallLeg/Active'
91
unit: "{call_leg}"
92
metric_tags:
93
- tag: service_index
@@ -102,7 +103,7 @@ metrics:
103
OID: 1.3.6.1.4.1.9.9.590.1.2.12.0
104
chart_meta:
105
description: Peak number of simultaneous port licenses used since the start of the system
105
- family: Voice/CVP/License/Port/Maximum
106
+ family: 'Voice/CVP/License/Port/Maximum'
107
unit: "{license}"
108
- MIB: CISCO-CVP-MIB
109
symbol:
@@ -110,7 +111,7 @@ metrics:
111
OID: 1.3.6.1.4.1.9.9.590.1.2.2.0
112
chart_meta:
113
description: Number of port licenses currently in use on the call server
113
- family: Voice/CVP/License/Port/Current
114
+ family: 'Voice/CVP/License/Port/Current'
115
unit: "{license}"
116
117
- MIB: CISCO-CCM-MIB
@@ -120,7 +121,7 @@ metrics:
121
OID: 1.3.6.1.4.1.9.9.156.1.5.8.0
122
chart_meta:
123
description: Number of gateways that are registered and actively in communication with the local call manager
123
- family: Voice/UCM/Gateway/Registered
124
+ family: 'Voice/UCM/Gateway/Registered'
125
unit: "{gateway}"
126
- MIB: CISCO-CCM-MIB
127
metric_type: gauge
@@ -129,7 +130,7 @@ metrics:
130
OID: 1.3.6.1.4.1.9.9.156.1.5.5.0
131
chart_meta:
132
description: Number of phones that are registered and actively in communication with the local call manager.
132
- family: Voice/UCM/Phone/Registered
133
+ family: 'Voice/UCM/Phone/Registered'
134
unit: "{phone}"
135
- MIB: CISCO-CCM-MIB
136
metric_type: gauge
@@ -138,7 +139,7 @@ metrics:
139
OID: 1.3.6.1.4.1.9.9.156.1.5.7.0
140
chart_meta:
141
description: Number of phones whose registration requests were rejected by the local call manager.
141
- family: Voice/UCM/Phone/Rejected
142
+ family: 'Voice/UCM/Phone/Rejected'
143
unit: "{reject}"
144
- MIB: CISCO-CCM-MIB
145
metric_type: gauge
@@ -147,7 +148,7 @@ metrics:
148
OID: 1.3.6.1.4.1.9.9.156.1.5.6.0
149
chart_meta:
150
description: Number of phone that are unregistered or have lost contact with the local call manager.
150
- family: Voice/UCM/Phone/Unregistered
151
+ family: 'Voice/UCM/Phone/Unregistered'
152
unit: "{phone}"
153
154
- MIB: CISCO-VOICE-DIAL-CONTROL-MIB
@@ -159,13 +160,13 @@ metrics:
160
OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.1
161
chart_meta:
162
description: Total number of inbound active media calls through this IP interface.
162
- family: Interfaces/Voice/Call/Incoming
163
+ family: '/Voice/Interface/Call/In'
164
unit: "{call}/s"
165
- name: cvCallVolMediaOutgoingCalls
166
OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.2
167
chart_meta:
168
description: Total number of outbound active media calls through the IP interface.
168
- family: Interfaces/Voice/Call/Outgoing
169
+ family: '/Voice/Interface/Call/Out'
170
unit: "{call}/s"
171
metric_tags:
172
- tag: interface
@@ -174,6 +175,7 @@ metrics:
175
symbol:
176
OID: 1.3.6.1.2.1.31.1.1.1.1
177
name: ifName
178
+
179
- MIB: CISCO-VOICE-DIAL-CONTROL-MIB
180
table:
181
name: cvCallVolPeerTable
@@ -183,13 +185,13 @@ metrics:
185
OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.1
186
chart_meta:
187
description: Total number of active calls that has selected the dialpeer as an incoming dialpeer.
186
- family: Voice/DialPeer/Call/Incoming
188
+ family: 'Voice/DialPeer/Call/Incoming'
189
unit: "{call}"
190
- name: cvCallVolPeerOutgoingCalls
191
OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.2
192
chart_meta:
193
description: Total number of active calls that has selected the dialpeer as an outgoing dialpeer.
192
- family: Voice/DialPeer/Call/Outgoing
194
+ family: 'Voice/DialPeer/Call/Outgoing'
195
unit: "{call}"
196
metric_tags:
197
- tag: peer_index
@@ -205,25 +207,25 @@ metrics:
207
OID: 1.3.6.1.2.1.10.21.1.2.2.1.5
208
chart_meta:
209
description: Number of calls from this peer accepted since system startup
208
- family: Voice/DialPeer/Call/Accepted
210
+ family: 'Voice/DialPeer/Call/Accepted'
211
unit: "{call}/s"
212
- name: dialCtlPeerStatsFailCalls
213
OID: 1.3.6.1.2.1.10.21.1.2.2.1.4
214
chart_meta:
215
description: Number of failed call attempts to this peer since system startup
214
- family: Voice/DialPeer/Call/Failed
216
+ family: 'Voice/DialPeer/Call/Failed'
217
unit: "{call}/s"
218
- name: dialCtlPeerStatsRefuseCalls
219
OID: 1.3.6.1.2.1.10.21.1.2.2.1.6
220
chart_meta:
221
description: Number of calls from this peer refused since system startup
220
- family: Voice/DialPeer/Call/Refused
222
+ family: 'Voice/DialPeer/Call/Refused'
223
unit: "{call}/s"
224
- name: dialCtlPeerStatsSuccessCalls
225
OID: 1.3.6.1.2.1.10.21.1.2.2.1.3
226
chart_meta:
227
description: Number of completed calls to this peer
226
- family: Voice/DialPeer/Call/Success
228
+ family: 'Voice/DialPeer/Call/Success'
229
unit: "{call}/s"
230
metric_tags:
231
- tag: peer_index
@@ -237,7 +239,7 @@ metrics:
239
OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.4
240
chart_meta:
241
description: Last known status of the enterprise contact center application peripheral interface manager functional component.
240
- family: Voice/CCA/PIM/Status
242
+ family: 'Voice/CCA/PIM/Status'
243
unit: "{status}"
244
mapping:
245
1: unknown
@@ -272,20 +274,20 @@ metrics:
274
OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.3
275
chart_meta:
276
description: Number of contact center agents currently managed by the enterprise contact center application.
275
- family: Voice/CCA/Agent/LoggedOn
277
+ family: 'Voice/CCA/Agent/LoggedOn'
278
unit: "{agent}"
279
- name: cccaRouterCallsInProgress
280
OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.4
281
chart_meta:
282
description: Number of active (voice) calls being managed by the enterprise contact center application.
281
- family: Voice/CCA/Call/InProgress
282
- unit: "{calls}"
283
+ family: 'Voice/CCA/Call/InProgress'
284
+ unit: "{call}"
285
- name: cccaRouterCallsInQueue
286
OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.8
287
chart_meta:
288
description: Number of calls queued in all network Voice Response Units (VRUs).
287
- family: Voice/CCA/Call/InQueue
288
- unit: "{calls}"
289
+ family: 'Voice/CCA/Call/InQueue'
290
+ unit: "{call}"
291
metric_tags:
292
- tag: instance_number
293
index: 1 # Index of cccaRouterTable is (cccaInstanceNumber, cccaComponentIndex)
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_cisco-wlc.yaml
+12
-12
@@ -16,7 +16,7 @@ metrics:
16
name: bsnAPOperationStatus
17
chart_meta:
18
description: Operation State of the AP
19
- family: AccessPoint/Operational/Status
19
+ family: 'Network/Wireless/AccessPoint/Operational/Status'
20
unit: "{status}"
21
mapping:
22
1: associated
@@ -26,7 +26,7 @@ metrics:
26
name: bsnAPAdminStatus
27
chart_meta:
28
description: Admin State of the AP
29
- family: AccessPoint/Admin/Status
29
+ family: 'Network/Wireless/AccessPoint/Admin/Status'
30
unit: "{status}"
31
mapping:
32
1: enable
@@ -60,7 +60,7 @@ metrics:
60
name: bsnAPIfOperStatus
61
chart_meta:
62
description: Operational status of the interface
63
- family: AccessPoint/Interface/Operational/Status
63
+ family: 'Network/Wireless/AccessPoint/Interface/Operational/Status'
64
unit: "{status}"
65
mapping:
66
1: down
@@ -69,7 +69,7 @@ metrics:
69
name: bsnAPIfAdminStatus
70
chart_meta:
71
description: Admin status of the interface
72
- family: AccessPoint/Interface/Admin/Status
72
+ family: 'Network/Wireless/AccessPoint/Interface/Admin/Status'
73
unit: "{status}"
74
mapping:
75
1: enable
@@ -122,7 +122,7 @@ metrics:
122
name: bsnApIfNoOfUsers
123
chart_meta:
124
description: "Number of users associated with this radio"
125
- family: AccessPoint/Interface/User/Count
125
+ family: 'Network/Wireless/AccessPoint/Interface/User/Count'
126
unit: "{user}"
127
metric_tags:
128
- tag: ap_if_slot_id
@@ -173,25 +173,25 @@ metrics:
173
name: bsnAPIfLoadRxUtilization
174
chart_meta:
175
description: "Percentage of time the Airespace AP receiver is busy operating on packets"
176
- family: AccessPoint/Radio/Receiver/Utilization
176
+ family: 'Network/Wireless/AccessPoint/Radio/Receiver/Utilization'
177
unit: "%"
178
- OID: 1.3.6.1.4.1.14179.2.2.13.1.2
179
name: bsnAPIfLoadTxUtilization
180
chart_meta:
181
description: "Percentage of time the Airespace AP transmitter is busy operating on packets"
182
- family: AccessPoint/Radio/Transmitter/Utilization
182
+ family: 'Network/Wireless/AccessPoint/Radio/Transmitter/Utilization'
183
unit: "%"
184
- OID: 1.3.6.1.4.1.14179.2.2.13.1.24
185
name: bsnAPIfPoorSNRClients
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
188
+ family: 'Network/Wireless/AccessPoint/Client/PoorSNR'
189
unit: "{client}"
190
- OID: 1.3.6.1.4.1.14179.2.2.13.1.3
191
name: bsnAPIfLoadChannelUtilization
192
chart_meta:
193
description: "Channel utilization"
194
- family: AccessPoint/Radio/Channel/Utilization
194
+ family: 'Network/Wireless/AccessPoint/Radio/Channel/Utilization'
195
unit: "%"
196
metric_tags:
197
- tag: ap_if_slot_id
@@ -243,7 +243,7 @@ metrics:
243
name: bsnDot11EssAdminStatus
244
chart_meta:
245
description: Administrative Status of ESS(WLAN)
246
- family: WLAN/Admin/Status
246
+ family: 'Network/Wireless/WLAN/Admin/Status'
247
unit: "{status}"
248
mapping:
249
0: disable
@@ -252,7 +252,7 @@ metrics:
252
name: bsnDot11EssRowStatus
253
chart_meta:
254
description: Row status type for the bsnDot11EssEntry
255
- family: WLAN/Row/Status
255
+ family: 'Network/Wireless/WLAN/Config/RowStatus'
256
unit: "{status}"
257
mapping:
258
1: active
@@ -265,7 +265,7 @@ metrics:
265
name: bsnDot11EssNumberOfMobileStations
266
chart_meta:
267
description: Number of mobile stations currently associated with the WLAN
268
- family: WLAN/Station/Count
268
+ family: 'Network/Wireless/WLAN/Station/Count'
269
unit: "{station}"
270
metric_tags:
271
- tag: wlan_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_dell-rac.yaml
+59
-59
@@ -9,7 +9,7 @@ metrics:
9
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.4
10
name: systemStateChassisStatus
11
chart_meta:
12
- family: "Chassis/Status"
12
+ family: 'Chassis/Status'
13
description: Chassis status of the system state
14
unit: "{status}"
15
mapping:
@@ -22,7 +22,7 @@ metrics:
22
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.6
23
name: systemStatePowerUnitStatusRedundancy
24
chart_meta:
25
- family: "PowerUnit/Redundancy/Status"
25
+ family: 'PowerUnit/Redundancy/Status'
26
description: Power unit status redundancy of the system state
27
unit: "{status}"
28
mapping:
@@ -36,7 +36,7 @@ metrics:
36
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.9
37
name: systemStatePowerSupplyStatusCombined
38
chart_meta:
39
- family: "PowerSupply/Status/Combined"
39
+ family: 'PowerSupply/Status/Combined'
40
description: Combined power supply status of the system state
41
unit: "{state}"
42
mapping:
@@ -49,7 +49,7 @@ metrics:
49
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.15
50
name: systemStateAmperageStatusCombined
51
chart_meta:
52
- family: "Amperage/Status/Combined"
52
+ family: 'Amperage/Status/Combined'
53
description: Combined amperage status of the system state
54
unit: "{status}"
55
mapping:
@@ -62,7 +62,7 @@ metrics:
62
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.18
63
name: systemStateCoolingUnitStatusRedundancy
64
chart_meta:
65
- family: "CoolingUnit/Redundancy/Status"
65
+ family: 'CoolingUnit/Redundancy/Status'
66
description: Cooling unit status redundancy of the system state
67
unit: "{status}"
68
mapping:
@@ -76,7 +76,7 @@ metrics:
76
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.21
77
name: systemStateCoolingDeviceStatusCombined
78
chart_meta:
79
- family: "CoolingDevice/Status/Combined"
79
+ family: 'CoolingDevice/Status/Combined'
80
description: Combined cooling device status of the system state
81
unit: "{status}"
82
mapping:
@@ -89,7 +89,7 @@ metrics:
89
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.24
90
name: systemStateTemperatureStatusCombined
91
chart_meta:
92
- family: "Temperature/Status/Combined"
92
+ family: 'Temperature/Status/Combined'
93
description: Combined temperature status of the system state
94
unit: "{status}"
95
mapping:
@@ -102,7 +102,7 @@ metrics:
102
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.27
103
name: systemStateMemoryDeviceStatusCombined
104
chart_meta:
105
- family: "MemoryDevice/Status/Combined"
105
+ family: 'MemoryDevice/Status/Combined'
106
description: Combined memory device status of the system state
107
unit: "{status}"
108
mapping:
@@ -115,7 +115,7 @@ metrics:
115
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.30
116
name: systemStateChassisIntrusionStatusCombined
117
chart_meta:
118
- family: "ChassisIntrusion/Status/Combined"
118
+ family: 'ChassisIntrusion/Status/Combined'
119
description: Combined chassis intrusion status of the system state
120
unit: "{status}"
121
mapping:
@@ -128,7 +128,7 @@ metrics:
128
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.42
129
name: systemStatePowerUnitStatusCombined
130
chart_meta:
131
- family: "PowerUnit/Status/Combined"
131
+ family: 'PowerUnit/Status/Combined'
132
description: Combined power unit status of the system state
133
unit: "{status}"
134
mapping:
@@ -141,7 +141,7 @@ metrics:
141
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.44
142
name: systemStateCoolingUnitStatusCombined
143
chart_meta:
144
- family: "CoolingUnit/Status/Combined"
144
+ family: 'CoolingUnit/Status/Combined'
145
description: Combined cooling unit status of the system state
146
unit: "{status}"
147
mapping:
@@ -154,7 +154,7 @@ metrics:
154
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.50
155
name: systemStateProcessorDeviceStatusCombined
156
chart_meta:
157
- family: "ProcessorDevice/Status/Combined"
157
+ family: 'ProcessorDevice/Status/Combined'
158
description: Combined processor device status of the system state
159
unit: "{status}"
160
mapping:
@@ -167,7 +167,7 @@ metrics:
167
- OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.63
168
name: systemStateTemperatureStatisticsStatusCombined
169
chart_meta:
170
- family: "TemperatureStatistics/Status/Combined"
170
+ family: 'TemperatureStatistics/Status/Combined'
171
description: Combined temperature statistics status of the system state
172
unit: "{status}"
173
mapping:
@@ -191,7 +191,7 @@ metrics:
191
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4
192
name: physicalDiskState
193
chart_meta:
194
- family: "Disk/Physical/State"
194
+ family: 'Disk/Physical/State'
195
description: State of the physical disk
196
unit: "{status}"
197
mapping:
@@ -209,21 +209,21 @@ metrics:
209
name: physicalDiskCapacityInMB
210
scale_factor: 1048576
211
chart_meta:
212
- family: "Disk/Physical/Capacity"
212
+ family: 'Disk/Physical/Capacity'
213
description: Capacity of the physical disk in megabytes
214
unit: "By"
215
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.17
216
name: physicalDiskUsedSpaceInMB
217
scale_factor: 1048576
218
chart_meta:
219
- family: "Disk/Physical/Used"
219
+ family: 'Disk/Physical/Used'
220
description: Used space of the physical disk in megabytes
221
unit: "By"
222
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.19
223
name: physicalDiskFreeSpaceInMB
224
scale_factor: 1048576
225
chart_meta:
226
- family: "Disk/Physical/Free"
226
+ family: 'Disk/Physical/Free'
227
description: Free space of the physical disk in megabytes
228
unit: "By"
229
metric_tags:
@@ -244,7 +244,7 @@ metrics:
244
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.4
245
name: enclosurePowerSupplyState
246
chart_meta:
247
- family: "Enclosure/PowerSupply/State"
247
+ family: 'Enclosure/PowerSupply/State'
248
description: State of the enclosure power supply
249
unit: "{status}"
250
mapping:
@@ -275,7 +275,7 @@ metrics:
275
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4
276
name: batteryState
277
chart_meta:
278
- family: "Battery/State"
278
+ family: 'Battery/State'
279
description: State of the battery
280
unit: "{status}"
281
mapping:
@@ -304,7 +304,7 @@ metrics:
304
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37
305
name: controllerRollUpStatus
306
chart_meta:
307
- family: "Controller/Status/RollUp"
307
+ family: 'Controller/Status/RollUp'
308
description: Roll up status of the controller
309
unit: "{status}"
310
mapping:
@@ -340,7 +340,7 @@ metrics:
340
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.5
341
name: pCIDeviceStatus
342
chart_meta:
343
- family: "PCIDevice/Status"
343
+ family: 'PCIDevice/Status'
344
description: Status of the PCI device
345
unit: "{status}"
346
mapping:
@@ -368,7 +368,7 @@ metrics:
368
- OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.5
369
name: systemSlotStatus
370
chart_meta:
371
- family: "Slot/Status"
371
+ family: 'Slot/Status'
372
description: Status of the system slot
373
unit: "{status}"
374
mapping:
@@ -396,7 +396,7 @@ metrics:
396
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.3
397
name: networkDeviceStatus
398
chart_meta:
399
- family: "NetworkDevice/Status"
399
+ family: 'NetworkDevice/Status'
400
description: Status of the network device
401
unit: "{status}"
402
mapping:
@@ -428,7 +428,7 @@ metrics:
428
- OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.5
429
name: systemBIOSStatus
430
chart_meta:
431
- family: "BIOS/Status"
431
+ family: 'BIOS/Status'
432
description: Status of the system BIOS
433
unit: "{status}"
434
mapping:
@@ -456,7 +456,7 @@ metrics:
456
- OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.5
457
name: intrusionStatus
458
chart_meta:
459
- family: "Intrusion/Status"
459
+ family: 'Intrusion/Status'
460
description: Status of the intrusion
461
unit: "{status}"
462
mapping:
@@ -469,7 +469,7 @@ metrics:
469
- OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.6
470
name: intrusionReading
471
chart_meta:
472
- family: "Intrusion/Reading"
472
+ family: 'Intrusion/Reading'
473
description: Reading of the intrusion
474
unit: "{reading}"
475
metric_tags:
@@ -494,19 +494,19 @@ metrics:
494
- OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.6
495
name: powerSupplyOutputWatts
496
chart_meta:
497
- family: "PowerSupply/Output/Power"
497
+ family: 'PowerSupply/Output/Power'
498
description: Output power of the power supply in watts
499
unit: "W"
500
- OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.9
501
name: powerSupplyMaximumInputVoltage
502
chart_meta:
503
- family: "PowerSupply/Input/Voltage/Maximum"
503
+ family: 'PowerSupply/Input/Voltage/Maximum'
504
description: Maximum input voltage of the power supply
505
unit: "V"
506
- OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.16
507
name: powerSupplyCurrentInputVoltage
508
chart_meta:
509
- family: "PowerSupply/Input/Voltage/Current"
509
+ family: 'PowerSupply/Input/Voltage/Current'
510
description: Current input voltage of the power supply
511
unit: "V"
512
metric_tags:
@@ -531,7 +531,7 @@ metrics:
531
- OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.5
532
name: amperageProbeStatus
533
chart_meta:
534
- family: "Sensor/Amperage/Status"
534
+ family: 'Sensor/Amperage/Status'
535
description: Status of the amperage probe
536
unit: "{status}"
537
mapping:
@@ -548,7 +548,7 @@ metrics:
548
- OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.6
549
name: amperageProbeReading
550
chart_meta:
551
- family: "Sensor/Amperage/Value"
551
+ family: 'Sensor/Amperage/Value'
552
description: Reading of the amperage probe in amperes
553
unit: "A"
554
metric_tags:
@@ -594,7 +594,7 @@ metrics:
594
- OID: 1.3.6.1.4.1.674.10892.5.4.600.60.1.5
595
name: powerUsageStatus
596
chart_meta:
597
- family: "PowerUsage/Status"
597
+ family: 'PowerUsage/Status'
598
description: Status of the power usage
599
unit: "{status}"
600
mapping:
@@ -626,7 +626,7 @@ metrics:
626
- OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.5
627
name: voltageProbeStatus
628
chart_meta:
629
- family: "Sensor/Voltage/Status"
629
+ family: 'Sensor/Voltage/Status'
630
description: Status of the voltage probe
631
unit: "{status}"
632
mapping:
@@ -643,7 +643,7 @@ metrics:
643
- OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.6
644
name: voltageProbeReading
645
chart_meta:
646
- family: "Sensor/Voltage/Value"
646
+ family: 'Sensor/Voltage/Value'
647
description: Reading of the voltage probe in volts
648
unit: "V"
649
metric_tags:
@@ -688,7 +688,7 @@ metrics:
688
- OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.5
689
name: systemBatteryStatus
690
chart_meta:
691
- family: "SystemBattery/Status"
691
+ family: 'SystemBattery/Status'
692
description: Status of the system battery
693
unit: "{status}"
694
mapping:
@@ -701,7 +701,7 @@ metrics:
701
- OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.6
702
name: systemBatteryReading
703
chart_meta:
704
- family: "SystemBattery/Reading"
704
+ family: 'SystemBattery/Reading'
705
description: Reading of the system battery
706
unit: "{reading}"
707
metric_tags:
@@ -726,7 +726,7 @@ metrics:
726
- OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.5
727
name: coolingUnitRedundancyStatus
728
chart_meta:
729
- family: "CoolingUnit/Redundancy/Status"
729
+ family: 'CoolingUnit/Redundancy/Status'
730
description: Redundancy status of the cooling unit
731
unit: "{status}"
732
mapping:
@@ -740,7 +740,7 @@ metrics:
740
- OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.8
741
name: coolingUnitStatus
742
chart_meta:
743
- family: "CoolingUnit/Status"
743
+ family: 'CoolingUnit/Status'
744
description: Status of the cooling unit
745
unit: "{status}"
746
mapping:
@@ -773,7 +773,7 @@ metrics:
773
- OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.5
774
name: coolingDeviceStatus
775
chart_meta:
776
- family: "CoolingDevice/Status"
776
+ family: 'CoolingDevice/Status'
777
description: Status of the cooling device
778
unit: "{status}"
779
mapping:
@@ -790,13 +790,13 @@ metrics:
790
- OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.6
791
name: coolingDeviceReading
792
chart_meta:
793
- family: "CoolingDevice/Speed"
793
+ family: 'CoolingDevice/Speed'
794
description: Reading of the cooling device
795
unit: "rpm"
796
- OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.18
797
name: coolingDeviceDiscreteReading
798
chart_meta:
799
- family: "CoolingDevice/DiscreteReading"
799
+ family: 'CoolingDevice/DiscreteReading'
800
description: Discrete reading of the cooling device
801
unit: "{reading}"
802
metric_tags:
@@ -841,7 +841,7 @@ metrics:
841
- OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.5
842
name: temperatureProbeStatus
843
chart_meta:
844
- family: "Sensor/Temperature/Status"
844
+ family: 'Sensor/Temperature/Status'
845
description: Status of the temperature probe
846
unit: "{status}"
847
mapping:
@@ -858,13 +858,13 @@ metrics:
858
- OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.6
859
name: temperatureProbeReading
860
chart_meta:
861
- family: "Sensor/Temperature/Value"
861
+ family: 'Sensor/Temperature/Value'
862
description: Reading of the temperature probe in degrees Celsius
863
unit: "Cel"
864
- OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.16
865
name: temperatureProbeDiscreteReading
866
chart_meta:
867
- family: "Sensor/Temperature/DiscreteReading"
867
+ family: 'Sensor/Temperature/DiscreteReading'
868
description: Discrete reading of the temperature probe
869
unit: "{reading}"
870
metric_tags:
@@ -898,7 +898,7 @@ metrics:
898
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.5
899
name: processorDeviceStatus
900
chart_meta:
901
- family: "Processor/Status"
901
+ family: 'Processor/Status'
902
description: Status of the processor device
903
unit: "{status}"
904
mapping:
@@ -911,19 +911,19 @@ metrics:
911
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.11
912
name: processorDeviceMaximumSpeed
913
chart_meta:
914
- family: "Processor/Speed/Maximum"
914
+ family: 'Processor/Speed/Maximum'
915
description: Maximum speed of the processor device in megahertz
916
unit: "MHz"
917
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.12
918
name: processorDeviceCurrentSpeed
919
chart_meta:
920
- family: "Processor/Speed/Current"
920
+ family: 'Processor/Speed/Current'
921
description: Current speed of the processor device in megahertz
922
unit: "MHz"
923
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.14
924
name: processorDeviceVoltage
925
chart_meta:
926
- family: "Processor/Voltage"
926
+ family: 'Processor/Voltage'
927
description: Voltage of the processor device in volts
928
unit: "V"
929
metric_tags:
@@ -952,7 +952,7 @@ metrics:
952
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.5
953
name: processorDeviceStatusStatus
954
chart_meta:
955
- family: "ProcessorDeviceStatus/Status"
955
+ family: 'ProcessorDeviceStatus/Status'
956
description: Status of the processor device status
957
unit: "{status}"
958
mapping:
@@ -965,7 +965,7 @@ metrics:
965
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.6
966
name: processorDeviceStatusReading
967
chart_meta:
968
- family: "ProcessorDeviceStatus/Reading"
968
+ family: 'ProcessorDeviceStatus/Reading'
969
description: Reading of the processor device status
970
unit: "{reading}"
971
metric_tags:
@@ -990,7 +990,7 @@ metrics:
990
- OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.5
991
name: memoryDeviceStatus
992
chart_meta:
993
- family: "Memory/Status"
993
+ family: 'Memory/Status'
994
description: Status of the memory device
995
unit: "{status}"
996
mapping:
@@ -1050,7 +1050,7 @@ metrics:
1050
- OID: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.3
1051
name: fruInformationStatus
1052
chart_meta:
1053
- family: "FRU/Status"
1053
+ family: 'FRU/Status'
1054
description: Status of the FRU information
1055
unit: "{status}"
1056
mapping:
@@ -1082,7 +1082,7 @@ metrics:
1082
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4
1083
name: virtualDiskState
1084
chart_meta:
1085
- family: "Disk/Virtual/State"
1085
+ family: 'Disk/Virtual/State'
1086
description: State of the virtual disk
1087
unit: "{status}"
1088
mapping:
@@ -1094,13 +1094,13 @@ metrics:
1094
name: virtualDiskSizeInMB
1095
scale_factor: 1048576
1096
chart_meta:
1097
- family: "Disk/Virtual/Size"
1097
+ family: 'Disk/Virtual/Size'
1098
description: Size of the virtual disk in megabytes
1099
unit: "By"
1100
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20
1101
name: virtualDiskComponentStatus
1102
chart_meta:
1103
- family: "Disk/Virtual/ComponentStatus"
1103
+ family: 'Disk/Virtual/ComponentStatus'
1104
description: Component status of the virtual disk
1105
unit: "{status}"
1106
mapping:
@@ -1113,7 +1113,7 @@ metrics:
1113
- OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.37
1114
name: virtualDiskT10PIStatus
1115
chart_meta:
1116
- family: "Disk/Virtual/T10PIStatus"
1116
+ family: 'Disk/Virtual/T10PIStatus'
1117
description: T10 PI status of the virtual disk
1118
unit: "{status}"
1119
mapping:
@@ -1139,7 +1139,7 @@ metrics:
1139
OID: 1.3.6.1.4.1.674.10892.2.3.1.9.0
1140
name: drsCMCCurrStatus
1141
chart_meta:
1142
- family: "CMC/Status"
1142
+ family: 'CMC/Status'
1143
description: CMC health status being monitored by the chassis management card
1144
unit: "{status}"
1145
mapping:
@@ -1155,7 +1155,7 @@ metrics:
1155
OID: 1.3.6.1.4.1.674.10892.2.3.1.1.0
1156
name: drsGlobalCurrStatus
1157
chart_meta:
1158
- family: "Global/Status"
1158
+ family: 'Global/Status'
1159
description: Overall chassis status being monitored by the chassis management card
1160
unit: "{status}"
1161
mapping:
@@ -1171,7 +1171,7 @@ metrics:
1171
OID: 1.3.6.1.4.1.674.10892.2.3.1.5.0
1172
name: drsPowerCurrStatus
1173
chart_meta:
1174
- family: "Power/Status"
1174
+ family: 'Power/Status'
1175
description: Power subsystem health status being monitored by the chassis management card
1176
unit: "{status}"
1177
mapping:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_f5-big-ip-cpu-memory.yaml
+26
-22
@@ -1,24 +1,6 @@
1
# CPU and memory metrics for F5 BIG-IP devices
2
3
metrics:
4
- # Memory stats
5
- - MIB: F5-BIGIP-SYSTEM-MIB
6
- metric_type: gauge
7
- symbol:
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"
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"
21
- # CPU
4
- MIB: F5-BIGIP-SYSTEM-MIB
5
table:
6
OID: 1.3.6.1.4.1.3375.2.1.7.5.2
@@ -27,10 +9,32 @@ metrics:
9
symbols:
10
- OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.27
11
name: cpu.usage # sysMultiHostCpuUsageRatio1m
30
- description: This is average usage ratio of CPU for the associated host in the last one minute
31
- unit: "%"
12
+ chart_meta:
13
+ family: 'System/CPU/Usage'
14
+ description: This is average usage ratio of CPU for the associated host in the last one minute
15
+ unit: "%"
16
metric_tags:
33
- - symbol:
17
+ - tag: cpu
18
+ symbol:
19
OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.3
20
name: sysMultiHostCpuId
36
- tag: cpu
21
+
22
+ - MIB: F5-BIGIP-SYSTEM-MIB
23
+ metric_type: gauge
24
+ symbol:
25
+ OID: 1.3.6.1.4.1.3375.2.1.1.2.1.44.0
26
+ name: memory.total
27
+ chart_meta:
28
+ family: 'System/Memory/TMM/Total'
29
+ description: The total memory available in bytes for TMM (Traffic Management Module)
30
+ unit: "By"
31
+
32
+ - MIB: F5-BIGIP-SYSTEM-MIB
33
+ metric_type: gauge
34
+ symbol:
35
+ OID: 1.3.6.1.4.1.3375.2.1.1.2.1.45.0
36
+ name: memory.used
37
+ chart_meta:
38
+ family: 'System/Memory/TMM/Used'
39
+ description: The memory in use in bytes for TMM (Traffic Management Module)
40
+ unit: "By"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_fortinet-fortigate-vpn-tunnel.yaml
+3
-3
@@ -8,21 +8,21 @@ metrics:
8
name: fgVpnTunEntInOctets
9
chart_meta:
10
description: Number of bytes received on tunnel
11
- family: VPN/Tunnel/Traffic/In
11
+ family: 'Network/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
16
chart_meta:
17
description: Number of bytes sent out on tunnel
18
- family: VPN/Tunnel/Traffic/Out
18
+ family: 'Network/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
23
chart_meta:
24
description: Current status of tunnel (up or down)
25
- family: VPN/Tunnel/Status
25
+ family: 'Network/VPN/Tunnel/Status'
26
unit: "{status}"
27
mapping:
28
1: down
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_hp-compaq-health.yaml
+188
-89
@@ -5,23 +5,28 @@ metrics:
5
6
# System utilization.
7
8
- # Total time the system has been in full operation.
8
+ # Total time the system has been in full operation.
9
- MIB: CPQHLTH-MIB
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
+ scale_factor: 60
14
+ chart_meta:
15
+ family: 'System/Uptime'
16
+ description: Total time the system has been in full operation in minutes
17
+ unit: "s"
18
19
# EISA bus utilization as percentage of theoretical maximum during last minute.
20
- MIB: CPQHLTH-MIB
21
symbol:
22
OID: 1.3.6.1.4.1.232.6.2.8.2.0
23
name: cpqHeSysUtilEisaBusMin
21
- description: EISA bus utilization as a percentage of the theoretical maximum during the last minute
22
- unit: "%"
24
+ chart_meta:
25
+ family: 'Hardware/Bus/EISA/Usage'
26
+ description: EISA bus utilization as a percentage of the theoretical maximum during the last minute
27
+ unit: "%"
28
24
- # Critical errors.
29
+ # Critical errors.
30
31
# Overall condition of the critical error log feature.
32
# NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -29,10 +34,17 @@ metrics:
34
symbol:
35
OID: 1.3.6.1.4.1.232.6.2.2.2.0
36
name: cpqHeCritLogCondition
32
- description: Overall condition of the critical error log feature
33
- unit: "{instance}"
37
+ chart_meta:
38
+ family: 'System/ErrorLog/Critical/Status'
39
+ description: Overall condition of the critical error log feature
40
+ unit: "{status}"
41
+ mapping:
42
+ 1: other
43
+ 2: ok
44
+ 3: degraded
45
+ 4: failed
46
35
- # Correctable memory errors tracking.
47
+ # Correctable memory errors tracking.
48
49
# Overall status of the correctable memory error log feature.
50
# NOTE: other(1), notSupported(2), disabled(3), enabled(4)
@@ -40,8 +52,15 @@ metrics:
52
symbol:
53
OID: 1.3.6.1.4.1.232.6.2.3.1.0
54
name: cpqHeCorrMemLogStatus
43
- description: Overall status of the correctable memory error log feature
44
- unit: "{instance}"
55
+ chart_meta:
56
+ family: 'Hardware/Memory/ErrorLog/Status'
57
+ description: Overall status of the correctable memory error log feature
58
+ unit: "{status}"
59
+ mapping:
60
+ 1: other
61
+ 2: not_supported
62
+ 3: disabled
63
+ 4: enabled
64
65
# Overall condition of the correctable memory error log feature.
66
# NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -49,19 +68,28 @@ metrics:
68
symbol:
69
OID: 1.3.6.1.4.1.232.6.2.3.2.0
70
name: cpqHeCorrMemLogCondition
52
- description: Overall condition of the correctable memory error log feature
53
- unit: "{instance}"
71
+ chart_meta:
72
+ family: 'Hardware/Memory/ErrorLog/Condition/Status'
73
+ description: Overall condition of the correctable memory error log feature
74
+ unit: "{status}"
75
+ mapping:
76
+ 1: other
77
+ 2: ok
78
+ 3: degraded
79
+ 4: failed
80
81
# Number of correctable memory errors that have occurred.
82
- MIB: CPQHLTH-MIB
83
symbol:
84
OID: 1.3.6.1.4.1.232.6.2.3.3.0
85
name: cpqHeCorrMemTotalErrs
60
- description: Number of correctable memory errors that have occurred
61
- unit: "{error}"
86
+ chart_meta:
87
+ family: 'Hardware/Memory/Error/Correctable/Count'
88
+ description: Number of correctable memory errors that have occurred
89
+ unit: "{error}"
90
metric_type: monotonic_count
91
64
- # ASR (Automatic Server Recovery)
92
+ # ASR (Automatic Server Recovery)
93
94
# Overall status of the ASR feature.
95
# NOTE: other(1), notAvailable(2), disabled(3), enabled(4)
@@ -69,8 +97,15 @@ metrics:
97
symbol:
98
OID: 1.3.6.1.4.1.232.6.2.5.1.0
99
name: cpqHeAsrStatus
72
- description: Overall status of the ASR feature
73
- unit: "{instance}"
100
+ chart_meta:
101
+ family: 'Hardware/ASR/Status'
102
+ description: Overall status of the ASR feature
103
+ unit: "{status}"
104
+ mapping:
105
+ 1: other
106
+ 2: not_available
107
+ 3: disabled
108
+ 4: enabled
109
110
# Whether the ASR timer passed the server Power-On Self-Test (POST).
111
# NOTE: other(1), failed(2), ok(3)
@@ -78,8 +113,14 @@ metrics:
113
symbol:
114
OID: 1.3.6.1.4.1.232.6.2.5.6.0
115
name: cpqHeAsrPost
81
- description: Whether the ASR timer passed the server Power-On Self-Test
82
- unit: "{instance}"
116
+ chart_meta:
117
+ family: 'Hardware/ASR/POST/Status'
118
+ description: Whether the ASR timer passed the server Power-On Self-Test
119
+ unit: "{status}"
120
+ mapping:
121
+ 1: other
122
+ 2: failed
123
+ 3: ok
124
125
# Number of ASR reboots that occurred on the server since last manual reboot.
126
# NOTE: -1 if not supported.
@@ -87,8 +128,10 @@ metrics:
128
symbol:
129
OID: 1.3.6.1.4.1.232.6.2.5.10.0
130
name: cpqHeAsrRebootCount
90
- description: Number of ASR reboots that have occurred on the server since last manual reboot
91
- unit: "{reboot}"
131
+ chart_meta:
132
+ family: 'Hardware/ASR/Reboot/Count'
133
+ description: Number of ASR reboots that have occurred on the server since last manual reboot
134
+ unit: "{reboot}"
135
metric_type: monotonic_count
136
137
# Overall condition of the ASR feature.
@@ -97,8 +140,15 @@ metrics:
140
symbol:
141
OID: 1.3.6.1.4.1.232.6.2.5.17.0
142
name: cpqHeAsrCondition
100
- description: Overall condition of the ASR feature
101
- unit: "{instance}"
143
+ chart_meta:
144
+ family: 'Hardware/ASR/Condition/Status'
145
+ description: Overall condition of the ASR feature
146
+ unit: "{status}"
147
+ mapping:
148
+ 1: other
149
+ 2: not_available
150
+ 3: disabled
151
+ 4: enabled
152
153
# Status of the ASR network access feature.
154
# NOTE: other(1), disabled(2), enabled(3)
@@ -106,10 +156,16 @@ metrics:
156
symbol:
157
OID: 1.3.6.1.4.1.232.6.2.5.21.0
158
name: cpqHeAsrNetworkAccessStatus
109
- description: Status of the ASR network access feature
110
- unit: "{instance}"
159
+ chart_meta:
160
+ family: 'Hardware/ASR/NetworkAccess/Status'
161
+ description: Status of the ASR network access feature
162
+ unit: "{status}"
163
+ mapping:
164
+ 1: other
165
+ 2: disabled
166
+ 3: enabled
167
112
- # Temperature and fans.
168
+ # Temperature and fans.
169
170
# Status of temperature sensors.
171
# NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -117,8 +173,15 @@ metrics:
173
symbol:
174
OID: 1.3.6.1.4.1.232.6.2.6.3.0
175
name: cpqHeThermalTempStatus
120
- description: Status of the system's temperature sensors
121
- unit: "{instance}"
176
+ chart_meta:
177
+ family: 'Hardware/Temperature/Status/Overall'
178
+ description: Status of the system's temperature sensors
179
+ unit: "{status}"
180
+ mapping:
181
+ 1: other
182
+ 2: ok
183
+ 3: degraded
184
+ 4: failed
185
186
# Status of fan(s).
187
# NOTE: other(1), ok(2), degraded(3), failed(4)
@@ -126,8 +189,15 @@ metrics:
189
symbol:
190
OID: 1.3.6.1.4.1.232.6.2.6.4.0
191
name: cpqHeThermalSystemFanStatus
129
- description: Status of the fan(s) in the system
130
- unit: "{instance}"
192
+ chart_meta:
193
+ family: 'Hardware/Fan/System/Status'
194
+ description: Status of the fan(s) in the system
195
+ unit: "{status}"
196
+ mapping:
197
+ 1: other
198
+ 2: ok
199
+ 3: degraded
200
+ 4: failed
201
202
# Status of processor fan(s).
203
# NOTE: other(1), ok(2), failed(4)
@@ -135,8 +205,14 @@ metrics:
205
symbol:
206
OID: 1.3.6.1.4.1.232.6.2.6.5.0
207
name: cpqHeThermalCpuFanStatus
138
- description: Status of the processor fan(s) in the system
139
- unit: "{instance}"
208
+ chart_meta:
209
+ family: 'Hardware/Fan/CPU/Status'
210
+ description: Status of the processor fan(s) in the system
211
+ unit: "{status}"
212
+ mapping:
213
+ 1: other
214
+ 2: ok
215
+ 4: failed
216
217
# Temperator sensors.
218
- MIB: CPQHLTH-MIB
@@ -146,28 +222,39 @@ metrics:
222
symbols:
223
- OID: 1.3.6.1.4.1.232.6.2.6.8.1.4
224
name: cpqHeTemperatureCelsius
149
- description: Current temperature sensor reading in degrees celsius
150
- unit: "Cel"
225
+ chart_meta:
226
+ family: 'Hardware/Sensor/Temperature/Value'
227
+ description: Current temperature sensor reading in degrees celsius
228
+ unit: "Cel"
229
# NOTE: other(1), ok(2), degraded(3), failed(4)
230
- OID: 1.3.6.1.4.1.232.6.2.6.8.1.6
231
name: cpqHeTemperatureCondition
154
- description: Temperature sensor condition
155
- unit: "{instance}"
232
+ chart_meta:
233
+ family: 'Hardware/Sensor/Temperature/Status'
234
+ description: Temperature sensor condition
235
+ unit: "{status}"
236
+ mapping:
237
+ 1: other
238
+ 2: ok
239
+ 3: degraded
240
+ 4: failed
241
metric_tags:
242
- tag: temperature_index
243
symbol:
244
OID: 1.3.6.1.4.1.232.6.2.6.8.1.3
245
name: cpqHeTemperatureIndex
246
162
- # Power supplies.
247
+ # Power supplies.
248
249
# Current power meter reading in Watts.
250
- MIB: CPQHLTH-MIB
251
symbol:
252
OID: 1.3.6.1.4.1.232.6.2.15.3.0
253
name: cpqHePowerMeterCurrReading
169
- description: Current power meter reading in watts
170
- unit: "W"
254
+ chart_meta:
255
+ family: 'Hardware/Power/Usage'
256
+ description: Current power meter reading in watts
257
+ unit: "W"
258
259
# A table of battery entries.
260
- MIB: CPQHLTH-MIB
@@ -175,16 +262,25 @@ metrics:
262
OID: 1.3.6.1.4.1.232.6.2.17.2
263
name: cpqHeSysBatteryTable
264
symbols:
178
- # NOTE: other(1), ok(2), degraded(3), failed(4)
265
+ # NOTE: other(1), ok(2), degraded(3), failed(4)
266
- OID: 1.3.6.1.4.1.232.6.2.17.2.1.4
267
name: cpqHeSysBatteryCondition
181
- description: Overall condition of the battery
182
- unit: "{instance}"
268
+ chart_meta:
269
+ family: 'Hardware/Battery/Condition/Status'
270
+ description: Overall condition of the battery
271
+ unit: "{status}"
272
+ mapping:
273
+ 1: other
274
+ 2: ok
275
+ 3: degraded
276
+ 4: failed
277
# NOTE: 15 different statuses are possible -- not listed here, see MIB.
278
- OID: 1.3.6.1.4.1.232.6.2.17.2.1.5
279
name: cpqHeSysBatteryStatus
186
- description: Status of the battery
187
- unit: "{instance}"
280
+ chart_meta:
281
+ family: 'Hardware/Battery/Status'
282
+ description: Status of the battery
283
+ unit: "{status}"
284
metric_tags:
285
- tag: battery_index
286
symbol:
@@ -197,15 +293,29 @@ metrics:
293
symbol:
294
OID: 1.3.6.1.4.1.232.6.2.6.1.0
295
name: cpqHeThermalCondition
200
- description: Overall condition of the system's thermal environment
201
- unit: "{instance}"
296
+ chart_meta:
297
+ family: 'Hardware/Temperature/Environment/Status'
298
+ description: Overall condition of the system's thermal environment
299
+ unit: "{status}"
300
+ mapping:
301
+ 1: other
302
+ 2: ok
303
+ 3: degraded
304
+ 4: failed
305
# NOTE: other(1), notSupported(2), notInstalled(3), installed(4)
306
- MIB: CPQHLTH-MIB
307
symbol:
308
OID: 1.3.6.1.4.1.232.6.2.9.2.0
309
name: cpqHeFltTolPwrSupplyStatus
207
- description: Status of the fault tolerant power supply
208
- unit: "{instance}"
310
+ chart_meta:
311
+ family: 'Hardware/Power/FaultTolerant/Status'
312
+ description: Status of the fault tolerant power supply
313
+ unit: "{status}"
314
+ mapping:
315
+ 1: other
316
+ 2: not_supported
317
+ 3: not_installed
318
+ 4: installed
319
320
- MIB: CPQHLTH-MIB
321
table:
@@ -214,30 +324,15 @@ metrics:
324
symbols:
325
- OID: 1.3.6.1.4.1.232.6.2.14.13.1.20
326
name: cpqHeResMem2ModuleCondition
217
- description: Current status of the correctable memory errors for this memory module
218
- unit: "{instance}"
327
+ chart_meta:
328
+ family: 'Hardware/Memory/Module/Status'
329
+ description: Current status of the correctable memory errors for this memory module
330
+ unit: "{status}"
331
metric_tags:
220
- - symbol:
332
+ - tag: mem_board_index
333
+ symbol:
334
OID: 1.3.6.1.4.1.232.6.2.14.13.1.15
335
name: cpqHeResMem2ModuleCellTablePtr
223
- tag: mem_board_index
224
-
225
- # DEPRECATED: use the next table instead
226
- - MIB: CPQHLTH-MIB
227
- table:
228
- OID: 1.3.6.1.4.1.232.6.2.9.3
229
- name: cpqHeFltTolPowerSupplyTable
230
- symbols:
231
- - OID: 1.3.6.1.4.1.232.6.2.9.3.1.5
232
- name: cpqHeFltTolPowerSupplyStatus
233
- description: Status of the fault tolerant power supply
234
- unit: "{instance}"
235
- # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
236
- metric_tags:
237
- - symbol:
238
- OID: 1.3.6.1.4.1.232.6.2.9.3.1.1
239
- name: cpqHeFltTolPowerSupplyChassis
240
- tag: chassis_num
336
337
- MIB: CPQHLTH-MIB
338
table:
@@ -246,19 +341,28 @@ metrics:
341
symbols:
342
- name: cpqHeFltTolPowerSupply
343
constant_value_one: true
344
+ chart_meta:
345
+ family: 'Hardware/PowerSupply/Present'
346
+ description: Indicates the presence of a power supply
347
+ unit: "{present}"
348
- OID: 1.3.6.1.4.1.232.6.2.9.3.1.7
349
name: cpqHeFltTolPowerSupplyCapacityUsed
251
- description: Currently used capacity of the power supply in watts
252
- unit: "W"
350
+ chart_meta:
351
+ family: 'Hardware/PowerSupply/Used'
352
+ description: Currently used capacity of the power supply in watts
353
+ unit: "W"
354
- OID: 1.3.6.1.4.1.232.6.2.9.3.1.8
355
name: cpqHeFltTolPowerSupplyCapacityMaximum
255
- description: Maximum capacity of the power supply in watts
256
- unit: "W"
257
- # TODO: Check out metric_tags with symbols having mappings and/or expressing states/statuses. Need to convert to metrics.
258
- metric_tags:
259
- - symbol:
260
- OID: 1.3.6.1.4.1.232.6.2.9.3.1.5
261
- name: cpqHeFltTolPowerSupplyStatus
356
+ chart_meta:
357
+ family: 'Hardware/PowerSupply/Capacity'
358
+ description: Maximum capacity of the power supply in watts
359
+ unit: "W"
360
+ - OID: 1.3.6.1.4.1.232.6.2.9.3.1.5
361
+ name: cpqHeFltTolPowerSupplyStatus
362
+ chart_meta:
363
+ description: Current status of the power supply
364
+ family: 'Hardware/PowerSupply/Status'
365
+ unit: "{status}"
366
mapping:
367
1: no_error
368
2: general_failure
@@ -277,15 +381,10 @@ metrics:
381
15: nvram_invalid
382
16: calibration_table_invalid
383
17: no_power_input
280
- tag: power_supply_status
281
- - symbol:
384
+ metric_tags:
385
+ - tag: power_supply_index
386
+ index: 1
387
+ - tag: chassis_num
388
+ symbol:
389
OID: 1.3.6.1.4.1.232.6.2.9.3.1.1
390
name: cpqHeFltTolPowerSupplyChassis
284
- tag: chassis_num
285
-
286
-# TODO: NDM-1592
287
-# - # NOTE: unknown(1), poweredOff(2), poweredOn(3), insufficientPowerOrPowerOnDenied(4)
288
-# MIB: CPQSM2-MIB
289
-# symbol:
290
-# OID: 1.3.6.1.4.1.232.9.2.2.32
291
-# name: cpqSm2CntlrServerPowerState
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_hp-driver-stats.yaml
+80
-39
@@ -1,87 +1,128 @@
1
metrics:
2
# Physical drives statistical information
3
- MIB: CPQIDA-MIB
4
- metric_type: monotonic_count
4
table:
5
OID: 1.3.6.1.4.1.232.3.2.5.1
6
name: cpqDaPhyDrvTable
7
symbols:
8
+ - OID: 1.3.6.1.4.1.232.3.2.5.1.1.6
9
+ name: cpqDaPhyDrvStatus
10
+ chart_meta:
11
+ family: "System/Disk/Status"
12
+ description: The status of the physical drive
13
+ unit: "{status}"
14
+ mapping:
15
+ 1: other
16
+ 2: ok
17
+ 3: failed
18
+ 4: predictive_failure
19
+ 5: erasing
20
+ 6: erase_done
21
+ 7: erase_queued
22
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.8
23
name: cpqDaPhyDrvUsedReallocs
11
- description: Number of sectors of the reallocation area that have been used by the physical drive
12
- unit: "{sector}"
24
+ chart_meta:
25
+ family: "System/Disk/Reallocation/Used"
26
+ description: Number of sectors of the reallocation area that have been used by the physical drive
27
+ unit: "{sector}"
28
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.9
29
name: cpqDaPhyDrvRefHours
15
- description: Total number of hours that a physical drive has been in operation since it was stamped
16
- unit: "h"
30
+ chart_meta:
31
+ family: "System/Disk/Runtime"
32
+ description: Total number of hours that a physical drive has been in operation since it was stamped
33
+ unit: "h"
34
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.16
35
name: cpqDaPhyDrvHardReadErrs
19
- description: Number of read errors that could not be recovered by a physical drive's ECC algorithm or retries
20
- unit: "{error}"
36
+ chart_meta:
37
+ family: "System/Disk/Error/Read/Hard"
38
+ description: Number of read errors that could not be recovered by a physical drive's ECC algorithm or retries
39
+ unit: "{error}"
40
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.17
41
name: cpqDaPhyDrvRecvReadErrs
23
- description: Number of read errors corrected through physical drive retries
24
- unit: "{error}"
42
+ chart_meta:
43
+ family: "System/Disk/Error/Read/Recovered"
44
+ description: Number of read errors corrected through physical drive retries
45
+ unit: "{error}"
46
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.18
47
name: cpqDaPhyDrvHardWriteErrs
27
- description: Number of write errors that could not be recovered by a physical drive
28
- unit: "{error}"
48
+ chart_meta:
49
+ family: "System/Disk/Error/Write/Hard"
50
+ description: Number of write errors that could not be recovered by a physical drive
51
+ unit: "{error}"
52
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.19
53
name: cpqDaPhyDrvRecvWriteErrs
31
- description: Number of write errors corrected through physical drive retries or recovered by a physical drive
32
- unit: "{error}"
54
+ chart_meta:
55
+ family: "System/Disk/Error/Write/Recovered"
56
+ description: Number of write errors corrected through physical drive retries or recovered by a physical drive
57
+ unit: "{error}"
58
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.20
59
name: cpqDaPhyDrvHSeekErrs
35
- description: Total number of times the physical disk drive detected a seek error (high)
36
- unit: "{error}"
60
+ chart_meta:
61
+ family: "System/Disk/Error/Seek/High"
62
+ description: Total number of times the physical disk drive detected a seek error (high)
63
+ unit: "{error}"
64
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.21
65
name: cpqDaPhyDrvSeekErrs
39
- description: Total number of times the physical disk drive detected a seek error (low)
40
- unit: "{error}"
66
+ chart_meta:
67
+ family: "System/Disk/Error/Seek/Low"
68
+ description: Total number of times the physical disk drive detected a seek error (low)
69
+ unit: "{error}"
70
metric_tags:
42
- - symbol:
71
+ - tag: drive_cntrl_idx
72
+ symbol:
73
OID: 1.3.6.1.4.1.232.3.2.5.1.1.1
74
name: cpqDaPhyDrvCntlrIndex
45
- tag: drive_cntrl_idx
46
- - symbol:
75
+ - tag: drive_index
76
+ symbol:
77
OID: 1.3.6.1.4.1.232.3.2.5.1.1.2
78
name: cpqDaPhyDrvIndex
49
- tag: drive_index
79
+
80
- MIB: CPQIDA-MIB
81
table:
82
OID: 1.3.6.1.4.1.232.3.2.5.1
83
name: cpqDaPhyDrvTable
84
symbols:
55
- - OID: 1.3.6.1.4.1.232.3.2.5.1.1.6
56
- name: cpqDaPhyDrvStatus
57
- description: Status of the physical drive
58
- unit: "TBD"
85
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.7
86
name: cpqDaPhyDrvFactReallocs
61
- description: Number of spare sectors available for remapping at the time the physical drive was shipped
62
- unit: "{sector}"
87
+ chart_meta:
88
+ family: "System/Disk/Reallocation/Factory"
89
+ description: Number of spare sectors available for remapping at the time the physical drive was shipped
90
+ unit: "{sector}"
91
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.22
92
name: cpqDaPhyDrvSpinupTime
65
- description: Time it takes for a physical drive to spin up to full speed in tenths of seconds
66
- unit: "ds"
93
+ chart_meta:
94
+ family: "System/Disk/Spinup/Time"
95
+ description: Time it takes for a physical drive to spin up to full speed in tenths of seconds
96
+ unit: "ds"
97
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.45
98
name: cpqDaPhyDrvSize
69
- description: Size of the physical drive in megabytes
70
- unit: "MBy"
99
+ scale_factor: 1048576 # MB => bytes
100
+ chart_meta:
101
+ family: "System/Disk/Capacity"
102
+ description: Size of the physical drive in megabytes
103
+ unit: "By"
104
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.57
105
name: cpqDaPhyDrvSmartStatus
73
- description: S.M.A.R.T status of the physical drive
74
- unit: "TBD"
106
+ chart_meta:
107
+ family: "System/Disk/SMART/Status"
108
+ description: S.M.A.R.T status of the physical drive
109
+ unit: "{status}"
110
+ mapping:
111
+ 1: other
112
+ 2: ok
113
+ 3: replace_drive
114
- OID: 1.3.6.1.4.1.232.3.2.5.1.1.70
115
name: cpqDaPhyDrvCurrentTemperature
77
- description: Temperature of the physical drive in degrees Celsius
78
- unit: "Cel"
116
+ chart_meta:
117
+ family: "Hardware/Disk/Temperature/Value"
118
+ description: Temperature of the physical drive in degrees Celsius
119
+ unit: "Cel"
120
metric_tags:
80
- - symbol:
121
+ - tag: drive_cntrl_idx
122
+ symbol:
123
OID: 1.3.6.1.4.1.232.3.2.5.1.1.1
124
name: cpqDaPhyDrvCntlrIndex
83
- tag: drive_cntrl_idx
84
- - symbol:
125
+ - tag: drive_index
126
+ symbol:
127
OID: 1.3.6.1.4.1.232.3.2.5.1.1.2
128
name: cpqDaPhyDrvIndex
87
- tag: drive_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_intel-lan-adapters.yaml
+42
-22
@@ -9,47 +9,67 @@ metrics:
9
symbols:
10
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.1
11
name: adapterRxPackets
12
- description: Total number of packets received
13
- unit: "{packet}"
12
+ chart_meta:
13
+ family: "Network/Interface/Packet/Total/In"
14
+ description: Total number of packets received
15
+ unit: "{packet}/s"
16
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.2
17
name: adapterTxPackets
16
- description: Total number of packets transmitted
17
- unit: "{packet}"
18
+ chart_meta:
19
+ family: "Network/Interface/Packet/Total/Out"
20
+ description: Total number of packets transmitted
21
+ unit: "{packet}/s"
22
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.3
23
name: adapterRxBytes
20
- description: Total number of bytes received
21
- unit: "By"
24
+ chart_meta:
25
+ family: "Network/Interface/Traffic/Total/In"
26
+ description: Total number of bytes received
27
+ unit: "By/s"
28
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.4
29
name: adapterTxBytes
24
- description: Total number of bytes transmitted
25
- unit: "By"
30
+ chart_meta:
31
+ family: "Network/Interface/Traffic/Total/Out"
32
+ description: Total number of bytes transmitted
33
+ unit: "By/s"
34
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.5
35
name: adapterRxErrors
28
- description: Total number of packets received with errors (packets that failed to reach the protocol)
29
- unit: "{packet}"
36
+ chart_meta:
37
+ family: "Network/Interface/Error/Total/In"
38
+ description: Total number of packets received with errors (packets that failed to reach the protocol)
39
+ unit: "{error}/s"
40
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.6
41
name: adapterTxErrors
32
- description: Total number of packets that failed to transmit
33
- unit: "{packet}"
42
+ chart_meta:
43
+ family: "Network/Interface/Error/Total/Out"
44
+ description: Total number of packets that failed to transmit
45
+ unit: "{error}/s"
46
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.7
47
name: adapterRxDropped
36
- description: Total number of receive packets dropped due to overrun
37
- unit: "{packet}"
48
+ chart_meta:
49
+ family: "Network/Interface/Dropped/In"
50
+ description: Total number of receive packets dropped due to overrun
51
+ unit: "{drop}/s"
52
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.8
53
name: adapterTxDropped
40
- description: Total number of transmit packets dropped due to successive collisions
41
- unit: "{packet}"
54
+ chart_meta:
55
+ family: "Network/Interface/Dropped/Out"
56
+ description: Total number of transmit packets dropped due to successive collisions
57
+ unit: "{drop}/s"
58
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.9
59
name: adapterRxMulticast
44
- description: Total number of Multicast packets received
45
- unit: "{packet}"
60
+ chart_meta:
61
+ family: "Network/Interface/Multicast/In"
62
+ description: Total number of Multicast packets received
63
+ unit: "{packet}/s"
64
- OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.10
65
name: adapterCollisions
48
- description: Total number of single collisions
49
- unit: "{collision}"
66
+ chart_meta:
67
+ family: "Network/Interface/Error/Collision/Count"
68
+ description: Total number of single collisions
69
+ unit: "{collision}/s"
70
metric_tags:
51
- - symbol:
71
+ - tag: adapter
72
+ symbol:
73
OID: 1.3.6.1.4.1.343.2.7.2.2.1.1.1.2
74
name: adapterName
75
table: genericAdaptersAttrTable
55
- tag: adapter
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-cos.yaml
+50
-50
@@ -12,26 +12,26 @@ metrics:
12
name: jnxCosIfsetQstatQedPkts
13
chart_meta:
14
description: The total number of packets queued at the output queue
15
- family: Interfaces/COS/Queue/Packet/Queued
15
+ family: 'Network/Interface/COS/Queue/Packet/Queued'
16
unit: "{packet}"
17
- OID: 1.3.6.1.4.1.2636.3.15.10.1.4
18
name: jnxCosIfsetQstatQedPktRate
19
chart_meta:
20
description: The rate at which packets were queued at the output queue
21
- family: Interfaces/COS/Queue/Packet/Queued
21
+ family: 'Network/Interface/COS/Queue/Packet/Queued'
22
unit: "{packet}/s"
23
# Transmitted
24
- OID: 1.3.6.1.4.1.2636.3.15.10.1.7
25
name: jnxCosIfsetQstatTxedPkts
26
chart_meta:
27
description: Number of packets transmitted on the queue
28
- family: Interfaces/COS/Queue/Packet/Transmitted
28
+ family: 'Network/Interface/COS/Queue/Packet/Transmitted'
29
unit: "{packet}"
30
- OID: 1.3.6.1.4.1.2636.3.15.10.1.8
31
name: jnxCosIfsetQstatTxedPktRate
32
chart_meta:
33
description: The output queue's packet transmit rate
34
- family: Interfaces/COS/Queue/Packet/Transmitted
34
+ family: 'Network/Interface/COS/Queue/Packet/Transmitted'
35
unit: "{packet}/s"
36
37
# Tail Drop
@@ -39,13 +39,13 @@ metrics:
39
name: jnxCosIfsetQstatTailDropPkts
40
chart_meta:
41
description: The number of packets tail dropped at the output queue
42
- family: Interfaces/COS/TailDrop/Packet/Dropped
42
+ family: 'Network/Interface/COS/TailDrop/Packet/Dropped'
43
unit: "{packet}"
44
- OID: 1.3.6.1.4.1.2636.3.15.10.1.12
45
name: jnxCosIfsetQstatTailDropPktRate
46
chart_meta:
47
description: The tail drop packet rate for the queue
48
- family: Interfaces/COS/TailDrop/Packet/Dropped
48
+ family: 'Network/Interface/COS/TailDrop/Packet/Dropped'
49
unit: "{packet}/s"
50
51
# Rate Limit
@@ -53,13 +53,13 @@ metrics:
53
name: jnxCosIfsetQstatRateLimitDropPkts
54
chart_meta:
55
description: The total number of rate-limit dropped packets at the output on the given interface
56
- family: Interfaces/COS/RateLimit/Packet/Dropped
56
+ family: 'Network/Interface/COS/RateLimit/Packet/Dropped'
57
unit: "{packet}"
58
- OID: 1.3.6.1.4.1.2636.3.15.10.1.50
59
name: jnxCosIfsetQstatRateLimitDropPktRate
60
chart_meta:
61
description: The rate at which packets are rate-limit dropped at the output on the given interface
62
- family: Interfaces/COS/RateLimit/Packet/Dropped
62
+ family: 'Network/Interface/COS/RateLimit/Packet/Dropped'
63
unit: "{packet}/s"
64
65
# RED Drops
@@ -68,13 +68,13 @@ metrics:
68
name: jnxCosIfsetQstatTotalRedDropPkts
69
chart_meta:
70
description: Total number of packets dropped due to RED at the output on the given interface
71
- family: Interfaces/COS/RED/Packet/Dropped/Total
71
+ family: 'Network/Interface/COS/RED/Packet/Dropped/Total'
72
unit: "{packet}"
73
- OID: 1.3.6.1.4.1.2636.3.15.10.1.14
74
name: jnxCosIfsetQstatTotalRedDropPktRate
75
chart_meta:
76
description: The most recent estimate of per-second RED-dropped packets at the output queue on the given interface
77
- family: Interfaces/COS/RED/Packet/Dropped/Total
77
+ family: 'Network/Interface/COS/RED/Packet/Dropped/Total'
78
unit: "{packet}/s"
79
80
# Low PLP
@@ -82,37 +82,37 @@ metrics:
82
name: jnxCosIfsetQstatLpRedDropPkts
83
chart_meta:
84
description: The total number of low PLP packets RED-dropped at the output on the given interface
85
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
85
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/Total'
86
unit: "{packet}"
87
- OID: 1.3.6.1.4.1.2636.3.15.10.1.34
88
name: jnxCosIfsetQstatLpRedDropPktRate
89
chart_meta:
90
description: The rate at which low PLP packets were RED-dropped at the output
91
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/Total
91
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/Total'
92
unit: "{packet}/s"
93
- OID: 1.3.6.1.4.1.2636.3.15.10.1.15
94
name: jnxCosIfsetQstatLpNonTcpRedDropPkts
95
chart_meta:
96
description: The total number of low PLP non TCP packets RED-dropped
97
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
97
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/NonTCP'
98
unit: "{packet}"
99
- OID: 1.3.6.1.4.1.2636.3.15.10.1.16
100
name: jnxCosIfsetQstatLpNonTcpRDropPktRate
101
chart_meta:
102
description: The rate at which low PLP non TCP packets were RED-dropped
103
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/NonTCP
103
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/NonTCP'
104
unit: "{packet}/s"
105
- OID: 1.3.6.1.4.1.2636.3.15.10.1.17
106
name: jnxCosIfsetQstatLpTcpRedDropPkts
107
chart_meta:
108
description: The total number of low PLP TCP packets RED-dropped at the output on the given interface
109
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
109
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/TCP'
110
unit: "{packet}"
111
- OID: 1.3.6.1.4.1.2636.3.15.10.1.18
112
name: jnxCosIfsetQstatLpTcpRedDropPktRate
113
chart_meta:
114
description: The rate at which low PLP TCP packets were RED-dropped at the output on the given interface
115
- family: Interfaces/COS/RED/Packet/Dropped/LowPLP/TCP
115
+ family: 'Network/Interface/COS/RED/Packet/Dropped/LowPLP/TCP'
116
unit: "{packet}/s"
117
118
# Medium-Low PLP
@@ -120,13 +120,13 @@ metrics:
120
name: jnxCosIfsetQstatMLpRedDropPkts
121
chart_meta:
122
description: The total number of medium-low PLP packets RED-dropped at the output on the given interface
123
- family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
123
+ family: 'Network/Interface/COS/RED/Packet/Dropped/MediumLowPLP/Total'
124
unit: "{packet}"
125
- OID: 1.3.6.1.4.1.2636.3.15.10.1.36
126
name: jnxCosIfsetQstatMLpRedDropPktRate
127
chart_meta:
128
description: The rate at which medium-low PLP packets were RED-dropped at the output
129
- family: Interfaces/COS/RED/Packet/Dropped/MediumLowPLP/Total
129
+ family: 'Network/Interface/COS/RED/Packet/Dropped/MediumLowPLP/Total'
130
unit: "{packet}/s"
131
132
# Medium-High PLP
@@ -134,13 +134,13 @@ metrics:
134
name: jnxCosIfsetQstatMHpRedDropPkts
135
chart_meta:
136
description: The total number of medium-high PLP packets RED-dropped at the output on the given interface
137
- family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
137
+ family: 'Network/Interface/COS/RED/Packet/Dropped/MediumHighPLP/Total'
138
unit: "{packet}"
139
- OID: 1.3.6.1.4.1.2636.3.15.10.1.38
140
name: jnxCosIfsetQstatMHpRedDropPktRate
141
chart_meta:
142
description: The rate at which medium-high PLP packets were RED-dropped at the output
143
- family: Interfaces/COS/RED/Packet/Dropped/MediumHighPLP/Total
143
+ family: 'Network/Interface/COS/RED/Packet/Dropped/MediumHighPLP/Total'
144
unit: "{packet}/s"
145
146
# High PLP
@@ -148,37 +148,37 @@ metrics:
148
name: jnxCosIfsetQstatHpRedDropPkts
149
chart_meta:
150
description: The total number of high PLP packets RED-dropped at the output on the given interface
151
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
151
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/Total'
152
unit: "{packet}"
153
- OID: 1.3.6.1.4.1.2636.3.15.10.1.40
154
name: jnxCosIfsetQstatHpRedDropPktRate
155
chart_meta:
156
description: The rate at which high PLP packets were RED-dropped at the output
157
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/Total
157
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/Total'
158
unit: "{packet}/s"
159
- OID: 1.3.6.1.4.1.2636.3.15.10.1.19
160
name: jnxCosIfsetQstatHpNonTcpRedDropPkts
161
chart_meta:
162
description: The total number of high PLP non TCP packets RED-dropped at the output on the given interface
163
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
163
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/NonTCP'
164
unit: "{packet}"
165
- OID: 1.3.6.1.4.1.2636.3.15.10.1.20
166
name: jnxCosIfsetQstatHpNonTcpRDropPktRate
167
chart_meta:
168
description: The rate at which high PLP non TCP packets were RED-dropped at the output on the given interface
169
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/NonTCP
169
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/NonTCP'
170
unit: "{packet}/s"
171
- OID: 1.3.6.1.4.1.2636.3.15.10.1.21
172
name: jnxCosIfsetQstatHpTcpRedDropPkts
173
chart_meta:
174
description: The total number of high PLP TCP packets RED-dropped at the output on the given interface
175
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
175
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/TCP'
176
unit: "{packet}"
177
- OID: 1.3.6.1.4.1.2636.3.15.10.1.22
178
name: jnxCosIfsetQstatHpTcpRedDropPktRate
179
chart_meta:
180
description: The rate at which high PLP TCP packets were RED-dropped at the output
181
- family: Interfaces/COS/RED/Packet/Dropped/HighPLP/TCP
181
+ family: 'Network/Interface/COS/RED/Packet/Dropped/HighPLP/TCP'
182
unit: "{packet}/s"
183
184
# Queue Traffic
@@ -187,26 +187,26 @@ metrics:
187
name: jnxCosIfsetQstatQedBytes
188
chart_meta:
189
description: Number of bytes queued at the output queue
190
- family: Interfaces/COS/Queue/Traffic/Queued
190
+ family: 'Network/Interface/COS/Queue/Traffic/Queued'
191
unit: "By"
192
- OID: 1.3.6.1.4.1.2636.3.15.10.1.6
193
name: jnxCosIfsetQstatQedByteRate
194
chart_meta:
195
description: The rate at which bytes were queued at the output queue
196
- family: Interfaces/COS/Queue/Traffic/Queued
196
+ family: 'Network/Interface/COS/Queue/Traffic/Queued'
197
unit: "By/s"
198
# Transmitted
199
- OID: 1.3.6.1.4.1.2636.3.15.10.1.9
200
name: jnxCosIfsetQstatTxedBytes
201
chart_meta:
202
description: Number of bytes transmitted on the queue
203
- family: Interfaces/COS/Queue/Traffic/Transmitted
203
+ family: 'Network/Interface/COS/Queue/Traffic/Transmitted'
204
unit: "By"
205
- OID: 1.3.6.1.4.1.2636.3.15.10.1.10
206
name: jnxCosIfsetQstatTxedByteRate
207
chart_meta:
208
description: The queue's current transmit rate in bytes per second
209
- family: Interfaces/COS/Queue/Traffic/Transmitted
209
+ family: 'Network/Interface/COS/Queue/Traffic/Transmitted'
210
unit: "By/s"
211
212
# Rate Limit Traffic
@@ -214,13 +214,13 @@ metrics:
214
name: jnxCosIfsetQstatRateLimitDropBytes
215
chart_meta:
216
description: The total number of rate-limit dropped bytes at the output on the given interface
217
- family: Interfaces/COS/RateLimit/Traffic/Dropped
217
+ family: 'Network/Interface/COS/RateLimit/Traffic/Dropped'
218
unit: "By"
219
- OID: 1.3.6.1.4.1.2636.3.15.10.1.52
220
name: jnxCosIfsetQstatRateLimitDropByteRate
221
chart_meta:
222
description: The rate at which bytes are rate-limit dropped at the output on the given interface
223
- family: Interfaces/COS/RateLimit/Traffic/Dropped
223
+ family: 'Network/Interface/COS/RateLimit/Traffic/Dropped'
224
unit: "By/s"
225
226
# RED Dropped Traffic
@@ -229,13 +229,13 @@ metrics:
229
name: jnxCosIfsetQstatTotalRedDropBytes
230
chart_meta:
231
description: The total number of bytes RED-dropped at the output on the given interface
232
- family: Interfaces/COS/RED/Traffic/Dropped/Total
232
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/Total'
233
unit: "By"
234
- OID: 1.3.6.1.4.1.2636.3.15.10.1.24
235
name: jnxCosIfsetQstatTotalRedDropByteRate
236
chart_meta:
237
description: The rate at which bytes were RED-dropped at the output on the given interface
238
- family: Interfaces/COS/RED/Traffic/Dropped/Total
238
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/Total'
239
unit: "By/s"
240
241
# Low PLP Traffic
@@ -243,37 +243,37 @@ metrics:
243
name: jnxCosIfsetQstatLpRedDropBytes
244
chart_meta:
245
description: The total number of low PLP bytes RED-dropped at the output queue on the given interface
246
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
246
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/Total'
247
unit: "By"
248
- OID: 1.3.6.1.4.1.2636.3.15.10.1.42
249
name: jnxCosIfsetQstatLpRedDropByteRate
250
chart_meta:
251
description: The rate at which low PLP bytes were RED-dropped at the output on the given interface
252
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/Total
252
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/Total'
253
unit: "By/s"
254
- OID: 1.3.6.1.4.1.2636.3.15.10.1.25
255
name: jnxCosIfsetQstatLpNonTcpRedDropBytes
256
chart_meta:
257
description: The total number of low PLP non TCP bytes RED-dropped at the output on the given interface
258
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
258
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/NonTCP'
259
unit: "By"
260
- OID: 1.3.6.1.4.1.2636.3.15.10.1.26
261
name: jnxCosIfsetQstatLpNonTcpRDropByteRate
262
chart_meta:
263
description: The rate at which low PLP non TCP bytes were RED-dropped at the output on the given interface
264
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/NonTCP
264
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/NonTCP'
265
unit: "By/s"
266
- OID: 1.3.6.1.4.1.2636.3.15.10.1.27
267
name: jnxCosIfsetQstatLpTcpRedDropBytes
268
chart_meta:
269
description: The total number of low PLP TCP bytes RED-dropped at the output on the given interface
270
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
270
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/TCP'
271
unit: "By"
272
- OID: 1.3.6.1.4.1.2636.3.15.10.1.28
273
name: jnxCosIfsetQstatLpTcpRedDropByteRate
274
chart_meta:
275
description: The rate at which low PLP TCP bytes were RED-dropped at the output on the given interface
276
- family: Interfaces/COS/RED/Traffic/Dropped/LowPLP/TCP
276
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/LowPLP/TCP'
277
unit: "By/s"
278
279
# Medium-Low PLP Traffic
@@ -281,13 +281,13 @@ metrics:
281
name: jnxCosIfsetQstatMLpRedDropBytes
282
chart_meta:
283
description: The total number of medium-low PLP bytes RED-dropped at the output queue on the given interface
284
- family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
284
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/MediumLowPLP/Total'
285
unit: "By"
286
- OID: 1.3.6.1.4.1.2636.3.15.10.1.44
287
name: jnxCosIfsetQstatMLpRedDropByteRate
288
chart_meta:
289
description: The rate at which medium-low PLP bytes were RED-dropped at the output on the given interface
290
- family: Interfaces/COS/RED/Traffic/Dropped/MediumLowPLP/Total
290
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/MediumLowPLP/Total'
291
unit: "By/s"
292
293
# Medium-High PLP Traffic
@@ -295,13 +295,13 @@ metrics:
295
name: jnxCosIfsetQstatMHpRedDropBytes
296
chart_meta:
297
description: The total number of medium-high PLP bytes RED-dropped at the output queue on the given interface
298
- family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
298
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/MediumHighPLP/Total'
299
unit: "By"
300
- OID: 1.3.6.1.4.1.2636.3.15.10.1.46
301
name: jnxCosIfsetQstatMHpRedDropByteRate
302
chart_meta:
303
description: The rate at which medium-high PLP bytes were RED-dropped at the output on the given interface
304
- family: Interfaces/COS/RED/Traffic/Dropped/MediumHighPLP/Total
304
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/MediumHighPLP/Total'
305
unit: "By/s"
306
307
# High PLP Traffic
@@ -309,37 +309,37 @@ metrics:
309
name: jnxCosIfsetQstatHpRedDropBytes
310
chart_meta:
311
description: The total number of high PLP bytes RED-dropped at the output queue on the given interface
312
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
312
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/Total'
313
unit: "By"
314
- OID: 1.3.6.1.4.1.2636.3.15.10.1.48
315
name: jnxCosIfsetQstatHpRedDropByteRate
316
chart_meta:
317
description: The rate at which high PLP bytes were RED-dropped at the output on the given interface
318
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/Total
318
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/Total'
319
unit: "By/s"
320
- OID: 1.3.6.1.4.1.2636.3.15.10.1.29
321
name: jnxCosIfsetQstatHpNonTcpRedDropBytes
322
chart_meta:
323
description: The total number of high PLP non TCP bytes RED-dropped at the output on the given interface
324
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
324
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/NonTCP'
325
unit: "By"
326
- OID: 1.3.6.1.4.1.2636.3.15.10.1.30
327
name: jnxCosIfsetQstatHpNonTcpRDropByteRate
328
chart_meta:
329
description: The rate at which high PLP non TCP bytes were RED-dropped at the output queue on the given interface
330
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/NonTCP
330
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/NonTCP'
331
unit: "By/s"
332
- OID: 1.3.6.1.4.1.2636.3.15.10.1.31
333
name: jnxCosIfsetQstatHpTcpRedDropBytes
334
chart_meta:
335
description: The total number of high PLP TCP bytes RED-dropped at the output queue on the given interface
336
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
336
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/TCP'
337
unit: "By"
338
- OID: 1.3.6.1.4.1.2636.3.15.10.1.32
339
name: jnxCosIfsetQstatHpTcpRedDropByteRate
340
chart_meta:
341
description: The rate at which high PLP TCP bytes were RED-dropped at the output on the given interface
342
- family: Interfaces/COS/RED/Traffic/Dropped/HighPLP/TCP
342
+ family: 'Network/Interface/COS/RED/Traffic/Dropped/HighPLP/TCP'
343
unit: "By/s"
344
metric_tags:
345
- tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-dcu.yaml
+2
-2
@@ -10,13 +10,13 @@ metrics:
10
name: jnxDcuStatsPackets
11
chart_meta:
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
13
+ family: 'Network/Interface/DCU/Packet/In'
14
unit: "{packet}/s"
15
- OID: 1.3.6.1.4.1.2636.3.6.2.1.5
16
name: jnxDcuStatsBytes
17
chart_meta:
18
description: The number of bytes received on this interface, belonging to this address family that match this Destination Class
19
- family: Interfaces/DCU/Traffic/In
19
+ family: 'Network/Interface/DCU/Traffic/In'
20
unit: "By/s"
21
metric_tags:
22
- tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-firewall.yaml
+2
-2
@@ -9,14 +9,14 @@ metrics:
9
- OID: 1.3.6.1.4.1.2636.3.5.2.1.4
10
name: jnxFWCounterPacketCount
11
chart_meta:
12
+ family: 'Network/Firewall/Filter/Packet/Total'
13
description: The number of packets being counted pertaining to the specified counter or policer
13
- family: "Firewall/Counter/Packet/Total"
14
unit: "{packet}/s"
15
- OID: 1.3.6.1.4.1.2636.3.5.2.1.5
16
name: jnxFWCounterByteCount
17
chart_meta:
18
+ family: 'Network/Firewall/Filter/Throughput/Total'
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
19
- family: "Firewall/Counter/Throughput/Total"
20
unit: "By/s"
21
metric_tags:
22
- tag: firewall_filter_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-scu.yaml
+2
-2
@@ -10,13 +10,13 @@ metrics:
10
name: jnxScuStatsPackets
11
chart_meta:
12
description: Number of packets sent out of destination interface that match the source class and address family
13
- family: Interfaces/SCU/Packet/Out
13
+ family: 'Network/Interface/SCU/Packet/Out'
14
unit: "{packet}/s"
15
- OID: 1.3.6.1.4.1.2636.3.16.1.1.1.5
16
name: jnxScuStatsBytes
17
chart_meta:
18
description: Number of bytes sent out of destination interface that match the source class and address family
19
- family: Interfaces/SCU/Traffic/Out
19
+ family: 'Network/Interface/SCU/Traffic/Out'
20
unit: "By/s"
21
metric_tags:
22
- tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-userfirewall.yaml
+4
-4
@@ -7,14 +7,14 @@ metrics:
7
- OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.3
8
name: jnxUserFwLDAPTotalQuery
9
chart_meta:
10
- description: Total LDAP query number
11
- family: "LDAP/Query/Total"
10
+ family: 'Network/Firewall/LDAP/Query/Total'
11
+ description: Total LDAP queries
12
unit: "{query}/s"
13
- OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.4
14
name: jnxUserFwLDAPFailedQuery
15
chart_meta:
16
- description: LDAP failed query number
17
- family: "LDAP/Query/Failed"
16
+ family: 'Network/Firewall/LDAP/Query/Failed'
17
+ description: LDAP failed queries
18
unit: "{query}/s"
19
metric_tags:
20
- tag: ldap_domain_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_juniper-virtualchassis.yaml
+14
-14
@@ -13,86 +13,86 @@ metrics:
13
- OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5
14
name: jnxVirtualChassisPortInPkts
15
chart_meta:
16
+ family: 'Network/VirtualChassis/Port/Packet/Total/In'
17
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
21
chart_meta:
22
+ family: 'Network/VirtualChassis/Port/Packet/Total/In'
23
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
27
chart_meta:
28
+ family: 'Network/VirtualChassis/Port/Packet/Total/Out'
29
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
33
chart_meta:
34
+ family: 'Network/VirtualChassis/Port/Packet/Total/Out'
35
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
39
chart_meta:
40
+ family: 'Network/VirtualChassis/Port/Traffic/Total/In'
41
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
45
chart_meta:
46
+ family: 'Network/VirtualChassis/Port/Traffic/Total/In'
47
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
51
chart_meta:
52
+ family: 'Network/VirtualChassis/Port/Traffic/Total/Out'
53
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
57
chart_meta:
58
+ family: 'Network/VirtualChassis/Port/Traffic/Total/Out'
59
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
63
chart_meta:
64
+ family: 'Network/VirtualChassis/Port/Packet/Multicast/In'
65
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
69
chart_meta:
70
+ family: 'Network/VirtualChassis/Port/Packet/Multicast/Out'
71
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
75
chart_meta:
76
+ family: 'Network/VirtualChassis/Port/Error/CarrierTransition'
77
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
81
chart_meta:
82
+ family: 'Network/VirtualChassis/Port/Error/CRCAlign/In'
83
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
87
chart_meta:
88
+ family: 'Network/VirtualChassis/Port/Packet/Undersize'
89
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
93
chart_meta:
94
+ family: 'Network/VirtualChassis/Port/Error/Collision'
95
description: Total number of Collisions on the virtual-chassis port
95
- family: VirtualChassis/Port/Error/Collision/Count
96
unit: "{collision}"
97
metric_tags:
98
- tag: port_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-bgp4-mib.yaml
+8
-8
@@ -10,7 +10,7 @@ metrics:
10
name: bgpPeerAdminStatus
11
chart_meta:
12
description: The desired state of the BGP connection
13
- family: Routing/BGP/Peer/Admin/Status
13
+ family: 'Network/Routing/BGP/Peer/Admin/Status'
14
unit: "{status}"
15
mapping:
16
1: stop
@@ -19,7 +19,7 @@ metrics:
19
name: bgpPeerState
20
chart_meta:
21
description: The BGP peer connection state
22
- family: Routing/BGP/Peer/Connection/Status
22
+ family: 'Network/Routing/BGP/Peer/Connection/Status'
23
unit: "{status}"
24
mapping:
25
1: idle
@@ -32,37 +32,37 @@ metrics:
32
name: bgpPeerInTotalMessages
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
35
+ family: 'Network/Routing/BGP/Peer/Message/Total/In'
36
unit: "{message}"
37
- OID: 1.3.6.1.2.1.15.3.1.13
38
name: bgpPeerOutTotalMessages
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
41
+ family: 'Network/Routing/BGP/Peer/Message/Total/Out'
42
unit: "{message}"
43
- OID: 1.3.6.1.2.1.15.3.1.10
44
name: bgpPeerInUpdates
45
chart_meta:
46
description: The number of BGP UPDATE messages received on this connection
47
- family: Routing/BGP/Peer/Message/Update/In
47
+ family: 'Network/Routing/BGP/Peer/Message/Update/In'
48
unit: "{message}"
49
- OID: 1.3.6.1.2.1.15.3.1.11
50
name: bgpPeerOutUpdates
51
chart_meta:
52
description: The number of BGP UPDATE messages transmitted on this connection
53
- family: Routing/BGP/Peer/Message/Update/Out
53
+ family: 'Network/Routing/BGP/Peer/Message/Update/Out'
54
unit: "{message}"
55
- OID: 1.3.6.1.2.1.15.3.1.15
56
name: bgpPeerFsmEstablishedTransitions
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
59
+ family: 'Network/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
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
65
+ family: 'Network/Routing/BGP/Peer/FSM/Duration/Established'
66
unit: "s"
67
metric_tags:
68
- tag: remote_as
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-entity-sensor-mib.yaml
+2
-2
@@ -8,7 +8,7 @@ metrics:
8
name: entPhySensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
9
chart_meta:
10
description: Most recent measurement obtained by the agent for this sensor
11
- family: Sensor/Value
11
+ family: 'Hardware/Sensor/Value'
12
unit: "1"
13
transform: |
14
{{- transformEntitySensorValue .Metric -}}
@@ -16,7 +16,7 @@ metrics:
16
name: entPhySensorOperStatus # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
17
chart_meta:
18
description: Operational status of the sensor
19
- family: Sensor/Status
19
+ family: 'Hardware/Sensor/Status'
20
unit: "{status}"
21
mapping:
22
1: ok
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-host-resources-mib-feat-base.yaml
+7
-15
@@ -11,7 +11,7 @@ metrics:
11
name: hrSystemNumUsers
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
14
+ family: 'System/Activity/UserSession/Active'
15
unit: "{session}"
16
- MIB: HOST-RESOURCES-MIB
17
symbol:
@@ -19,15 +19,7 @@ metrics:
19
name: hrSystemProcesses
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
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
22
+ family: 'System/Activity/Process/Active'
23
unit: "{process}"
24
25
# Table Objects
@@ -42,7 +34,7 @@ metrics:
34
name: cpu.usage
35
chart_meta:
36
description: The average, over the last minute, of the percentage of time that this processor was not idle.
45
- family: CPU/Usage
37
+ family: 'System/CPU/Usage'
38
unit: "%"
39
metric_tags:
40
- tag: cpu_index
@@ -66,20 +58,20 @@ metrics:
58
name: hrStorageSize
59
chart_meta:
60
description: Total size of the storage area
69
- family: Storage/Total
61
+ family: 'System/Storage/Total'
62
unit: "By"
63
transform: |
72
- {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
64
+ {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1024" -}}
65
{{- $factor := int64 $unit -}}
66
{{- setValue .Metric (mul .Metric.Value $factor) -}}
67
- OID: 1.3.6.1.2.1.25.2.3.1.6
68
name: hrStorageUsed
69
chart_meta:
70
description: Amount of storage used
79
- family: Storage/Used
71
+ family: 'System/Storage/Used'
72
unit: "By"
73
transform: |
82
- {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
74
+ {{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1024" -}}
75
{{- $factor := int64 $unit -}}
76
{{- setValue .Metric (mul .Metric.Value $factor) -}}
77
metric_tags:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-if-mib.yaml
+16
-16
@@ -8,7 +8,7 @@ metrics:
8
name: ifNumber
9
chart_meta:
10
description: Number of network interfaces regardless of their current state present on this system
11
- family: Interfaces/Count/Total
11
+ family: 'Network/Interface/Count/Total'
12
unit: "{interface}"
13
- MIB: IF-MIB
14
table:
@@ -19,31 +19,31 @@ metrics:
19
name: ifInErrors
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
22
+ family: 'Network/Interface/Error/Total/In'
23
unit: "{error}/s"
24
- OID: 1.3.6.1.2.1.2.2.1.20
25
name: ifOutErrors
26
chart_meta:
27
description: Number of outbound packets that could not be transmitted because of errors
28
- family: Interfaces/Error/Total/Out
28
+ family: 'Network/Interface/Error/Total/Out'
29
unit: "{error}/s"
30
- OID: 1.3.6.1.2.1.2.2.1.13
31
name: ifInDiscards
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
34
+ family: 'Network/Interface/Discard/In'
35
unit: "{discard}/s"
36
- OID: 1.3.6.1.2.1.2.2.1.19
37
name: ifOutDiscards
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
40
+ family: 'Network/Interface/Discard/Out'
41
unit: "{discard}/s"
42
- OID: 1.3.6.1.2.1.2.2.1.7
43
name: ifAdminStatus
44
chart_meta:
45
description: Current administrative state of the interface
46
- family: Interfaces/Status/Admin
46
+ family: 'Network/Interface/Status/Admin'
47
unit: "{status}"
48
mapping:
49
1: up
@@ -53,7 +53,7 @@ metrics:
53
name: ifOperStatus
54
chart_meta:
55
description: Current operational state of the interface
56
- family: Interfaces/Status/Operational
56
+ family: 'Network/Interface/Status/Operational'
57
unit: "{status}"
58
mapping:
59
1: up
@@ -87,57 +87,57 @@ metrics:
87
name: ifHCInOctets
88
chart_meta:
89
description: Total number of octets received on the interface including framing characters
90
- family: Interfaces/Traffic/Total/In
90
+ family: 'Network/Interface/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
95
chart_meta:
96
description: Total number of octets transmitted out of the interface including framing characters
97
- family: Interfaces/Traffic/Total/Out
97
+ family: 'Network/Interface/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
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
104
+ family: 'Network/Interface/Packet/Unicast/In'
105
unit: "{packet}/s"
106
- OID: 1.3.6.1.2.1.31.1.1.1.8
107
name: ifHCInMulticastPkts
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
110
+ family: 'Network/Interface/Packet/Multicast/In'
111
unit: "{packet}/s"
112
- OID: 1.3.6.1.2.1.31.1.1.1.9
113
name: ifHCInBroadcastPkts
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
116
+ family: 'Network/Interface/Packet/Broadcast/In'
117
unit: "{packet}/s"
118
- OID: 1.3.6.1.2.1.31.1.1.1.11
119
name: ifHCOutUcastPkts
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
122
+ family: 'Network/Interface/Packet/Unicast/Out'
123
unit: "{packet}/s"
124
- OID: 1.3.6.1.2.1.31.1.1.1.12
125
name: ifHCOutMulticastPkts
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
128
+ family: 'Network/Interface/Packet/Multicast/Out'
129
unit: "{packet}/s"
130
- OID: 1.3.6.1.2.1.31.1.1.1.13
131
name: ifHCOutBroadcastPkts
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
134
+ family: 'Network/Interface/Packet/Broadcast/Out'
135
unit: "{packet}/s"
136
- OID: 1.3.6.1.2.1.31.1.1.1.15
137
name: ifHighSpeed
138
chart_meta:
139
description: Estimate of the interface's current bandwidth
140
- family: Interfaces/Speed
140
+ family: 'Network/Interface/Speed'
141
unit: bit/s
142
scale_factor: 1000000 # Megabits => bits
143
metric_tags:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-ip-mib.yaml
+55
-55
@@ -10,28 +10,28 @@ metrics:
10
name: ipSystemStatsHCInOctets
11
chart_meta:
12
description: Octets received in input IP datagrams
13
- family: Network/IP/Traffic/Total/In
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
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
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
25
chart_meta:
26
description: The total number of octets received in IP multicast datagrams
27
- family: Network/IP/Traffic/Multicast/In
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
32
chart_meta:
33
description: The total number of octets transmitted in IP multicast datagrams
34
- family: Network/IP/Traffic/Multicast/Out
34
+ family: 'Network/IP/Traffic/Multicast/Out'
35
unit: "bit/s"
36
scale_factor: 8
37
@@ -39,148 +39,148 @@ metrics:
39
name: ipSystemStatsHCInReceives
40
chart_meta:
41
description: Input IP datagrams received
42
- family: Network/IP/Datagram/Total/In
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
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
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
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
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
58
chart_meta:
59
description: The number of IP broadcast datagrams received
60
- family: Network/IP/Datagram/Broadcast/In
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
64
chart_meta:
65
description: The number of IP broadcast datagrams transmitted
66
- family: Network/IP/Datagram/Broadcast/Out
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
70
chart_meta:
71
description: The number of IP multicast datagrams received
72
- family: Network/IP/Datagram/Multicast/In
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
76
chart_meta:
77
description: The number of IP multicast datagrams transmitted
78
- family: Network/IP/Datagram/Multicast/Out
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
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
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
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
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
96
chart_meta:
97
description: Discarded input IP datagrams due to errors in their IP headers
98
- family: Network/IP/Error/Header/In
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
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
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
108
chart_meta:
109
description: Input IP datagrams discarded due to invalid IP address in header
110
- family: Network/IP/Error/Address/In
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
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
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
120
chart_meta:
121
description: Input IP datagrams discarded due to datagram frame not carrying enough data
122
- family: Network/IP/Error/Truncated/In
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
126
chart_meta:
127
description: The number of failures detected by the IP re-assembly algorithm
128
- family: Network/IP/Error/ReassemblyFailure/Count
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
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
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
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
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
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
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
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
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
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
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
163
chart_meta:
164
description: The number of IP datagrams that have been successfully fragmented
165
- family: Network/IP/Fragmentation/Success/Out
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
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
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
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
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
181
chart_meta:
182
description: The number of IP datagrams successfully reassembled
183
- family: Network/IP/Fragmentation/ReassemblySuccess/Count
183
+ family: 'Network/IP/Fragmentation/ReassemblySuccess/Count'
184
unit: "{packet}/s"
185
metric_tags:
186
- index: 1
@@ -201,28 +201,28 @@ metrics:
201
name: ipIfStatsHCInOctets
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
204
+ family: 'Network/Interface/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
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
211
+ family: 'Network/Interface/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
216
chart_meta:
217
description: The total number of octets received in IP multicast datagrams
218
- family: Interfaces/IP/Traffic/Multicast/In
218
+ family: 'Network/Interface/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
223
chart_meta:
224
description: The total number of octets transmitted in IP multicast datagrams
225
- family: Interfaces/IP/Traffic/Multicast/Out
225
+ family: 'Network/Interface/IP/Traffic/Multicast/Out'
226
unit: "bit/s"
227
scale_factor: 8
228
@@ -230,142 +230,142 @@ metrics:
230
name: ipIfStatsHCInDelivers
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
233
+ family: 'Network/Interface/IP/Datagram/Delivered/In'
234
unit: "{packet}/s"
235
- OID: 1.3.6.1.2.1.4.31.3.1.21
236
name: ipIfStatsHCOutRequests
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
239
+ family: 'Network/Interface/IP/Datagram/Request/Out'
240
unit: "{packet}/s"
241
- OID: 1.3.6.1.2.1.4.31.3.1.31
242
name: ipIfStatsHCOutTransmits
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
245
+ family: 'Network/Interface/IP/Datagram/Total/Out'
246
unit: "{packet}/s"
247
- OID: 1.3.6.1.2.1.4.31.3.1.35
248
name: ipIfStatsHCInMcastPkts
249
chart_meta:
250
description: The number of IP multicast datagrams received
251
- family: Interfaces/IP/Datagram/Multicast/In
251
+ family: 'Network/Interface/IP/Datagram/Multicast/In'
252
unit: "{packet}/s"
253
- OID: 1.3.6.1.2.1.4.31.3.1.39
254
name: ipIfStatsHCOutMcastPkts
255
chart_meta:
256
description: The number of IP multicast datagrams transmitted
257
- family: Interfaces/IP/Datagram/Multicast/Out
257
+ family: 'Network/Interface/IP/Datagram/Multicast/Out'
258
unit: "{packet}/s"
259
- OID: 1.3.6.1.2.1.4.31.3.1.43
260
name: ipIfStatsHCInBcastPkts
261
chart_meta:
262
description: The number of IP broadcast datagrams received
263
- family: Interfaces/IP/Datagram/Broadcast/In
263
+ family: 'Network/Interface/IP/Datagram/Broadcast/In'
264
unit: "{packet}/s"
265
- OID: 1.3.6.1.2.1.4.31.3.1.45
266
name: ipIfStatsHCOutBcastPkts
267
chart_meta:
268
description: The number of IP broadcast datagrams transmitted
269
- family: Interfaces/IP/Datagram/Broadcast/Out
269
+ family: 'Network/Interface/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
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
276
+ family: 'Network/Interface/IP/Discard/In'
277
unit: "{error}/s"
278
- OID: 1.3.6.1.2.1.4.31.3.1.25
279
name: ipIfStatsOutDiscards
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
282
+ family: 'Network/Interface/IP/Discard/Out'
283
unit: "{error}/s"
284
- OID: 1.3.6.1.2.1.4.31.3.1.7
285
name: ipIfStatsInHdrErrors
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
288
+ family: 'Network/Interface/IP/Error/Header/In'
289
unit: "{error}/s"
290
- OID: 1.3.6.1.2.1.4.31.3.1.8
291
name: ipIfStatsInNoRoutes
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
294
+ family: 'Network/Interface/IP/Error/NoRoute/In'
295
unit: "{error}/s"
296
- OID: 1.3.6.1.2.1.4.31.3.1.9
297
name: ipIfStatsInAddrErrors
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
300
+ family: 'Network/Interface/IP/Error/Address/In'
301
unit: "{error}/s"
302
- OID: 1.3.6.1.2.1.4.31.3.1.10
303
name: ipIfStatsInUnknownProtos
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
306
+ family: 'Network/Interface/IP/Error/UnknownProtocol/In'
307
unit: "{error}/s"
308
- OID: 1.3.6.1.2.1.4.31.3.1.11
309
name: ipIfStatsInTruncatedPkts
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
312
+ family: 'Network/Interface/IP/Error/Truncated/In'
313
unit: "{error}/s"
314
- OID: 1.3.6.1.2.1.4.31.3.1.28
315
name: ipIfStatsOutFragFails
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
318
+ family: 'Network/Interface/IP/Error/FragmentationFailure/Out'
319
unit: "{packet}/s"
320
- OID: 1.3.6.1.2.1.4.31.3.1.16
321
name: ipIfStatsReasmFails
322
chart_meta:
323
description: The number of failures detected by the IP re-assembly algorithm
324
- family: Interfaces/IP/Error/ReassemblyFailure/Count
324
+ family: 'Network/Interface/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
329
chart_meta:
330
description: The number of IP datagrams that have been successfully fragmented
331
- family: Interfaces/IP/Fragmentation/Success/Out
331
+ family: 'Network/Interface/IP/Fragmentation/Success/Out'
332
unit: "{packet}/s"
333
- OID: 1.3.6.1.2.1.4.31.3.1.26
334
name: ipIfStatsOutFragReqds
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
337
+ family: 'Network/Interface/IP/Fragmentation/Required/Out'
338
unit: "{packet}/s"
339
- OID: 1.3.6.1.2.1.4.31.3.1.29
340
name: ipIfStatsOutFragCreates
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
343
+ family: 'Network/Interface/IP/Fragmentation/Created/Out'
344
unit: "{fragment}/s"
345
- OID: 1.3.6.1.2.1.4.31.3.1.14
346
name: ipIfStatsReasmReqds
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
349
+ family: 'Network/Interface/IP/Fragmentation/ReassemblyRequired/In'
350
unit: "{fragment}/s"
351
- OID: 1.3.6.1.2.1.4.31.3.1.15
352
name: ipIfStatsReasmOKs
353
chart_meta:
354
description: The number of IP datagrams successfully reassembled
355
- family: Interfaces/IP/Fragmentation/ReassemblySuccess/Count
355
+ family: 'Network/Interface/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
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
362
+ family: 'Network/Interface/IP/Forward/In'
363
unit: "{forward}/s"
364
- OID: 1.3.6.1.2.1.4.31.3.1.24
365
name: ipIfStatsHCOutForwDatagrams
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
368
+ family: 'Network/Interface/IP/Forward/Out'
369
unit: "{packet}/s"
370
metric_tags:
371
- tag: interface_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-ospf-mib.yaml
+28
-28
@@ -8,7 +8,7 @@ metrics:
8
name: ospfNbrState
9
chart_meta:
10
description: The state of the relationship with this neighbor
11
- family: Routing/OSPF/Neighbor/State/Status
11
+ family: 'Network/Routing/OSPF/Neighbor/State/Status'
12
unit: "{status}"
13
mapping:
14
1: down
@@ -23,23 +23,23 @@ metrics:
23
name: ospfNbrEvents
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}"
26
+ family: 'Network/Routing/OSPF/Neighbor/Event/Count'
27
+ unit: "{event}/s"
28
- OID: 1.3.6.1.2.1.14.10.1.8
29
name: ospfNbrLsRetransQLen
30
chart_meta:
31
description: The current length of the retransmission queue
32
- family: Routing/OSPF/Neighbor/Queue/RetransmitLength
32
+ family: 'Network/Routing/OSPF/Neighbor/Queue/RetransmitLength'
33
unit: "{message}"
34
metric_tags:
35
- - symbol:
35
+ - tag: neighbor_id
36
+ symbol:
37
OID: 1.3.6.1.2.1.14.10.1.3
38
name: ospfNbrRtrId
38
- tag: neighbor_id
39
- - symbol:
39
+ - tag: neighbor_ip
40
+ symbol:
41
OID: 1.3.6.1.2.1.14.10.1.1
42
name: ospfNbrIpAddr
42
- tag: neighbor_ip
43
44
- MIB: OSPF-MIB
45
table:
@@ -50,7 +50,7 @@ metrics:
50
name: ospfVirtNbrState
51
chart_meta:
52
description: The state of the virtual neighbor relationship
53
- family: Routing/OSPF/VirtualNeighbor/State/Status
53
+ family: 'Network/Routing/OSPF/VirtualNeighbor/State/Status'
54
unit: "{status}"
55
mapping:
56
1: down
@@ -65,23 +65,23 @@ metrics:
65
name: ospfVirtNbrEvents
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}"
68
+ family: 'Network/Routing/OSPF/VirtualNeighbor/Event/Count'
69
+ unit: "{change}/s"
70
- OID: 1.3.6.1.2.1.14.11.1.7
71
name: ospfVirtNbrLsRetransQLen
72
chart_meta:
73
description: The current length of the retransmission queue
74
- family: Routing/OSPF/VirtualNeighbor/Queue/RetransmitLength
74
+ family: 'Network/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
79
- name: ospfVirtNbrIpAddr
80
- tag: neighbor_ip
81
- - symbol:
77
+ - tag: neighbor_id
78
+ symbol:
79
OID: 1.3.6.1.2.1.14.11.1.2
80
name: ospfVirtNbrRtrId
84
- tag: neighbor_id
81
+ - tag: neighbor_ip
82
+ symbol:
83
+ OID: 1.3.6.1.2.1.14.11.1.3
84
+ name: ospfVirtNbrIpAddr
85
86
- MIB: OSPF-MIB
87
table:
@@ -92,7 +92,7 @@ metrics:
92
name: ospfIfState
93
chart_meta:
94
description: The OSPF Interface State
95
- family: Routing/OSPF/Interface/State/Status
95
+ family: 'Network/Routing/OSPF/Interface/State/Status'
96
unit: "{status}"
97
mapping:
98
1: down
@@ -106,8 +106,8 @@ metrics:
106
name: ospfIfLsaCount
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}"
109
+ family: 'Network/Routing/OSPF/Interface/LinkStateAdvertisement/Count'
110
+ unit: "{advertisement}/s"
111
metric_tags:
112
- symbol:
113
OID: 1.3.6.1.2.1.14.7.1.1
@@ -129,7 +129,7 @@ metrics:
129
name: ospfVirtIfState
130
chart_meta:
131
description: OSPF virtual interface states
132
- family: Routing/OSPF/VirtualInterface/State/Status
132
+ family: 'Network/Routing/OSPF/VirtualInterface/State/Status'
133
unit: "{status}"
134
mapping:
135
1: down
@@ -138,12 +138,12 @@ metrics:
138
name: ospfVirtIfLsaCount
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}"
141
+ family: 'Network/Routing/OSPF/VirtualInterface/LinkStateAdvertisement/Count'
142
+ unit: "{advertisement}/s"
143
metric_tags:
144
- - symbol:
144
+ - tag: neighbor_id
145
+ MIB: OSPF-MIB
146
+ table: ospfVirtNbrTable
147
+ symbol:
148
OID: 1.3.6.1.2.1.14.11.1.2
149
name: ospfVirtNbrRtrId
147
- table: ospfVirtNbrTable
148
- MIB: OSPF-MIB
149
- tag: neighbor_id
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-rtp-mib.yaml
+9
-9
@@ -7,20 +7,20 @@ metrics:
7
- OID: 1.3.6.1.2.1.87.1.3.1.6
8
name: rtpSessionSenderJoins
9
chart_meta:
10
+ family: 'Network/VoIP/RTP/Session/Join/Sender'
11
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
15
chart_meta:
16
+ family: 'Network/VoIP/RTP/Session/Join/Receiver'
17
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
21
chart_meta:
22
+ family: 'Network/VoIP/RTP/Session/Message/Bye/In'
23
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
@@ -41,14 +41,14 @@ metrics:
41
- OID: 1.3.6.1.2.1.87.1.5.1.4
42
name: rtpSenderPackets
43
chart_meta:
44
+ family: 'Network/VoIP/RTP/Sender/Packet/Out'
45
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
49
chart_meta:
50
+ family: 'Network/VoIP/RTP/Sender/Traffic/Out'
51
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
@@ -63,26 +63,26 @@ metrics:
63
- OID: 1.3.6.1.2.1.87.1.7.1.13
64
name: rtpRcvrOctets
65
chart_meta:
66
+ family: 'Network/VoIP/RTP/Receiver/Traffic/In'
67
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
71
chart_meta:
72
+ family: 'Network/VoIP/RTP/Receiver/Packet/In'
73
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
77
chart_meta:
78
+ family: 'Network/VoIP/RTP/Receiver/Jitter/Value'
79
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
83
chart_meta:
84
+ family: 'Network/VoIP/RTP/Receiver/Packet/Lost'
85
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
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-sip-mib.yaml
+10
-10
@@ -7,8 +7,8 @@ metrics:
7
- OID: 1.3.6.1.2.1.149.1.1.1.1.2
8
name: sipCommonCfgServiceOperStatus
9
chart_meta:
10
+ family: 'Network/VoIP/SIP/Service/Status'
11
description: Current operational state of the SIP application
11
- family: "Protocol/SIP/Service/Status"
12
unit: "{status}"
13
mapping:
14
1: unknown
@@ -29,32 +29,32 @@ metrics:
29
- OID: 1.3.6.1.2.1.149.1.3.1.1.1
30
name: sipCommonSummaryInRequests
31
chart_meta:
32
+ family: 'Network/VoIP/SIP/Request/Total/In'
33
description: Total number of SIP request messages received including retransmissions
33
- family: "Protocol/SIP/Request/Total/In"
34
unit: "{request}/s"
35
- OID: 1.3.6.1.2.1.149.1.3.1.1.2
36
name: sipCommonSummaryOutRequests
37
chart_meta:
38
+ family: 'Network/VoIP/SIP/Request/Total/Out'
39
description: Total number of SIP request messages sent including retransmissions
39
- family: "Protocol/SIP/Request/Total/Out"
40
unit: "{request}/s"
41
- OID: 1.3.6.1.2.1.149.1.3.1.1.3
42
name: sipCommonSummaryInResponses
43
chart_meta:
44
+ family: 'Network/VoIP/SIP/Response/Total/In'
45
description: Total number of SIP response messages received including retransmissions
45
- family: "Protocol/SIP/Response/Total/In"
46
unit: "{response}/s"
47
- OID: 1.3.6.1.2.1.149.1.3.1.1.4
48
name: sipCommonSummaryOutResponses
49
chart_meta:
50
+ family: 'Network/VoIP/SIP/Response/Total/Out'
51
description: Total number of SIP response messages sent including retransmissions
51
- family: "Protocol/SIP/Response/Total/Out"
52
unit: "{response}/s"
53
- OID: 1.3.6.1.2.1.149.1.3.1.1.5
54
name: sipCommonSummaryTotalTransactions
55
chart_meta:
56
+ family: 'Network/VoIP/SIP/Transaction/Total'
57
description: Count of transactions in progress and terminated transactions
57
- family: "Protocol/SIP/Transaction/Total"
58
unit: "{transaction}"
59
metric_tags:
60
- index: 1
@@ -67,15 +67,15 @@ metrics:
67
- OID: 1.3.6.1.2.1.149.1.5.1.1.3
68
name: sipCommonStatusCodeIns
69
chart_meta:
70
+ family: 'Network/VoIP/SIP/Response/StatusCode/In'
71
description: Total number of response messages received with the specified status code (sipCommonStatusCodeValue)
71
- family: "Protocol/SIP/Response/StatusCode/In"
72
unit: "{response}/s"
73
- OID: 1.3.6.1.2.1.149.1.5.1.1.4
74
name: sipCommonStatusCodeOuts
75
chart_meta:
76
+ family: 'Network/VoIP/SIP/Response/StatusCode/Out'
77
description: Total number of response messages sent with the specified status code (sipCommonStatusCodeValue)
77
- family: "Protocol/SIP/Response/StatusCode/Out"
78
- unit: "{message}/s"
78
+ unit: "{response}/s"
79
metric_tags:
80
- index: 1
81
tag: applIndex
@@ -91,8 +91,8 @@ metrics:
91
- OID: 1.3.6.1.2.1.149.1.6.1.1.1
92
name: sipCommonTransCurrentactions
93
chart_meta:
94
+ family: 'Network/VoIP/SIP/Transaction/Current'
95
description: Number of transactions awaiting definitive response
95
- family: "Protocol/SIP/Transaction/Current"
96
unit: "{transaction}"
97
metric_tags:
98
- index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-tcp-mib.yaml
+12
-12
@@ -7,7 +7,7 @@ metrics:
7
name: tcpCurrEstab
8
chart_meta:
9
description: Current TCP connections in ESTABLISHED or CLOSE-WAIT state
10
- family: Network/TCP/Connection/Active/Count
10
+ family: 'Network/TCP/Connection/Active/Count'
11
unit: "{connection}"
12
- MIB: TCP-MIB
13
symbol:
@@ -15,7 +15,7 @@ metrics:
15
name: tcpActiveOpens
16
chart_meta:
17
description: TCP connections transitioning from CLOSED to SYN-SENT
18
- family: Network/TCP/Connection/Open/Active/Count
18
+ family: 'Network/TCP/Connection/Open/Active/Count'
19
unit: "{transition}/s"
20
- MIB: TCP-MIB
21
symbol:
@@ -23,7 +23,7 @@ metrics:
23
name: tcpPassiveOpens
24
chart_meta:
25
description: TCP connections transitioning from LISTEN to SYN-RCVD
26
- family: Network/TCP/Connection/Open/Passive/Count
26
+ family: 'Network/TCP/Connection/Open/Passive/Count'
27
unit: "{transition}/s"
28
- MIB: TCP-MIB
29
symbol:
@@ -31,7 +31,7 @@ metrics:
31
name: tcpHCInSegs
32
chart_meta:
33
description: TCP segments received
34
- family: Network/TCP/Segment/Total/In
34
+ family: 'Network/TCP/Segment/Total/In'
35
unit: "{packet}/s"
36
- MIB: TCP-MIB
37
symbol:
@@ -39,7 +39,7 @@ metrics:
39
name: tcpInSegs
40
chart_meta:
41
description: TCP segments received
42
- family: Network/TCP/Segment/Total/In
42
+ family: 'Network/TCP/Segment/Total/In'
43
unit: "{packet}/s"
44
- MIB: TCP-MIB
45
symbol:
@@ -47,7 +47,7 @@ metrics:
47
name: tcpHCOutSegs
48
chart_meta:
49
description: TCP segments sent
50
- family: Network/TCP/Segment/Total/Out
50
+ family: 'Network/TCP/Segment/Total/Out'
51
unit: "{packet}/s"
52
- MIB: TCP-MIB
53
symbol:
@@ -55,7 +55,7 @@ metrics:
55
name: tcpOutSegs
56
chart_meta:
57
description: TCP segments sent
58
- family: Network/TCP/Segment/Total/Out
58
+ family: 'Network/TCP/Segment/Total/Out'
59
unit: "{packet}/s"
60
- MIB: TCP-MIB
61
symbol:
@@ -63,7 +63,7 @@ metrics:
63
name: tcpInErrs
64
chart_meta:
65
description: TCP segments received with errors
66
- family: Network/TCP/Segment/Error/In
66
+ family: 'Network/TCP/Segment/Error/In'
67
unit: "{error}/s"
68
- MIB: TCP-MIB
69
symbol:
@@ -71,7 +71,7 @@ metrics:
71
name: tcpAttemptFails
72
chart_meta:
73
description: Failed TCP connection attempts
74
- family: Network/TCP/Connection/Failure/Count
74
+ family: 'Network/TCP/Connection/Failure/Count'
75
unit: "{failure}/s"
76
- MIB: TCP-MIB
77
symbol:
@@ -79,7 +79,7 @@ metrics:
79
name: tcpEstabResets
80
chart_meta:
81
description: TCP connections reset from ESTABLISHED/CLOSE-WAIT
82
- family: Network/TCP/Connection/Reset/Count
82
+ family: 'Network/TCP/Connection/Reset/Count'
83
unit: "{reset}/s"
84
- MIB: TCP-MIB
85
symbol:
@@ -87,7 +87,7 @@ metrics:
87
name: tcpOutRsts
88
chart_meta:
89
description: TCP segments sent with RST flag
90
- family: Network/TCP/Segment/Reset/Out
90
+ family: 'Network/TCP/Segment/Reset/Out'
91
unit: "{reset}/s"
92
- MIB: TCP-MIB
93
symbol:
@@ -95,5 +95,5 @@ metrics:
95
name: tcpRetransSegs
96
chart_meta:
97
description: TCP segments retransmitted
98
- family: Network/TCP/Segment/Retransmit/Out
98
+ family: 'Network/TCP/Segment/Retransmit/Out'
99
unit: "{retransmit}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-ucd-mib.yaml
+51
-62
@@ -4,16 +4,16 @@ metrics:
4
name: ucd.cpuLoad
5
OID: 1.3.6.1.4.1.2021.10.1.5.1
6
chart_meta:
7
+ family: 'System/CPU/LoadAverage/1Min'
8
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
14
chart_meta:
15
+ family: 'System/Memory/Physical/Total'
16
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
@@ -21,8 +21,8 @@ metrics:
21
name: memory.free
22
OID: 1.3.6.1.4.1.2021.4.6.0
23
chart_meta:
24
+ family: 'System/Memory/Physical/Free'
25
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
@@ -30,8 +30,8 @@ metrics:
30
name: ucd.memTotalSwap
31
OID: 1.3.6.1.4.1.2021.4.3.0
32
chart_meta:
33
+ family: 'System/Memory/Swap/Total'
34
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
@@ -39,8 +39,8 @@ metrics:
39
name: ucd.memAvailSwap
40
OID: 1.3.6.1.4.1.2021.4.4.0
41
chart_meta:
42
+ family: 'System/Memory/Swap/Available'
43
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
@@ -48,8 +48,8 @@ metrics:
48
name: ucd.memTotalFree
49
OID: 1.3.6.1.4.1.2021.4.11.0
50
chart_meta:
51
+ family: 'System/Memory/Available/Total'
52
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
@@ -57,8 +57,8 @@ metrics:
57
name: ucd.memMinimumSwap
58
OID: 1.3.6.1.4.1.2021.4.12.0
59
chart_meta:
60
+ family: 'System/Memory/Swap/Minimum'
61
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
@@ -66,8 +66,8 @@ metrics:
66
name: ucd.memShared
67
OID: 1.3.6.1.4.1.2021.4.13.0
68
chart_meta:
69
+ family: 'System/Memory/Physical/Shared'
70
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
@@ -75,8 +75,8 @@ metrics:
75
name: ucd.memBuffer
76
OID: 1.3.6.1.4.1.2021.4.14.0
77
chart_meta:
78
+ family: 'System/Memory/Physical/Buffer'
79
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
@@ -84,8 +84,8 @@ metrics:
84
name: ucd.memCached
85
OID: 1.3.6.1.4.1.2021.4.15.0
86
chart_meta:
87
+ family: 'System/Memory/Physical/Cached'
88
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
@@ -96,41 +96,41 @@ metrics:
96
- name: ucd.dskTotal
97
OID: 1.3.6.1.4.1.2021.9.1.6
98
chart_meta:
99
+ family: 'System/Disk/Space/Total'
100
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
105
chart_meta:
106
+ family: 'System/Disk/Space/Available'
107
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
112
chart_meta:
113
+ family: 'System/Disk/Space/Used'
114
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
119
chart_meta:
120
+ family: 'System/Disk/Usage'
121
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
125
chart_meta:
126
+ family: 'System/Disk/Inode/Usage'
127
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
131
chart_meta:
132
+ family: 'System/Disk/Error/Status'
133
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
@@ -152,50 +152,46 @@ metrics:
152
symbols:
153
- name: ucd.diskIOReads
154
OID: 1.3.6.1.4.1.2021.13.15.1.1.5
155
- metric_type: monotonic_count
155
chart_meta:
156
+ family: 'System/Disk/IOPS/Read'
157
description: The number of read accesses from this device since boot
158
- family: Disk/IO/Read/Count
159
- unit: "{read}"
158
+ unit: "{read}/s"
159
- name: ucd.diskIOWrites
160
OID: 1.3.6.1.4.1.2021.13.15.1.1.6
162
- metric_type: monotonic_count
161
chart_meta:
162
+ family: 'System/Disk/IOPS/Write'
163
description: The number of write accesses to this device since boot
165
- family: Disk/IO/Write/Count
166
- unit: "{write}"
164
+ unit: "{write/s}"
165
- name: ucd.diskIOLA1
166
OID: 1.3.6.1.4.1.2021.13.15.1.1.9
167
chart_meta:
168
+ family: 'System/Disk/LoadAverage/1Min'
169
description: The 1 minute average load of disk (%)
171
- family: Disk/LoadAverage/1Min
170
unit: "%"
171
- name: ucd.diskIOLA5
172
OID: 1.3.6.1.4.1.2021.13.15.1.1.10
173
chart_meta:
174
+ family: 'System/Disk/LoadAverage/5Min'
175
description: The 5 minute average load of disk (%)
177
- family: Disk/LoadAverage/5Min
176
unit: "%"
177
- name: ucd.diskIOLA15
178
OID: 1.3.6.1.4.1.2021.13.15.1.1.11
179
chart_meta:
180
+ family: 'System/Disk/LoadAverage/15Min'
181
description: The 15 minute average load of disk (%)
183
- family: Disk/LoadAverage/15Min
182
unit: "%"
183
- name: ucd.diskIONReadX
184
OID: 1.3.6.1.4.1.2021.13.15.1.1.12
187
- metric_type: monotonic_count
185
chart_meta:
186
+ family: 'System/Disk/IO/Read'
187
description: The number of bytes read from this device since boot
190
- family: Disk/Traffic/Read
191
- unit: "By"
188
+ unit: "By/s"
189
- name: ucd.diskIONWrittenX
190
OID: 1.3.6.1.4.1.2021.13.15.1.1.13
194
- metric_type: monotonic_count
191
chart_meta:
192
+ family: 'System/Disk/Traffic/Write'
193
description: The number of bytes written to this device since boot
197
- family: Disk/Traffic/Write
198
- unit: "By"
194
+ unit: "By/s"
195
metric_tags:
196
- tag: ucd_disk_io_device
197
symbol:
@@ -206,85 +202,78 @@ metrics:
202
name: ucd.ssCpuUser
203
OID: 1.3.6.1.4.1.2021.11.9.0
204
chart_meta:
205
+ family: 'System/CPU/Usage/User'
206
description: The percentage of CPU time spent processing user-level code, calculated over the last minute
210
- family: CPU/Usage/User
207
unit: "%"
208
- MIB: UCD-SNMP-MIB
209
symbol:
210
name: ucd.ssCpuSystem
211
OID: 1.3.6.1.4.1.2021.11.10.0
212
chart_meta:
213
+ family: 'System/CPU/Usage/System'
214
description: The percentage of CPU time spent processing system-level code, calculated over the last minute
218
- family: CPU/Usage/System
215
unit: "%"
216
- MIB: UCD-SNMP-MIB
217
symbol:
218
name: ucd.ssCpuIdle
219
OID: 1.3.6.1.4.1.2021.11.11.0
220
chart_meta:
221
+ family: 'System/CPU/Usage/Idle'
222
description: The percentage of processor time spent idle, calculated over the last minute
226
- family: CPU/Usage/Idle
223
unit: "%"
224
- MIB: UCD-SNMP-MIB
225
symbol:
226
name: ucd.ssCpuRawUser
227
OID: 1.3.6.1.4.1.2021.11.50.0
232
- metric_type: monotonic_count
228
chart_meta:
234
- description: The number of 'ticks' spent processing user-level code
235
- family: CPU/Time/User
236
- unit: "{tick}"
229
+ family: 'System/CPU/Time/User'
230
+ description: The number of ticks spent processing user-level code
231
+ unit: "{tick}/s"
232
- MIB: UCD-SNMP-MIB
233
symbol:
234
name: ucd.ssCpuRawNice
235
OID: 1.3.6.1.4.1.2021.11.51.0
241
- metric_type: monotonic_count
236
chart_meta:
243
- description: The number of 'ticks' spent processing reduced-priority code
244
- family: CPU/Time/Nice
245
- unit: "{tick}"
237
+ family: 'System/CPU/Time/Nice'
238
+ description: The number of ticks spent processing reduced-priority code
239
+ unit: "{tick}/s"
240
- MIB: UCD-SNMP-MIB
241
symbol:
242
name: ucd.ssCpuRawSystem
243
OID: 1.3.6.1.4.1.2021.11.52.0
250
- metric_type: monotonic_count
244
chart_meta:
252
- description: The number of 'ticks' spent processing system-level code
253
- family: CPU/Time/System
254
- unit: "{tick}"
245
+ family: 'System/CPU/Time/System'
246
+ description: The number of ticks spent processing system-level code
247
+ unit: "{tick}/s"
248
- MIB: UCD-SNMP-MIB
249
symbol:
250
name: ucd.ssCpuRawIdle
251
OID: 1.3.6.1.4.1.2021.11.53.0
259
- metric_type: monotonic_count
252
chart_meta:
261
- description: The number of 'ticks' spent idle
262
- family: CPU/Time/Idle
263
- unit: "{tick}"
253
+ family: 'System/CPU/Time/Idle'
254
+ description: The number of ticks spent idle
255
+ unit: "{tick}/s"
256
- MIB: UCD-SNMP-MIB
257
symbol:
258
name: ucd.ssCpuRawWait
259
OID: 1.3.6.1.4.1.2021.11.54.0
268
- metric_type: monotonic_count
260
chart_meta:
270
- description: The number of 'ticks' spent waiting for IO
271
- family: CPU/Time/IOWait
272
- unit: "{tick}"
261
+ family: 'System/CPU/Time/IOWait'
262
+ description: The number of ticks spent waiting for IO
263
+ unit: "{tick}/s"
264
- MIB: UCD-SNMP-MIB
265
symbol:
266
name: ucd.ssCpuRawKernel
267
OID: 1.3.6.1.4.1.2021.11.55.0
277
- metric_type: monotonic_count
268
chart_meta:
279
- description: The number of 'ticks' spent processing kernel-level code
280
- family: CPU/Time/Kernel
281
- unit: "{tick}"
269
+ family: 'System/CPU/Time/Kernel'
270
+ description: The number of ticks spent processing kernel-level code
271
+ unit: "{tick}/s"
272
- MIB: UCD-SNMP-MIB
273
symbol:
274
name: ucd.ssCpuRawInterrupt
275
OID: 1.3.6.1.4.1.2021.11.56.0
286
- metric_type: monotonic_count
276
chart_meta:
288
- description: The number of 'ticks' spent processing hardware interrupts
289
- family: CPU/Time/Interrupt
290
- unit: "{tick}"
277
+ family: 'System/CPU/Time/Interrupt'
278
+ description: The number of ticks spent processing hardware interrupts
279
+ unit: "{tick}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-udp-mib.yaml
+6
-6
@@ -7,7 +7,7 @@ metrics:
7
name: udpHCInDatagrams
8
chart_meta:
9
description: UDP datagrams received
10
- family: Network/UDP/Datagram/Total/In
10
+ family: 'Network/UDP/Datagram/Total/In'
11
unit: "{packet}/s"
12
- MIB: UDP-MIB
13
symbol:
@@ -15,7 +15,7 @@ metrics:
15
name: udpInDatagrams
16
chart_meta:
17
description: UDP datagrams received
18
- family: Network/UDP/Datagram/Total/In
18
+ family: 'Network/UDP/Datagram/Total/In'
19
unit: "{packet}/s"
20
- MIB: UDP-MIB
21
symbol:
@@ -23,7 +23,7 @@ metrics:
23
name: udpHCOutDatagrams
24
chart_meta:
25
description: UDP datagrams sent
26
- family: Network/UDP/Datagram/Total/Out
26
+ family: 'Network/UDP/Datagram/Total/Out'
27
unit: "{packet}/s"
28
- MIB: UDP-MIB
29
symbol:
@@ -31,7 +31,7 @@ metrics:
31
name: udpOutDatagrams
32
chart_meta:
33
description: UDP datagrams sent
34
- family: Network/UDP/Datagram/Total/Out
34
+ family: 'Network/UDP/Datagram/Total/Out'
35
unit: "{packet}/s"
36
- MIB: UDP-MIB
37
symbol:
@@ -39,7 +39,7 @@ metrics:
39
name: udpInErrors
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
42
+ family: 'Network/UDP/Datagram/Error/In'
43
unit: "{error}/s"
44
- MIB: UDP-MIB
45
symbol:
@@ -47,5 +47,5 @@ metrics:
47
name: udpNoPorts
48
chart_meta:
49
description: UDP datagrams received with no app on the destination port
50
- family: Network/UDP/Datagram/Error/NoPort
50
+ family: 'Network/UDP/Datagram/Error/NoPort'
51
unit: "{error}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_std-ups-mib.yaml
+31
-31
@@ -15,8 +15,8 @@ metrics:
15
OID: 1.3.6.1.2.1.33.1.2.1.0
16
name: upsBatteryStatus
17
chart_meta:
18
+ family: 'Hardware/Battery/Status'
19
description: The indication of the capacity remaining in the UPS system's batteries
19
- family: "Battery/Status"
20
unit: "{status}"
21
mapping:
22
1: unknown
@@ -28,56 +28,56 @@ metrics:
28
OID: 1.3.6.1.2.1.33.1.2.2.0
29
name: upsSecondsOnBattery
30
chart_meta:
31
+ family: 'System/Battery/Runtime/OnBattery'
32
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
32
- family: "Battery/Runtime/OnBattery"
33
unit: "s"
34
- MIB: UPS-MIB
35
symbol:
36
OID: 1.3.6.1.2.1.33.1.2.3.0
37
name: upsEstimatedMinutesRemaining
38
chart_meta:
39
+ family: 'System/Battery/Runtime/Remaining'
40
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
40
- family: "Battery/Runtime/Remaining"
41
unit: "min"
42
- MIB: UPS-MIB
43
symbol:
44
OID: 1.3.6.1.2.1.33.1.2.4.0
45
name: upsEstimatedChargeRemaining
46
chart_meta:
47
+ family: 'System/Battery/Charge/Remaining'
48
description: An estimate of the battery charge remaining expressed as a percent of full charge
48
- family: "Battery/Charge/Remaining"
49
unit: "%"
50
- MIB: UPS-MIB
51
symbol:
52
OID: 1.3.6.1.2.1.33.1.2.5.0
53
name: upsBatteryVoltage
54
chart_meta:
55
+ family: 'Hardware/Battery/Voltage/Value'
56
description: The magnitude of the present battery voltage
56
- family: "Battery/Voltage/Value"
57
unit: "V"
58
- MIB: UPS-MIB
59
symbol:
60
OID: 1.3.6.1.2.1.33.1.2.6.0
61
name: upsBatteryCurrent
62
chart_meta:
63
+ family: 'Hardware/Battery/Current/Value'
64
description: The present battery current
64
- family: "Battery/Current/Value"
65
unit: "A"
66
- MIB: UPS-MIB
67
symbol:
68
OID: 1.3.6.1.2.1.33.1.2.7.0
69
name: upsBatteryTemperature
70
chart_meta:
71
+ family: 'Hardware/Battery/Temperature/Value'
72
description: The ambient temperature at or near the UPS Battery casing
72
- family: "Battery/Temperature/Value"
73
unit: "Cel"
74
- MIB: UPS-MIB
75
symbol:
76
OID: 1.3.6.1.2.1.33.1.3.1.0
77
name: upsInputLineBads
78
chart_meta:
79
+ family: 'PowerFlow/Input/Error/OutOfTolerance'
80
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
80
- family: "Input/Error/OutOfTolerance/Count"
81
unit: "{transition}"
82
metric_type: monotonic_count
83
- MIB: UPS-MIB
@@ -85,16 +85,16 @@ metrics:
85
OID: 1.3.6.1.2.1.33.1.3.2.0
86
name: upsInputNumLines
87
chart_meta:
88
+ family: 'PowerFlow/Input/Line/Count'
89
description: The number of input lines utilized in this device. This variable indicates the number of rows in the input table
89
- family: "Input/Line/Count"
90
unit: "{line}"
91
- MIB: UPS-MIB
92
symbol:
93
OID: 1.3.6.1.2.1.33.1.4.1.0
94
name: upsOutputSource
95
chart_meta:
96
+ family: 'PowerFlow/Output/Source/Status'
97
description: The present source of output power
97
- family: "Output/Source/Status"
98
unit: "{status}"
99
mapping:
100
1: other
@@ -109,48 +109,48 @@ metrics:
109
OID: 1.3.6.1.2.1.33.1.4.2.0
110
name: upsOutputFrequency
111
chart_meta:
112
+ family: 'PowerFlow/Output/Frequency/Value'
113
description: The present output frequency
113
- family: "Output/Frequency/Value"
114
unit: "Hz"
115
- MIB: UPS-MIB
116
symbol:
117
OID: 1.3.6.1.2.1.33.1.4.3.0
118
name: upsOutputNumLines
119
chart_meta:
120
+ family: 'PowerFlow/Output/Line/Count'
121
description: The number of output lines utilized in this device. This variable indicates the number of rows in the output table
121
- family: "Output/Line/Count"
122
unit: "{line}"
123
- MIB: UPS-MIB
124
symbol:
125
OID: 1.3.6.1.2.1.33.1.5.1.0
126
name: upsBypassFrequency
127
chart_meta:
128
+ family: 'PowerFlow/Bypass/Frequency/Value'
129
description: The present bypass frequency
129
- family: "Bypass/Frequency/Value"
130
unit: "Hz"
131
- MIB: UPS-MIB
132
symbol:
133
OID: 1.3.6.1.2.1.33.1.5.2.0
134
name: upsBypassNumLines
135
chart_meta:
136
+ family: 'PowerFlow/Bypass/Line/Count'
137
description: The number of bypass lines utilized in this device. This entry indicates the number of rows in the bypass table
137
- family: "Bypass/Line/Count"
138
unit: "{line}"
139
- MIB: UPS-MIB
140
symbol:
141
OID: 1.3.6.1.2.1.33.1.6.1.0
142
name: upsAlarmsPresent
143
chart_meta:
144
+ family: 'System/Alarm/Active'
145
description: The present number of active alarm conditions
145
- family: "Alarm/Active/Count"
146
unit: "{alarm}"
147
- MIB: UPS-MIB
148
symbol:
149
OID: 1.3.6.1.2.1.33.1.7.3.0
150
name: upsTestResultsSummary
151
chart_meta:
152
+ family: 'System/Test/Result/Status'
153
description: The results of the current or last UPS diagnostics test performed
153
- family: "Test/Result/Status"
154
unit: "{status}"
155
mapping:
156
1: donePass
@@ -164,8 +164,8 @@ metrics:
164
OID: 1.3.6.1.2.1.33.1.7.5.0
165
name: upsTestStartTime
166
chart_meta:
167
+ family: 'System/Test/StartTime/Value'
168
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
168
- family: "Test/StartTime/Value"
169
unit: "s"
170
- MIB: UPS-MIB
171
table:
@@ -175,26 +175,26 @@ metrics:
175
- OID: 1.3.6.1.2.1.33.1.4.4.1.2
176
name: upsOutputVoltage
177
chart_meta:
178
+ family: 'PowerFlow/Output/Voltage/Value'
179
description: The present output voltage
179
- family: "Output/Voltage/Value"
180
unit: "V"
181
- OID: 1.3.6.1.2.1.33.1.4.4.1.3
182
name: upsOutputCurrent
183
chart_meta:
184
+ family: 'PowerFlow/Output/Current/Value'
185
description: The present output current
185
- family: "Output/Current/Value"
186
unit: "A"
187
- OID: 1.3.6.1.2.1.33.1.4.4.1.4
188
name: upsOutputPower
189
chart_meta:
190
+ family: 'PowerFlow/Output/Power/Active'
191
description: The present output true power
191
- family: "Output/Power/Active"
192
unit: "W"
193
- OID: 1.3.6.1.2.1.33.1.4.4.1.5
194
name: upsOutputPercentLoad
195
chart_meta:
196
+ family: 'PowerFlow/Output/Load/Usage'
197
description: The percentage of the UPS power capacity presently being used on this output line
197
- family: "Output/Load/Usage"
198
unit: "%"
199
metric_tags:
200
- symbol:
@@ -209,26 +209,26 @@ metrics:
209
- OID: 1.3.6.1.2.1.33.1.3.3.1.2
210
name: upsInputFrequency
211
chart_meta:
212
+ family: 'PowerFlow/Input/Frequency/Value'
213
description: The present input frequency
213
- family: "Input/Frequency/Value"
214
unit: "Hz"
215
- OID: 1.3.6.1.2.1.33.1.3.3.1.3
216
name: upsInputVoltage
217
chart_meta:
218
+ family: 'PowerFlow/Input/Voltage/Value'
219
description: The magnitude of the present input voltage
219
- family: "Input/Voltage/Value"
220
unit: "V"
221
- OID: 1.3.6.1.2.1.33.1.3.3.1.4
222
name: upsInputCurrent
223
chart_meta:
224
+ family: 'PowerFlow/Input/Current/Value'
225
description: The magnitude of the present input current
225
- family: "Input/Current/Value"
226
unit: "A"
227
- OID: 1.3.6.1.2.1.33.1.3.3.1.5
228
name: upsInputTruePower
229
chart_meta:
230
+ family: 'PowerFlow/Input/Power/Active'
231
description: The magnitude of the present input true power
231
- family: "Input/Power/Active"
232
unit: "W"
233
metric_tags:
234
- symbol:
@@ -243,20 +243,20 @@ metrics:
243
- OID: 1.3.6.1.2.1.33.1.5.3.1.2
244
name: upsBypassVoltage
245
chart_meta:
246
+ family: 'PowerFlow/Bypass/Voltage/Value'
247
description: The present bypass voltage
247
- family: "Bypass/Voltage/Value"
248
unit: "V"
249
- OID: 1.3.6.1.2.1.33.1.5.3.1.3
250
name: upsBypassCurrent
251
chart_meta:
252
+ family: 'PowerFlow/Bypass/Current/Value'
253
description: The present bypass current
253
- family: "Bypass/Current/Value"
254
unit: "A"
255
- OID: 1.3.6.1.2.1.33.1.5.3.1.4
256
name: upsBypassPower
257
chart_meta:
258
+ family: 'PowerFlow/Bypass/Power/Active'
259
description: The present true power conveyed by the bypass
259
- family: "Bypass/Power/Active"
260
unit: "W"
261
metric_tags:
262
- symbol:
@@ -271,11 +271,11 @@ metrics:
271
- OID: 1.3.6.1.2.1.33.1.6.2.1.3
272
name: upsAlarmTime
273
chart_meta:
274
+ family: 'System/Alarm/Time/Value'
275
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
275
- family: "Alarm/Time/Value"
276
unit: "s"
277
metric_tags:
278
- - symbol:
278
+ - tag: ups_alarm_descr
279
+ symbol:
280
OID: 1.3.6.1.2.1.33.1.6.2.1.2
281
name: upsAlarmDescr
281
- tag: ups_alarm_descr
src/go/plugin/go.d/config/go.d/snmp.profiles/default/_system-base.yaml
+2
-2
@@ -16,7 +16,7 @@ metrics:
16
scale_factor: 0.01
17
chart_meta:
18
description: Time since the system was last rebooted or powered on.
19
- family: Uptime
19
+ family: 'Uptime'
20
unit: s
21
- MIB: HOST-RESOURCES-MIB
22
symbol:
@@ -25,7 +25,7 @@ metrics:
25
scale_factor: 0.01
26
chart_meta:
27
description: Time since the system was last rebooted or powered on.
28
- family: Uptime
28
+ family: 'Uptime'
29
unit: s
30
31
metadata:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/a10-thunder.yaml
+71
-71
@@ -9,14 +9,25 @@ metadata:
9
type:
10
value: "ADC"
11
12
+metric_tags:
13
+ - OID: 1.3.6.1.4.1.22610.2.4.1.6.2.0
14
+ symbol: axSysSerialNumber
15
+ tag: ax_sys_serial_number
16
+ - OID: 1.3.6.1.4.1.22610.2.4.1.6.3.0
17
+ symbol: axSysFirmwareVersion
18
+ tag: ax_sys_firmware_version
19
+ - OID: 1.3.6.1.4.1.22610.2.4.1.6.4.0
20
+ symbol: axSysAFleXEngineVersion
21
+ tag: ax_sys_a_fle_x_engine_version
22
+
23
metrics:
24
- MIB: A10-AX-MIB
25
symbol:
26
name: axSysMemoryTotal
27
OID: 1.3.6.1.4.1.22610.2.4.1.2.1.0
28
chart_meta:
29
+ family: 'System/Memory/Total'
30
description: The total memory
19
- family: Memory/Total
31
unit: "By"
32
scale_factor: 1024
33
@@ -25,8 +36,8 @@ metrics:
36
name: axSysMemoryUsage
37
OID: 1.3.6.1.4.1.22610.2.4.1.2.2.0
38
chart_meta:
39
+ family: 'System/Memory/Used'
40
description: The usage memory
29
- family: Memory/Used
41
unit: "By"
42
scale_factor: 1024
43
@@ -35,16 +46,16 @@ metrics:
46
name: axSysAverageCpuUsage
47
OID: 1.3.6.1.4.1.22610.2.4.1.3.3.0
48
chart_meta:
49
+ family: 'System/CPU/Usage'
50
description: The average CPU usage in last 5 seconds
39
- family: CPU/Usage
51
unit: "%"
52
- MIB: A10-AX-MIB
53
symbol:
54
name: axSysDiskTotalSpace
55
OID: 1.3.6.1.4.1.22610.2.4.1.4.1.0
56
chart_meta:
57
+ family: 'System/Disk/Space/Total'
58
description: The total space of the disk
47
- family: Disk/Total
59
unit: "By"
60
scale_factor: 1048576
61
@@ -53,8 +64,8 @@ metrics:
64
name: axSysDiskFreeSpace
65
OID: 1.3.6.1.4.1.22610.2.4.1.4.2.0
66
chart_meta:
67
+ family: 'System/Disk/Space/Free'
68
description: The free space of the disk
57
- family: Disk/Free
69
unit: "By"
70
scale_factor: 1048576
71
@@ -63,240 +74,240 @@ metrics:
74
name: axSysHwPhySystemTemp
75
OID: 1.3.6.1.4.1.22610.2.4.1.5.1.0
76
chart_meta:
77
+ family: 'Environment/Temperature/Value'
78
description: The physical system temperature in Celsius
67
- family: Env/Temperature/Value
79
unit: "Cel"
80
- MIB: A10-AX-MIB
81
symbol:
82
name: axAppGlobalTotalCurrentConnections
83
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.1.0
84
chart_meta:
85
+ family: 'System/Application/Connection/Current/Total'
86
description: Total current connections
75
- family: Application/Connection/Current/Total
87
unit: "{connection}"
88
- MIB: A10-AX-MIB
89
symbol:
90
name: axAppGlobalTotalNewConnections
91
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.2.0
92
chart_meta:
93
+ family: 'System/Application/Connection/New/Total'
94
description: Total new connections
83
- family: Application/Connection/New/Total
95
unit: "{connection}/s"
96
- MIB: A10-AX-MIB
97
symbol:
98
name: axAppGlobalTotalNewL4Connections
99
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.3.0
100
chart_meta:
101
+ family: 'System/Application/Connection/New/L4'
102
description: Total new L4 connections
91
- family: Application/Connection/New/L4
103
unit: "{connection}/s"
104
- MIB: A10-AX-MIB
105
symbol:
106
name: axAppGlobalTotalNewL7Connections
107
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.4.0
108
chart_meta:
109
+ family: 'System/Application/Connection/New/L7'
110
description: Total new L7 connections
99
- family: Application/Connection/New/L7
111
unit: "{connection}/s"
112
- MIB: A10-AX-MIB
113
symbol:
114
name: axAppGlobalTotalNewIPNatConnections
115
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.5.0
116
chart_meta:
117
+ family: 'Network/NAT/Connection/New/IP'
118
description: Total new IP-NAT connections
107
- family: Application/Connection/New/IPNAT
119
unit: "{connection}/s"
120
- MIB: A10-AX-MIB
121
symbol:
122
name: axAppGlobalTotalSSLConnections
123
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.6.0
124
chart_meta:
125
+ family: 'Network/SSL/Connection/New'
126
description: Total new SSL connections
115
- family: Application/Connection/New/SSL
127
unit: "{connection}/s"
128
- MIB: A10-AX-MIB
129
symbol:
130
name: axAppGlobalTotalL7Requests
131
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.7.0
132
chart_meta:
133
+ family: 'System/Application/Request/L7/Total'
134
description: Total L7 requests
123
- family: Application/Request/L7/Total
135
unit: "{request}/s"
136
- MIB: A10-AX-MIB
137
symbol:
138
name: axGlobalAppPacketDrop
139
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.8.0
140
chart_meta:
141
+ family: 'System/Application/Packet/Dropped/Buffer'
142
description: Total number of buffer drops in the last 10 seconds
131
- family: Application/Packet/Dropped/Buffer
143
unit: "{packet}"
144
- MIB: A10-AX-MIB
145
symbol:
146
name: axGlobalTotalAppPacketDrop
147
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.9.0
148
chart_meta:
149
+ family: 'System/Application/Packet/Dropped/BufferTotal'
150
description: Total number of accumulative buffer drops
139
- family: Application/Packet/Dropped/BufferTotal
151
unit: "{packet}/s"
152
- MIB: A10-AX-MIB
153
symbol:
154
name: axGlobalTotalL4Session
155
OID: 1.3.6.1.4.1.22610.2.4.3.1.2.10.0
156
chart_meta:
157
+ family: 'System/Session/L4/Total'
158
description: Total number of L4 sessions
147
- family: Session/L4/Total
159
unit: "{session}"
160
- MIB: A10-AX-MIB
161
symbol:
162
name: axAppGlobalBufferConfigLimit
163
OID: 1.3.6.1.4.1.22610.2.4.3.1.3.1.0
164
chart_meta:
165
+ family: 'System/Application/Buffer/Limit'
166
description: Application buffer configured limit
155
- family: Application/Buffer/Limit
167
unit: "1"
168
- MIB: A10-AX-MIB
169
symbol:
170
name: axAppGlobalBufferCurrentUsage
171
OID: 1.3.6.1.4.1.22610.2.4.3.1.3.2.0
172
chart_meta:
173
+ family: 'System/Application/Buffer/Used'
174
description: Application buffer current usage
163
- family: Application/Buffer/Used
175
unit: "1"
176
- MIB: A10-AX-MIB
177
symbol:
178
name: axConnReuseStatTotalOpenPersist
179
OID: 1.3.6.1.4.1.22610.2.4.3.5.1.0
180
chart_meta:
181
+ family: 'System/Session/ConnectionReuse/Open'
182
description: The total count of open persistent connection-reuse sessions
171
- family: Session/ConnectionReuse/Open
183
unit: "{session}"
184
- MIB: A10-AX-MIB
185
symbol:
186
name: axConnReuseStatTotalActivePersist
187
OID: 1.3.6.1.4.1.22610.2.4.3.5.2.0
188
chart_meta:
189
+ family: 'System/Session/ConnectionReuse/Active'
190
description: The total count of active persistent connection-reuse sessions
179
- family: Session/ConnectionReuse/Active
191
unit: "{session}"
192
- MIB: A10-AX-MIB
193
symbol:
194
name: axConnReuseStatTotalEstablished
195
OID: 1.3.6.1.4.1.22610.2.4.3.5.3.0
196
chart_meta:
197
+ family: 'System/Session/ConnectionReuse/Established'
198
description: The total count of established connection-reuse sessions
187
- family: Session/ConnectionReuse/Established
199
unit: "{session}"
200
- MIB: A10-AX-MIB
201
symbol:
202
name: axConnReuseStatTotalTerminated
203
OID: 1.3.6.1.4.1.22610.2.4.3.5.4.0
204
chart_meta:
205
+ family: 'System/Session/ConnectionReuse/Terminated'
206
description: The total count of terminated connection-reuse sessions
195
- family: Session/ConnectionReuse/Terminated
207
unit: "{session}"
208
- MIB: A10-AX-MIB
209
symbol:
210
name: axSessionGlobalStatTCPEstablished
211
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.1.0
212
chart_meta:
213
+ family: 'Network/Connection/TCP/Established'
214
description: The count of TCP established
203
- family: Connection/TCP/Established
215
unit: "{connection}"
216
- MIB: A10-AX-MIB
217
symbol:
218
name: axSessionGlobalStatTCPHalfOpen
219
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.2.0
220
chart_meta:
221
+ family: 'Network/Connection/TCP/HalfOpen'
222
description: The count of TCP half open
211
- family: Connection/TCP/HalfOpen
223
unit: "{connection}"
224
- MIB: A10-AX-MIB
225
symbol:
226
name: axSessionGlobalStatUDP
227
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.3.0
228
chart_meta:
229
+ family: 'Network/Connection/UDP/Active'
230
description: The count of UDP connections
219
- family: Connection/UDP/Active
231
unit: "{connection}"
232
- MIB: A10-AX-MIB
233
symbol:
234
name: axSessionGlobalStatNonTcpUdpIPSession
235
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.4.0
236
chart_meta:
237
+ family: 'Network/Session/IP/Other'
238
description: The count of non TCP/UDP IP sessions
227
- family: Session/IP/Other
239
unit: "{session}"
240
- MIB: A10-AX-MIB
241
symbol:
242
name: axSessionGlobalStatOther
243
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.5.0
244
chart_meta:
245
+ family: 'System/Session/Other/Active'
246
description: The count of others
235
- family: Session/Other/Active
247
unit: "{session}"
248
- MIB: A10-AX-MIB
249
symbol:
250
name: axSessionGlobalStatReverseNATTCP
251
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.6.0
252
chart_meta:
253
+ family: 'Network/NAT/Connection/Reverse/TCP'
254
description: The count of reverse NAT TCP
243
- family: Connection/ReverseNAT/TCP
255
unit: "{connection}"
256
- MIB: A10-AX-MIB
257
symbol:
258
name: axSessionGlobalStatReverseNATUDP
259
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.7.0
260
chart_meta:
261
+ family: 'Network/NAT/Connection/Reverse/UDP'
262
description: The count of reverse NAT UDP
251
- family: Connection/ReverseNAT/UDP
263
unit: "{connection}"
264
- MIB: A10-AX-MIB
265
symbol:
266
name: axSessionGlobalStatFreeCurrentConns
267
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.9.0
268
chart_meta:
269
+ family: 'System/Connection/Free'
270
description: The count of free current connections
259
- family: Connection/Free
271
unit: "{connection}"
272
- MIB: A10-AX-MIB
273
symbol:
274
name: axSessionGlobalStatConnCount
275
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.10.0
276
chart_meta:
277
+ family: 'System/Connection/Current'
278
description: The count of current connections
267
- family: Connection/Current
279
unit: "{connection}"
280
- MIB: A10-AX-MIB
281
symbol:
282
name: axSessionGlobalStatConnFree
283
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.11.0
284
chart_meta:
285
+ family: 'System/Connection/Freed'
286
description: The count of freed connections
275
- family: Connection/Freed
287
unit: "{connection}/s"
288
- MIB: A10-AX-MIB
289
symbol:
290
name: axSessionGlobalStatTCPSynHalfOpen
291
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.12.0
292
chart_meta:
293
+ family: 'Network/Connection/TCP/SynHalfOpen'
294
description: The count of TCP SYN half open
283
- family: Connection/TCP/SynHalfOpen
295
unit: "{connection}"
296
- MIB: A10-AX-MIB
297
symbol:
298
name: axSessionGlobalStatConnSMPAllocated
299
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.13.0
300
chart_meta:
301
+ family: 'System/Connection/SMP/Allocated'
302
description: The count of allocated SMP connections
291
- family: Connection/SMP/Allocated
303
unit: "{connection}"
304
- MIB: A10-AX-MIB
305
symbol:
306
name: axSessionGlobalStatConnSMPFree
307
OID: 1.3.6.1.4.1.22610.2.4.3.19.1.14.0
308
chart_meta:
309
+ family: 'System/Connection/SMP/Free'
310
description: The count of free SMP connections
299
- family: Connection/SMP/Free
311
unit: "{connection}"
312
- MIB: A10-AX-MIB
313
table:
@@ -306,14 +317,14 @@ metrics:
317
- name: axFanSpeed
318
OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.4
319
chart_meta:
320
+ family: 'Hardware/Fan/Speed'
321
description: The fan's speed
310
- family: Fan/Speed
322
unit: "{rotation}/min"
323
- name: axFanStatus
324
OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.3
325
chart_meta:
326
+ family: 'Hardware/Fan/Status'
327
description: Fan status
316
- family: Fan/Status
328
unit: "{status}"
329
mapping:
330
0: failed
@@ -337,8 +348,8 @@ metrics:
348
- OID: 1.3.6.1.4.1.22610.2.4.1.5.11.1.2
349
name: axPowerSupplyVoltageStatus
350
chart_meta:
351
+ family: 'Hardware/Power/Voltage/Status'
352
description: Power Supply voltage status
341
- family: PowerSupply/Voltage/Status
353
unit: "{status}"
354
mapping:
355
0: invalid
@@ -358,8 +369,8 @@ metrics:
369
- OID: 1.3.6.1.4.1.22610.2.4.1.5.12.1.3
370
name: axPowerSupplyStatus
371
chart_meta:
372
+ family: 'Hardware/Power/Status'
373
description: Power Supply status
362
- family: PowerSupply/Status
374
unit: "{status}"
375
mapping:
376
0: off
@@ -380,8 +391,8 @@ metrics:
391
- OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.3
392
name: axServerEnabledState
393
chart_meta:
394
+ family: 'LoadBalancer/Server/Admin/Status'
395
description: The enabled state for this server
384
- family: Server/Admin/Status
396
unit: "{status}"
397
mapping:
398
0: disabled
@@ -389,8 +400,8 @@ metrics:
400
- OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.5
401
name: axServerMonitorState
402
chart_meta:
403
+ family: 'LoadBalancer/Server/Operational/Status'
404
description: The server monitor status
393
- family: Server/Operational/Status
405
unit: "{status}"
406
mapping:
407
0: disabled
@@ -410,20 +421,20 @@ metrics:
421
- name: axServerStatServerCurConns
422
OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.8
423
chart_meta:
424
+ family: 'LoadBalancer/Server/Connection/Current'
425
description: The current connections from server side
414
- family: Server/Connection/Current
426
unit: "{connection}"
427
- name: axServerStatServerTotalCurrL7Reqs
428
OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.12
429
chart_meta:
430
+ family: 'LoadBalancer/Server/Request/L7/Current'
431
description: The number of current L7 requests if applicable
420
- family: Server/Request/L7/Current
432
unit: "{request}"
433
- OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.10
434
name: axServerStatServerStatus
435
chart_meta:
436
+ family: 'LoadBalancer/Server/Operational/Status'
437
description: Server status
426
- family: Server/Operational/Status
438
unit: "{status}"
439
mapping:
440
0: disabled
@@ -443,8 +454,8 @@ metrics:
454
- OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.4
455
name: axServiceGroupDisplayStatus
456
chart_meta:
457
+ family: 'LoadBalancer/ServiceGroup/Status'
458
description: Service group status
447
- family: ServiceGroup/Status
459
unit: "{status}"
460
mapping:
461
1: all_up
@@ -487,8 +498,8 @@ metrics:
498
- OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.5
499
name: axVirtualServerDisplayStatus
500
chart_meta:
501
+ family: 'LoadBalancer/VirtualServer/Status'
502
description: Display status of the virtual server
491
- family: VirtualServer/Status
503
unit: "{status}"
504
mapping:
505
0: disabled
@@ -521,68 +532,68 @@ metrics:
532
- name: axVirtualServerStatPktsIn
533
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.3
534
chart_meta:
535
+ family: 'LoadBalancer/VirtualServer/Packet/In'
536
description: The number of packets received from client to server
525
- family: VirtualServer/Packet/In
537
unit: "{packet}/s"
538
- name: axVirtualServerStatBytesIn
539
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.4
540
chart_meta:
541
+ family: 'LoadBalancer/VirtualServer/Traffic/In'
542
description: The number of bytes received from client to server
531
- family: VirtualServer/Traffic/In
543
unit: "By/s"
544
- name: axVirtualServerStatPktsOut
545
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.5
546
chart_meta:
547
+ family: 'LoadBalancer/VirtualServer/Packet/Out'
548
description: The number of packets sent from server to client
537
- family: VirtualServer/Packet/Out
549
unit: "{packet}/s"
550
- name: axVirtualServerStatBytesOut
551
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.6
552
chart_meta:
553
+ family: 'LoadBalancer/VirtualServer/Traffic/Out'
554
description: The number of bytes sent from server to client
543
- family: VirtualServer/Traffic/Out
555
unit: "By/s"
556
- name: axVirtualServerStatPersistConns
557
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.7
558
chart_meta:
559
+ family: 'LoadBalancer/VirtualServer/Connection/Persistent'
560
description: The persistent connections from client side
549
- family: VirtualServer/Connection/Persistent
561
unit: "{connection}"
562
- name: axVirtualServerStatTotConns
563
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.8
564
chart_meta:
565
+ family: 'LoadBalancer/VirtualServer/Connection/Total'
566
description: The total connections from client side
555
- family: VirtualServer/Connection/Total
567
unit: "{connection}/s"
568
- name: axVirtualServerStatCurConns
569
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.9
570
chart_meta:
571
+ family: 'LoadBalancer/VirtualServer/Connection/Current'
572
description: The current connections from client side
561
- family: VirtualServer/Connection/Current
573
unit: "{connection}"
574
- name: axVirtualServerStatTotalL7Reqs
575
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.12
576
chart_meta:
577
+ family: 'LoadBalancer/VirtualServer/Request/L7/Total'
578
description: The total number of L7 requests if applicable
567
- family: VirtualServer/Request/L7/Total
579
unit: "{request}/s"
580
- name: axVirtualServerStatTotalCurrL7Reqs
581
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.13
582
chart_meta:
583
+ family: 'LoadBalancer/VirtualServer/Request/L7/Current'
584
description: The number of current L7 requests if applicable
573
- family: VirtualServer/Request/L7/Current
585
unit: "{request}"
586
- name: axVirtualServerStatTotalSuccL7Reqs
587
OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.14
588
chart_meta:
589
+ family: 'LoadBalancer/VirtualServer/Request/L7/Successful'
590
description: The number of successful L7 requests if applicable
579
- family: VirtualServer/Request/L7/Successful
591
unit: "{request}/s"
592
- OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.10
593
name: axVirtualServerStatStatus
594
chart_meta:
595
+ family: 'LoadBalancer/VirtualServer/Operational/Status'
596
description: Virtual server status
585
- family: VirtualServer/Operational/Status
597
unit: "{status}"
598
mapping:
599
1: up
@@ -606,14 +617,14 @@ metrics:
617
- name: axVirtualServerPortStatCurConns
618
OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.12
619
chart_meta:
620
+ family: 'LoadBalancer/VirtualServer/ServicePort/Connection/Current'
621
description: Current connections from client side
610
- family: VirtualServer/ServicePort/Connection/Current
622
unit: "{connection}"
623
- OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.13
624
name: axVirtualServerStatPortDisplayStatus
625
chart_meta:
626
+ family: 'LoadBalancer/VirtualServer/ServicePort/Status'
627
description: Virtual server port display status
616
- family: VirtualServer/ServicePort/Status
628
unit: "{status}"
629
mapping:
630
0: disabled
@@ -623,8 +634,8 @@ metrics:
634
- OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.5
635
name: axVirtualServerStatPortStatus
636
chart_meta:
637
+ family: 'LoadBalancer/VirtualServer/ServicePort/Operational/Status'
638
description: Virtual server port status
627
- family: VirtualServer/ServicePort/Operational/Status
639
unit: "{status}"
640
mapping:
641
1: up
@@ -663,14 +674,3 @@ metrics:
674
name: axVirtualServerPortStatName
675
OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.4
676
tag: ax_virtual_server_port_stat_name
666
-
667
-metric_tags:
668
- - OID: 1.3.6.1.4.1.22610.2.4.1.6.2.0
669
- symbol: axSysSerialNumber
670
- tag: ax_sys_serial_number
671
- - OID: 1.3.6.1.4.1.22610.2.4.1.6.3.0
672
- symbol: axSysFirmwareVersion
673
- tag: ax_sys_firmware_version
674
- - OID: 1.3.6.1.4.1.22610.2.4.1.6.4.0
675
- symbol: axSysAFleXEngineVersion
676
- tag: ax_sys_a_fle_x_engine_version
src/go/plugin/go.d/config/go.d/snmp.profiles/default/alcatel-lucent-ent.yaml
+19
-19
@@ -20,8 +20,8 @@ metrics:
20
- name: healthModuleCpuLatest
21
OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.11
22
chart_meta:
23
+ family: 'System/CPU/Usage'
24
description: Cpu usage percentage
24
- family: CPU/Usage
25
unit: "%"
26
metric_tags:
27
- tag: cpu_index
@@ -39,8 +39,8 @@ metrics:
39
- name: healthModuleMemoryLatest
40
OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.8
41
chart_meta:
42
+ family: 'System/Memory/Usage'
43
description: Memory usage percentage
43
- family: Memory/Usage
44
unit: "%"
45
metric_tags:
46
- tag: mem_index
@@ -58,8 +58,8 @@ metrics:
58
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.1
59
name: chasEntPhysAdminStatus
60
chart_meta:
61
+ family: 'Hardware/Entity/Admin/Status'
62
description: The administrative status of the physical entity
62
- family: Hardware/Admin/Status
63
unit: "{status}"
64
mapping:
65
1: unknown
@@ -76,8 +76,8 @@ metrics:
76
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.2
77
name: chasEntPhysOperStatus
78
chart_meta:
79
+ family: 'Hardware/Entity/Operational/Status'
80
description: The operational status of the physical entity
80
- family: Hardware/Operational/Status
81
unit: "{status}"
82
mapping:
83
1: up
@@ -93,8 +93,8 @@ metrics:
93
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.6
94
name: chasEntPhysLedStatusOk1
95
chart_meta:
96
+ family: 'Hardware/LED/OK1/Status'
97
description: Physical entity ok1 LED status
97
- family: Hardware/LED/OK1/Status
98
unit: "{status}"
99
mapping:
100
0: not_applicable
@@ -106,8 +106,8 @@ metrics:
106
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.7
107
name: chasEntPhysLedStatusOk2
108
chart_meta:
109
+ family: 'Hardware/LED/OK2/Status'
110
description: Physical entity ok2 LED status
110
- family: Hardware/LED/OK2/Status
111
unit: "{status}"
112
mapping:
113
0: not_applicable
@@ -119,8 +119,8 @@ metrics:
119
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.8
120
name: chasEntPhysLedStatusPrimaryCMM
121
chart_meta:
122
+ family: 'Hardware/LED/CMMPrimary/Status'
123
description: Physical entity primary CMM LED status
123
- family: Hardware/LED/CMMPrimary/Status
124
unit: "{status}"
125
mapping:
126
0: not_applicable
@@ -132,8 +132,8 @@ metrics:
132
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.9
133
name: chasEntPhysLedStatusSecondaryCMM
134
chart_meta:
135
+ family: 'Hardware/LED/CMMSecondary/Status'
136
description: Physical entity secondary CMM LED status
136
- family: Hardware/LED/CMMSecondary/Status
137
unit: "{status}"
138
mapping:
139
0: not_applicable
@@ -145,8 +145,8 @@ metrics:
145
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.10
146
name: chasEntPhysLedStatusTemperature
147
chart_meta:
148
+ family: 'Hardware/LED/Temperature/Status'
149
description: Physical entity temperature LED status
149
- family: Hardware/LED/Temperature/Status
150
unit: "{status}"
151
mapping:
152
0: not_applicable
@@ -158,8 +158,8 @@ metrics:
158
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.11
159
name: chasEntPhysLedStatusFan
160
chart_meta:
161
+ family: 'Hardware/LED/Fan/Status'
162
description: Physical entity fan LED status
162
- family: Hardware/LED/Fan/Status
163
unit: "{status}"
164
mapping:
165
0: not_applicable
@@ -171,8 +171,8 @@ metrics:
171
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.12
172
name: chasEntPhysLedStatusBackupPS
173
chart_meta:
174
+ family: 'Hardware/LED/PowerSupply/Backup/Status'
175
description: Physical entity backup power supply LED status
175
- family: Hardware/LED/PSUBackup/Status
176
unit: "{status}"
177
mapping:
178
0: not_applicable
@@ -184,8 +184,8 @@ metrics:
184
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.13
185
name: chasEntPhysLedStatusInternalPS
186
chart_meta:
187
+ family: 'Hardware/LED/PowerSupply/Internal/Status'
188
description: Physical entity internal power supply LED status
188
- family: Hardware/LED/PSUInternal/Status
189
unit: "{status}"
190
mapping:
191
0: not_applicable
@@ -197,8 +197,8 @@ metrics:
197
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.16
198
name: chasEntPhysLedStatusPS
199
chart_meta:
200
+ family: 'Hardware/LED/PowerSupply/Status'
201
description: Physical entity power supply LED status
201
- family: Hardware/LED/PSU/Status
202
unit: "{status}"
203
mapping:
204
0: not_applicable
@@ -210,8 +210,8 @@ metrics:
210
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.14
211
name: chasEntPhysLedStatusControl
212
chart_meta:
213
+ family: 'Hardware/LED/Control/Status'
214
description: Physical entity control LED status
214
- family: Hardware/LED/Control/Status
215
unit: "{status}"
216
mapping:
217
0: not_applicable
@@ -223,8 +223,8 @@ metrics:
223
- OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.15
224
name: chasEntPhysLedStatusFabric
225
chart_meta:
226
+ family: 'Hardware/LED/Fabric/Status'
227
description: Physical entity fabric LED status
227
- family: Hardware/LED/Fabric/Status
228
unit: "{status}"
229
mapping:
230
0: not_applicable
@@ -283,14 +283,14 @@ metrics:
283
- name: chasEntTempCurrent
284
OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2.1.1
285
chart_meta:
286
+ family: 'Hardware/Temperature/Value'
287
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
291
chart_meta:
292
+ family: 'Hardware/Temperature/Status'
293
description: Status of the temperature sensor
293
- family: Hardware/Temperature/Status
294
unit: "{status}"
295
mapping:
296
1: unknown
@@ -349,8 +349,8 @@ metrics:
349
- name: alaChasEntPhysFanSpeed
350
OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.11.1.4
351
chart_meta:
352
+ family: 'Hardware/Fan/Speed'
353
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
@@ -369,8 +369,8 @@ metrics:
369
- OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4.1.10
370
name: alaChasBpsPowerSupplyOperStatus
371
chart_meta:
372
+ family: 'Hardware/PowerSupply/Operational/Status'
373
description: Operational status of the power supply
373
- family: PowerSupply/Operational/Status
374
unit: "{status}"
375
mapping:
376
1: up
src/go/plugin/go.d/config/go.d/snmp.profiles/default/alcatel-lucent-omni-access-wlc.yaml
+28
-27
@@ -1,6 +1,9 @@
1
extends:
2
- alcatel-lucent.yaml
3
4
+sysobjectid:
5
+ - 1.3.6.1.4.1.6486.800.1.1.2.2.2.*
6
+
7
metadata:
8
device:
9
fields:
@@ -9,8 +12,22 @@ metadata:
12
vendor:
13
value: Alcatel-Lucent
14
12
-sysobjectid:
13
- - 1.3.6.1.4.1.6486.800.1.1.2.2.2.*
15
+metric_tags:
16
+ - tag: wlsx_model_name
17
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
18
+ symbol: wlsxModelName
19
+ - tag: wlsx_switch_role
20
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
21
+ symbol: wlsxSwitchRole
22
+ mapping:
23
+ 1: master
24
+ 2: local
25
+ 3: standbymaster
26
+ 4: branch
27
+ 5: md
28
+ - tag: wlsx_switch_license_serial_number
29
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
30
+ symbol: wlsxSwitchLicenseSerialNumber
31
32
metrics:
33
- MIB: WLSX-SWITCH-MIB
@@ -21,8 +38,8 @@ metrics:
38
- name: sysXProcessorLoad
39
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3
40
chart_meta:
41
+ family: 'System/CPU/Usage'
42
description: The average, over the last minute, of the percentage of time that this processor was not idle
25
- family: CPU/Usage
43
unit: "%"
44
metric_tags:
45
- tag: cpu_index
@@ -31,6 +48,7 @@ metrics:
48
symbol:
49
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9.1.2
50
name: sysXProcessorDescr
51
+
52
- MIB: WLSX-SWITCH-MIB
53
table:
54
name: wlsxSysXStorageTable
@@ -39,15 +57,15 @@ metrics:
57
- name: sysXStorageSize
58
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
59
chart_meta:
60
+ family: 'System/Storage/Filesystem/Size'
61
description: Size of the storage filesystem
43
- family: Storage/Filesystem/Size
62
unit: "By"
63
scale_factor: 1048576
64
- name: sysXStorageUsed
65
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
66
chart_meta:
67
+ family: 'System/Storage/Filesystem/Used'
68
description: Storage filesystem usage
50
- family: Storage/Filesystem/Used
69
unit: "By"
70
scale_factor: 1048576
71
metric_tags:
@@ -71,22 +89,22 @@ metrics:
89
- name: sysXMemorySize
90
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.2
91
chart_meta:
92
+ family: 'System/Memory/Total'
93
description: Total memory in KB
75
- family: Memory/Total
94
unit: "By"
95
scale_factor: 1024
96
- name: sysXMemoryUsed
97
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.3
98
chart_meta:
99
+ family: 'System/Memory/Used'
100
description: Used memory in KB
82
- family: Memory/Used
101
unit: "By"
102
scale_factor: 1024
103
- name: sysXMemoryFree
104
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.4
105
chart_meta:
106
+ family: 'System/Memory/Free'
107
description: Free memory in KB
89
- family: Memory/Free
108
unit: "By"
109
scale_factor: 1024
110
metric_tags:
@@ -98,8 +116,8 @@ metrics:
116
name: wlsxSwitchTotalNumAccessPoints
117
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.1.0
118
chart_meta:
119
+ family: 'Network/Wireless/AccessPoint/Connected'
120
description: Total number of access points connected to this switch
102
- family: Wireless/AccessPoint/Connected
121
unit: "{ap}"
122
123
- MIB: WLSX-SWITCH-MIB
@@ -107,23 +125,6 @@ metrics:
125
name: wlsxSwitchTotalNumStationsAssociated
126
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.2.0
127
chart_meta:
128
+ family: 'Network/Wireless/Station/Associated'
129
description: Total number of stations associated to this switch.
111
- family: Wireless/Station/Associated
130
unit: "{station}"
113
-
114
-metric_tags:
115
- - tag: wlsx_model_name
116
- OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
117
- symbol: wlsxModelName
118
- - tag: wlsx_switch_role
119
- OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
120
- symbol: wlsxSwitchRole
121
- mapping:
122
- 1: master
123
- 2: local
124
- 3: standbymaster
125
- 4: branch
126
- 5: md
127
- - tag: wlsx_switch_license_serial_number
128
- OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
129
- symbol: wlsxSwitchLicenseSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc-netbotz.yaml
+17
-17
@@ -22,7 +22,7 @@ metrics:
22
name: enclosureStatus
23
chart_meta:
24
description: The status of the enclosure
25
- family: Enclosure/Connection/Status
25
+ family: 'Hardware/Enclosure/Status'
26
unit: "{status}"
27
mapping:
28
0: disconnected
@@ -32,7 +32,7 @@ metrics:
32
name: enclosureErrorStatus
33
chart_meta:
34
description: The error status of the enclosure
35
- family: Enclosure/Error/Status
35
+ family: 'Hardware/Enclosure/Error/Status'
36
unit: "{status}"
37
mapping:
38
0: normal
@@ -64,7 +64,7 @@ metrics:
64
name: dinPortStatus
65
chart_meta:
66
description: The error status of the sensor
67
- family: Port/DIN/Status
67
+ family: 'Hardware/Port/DIN/Status'
68
unit: "{status}"
69
mapping:
70
0: disconnected
@@ -88,7 +88,7 @@ metrics:
88
name: otherPortStatus
89
chart_meta:
90
description: The error status of the sensor
91
- family: Port/Other/Status
91
+ family: 'Hardware/Port/Other/Status'
92
unit: "{status}"
93
mapping:
94
0: disconnected
@@ -120,19 +120,19 @@ metrics:
120
name: tempSensorValueInt
121
chart_meta:
122
description: The temperature measured by the sensor
123
- family: Sensor/Temperature/Value
123
+ family: 'Hardware/Sensor/Temperature/Value'
124
unit: "Cel"
125
- OID: 1.3.6.1.4.1.5528.100.4.1.1.1.9
126
name: tempSensorValueIntF
127
chart_meta:
128
description: The temperature measured by the sensor
129
- family: Sensor/Temperature/Value
129
+ family: 'Hardware/Sensor/Temperature/Value'
130
unit: "degF"
131
- OID: 1.3.6.1.4.1.5528.100.4.1.1.1.3
132
name: tempSensorErrorStatus
133
chart_meta:
134
description: The error status of the sensor
135
- family: Sensor/Temperature/Status
135
+ family: 'Hardware/Sensor/Temperature/Status'
136
unit: "{status}"
137
mapping:
138
0: normal
@@ -167,13 +167,13 @@ metrics:
167
name: humiSensorValueInt
168
chart_meta:
169
description: The relative humidity measured by the sensor
170
- family: Sensor/Humidity/Value
170
+ family: 'Hardware/Sensor/Humidity/Value'
171
unit: "%"
172
- OID: 1.3.6.1.4.1.5528.100.4.1.2.1.3
173
name: humiSensorErrorStatus
174
chart_meta:
175
description: The error status of the sensor
176
- family: Sensor/Humidity/Status
176
+ family: 'Hardware/Sensor/Humidity/Status'
177
unit: "{status}"
178
mapping:
179
0: normal
@@ -208,19 +208,19 @@ metrics:
208
name: dewPointSensorValueInt
209
chart_meta:
210
description: The dew point measured by the sensor
211
- family: Sensor/DewPoint/Value
211
+ family: 'Hardware/Sensor/DewPoint/Value'
212
unit: "Cel"
213
- OID: 1.3.6.1.4.1.5528.100.4.1.3.1.9
214
name: dewPointSensorValueIntF
215
chart_meta:
216
description: The dew point measured by the sensor
217
- family: Sensor/DewPoint/Value
217
+ family: 'Hardware/Sensor/DewPoint/Value'
218
unit: "degF"
219
- OID: 1.3.6.1.4.1.5528.100.4.1.3.1.3
220
name: dewPointSensorErrorStatus
221
chart_meta:
222
description: The error status of the sensor
223
- family: Sensor/DewPoint/Status
223
+ family: 'Hardware/Sensor/DewPoint/Status'
224
unit: "{status}"
225
mapping:
226
0: normal
@@ -308,7 +308,7 @@ metrics:
308
name: doorSwitchSensorValue
309
chart_meta:
310
description: Whether the door is open or closed
311
- family: Sensor/DoorSwitch/Position
311
+ family: 'Hardware/Sensor/DoorSwitch/Position'
312
unit: "{status}"
313
mapping:
314
-1: "null"
@@ -318,7 +318,7 @@ metrics:
318
name: doorSwitchSensorErrorStatus
319
chart_meta:
320
description: The error status of the sensor
321
- family: Sensor/DoorSwitch/Status
321
+ family: 'Hardware/Sensor/DoorSwitch/Status'
322
unit: "{status}"
323
mapping:
324
0: normal
@@ -357,7 +357,7 @@ metrics:
357
name: otherStateSensorErrorStatus
358
chart_meta:
359
description: The error status of the sensor
360
- family: Sensor/OtherState/Status
360
+ family: 'Hardware/Sensor/OtherState/Status'
361
unit: "{status}"
362
mapping:
363
0: normal
@@ -392,7 +392,7 @@ metrics:
392
name: errorCondSeverity
393
chart_meta:
394
description: The relative severity of the error condition
395
- family: Error/Severity
395
+ family: 'System/Alert/Severity'
396
unit: "{status}"
397
mapping:
398
0: normal
@@ -405,7 +405,7 @@ metrics:
405
name: errorCondResolved
406
chart_meta:
407
description: Whether the error condition was resolved
408
- family: Error/Resolution/Status
408
+ family: 'System/Alert/Resolution/Status'
409
unit: "{status}"
410
mapping:
411
0: no
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc-pdu.yaml
+55
-50
@@ -11,6 +11,23 @@ metadata:
11
vendor:
12
value: APC
13
14
+metric_tags:
15
+ - tag: powernet_r_pdu_ident_name
16
+ OID: 1.3.6.1.4.1.318.1.1.12.1.1.0
17
+ symbol: rPDUIdentName
18
+ - tag: powernet_r_pdu_ident_hardware_rev
19
+ OID: 1.3.6.1.4.1.318.1.1.12.1.2.0
20
+ symbol: rPDUIdentHardwareRev
21
+ - tag: powernet_r_pdu_ident_firmware_rev
22
+ OID: 1.3.6.1.4.1.318.1.1.12.1.3.0
23
+ symbol: rPDUIdentFirmwareRev
24
+ - tag: powernet_r_pdu_ident_model_number
25
+ OID: 1.3.6.1.4.1.318.1.1.12.1.5.0
26
+ symbol: rPDUIdentModelNumber
27
+ - tag: powernet_r_pdu_ident_serial_number
28
+ OID: 1.3.6.1.4.1.318.1.1.12.1.6.0
29
+ symbol: rPDUIdentSerialNumber
30
+
31
metrics:
32
- MIB: PowerNet-MIB
33
table:
@@ -21,14 +38,14 @@ metrics:
38
name: rPDULoadStatusLoad
39
chart_meta:
40
description: Phase/bank load
24
- family: PhaseBank/Load/Current
41
+ family: 'Hardware/PhaseBank/Load/Current'
42
unit: "A"
43
scale_factor: 0.1
44
- OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.3
45
name: rPDULoadStatusLoadState
46
chart_meta:
47
description: Phase/bank load state
31
- family: PhaseBank/Load/Status
48
+ family: 'Hardware/PhaseBank/Load/Status'
49
unit: "{status}"
50
mapping:
51
1: phase_load_normal
@@ -50,14 +67,14 @@ metrics:
67
name: rPDUOutletStatusLoad
68
chart_meta:
69
description: Outlet load for an Outlet Monitored Rack PDU
53
- family: Outlet/Load/Current
70
+ family: 'Hardware/Outlet/Load/Current'
71
unit: "A"
72
scale_factor: 0.1
73
- OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.4
74
name: rPDUOutletStatusOutletState
75
chart_meta:
76
description: Outlet state
60
- family: Outlet/Power/Status
77
+ family: 'Hardware/Outlet/Power/Status'
78
unit: "{status}"
79
mapping:
80
1: outlet_status_on
@@ -72,32 +89,37 @@ metrics:
89
OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.2
90
name: rPDUOutletStatusOutletName
91
75
- # - MIB: PowerNet-MIB
76
- # symbol:
77
- # OID: 1.3.6.1.4.1.318.1.1.12.4.1.1.0
78
- # name: rPDUPowerSupply1Status
79
- # mapping:
80
- # 1: power_supply_one_ok
81
- # 2: power_supply_one_failed
82
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
83
- # comment in profile until it's fixed)
84
- # - MIB: PowerNet-MIB
85
- # symbol:
86
- # OID: 1.3.6.1.4.1.318.1.1.12.4.1.2.0
87
- # name: rPDUPowerSupply2Status
88
- # mapping:
89
- # 1: power_supply_two_ok
90
- # 2: power_supply_two_failed
91
- # 3: power_supply_two_not_present
92
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
93
- # comment in profile until it's fixed)
92
+ - MIB: PowerNet-MIB
93
+ symbol:
94
+ OID: 1.3.6.1.4.1.318.1.1.12.4.1.1.0
95
+ name: rPDUPowerSupply1Status
96
+ chart_meta:
97
+ family: 'Hardware/PowerSupply/1/Status'
98
+ description: "Status of power supply 1"
99
+ unit: "{status}"
100
+ mapping:
101
+ 1: power_supply_one_ok
102
+ 2: power_supply_one_failed
103
+ - MIB: PowerNet-MIB
104
+ symbol:
105
+ OID: 1.3.6.1.4.1.318.1.1.12.4.1.2.0
106
+ name: rPDUPowerSupply2Status
107
+ chart_meta:
108
+ family: 'Hardware/PowerSupply/2/Status'
109
+ description: "Status of power supply 2"
110
+ unit: "{status}"
111
+ mapping:
112
+ 1: power_supply_two_ok
113
+ 2: power_supply_two_failed
114
+ 3: power_supply_two_not_present
115
+
116
- MIB: PowerNet-MIB
117
symbol:
118
OID: 1.3.6.1.4.1.318.1.1.12.4.1.3.0
119
name: rPDUPowerSupplyAlarm
120
chart_meta:
121
description: Alarm status of the PDU power supply
100
- family: PowerSupply/Alarm/Status
122
+ family: 'Hardware/PowerSupply/Alarm/Status'
123
unit: "{status}"
124
mapping:
125
1: allAvailablePowerSuppliesOK
@@ -113,7 +135,7 @@ metrics:
135
name: rPDUStatusBankState
136
chart_meta:
137
description: Bank load state
116
- family: Bank/Load/Status
138
+ family: 'Hardware/Bank/Load/Status'
139
unit: "{status}"
140
mapping:
141
1: bank_load_normal
@@ -139,7 +161,7 @@ metrics:
161
name: rPDUStatusPhaseState
162
chart_meta:
163
description: Phase Load state
142
- family: Phase/Load/Status
164
+ family: 'Hardware/Phase/Load/Status'
165
unit: "{status}"
166
mapping:
167
1: phase_load_normal
@@ -165,7 +187,7 @@ metrics:
187
name: rPDUStatusOutletState
188
chart_meta:
189
description: Outlet Load state
168
- family: Outlet/Load/Status
190
+ family: 'Hardware/Outlet/Load/Status'
191
unit: "{status}"
192
mapping:
193
1: outlet_load_normal
@@ -183,32 +205,32 @@ metrics:
205
name: rPDUStatusOutletNumber
206
- MIB: PowerNet-MIB
207
table:
186
- OID: 1.3.6.1.4.1.318.1.1.26.10.2.2
208
+ OID: 1.3.6.1.4.1.318.1.1.26.10.2.21
209
name: rPDU2SensorTempHumidityStatusTable
210
symbols:
211
- OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.7
212
name: rPDU2SensorTempHumidityStatusTempF
213
chart_meta:
214
description: Temperature in degrees Fahrenheit
193
- family: Sensor/Temperature/Value
215
+ family: 'Hardware/Sensor/Temperature/Value'
216
unit: "degF"
217
- OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.8
218
name: rPDU2SensorTempHumidityStatusTempC
219
chart_meta:
220
description: Temperature in degrees Celsius
199
- family: Sensor/Temperature/Value
221
+ family: 'Hardware/Sensor/Temperature/Value'
222
unit: "Cel"
223
- OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.10
224
name: rPDU2SensorTempHumidityStatusRelativeHumidity
225
chart_meta:
226
description: Relative humidity percentage
205
- family: Sensor/Humidity/Value
227
+ family: 'Hardware/Sensor/Humidity/Value'
228
unit: "%"
229
- OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.9
230
name: rPDU2SensorTempHumidityStatusTempStatus
231
chart_meta:
232
description: Current state of the temperature probe
211
- family: Sensor/Temperature/Status
233
+ family: 'Hardware/Sensor/Temperature/Status'
234
unit: "{status}"
235
mapping:
236
1: not_present
@@ -221,7 +243,7 @@ metrics:
243
name: rPDU2SensorTempHumidityStatusHumidityStatus
244
chart_meta:
245
description: Current state of the humidity probe
224
- family: Sensor/Humidity/Status
246
+ family: 'Hardware/Sensor/Humidity/Status'
247
unit: "{status}"
248
mapping:
249
1: not_present
@@ -244,20 +266,3 @@ metrics:
266
2: temperature_humidity
267
3: comms_lost
268
4: not_installed
247
-
248
-metric_tags:
249
- - tag: powernet_r_pdu_ident_name
250
- OID: 1.3.6.1.4.1.318.1.1.12.1.1.0
251
- symbol: rPDUIdentName
252
- - tag: powernet_r_pdu_ident_hardware_rev
253
- OID: 1.3.6.1.4.1.318.1.1.12.1.2.0
254
- symbol: rPDUIdentHardwareRev
255
- - tag: powernet_r_pdu_ident_firmware_rev
256
- OID: 1.3.6.1.4.1.318.1.1.12.1.3.0
257
- symbol: rPDUIdentFirmwareRev
258
- - tag: powernet_r_pdu_ident_model_number
259
- OID: 1.3.6.1.4.1.318.1.1.12.1.5.0
260
- symbol: rPDUIdentModelNumber
261
- - tag: powernet_r_pdu_ident_serial_number
262
- OID: 1.3.6.1.4.1.318.1.1.12.1.6.0
263
- symbol: rPDUIdentSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles/default/apc-ups.yaml
+43
-42
@@ -19,6 +19,25 @@ metadata:
19
vendor:
20
value: "APC"
21
22
+metric_tags:
23
+ - tag: model
24
+ OID: 1.3.6.1.4.1.318.1.1.1.1.1.1.0 # The UPS model name (e.g. 'APC Smart-UPS 600', 'Smart-UPS RT 6000 RM XL').
25
+ symbol: upsBasicIdentModel
26
+ - tag: serial_num
27
+ OID: 1.3.6.1.4.1.318.1.1.1.1.2.3.0
28
+ symbol: upsAdvIdentSerialNumber # An 8-character string identifying the serial number of
29
+ # the UPS internal microprocessor. This number is set at
30
+ # the factory. NOTE: This number does NOT correspond to
31
+ # the serial number on the rear of the UPS.
32
+ - tag: firmware_version
33
+ OID: 1.3.6.1.4.1.318.1.1.1.1.2.1.0
34
+ symbol: upsAdvIdentFirmwareRevision # The firmware revision of the UPS system's microprocessor.
35
+ # e.g. 452.17.W
36
+ - OID: 1.3.6.1.4.1.318.1.1.1.1.1.2.0 # An 8 byte ID string identifying the UPS. This object can be set by the administrator.
37
+ # e.g. UP001
38
+ symbol: upsBasicIdentName
39
+ tag: ups_name
40
+
41
metrics:
42
- MIB: PowerNet-MIB
43
symbol:
@@ -26,7 +45,7 @@ metrics:
45
name: upsAdvBatteryNumOfBattPacks
46
chart_meta:
47
description: The number of external battery packs connected to the UPS
29
- family: Battery/Pack/Total
48
+ family: 'Hardware/Battery/Pack/Count'
49
unit: "{pack}"
50
- MIB: POWERNET-MIB
51
symbol:
@@ -34,7 +53,7 @@ metrics:
53
name: upsAdvBatteryNumOfBadBattPacks
54
chart_meta:
55
description: The number of external battery packs connected to the UPS that are defective
37
- family: Battery/Pack/Defective
56
+ family: 'Hardware/Battery/Pack/Defective/Count'
57
unit: "{pack}"
58
- MIB: PowerNet-MIB
59
symbol:
@@ -42,7 +61,7 @@ metrics:
61
name: upsAdvBatteryReplaceIndicator
62
chart_meta:
63
description: Indicates whether the UPS batteries need replacing
45
- family: Battery/Replace/Status
64
+ family: 'Hardware/Battery/Replace/Status'
65
unit: "{status}"
66
mapping:
67
1: noBatteryNeedsReplacing
@@ -53,7 +72,7 @@ metrics:
72
name: upsAdvBatteryRunTimeRemaining
73
chart_meta:
74
description: The UPS battery run time remaining before battery exhaustion
56
- family: Battery/Runtime/Remaining
75
+ family: 'System/Battery/Runtime/Remaining'
76
unit: "s"
77
- MIB: PowerNet-MIB
78
symbol:
@@ -61,7 +80,7 @@ metrics:
80
name: upsAdvBatteryTemperature
81
chart_meta:
82
description: The current internal UPS temperature
64
- family: Battery/Temperature/Value
83
+ family: 'Hardware/Battery/Temperature/Value'
84
unit: "Cel"
85
- MIB: PowerNet-MIB
86
symbol:
@@ -69,7 +88,7 @@ metrics:
88
name: upsAdvBatteryCapacity
89
chart_meta:
90
description: The remaining battery capacity
72
- family: Battery/Capacity/Remaining
91
+ family: 'System/Battery/Capacity/Remaining'
92
unit: "%"
93
- MIB: PowerNet-MIB
94
symbol:
@@ -77,7 +96,7 @@ metrics:
96
name: upsHighPrecExtdBatteryTemperature
97
chart_meta:
98
description: The current internal UPS temperature
80
- family: Battery/Temperature/Value
99
+ family: 'Hardware/Battery/Temperature/Value'
100
unit: "Cel"
101
scale_factor: 0.1
102
- MIB: PowerNet-MIB
@@ -86,7 +105,7 @@ metrics:
105
name: upsAdvInputLineVoltage
106
chart_meta:
107
description: The current utility line voltage
89
- family: Input/Voltage/Line
108
+ family: 'PowerFlow/Input/Voltage/Line'
109
unit: "VAC"
110
- MIB: PowerNet-MIB
111
symbol:
@@ -94,7 +113,7 @@ metrics:
113
name: upsHighPrecInputLineVoltage
114
chart_meta:
115
description: The current utility line voltage
97
- family: Input/Voltage/Line
116
+ family: 'PowerFlow/Input/Voltage/Line'
117
unit: "VAC"
118
scale_factor: 0.1
119
- MIB: PowerNet-MIB
@@ -103,7 +122,7 @@ metrics:
122
name: upsAdvInputFrequency
123
chart_meta:
124
description: The current input frequency to the UPS system
106
- family: Input/Frequency/Value
125
+ family: 'PowerFlow/Input/Frequency/Value'
126
unit: "Hz"
127
- MIB: PowerNet-MIB
128
symbol:
@@ -111,7 +130,7 @@ metrics:
130
name: upsHighPrecInputFrequency
131
chart_meta:
132
description: The current input frequency to the UPS system
114
- family: Input/Frequency/Value
133
+ family: 'PowerFlow/Input/Frequency/Value'
134
unit: "Hz"
135
scale_factor: 0.1
136
@@ -121,7 +140,7 @@ metrics:
140
name: upsHighPrecOutputCurrent
141
chart_meta:
142
description: The current drawn by the load on the UPS
124
- family: Output/Current/Total
143
+ family: 'PowerFlow/Output/Current/Total'
144
unit: "A"
145
scale_factor: 0.1
146
@@ -131,7 +150,7 @@ metrics:
150
name: upsAdvInputLineFailCause
151
chart_meta:
152
description: The reason for the occurrence of the last transfer to UPS battery power
134
- family: Input/Failure/Cause
153
+ family: 'PowerFlow/Input/Failure/Cause'
154
unit: "{status}"
155
mapping:
156
1: noTransfer
@@ -150,7 +169,7 @@ metrics:
169
name: upsAdvOutputVoltage
170
chart_meta:
171
description: The output voltage of the UPS system
153
- family: Output/Voltage/Total
172
+ family: 'PowerFlow/Output/Voltage/Total'
173
unit: "VAC"
174
- MIB: PowerNet-MIB
175
symbol:
@@ -158,7 +177,7 @@ metrics:
177
name: upsAdvOutputFrequency
178
chart_meta:
179
description: The current output frequency of the UPS system
161
- family: Output/Frequency/Value
180
+ family: 'PowerFlow/Output/Frequency/Value'
181
unit: "Hz"
182
- MIB: PowerNet-MIB
183
symbol:
@@ -166,7 +185,7 @@ metrics:
185
name: upsAdvOutputLoad
186
chart_meta:
187
description: The current UPS load expressed in percent of rated capacity
169
- family: Output/Load/Percentage
188
+ family: 'PowerFlow/Output/Load/Percentage'
189
unit: "%"
190
- MIB: PowerNet-MIB
191
symbol:
@@ -174,7 +193,7 @@ metrics:
193
name: upsAdvOutputCurrent
194
chart_meta:
195
description: The current drawn by the load on the UPS
177
- family: Output/Current/Total
196
+ family: 'PowerFlow/Output/Current/Total'
197
unit: "A"
198
- MIB: PowerNet-MIB
199
symbol:
@@ -182,7 +201,7 @@ metrics:
201
name: upsAdvOutputActivePower
202
chart_meta:
203
description: The total output active power of the UPS system
185
- family: Output/Power/Active
204
+ family: 'PowerFlow/Output/Power/Active'
205
unit: "W"
206
- MIB: PowerNet-MIB
207
symbol:
@@ -190,7 +209,7 @@ metrics:
209
name: upsAdvOutputApparentPower
210
chart_meta:
211
description: The total output apparent power of all phases of the UPS system
193
- family: Output/Power/Apparent
212
+ family: 'PowerFlow/Output/Power/Apparent'
213
unit: "VA"
214
- MIB: PowerNet-MIB
215
symbol:
@@ -198,7 +217,7 @@ metrics:
217
name: upsAdvOutputEnergyUsage
218
chart_meta:
219
description: The output energy usage of the UPS
201
- family: Output/Energy/Used
220
+ family: 'PowerFlow/Output/Energy/Used'
221
unit: "kWh"
222
scale_factor: 0.01
223
- MIB: PowerNet-MIB
@@ -207,7 +226,7 @@ metrics:
226
name: upsBasicBatteryTimeOnBattery
227
chart_meta:
228
description: The elapsed time since the UPS has switched to battery power
210
- family: Battery/Runtime/Elapsed
229
+ family: 'System/Battery/Runtime/Elapsed'
230
unit: "s"
231
- MIB: PowerNet-MIB
232
symbol:
@@ -215,7 +234,7 @@ metrics:
234
name: upsAdvTestDiagnosticsResults
235
chart_meta:
236
description: The results of the last UPS diagnostics test performed
218
- family: Test/Diagnostic/Status
237
+ family: 'System/Test/Diagnostic/Status'
238
unit: "{status}"
239
mapping:
240
1: ok
@@ -303,7 +322,7 @@ metrics:
322
name: upsOutletGroupStatusGroupState
323
chart_meta:
324
description: Outlet group state
306
- family: OutletGroup/Status
325
+ family: 'Hardware/OutletGroup/Status'
326
unit: "{status}"
327
mapping:
328
1: ups_outlet_group_status_on
@@ -320,24 +339,6 @@ metrics:
339
name: uioSensorStatusTemperatureDegC
340
chart_meta:
341
description: The sensor's current temperature reading
323
- family: Sensor/Temperature/Value
342
+ family: 'Hardware/Sensor/Temperature/Value'
343
unit: "Cel"
344
scale_factor: 0.1
326
-metric_tags:
327
- - tag: model
328
- OID: 1.3.6.1.4.1.318.1.1.1.1.1.1.0 # The UPS model name (e.g. 'APC Smart-UPS 600', 'Smart-UPS RT 6000 RM XL').
329
- symbol: upsBasicIdentModel
330
- - tag: serial_num
331
- OID: 1.3.6.1.4.1.318.1.1.1.1.2.3.0
332
- symbol: upsAdvIdentSerialNumber # An 8-character string identifying the serial number of
333
- # the UPS internal microprocessor. This number is set at
334
- # the factory. NOTE: This number does NOT correspond to
335
- # the serial number on the rear of the UPS.
336
- - tag: firmware_version
337
- OID: 1.3.6.1.4.1.318.1.1.1.1.2.1.0
338
- symbol: upsAdvIdentFirmwareRevision # The firmware revision of the UPS system's microprocessor.
339
- # e.g. 452.17.W
340
- - OID: 1.3.6.1.4.1.318.1.1.1.1.1.2.0 # An 8 byte ID string identifying the UPS. This object can be set by the administrator.
341
- # e.g. UP001
342
- symbol: upsBasicIdentName
343
- tag: ups_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/arista-switch.yaml
+12
-41
@@ -164,28 +164,6 @@ sysobjectid:
164
- 1.3.6.1.4.1.30065.1.3011.7280.877.48.972
165
166
metrics:
167
- # - MIB: HOST-RESOURCES-MIB
168
- # symbol:
169
- # name: memory.total
170
- # OID: 1.3.6.1.2.1.25.2.3.1.5.1
171
- # description: "The size of the storage represented by this entry, in units of hrStorageAllocationUnits."
172
- # unit: "By"
173
- # - MIB: HOST-RESOURCES-MIB
174
- # symbol:
175
- # name: memory.used
176
- # OID: 1.3.6.1.2.1.25.2.3.1.6.100
177
- # description: "The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits."
178
- # unit: "By"
179
- # TODO, metrics that have dynamic units are not supported
180
-
181
- - MIB: HOST-RESOURCES-MIB
182
- symbol:
183
- name: cpu.usage
184
- OID: 1.3.6.1.2.1.25.3.3.1.2.1
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: "%"
167
- MIB: ARISTA-BGP4V2-MIB
168
table:
169
name: aristaBgp4V2PeerTable
@@ -195,7 +173,7 @@ metrics:
173
name: aristaBgp4V2PeerAdminStatus
174
chart_meta:
175
description: BGP FSM Status
198
- family: BPG/Peer/Admin/Status
176
+ family: 'Network/Routing/BGP/Peer/Admin/Status'
177
unit: "{status}"
178
mapping:
179
1: halted
@@ -204,7 +182,7 @@ metrics:
182
name: aristaBgp4V2PeerState
183
chart_meta:
184
description: BGP peer connection state
207
- family: BGP/Peer/Connection/Status
185
+ family: 'Network/Routing/BGP/Peer/Status'
186
unit: "{status}"
187
mapping:
188
1: idle
@@ -214,18 +192,10 @@ metrics:
192
5: openconfirm
193
6: established
194
metric_tags:
217
- # - symbol:
218
- # name: aristaBgp4V2PeerLocalPort
219
- # OID: 1.3.6.1.4.1.30065.4.1.1.2.1.6
220
- # tag: arista_bgp4_v2_peer_local_port
195
- tag: arista_bgp4_v2_peer_local_as
196
symbol:
197
name: aristaBgp4V2PeerLocalAs
198
OID: 1.3.6.1.4.1.30065.4.1.1.2.1.7
225
- # - symbol:
226
- # name: aristaBgp4V2PeerRemotePort
227
- # OID: 1.3.6.1.4.1.30065.4.1.1.2.1.9
228
- # tag: arista_bgp4_v2_peer_remote_port
199
- tag: arista_bgp4_v2_peer_remote_as
200
symbol:
201
name: aristaBgp4V2PeerRemoteAs
@@ -251,15 +221,16 @@ metrics:
221
3: ipv4z
222
4: ipv6z
223
16: dns
254
- - tag: _arista_bgp4_v2_peer_description
255
- symbol:
256
- name: aristaBgp4V2PeerDescription
257
- OID: 1.3.6.1.4.1.30065.4.1.1.2.1.14
258
- - tag: _arista_bgp4_v2_peer_local_addr
259
- symbol:
260
- name: aristaBgp4V2PeerLocalAddr
261
- OID: 1.3.6.1.4.1.30065.4.1.1.2.1.3
262
- format: ip_address
224
+ # - tag: _arista_bgp4_v2_peer_description
225
+ # symbol:
226
+ # name: aristaBgp4V2PeerDescription
227
+ # OID: 1.3.6.1.4.1.30065.4.1.1.2.1.14
228
+ # - tag: _arista_bgp4_v2_peer_local_addr
229
+ # symbol:
230
+ # name: aristaBgp4V2PeerLocalAddr
231
+ # OID: 1.3.6.1.4.1.30065.4.1.1.2.1.3
232
+ # format: ip_address
233
+
234
# - MIB: ARISTA-IF-MIB
235
# table:
236
# name: aristaIfTable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-clearpass.yaml
+87
-85
@@ -1,14 +1,44 @@
1
extends:
2
- aruba.yaml
3
4
+sysobjectid:
5
+ - 1.3.6.1.4.1.14823.1.6.1
6
+
7
metadata:
8
device:
9
fields:
10
type:
11
value: ClearPass
12
10
-sysobjectid:
11
- - 1.3.6.1.4.1.14823.1.6.1
13
+metric_tags:
14
+ - tag: cppm_system_version
15
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.3.0
16
+ symbol: cppmSystemVersion
17
+ - tag: cppm_cluster_node_type
18
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.5.0
19
+ symbol: cppmClusterNodeType
20
+ - tag: cppm_zone_name
21
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.6.0
22
+ symbol: cppmZoneName
23
+ - tag: cppm_num_cluster_nodes
24
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.7.0
25
+ symbol: cppmNumClusterNodes
26
+ - tag: cppm_nw_mgmt_port_ip_address
27
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.8.0
28
+ symbol: cppmNwMgmtPortIPAddress
29
+ - tag: cppm_nw_mgmt_port_mac_address
30
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.9.0
31
+ symbol: cppmNwMgmtPortMACAddress
32
+ - tag: cppm_nw_data_port_ip_address
33
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.10.0
34
+ symbol: cppmNwDataPortIPAddress
35
+ - tag: cppm_nw_data_port_mac_address
36
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.11.0
37
+ symbol: cppmNwDataPortMACAddress
38
+ - tag: cppm_system_num_cp_us
39
+ OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.16.0
40
+ symbol: cppmSystemNumCPUs
41
+
42
metrics:
43
- MIB: HOST-RESOURCES-MIB
44
symbol:
@@ -16,7 +46,7 @@ metrics:
46
OID: 1.3.6.1.2.1.25.3.3.1.2.196608
47
chart_meta:
48
description: Average percentage of time that this processor was not idle over the last minute
19
- family: CPU/Usage
49
+ family: 'System/CPU/Usage'
50
unit: "%"
51
- MIB: UCD-SNMP-MIB
52
symbol:
@@ -24,7 +54,7 @@ metrics:
54
OID: 1.3.6.1.4.1.2021.4.5.0
55
chart_meta:
56
description: Total amount of real physical memory installed on this host
27
- family: Memory/Physical/Total
57
+ family: 'System/Memory/Physical/Total'
58
unit: "By"
59
scale_factor: 1024
60
- MIB: UCD-SNMP-MIB
@@ -33,7 +63,7 @@ metrics:
63
OID: 1.3.6.1.4.1.2021.4.6.0
64
chart_meta:
65
description: Amount of real physical memory currently unused or available
36
- family: Memory/Physical/Free
66
+ family: 'System/Memory/Physical/Free'
67
unit: "By"
68
scale_factor: 1024
69
- MIB: CPPM-MIB
@@ -45,25 +75,25 @@ metrics:
75
OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.12
76
chart_meta:
77
description: Total amount of memory available in bytes in the ClearPass server
48
- family: Memory/Total
78
+ family: 'System/Memory/Total'
79
unit: "By"
80
- name: cppmSystemMemoryFree
81
OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.13
82
chart_meta:
83
description: Amount of free memory in bytes in the ClearPass server
54
- family: Memory/Free
84
+ family: 'System/Memory/Free'
85
unit: "By"
86
- name: cppmSystemDiskSpaceTotal
87
OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.14
88
chart_meta:
89
description: Total amount of disk space available in bytes in the ClearPass server
60
- family: Storage/Disk/Total
90
+ family: 'System/Disk/Space/Total'
91
unit: "By"
92
- name: cppmSystemDiskSpaceFree
93
OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.15
94
chart_meta:
95
description: Amount of free disk space in bytes in the ClearPass server
66
- family: Storage/Disk/Free
96
+ family: 'System/Disk/Space/Free'
97
unit: "By"
98
metric_tags:
99
- symbol:
@@ -79,31 +109,31 @@ metrics:
109
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.1
110
chart_meta:
111
description: Total time taken for policy evaluation from RADIUS server perspective in milliseconds
82
- family: RADIUS/PolicyEvaluation/Time
112
+ family: 'Network/RADIUS/PolicyEvaluation/Time'
113
unit: "ms"
114
- name: radAuthRequestTime
115
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.2
116
chart_meta:
117
description: Total time taken for RADIUS request end-to-end in milliseconds
88
- family: RADIUS/Request/Time
118
+ family: 'Network/RADIUS/Request/Time'
119
unit: "ms"
120
- name: radServerCounterSuccess
121
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.3
122
chart_meta:
123
description: Successful RADIUS request count
94
- family: RADIUS/Request/Success
124
+ family: 'Network/RADIUS/Request/Success/Count'
125
unit: "{request}/s"
126
- name: radServerCounterFailure
127
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.4
128
chart_meta:
129
description: Failed RADIUS request count
100
- family: RADIUS/Request/Failed
130
+ family: 'Network/RADIUS/Request/Failed/Count'
131
unit: "{request}/s"
132
- name: radServerCounterCount
133
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.5
134
chart_meta:
135
description: Total RADIUS request count
106
- family: RADIUS/Request/Total
136
+ family: 'Network/RADIUS/Request/Total/Count'
137
unit: "{request}/s"
138
metric_tags:
139
- table: cppmSystemTable
@@ -120,25 +150,25 @@ metrics:
150
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.3
151
chart_meta:
152
description: Total number of successful RADIUS authentications
123
- family: RADIUS/Authentication/Success
153
+ family: 'Network/RADIUS/Authentication/Success/Count'
154
unit: "{authentication}/s"
155
- name: radAuthCounterFailure
156
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.4
157
chart_meta:
158
description: Total number of failed RADIUS authentications
129
- family: RADIUS/Authentication/Failed
159
+ family: 'Network/RADIUS/Authentication/Failed/Count'
160
unit: "{authentication}/s"
161
- name: radAuthCounterCount
162
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.5
163
chart_meta:
164
description: Total number of RADIUS authentications
135
- family: RADIUS/Authentication/Total
165
+ family: 'Network/RADIUS/Authentication/Total/Count'
166
unit: "{authentication}/s"
167
- name: radAuthCounterTime
168
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.6
169
chart_meta:
170
description: Time taken to authenticate against an authentication source in milliseconds
141
- family: RADIUS/Authentication/Time
171
+ family: 'Network/RADIUS/Authentication/Time'
172
unit: "ms"
173
metric_tags:
174
- symbol:
@@ -154,115 +184,115 @@ metrics:
184
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.1
185
chart_meta:
186
description: Total number of service policies evaluated
157
- family: Policy/Evaluation/Service/Count
187
+ family: 'Security/Policy/Evaluation/Service/Count'
188
unit: "{policy}/s"
189
- name: psRolemappingPolicyEvalCount
190
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.2
191
chart_meta:
192
description: Total number of role mapping policies evaluated
163
- family: Policy/Evaluation/RoleMapping/Count
193
+ family: 'Security/Policy/Evaluation/RoleMapping/Count'
194
unit: "{policy}/s"
195
- name: psPosturePolicyEvalCount
196
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.3
197
chart_meta:
198
description: Total number of posture policies evaluated
169
- family: Policy/Evaluation/Posture/Count
199
+ family: 'Security/Policy/Evaluation/Posture/Count'
200
unit: "{policy}/s"
201
- name: psAuditPolicyEvalCount
202
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.4
203
chart_meta:
204
description: Total number of audit policies evaluated
175
- family: Policy/Evaluation/Audit/Count
205
+ family: 'Security/Policy/Evaluation/Audit/Count'
206
unit: "{policy}/s"
207
- name: psRestrictionPolicyEvalCount
208
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.5
209
chart_meta:
210
description: Total number of restriction policies evaluated
181
- family: Policy/Evaluation/Restriction/Count
211
+ family: 'Security/Policy/Evaluation/Restriction/Count'
212
unit: "{policy}/s"
213
- name: psEnforcementPolicyEvalCount
214
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.6
215
chart_meta:
216
description: Total number of enforcement policies evaluated
187
- family: Policy/Evaluation/Enforcement/Count
217
+ family: 'Security/Policy/Evaluation/Enforcement/Count'
218
unit: "{policy}/s"
219
- name: psAuthCounterSuccess
220
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.14
221
chart_meta:
222
description: Total number of successful authentications computed on the Policy Server
193
- family: Policy/Authentication/Success
223
+ family: 'Security/Policy/Authentication/Success/Count'
224
unit: "{authentication}/s"
225
- name: psAuthCounterFailure
226
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.15
227
chart_meta:
228
description: Total number of failed authentications computed on the Policy Server
199
- family: Policy/Authentication/Failed
229
+ family: 'Security/Policy/Authentication/Failed/Count'
230
unit: "{authentication}/s"
231
- name: psAuthCounterTotal
232
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.16
233
chart_meta:
234
description: Total number of authentications computed on the Policy Server
205
- family: Policy/Authentication/Total
235
+ family: 'Security/Policy/Authentication/Total/Count'
236
unit: "{authentication}/s"
237
- name: dailySuccessAuthCount
238
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.17
239
chart_meta:
240
description: Total number of successful authentications computed over 24 hours
211
- family: Policy/Authentication/Daily/Success
241
+ family: 'Security/Policy/Authentication/Daily/Success/Count'
242
unit: "{authentication}/s"
243
- name: dailyFailedAuthCount
244
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.18
245
chart_meta:
246
description: Total number of failed authentications computed over 24 hours
217
- family: Policy/Authentication/Daily/Failed
247
+ family: 'Security/Policy/Authentication/Daily/Failed/Count'
248
unit: "{authentication}/s"
249
- name: dailyTotalAuthCount
250
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.19
251
chart_meta:
252
description: Total number of authentications computed over 24 hours
223
- family: Policy/Authentication/Daily/Total
253
+ family: 'Security/Policy/Authentication/Daily/Total/Count'
254
unit: "{authentication}/s"
255
- name: psServicePolicyEvalTime
256
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.7
257
chart_meta:
258
description: Time taken for the evaluation of service policies in milliseconds
229
- family: Policy/Evaluation/Service/Time
259
+ family: 'Security/Policy/Evaluation/Service/Time'
260
unit: "ms"
261
- name: psRolemappingPolicyEvalTime
262
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.8
263
chart_meta:
264
description: Time taken for the evaluation of role mapping policies in milliseconds
235
- family: Policy/Evaluation/RoleMapping/Time
265
+ family: 'Security/Policy/Evaluation/RoleMapping/Time'
266
unit: "ms"
267
- name: psPosturePolicyEvalTime
268
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.9
269
chart_meta:
270
description: Time taken for the evaluation of posture policies in milliseconds
241
- family: Policy/Evaluation/Posture/Time
271
+ family: 'Security/Policy/Evaluation/Posture/Time'
272
unit: "ms"
273
- name: psAuditPolicyEvalTime
274
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.10
275
chart_meta:
276
description: Time taken for the evaluation of audit policies in milliseconds
247
- family: Policy/Evaluation/Audit/Time
277
+ family: 'Security/Policy/Evaluation/Audit/Time'
278
unit: "ms"
279
- name: psRestrictionPolicyEvalTime
280
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.11
281
chart_meta:
282
description: Time taken for the evaluation of restriction policies in milliseconds
253
- family: Policy/Evaluation/Restriction/Time
283
+ family: 'Security/Policy/Evaluation/Restriction/Time'
284
unit: "ms"
285
- name: psEnforcementPolicyEvalTime
286
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.12
287
chart_meta:
288
description: Time taken for the evaluation of enforcement policies in milliseconds
259
- family: Policy/Evaluation/Enforcement/Time
289
+ family: 'Security/Policy/Evaluation/Enforcement/Time'
290
unit: "ms"
291
- name: psSessionlogTime
292
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.13
293
chart_meta:
294
description: Time taken for session logging in milliseconds
265
- family: Policy/SessionLogging/Time
295
+ family: 'Security/Policy/SessionLogging/Time'
296
unit: "ms"
297
metric_tags:
298
- table: cppmSystemTable
@@ -279,25 +309,25 @@ metrics:
309
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.3
310
chart_meta:
311
description: Total number of successful Policy authorizations
282
- family: Policy/Authorization/Success
312
+ family: 'Security/Policy/Authorization/Success/Count'
313
unit: "{authorization}/s"
314
- name: psAutzCounterFailure
315
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.4
316
chart_meta:
317
description: Total number of failed Policy authorizations
288
- family: Policy/Authorization/Failed
318
+ family: 'Security/Policy/Authorization/Failed/Count'
319
unit: "{authorization}/s"
320
- name: psAutzCounterCount
321
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.5
322
chart_meta:
323
description: Total number of Policy authorizations
294
- family: Policy/Authorization/Total
324
+ family: 'Security/Policy/Authorization/Total/Count'
325
unit: "{authorization}/s"
326
- name: psAutzCounterTime
327
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.6
328
chart_meta:
329
description: Time taken for Policy authorizations in milliseconds
300
- family: Policy/Authorization/Time
330
+ family: 'Security/Policy/Authorization/Time'
331
unit: "ms"
332
metric_tags:
333
- symbol:
@@ -313,43 +343,43 @@ metrics:
343
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.1
344
chart_meta:
345
description: Total number of successful TACACS+ authentications
316
- family: TACACS/Authentication/Success
346
+ family: 'Network/TACACS/Authentication/Success/Count'
347
unit: "{authentication}/s"
348
- name: tacAuthCounterFailure
349
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.2
350
chart_meta:
351
description: Total number of failed TACACS+ authentications
322
- family: TACACS/Authentication/Failed
352
+ family: 'Network/TACACS/Authentication/Failed/Count'
353
unit: "{authentication}/s"
354
- name: tacAuthCounterCount
355
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.3
356
chart_meta:
357
description: Total number of TACACS+ authentications
328
- family: TACACS/Authentication/Total
358
+ family: 'Network/TACACS/Authentication/Total/Count'
359
unit: "{authentication}/s"
360
- name: tacAuthCounterTime
361
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.4
362
chart_meta:
363
description: Total time taken to perform TACACS+ authentications end-to-end in milliseconds
334
- family: TACACS/Authentication/Time/Total
364
+ family: 'Network/TACACS/Authentication/Time/Total'
365
unit: "ms"
366
- name: tacAuthCounterAuthTime
367
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.5
368
chart_meta:
369
description: Time taken for TACACS+ authentications in milliseconds
340
- family: TACACS/Authentication/Time
370
+ family: 'Network/TACACS/Authentication/Time'
371
unit: "ms"
372
- name: tacServicePolicyEvalTime
373
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.6
374
chart_meta:
375
description: Time taken for TACACS+ service policy evaluation in milliseconds
346
- family: TACACS/PolicyEvaluation/Service/Time
376
+ family: 'Network/TACACS/PolicyEvaluation/Service/Time'
377
unit: "ms"
378
- name: tacPolicyEvalTime
379
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.7
380
chart_meta:
381
description: Time taken for TACACS+ policy evaluation in milliseconds
352
- family: TACACS/PolicyEvaluation/Time
382
+ family: 'Network/TACACS/PolicyEvaluation/Time'
383
unit: "ms"
384
metric_tags:
385
- table: cppmSystemTable
@@ -366,25 +396,25 @@ metrics:
396
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.1
397
chart_meta:
398
description: Total number of successful TACACS+ authorizations
369
- family: TACACS/Authorization/Success
399
+ family: 'Network/TACACS/Authorization/Success/Count'
400
unit: "{authorization}/s"
401
- name: tacAutzCounterFailure
402
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.2
403
chart_meta:
404
description: Total number of failed TACACS+ authorizations
375
- family: TACACS/Authorization/Failed
405
+ family: 'Network/TACACS/Authorization/Failed/Count'
406
unit: "{authorization}/s"
407
- name: tacAutzCounterCount
408
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.3
409
chart_meta:
410
description: Total number of TACACS+ authorizations
381
- family: TACACS/Authorization/Total
411
+ family: 'Network/TACACS/Authorization/Total/Count'
412
unit: "{authorization}/s"
413
- name: tacAutzCounterTime
414
OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.4
415
chart_meta:
416
description: Total time taken to perform TACACS+ authorization end-to-end in milliseconds
387
- family: TACACS/Authorization/Time
417
+ family: 'Network/TACACS/Authorization/Time'
418
unit: "ms"
419
metric_tags:
420
- table: cppmSystemTable
@@ -401,42 +431,14 @@ metrics:
431
OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.4
432
chart_meta:
433
description: Total network traffic in bytes
404
- family: Network/Traffic/Total
434
+ family: 'Network/Traffic/Total'
435
unit: "By/s"
436
metric_tags:
407
- - symbol:
437
+ - tag: nw_app_name
438
+ symbol:
439
name: nwAppName
440
OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.2
410
- tag: nw_app_name
411
- - symbol:
441
+ - tag: nw_app_port_number
442
+ symbol:
443
name: nwAppPort
444
OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.3
414
- tag: nw_app_port_number
415
-metric_tags:
416
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.3.0
417
- symbol: cppmSystemVersion
418
- tag: cppm_system_version
419
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.5.0
420
- symbol: cppmClusterNodeType
421
- tag: cppm_cluster_node_type
422
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.6.0
423
- symbol: cppmZoneName
424
- tag: cppm_zone_name
425
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.7.0
426
- symbol: cppmNumClusterNodes
427
- tag: cppm_num_cluster_nodes
428
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.8.0
429
- symbol: cppmNwMgmtPortIPAddress
430
- tag: cppm_nw_mgmt_port_ip_address
431
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.9.0
432
- symbol: cppmNwMgmtPortMACAddress
433
- tag: cppm_nw_mgmt_port_mac_address
434
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.10.0
435
- symbol: cppmNwDataPortIPAddress
436
- tag: cppm_nw_data_port_ip_address
437
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.11.0
438
- symbol: cppmNwDataPortMACAddress
439
- tag: cppm_nw_data_port_mac_address
440
- - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.16.0
441
- symbol: cppmSystemNumCPUs
442
- tag: cppm_system_num_cp_us
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-cx-switch.yaml
+14
-14
@@ -42,7 +42,7 @@ metrics:
42
OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
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
45
+ family: 'System/CPU/Usage'
46
unit: "%"
47
- MIB: ARUBAWIRED-TEMPSENSOR-MIB
48
table:
@@ -53,7 +53,7 @@ metrics:
53
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.7
54
chart_meta:
55
description: Current temperature value read from the temperature sensor
56
- family: Sensor/Temperature/Value
56
+ family: 'Hardware/Sensor/Temperature/Value'
57
unit: "Cel"
58
metric_tags:
59
- symbol:
@@ -74,13 +74,13 @@ metrics:
74
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.7
75
chart_meta:
76
description: Total instantaneous power supplied by the power supply in Watts.
77
- family: PowerSupply/Power/Output
77
+ family: 'Hardware/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
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
83
+ family: 'Hardware/PowerSupply/Failure/Count'
84
unit: "{failure}/s"
85
metric_tags:
86
- symbol:
@@ -141,13 +141,13 @@ metrics:
141
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.8
142
chart_meta:
143
description: Current RPM read for the fan.
144
- family: Fan/Speed
144
+ family: 'Hardware/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
148
chart_meta:
149
description: Current status for the fan
150
- family: Fan/Status
150
+ family: 'Hardware/Fan/Status'
151
unit: "{status}"
152
mapping:
153
1: unknown
@@ -156,19 +156,19 @@ metrics:
156
4: ok
157
5: fault
158
metric_tags:
159
- - symbol:
159
+ - tag: aruba_wired_fan_name
160
+ symbol:
161
name: arubaWiredFanName
162
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.4
162
- tag: aruba_wired_fan_name
163
- - symbol:
163
+ - tag: aruba_wired_fan_product_name
164
+ symbol:
165
name: arubaWiredFanProductName
166
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.6
166
- tag: aruba_wired_fan_product_name
167
- - symbol:
167
+ - tag: aruba_wired_fan_serial_number
168
+ symbol:
169
name: arubaWiredFanSerialNumber
170
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.7
170
- tag: aruba_wired_fan_serial_number
171
- - symbol:
171
+ - tag: aruba_wired_fan_airflow_direction
172
+ symbol:
173
name: arubaWiredFanAirflowDirection
174
OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.9
174
- tag: aruba_wired_fan_airflow_direction
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-switch.yaml
+7
-7
@@ -79,7 +79,7 @@ metrics:
79
name: sysExtFanStatus
80
chart_meta:
81
description: Status of the Fan
82
- family: Fan/Status
82
+ family: 'Hardware/Fan/Status'
83
unit: "{status}"
84
mapping:
85
1: active
@@ -102,7 +102,7 @@ metrics:
102
name: sysExtPowerSupplyStatus
103
chart_meta:
104
description: Status of the power supply
105
- family: PowerSupply/Status
105
+ family: 'Hardware/PowerSupply/Status'
106
unit: "{status}"
107
mapping:
108
1: active
@@ -124,7 +124,7 @@ metrics:
124
name: sysExtProcessorLoad
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
127
+ family: 'System/CPU/Usage'
128
unit: "%"
129
metric_tags:
130
- tag: cpu_index
@@ -142,21 +142,21 @@ metrics:
142
name: sysExtMemorySize
143
chart_meta:
144
description: Total memory in KB
145
- family: Memory/Total
145
+ family: 'System/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
150
chart_meta:
151
description: Used memory in KB
152
- family: Memory/Used
152
+ family: 'System/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
157
chart_meta:
158
description: Free memory in KB
159
- family: Memory/Free
159
+ family: 'System/Memory/Free'
160
unit: "By"
161
scale_factor: 1024
162
metric_tags:
@@ -172,5 +172,5 @@ metrics:
172
name: wlsxSysExtPacketLossPercent
173
chart_meta:
174
description: Packet loss percent of the switch
175
- family: Network/Packet/Loss/Percentage
175
+ family: 'Network/Packet/Loss'
176
unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/aruba-wireless-controller.yaml
+81
-78
@@ -51,6 +51,29 @@ metadata:
51
vendor:
52
value: Aruba
53
54
+metric_tags:
55
+ - tag: wlsx_sys_ext_hw_version
56
+ OID: 1.3.6.1.4.1.14823.2.2.1.2.1.27.0
57
+ symbol: wlsxSysExtHwVersion
58
+ - tag: wlsx_sys_ext_sw_version
59
+ OID: 1.3.6.1.4.1.14823.2.2.1.2.1.28.0
60
+ symbol: wlsxSysExtSwVersion
61
+ - tag: wlsx_model_name
62
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
63
+ symbol: wlsxModelName
64
+ - tag: wlsx_switch_role
65
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
66
+ symbol: wlsxSwitchRole
67
+ mapping:
68
+ 1: master
69
+ 2: local
70
+ 3: standbymaster
71
+ 4: branch
72
+ 5: md
73
+ - tag: wlsx_switch_license_serial_number
74
+ OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
75
+ symbol: wlsxSwitchLicenseSerialNumber
76
+
77
metrics:
78
- MIB: WLSX-SYSTEMEXT-MIB
79
symbol:
@@ -58,7 +81,7 @@ metrics:
81
OID: 1.3.6.1.4.1.14823.2.2.1.2.1.30.0
82
chart_meta:
83
description: Cpu usage percentage
61
- family: CPU/Usage
84
+ family: 'System/CPU/Usage'
85
unit: "%"
86
- MIB: WLSX-SYSTEMEXT-MIB
87
symbol:
@@ -66,7 +89,7 @@ metrics:
89
OID: 1.3.6.1.4.1.14823.2.2.1.2.1.31.0
90
chart_meta:
91
description: Memory usage percentage
69
- family: Memory/Usage
92
+ family: 'System/Memory/Usage'
93
unit: "%"
94
- MIB: WLSX-SYSTEMEXT-MIB
95
symbol:
@@ -74,7 +97,7 @@ metrics:
97
OID: 1.3.6.1.4.1.14823.2.2.1.2.1.32.0
98
chart_meta:
99
description: Packet loss percentage
77
- family: Packet/Loss/Percentage
100
+ family: 'Network/Packet/Loss'
101
unit: "%"
102
- MIB: WLSX-SWITCH-MIB
103
table:
@@ -85,13 +108,13 @@ metrics:
108
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
109
chart_meta:
110
description: Size of the storage filesystem in MB
88
- family: Storage/Size/Total
111
+ family: 'System/Storage/Total'
112
unit: "MBy"
113
- name: sysXStorageUsed
114
OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
115
chart_meta:
116
description: Size of the storage filesystem in MB
94
- family: Storage/Size/Used
117
+ family: 'System/Storage/Used'
118
unit: "MBy"
119
metric_tags:
120
- symbol:
@@ -114,13 +137,13 @@ metrics:
137
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.13
138
chart_meta:
139
description: Noise on the channel
117
- family: Wireless/AccessPoint/Channel/Noise
140
+ family: 'Network/Wireless/AccessPoint/Channel/Noise'
141
unit: "dB"
142
- name: apSignalToNoiseRatio
143
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.14
144
chart_meta:
145
description: Signal to noise ratio for the BSSID
123
- family: Wireless/AccessPoint/Signal/SNR
146
+ family: 'Network/Wireless/AccessPoint/Signal/SNR'
147
unit: "dB"
148
metric_tags:
149
- symbol:
@@ -162,97 +185,97 @@ metrics:
185
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.3
186
chart_meta:
187
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
188
+ family: 'Network/Wireless/AccessPoint/Channel/Frame/Retry'
189
unit: "%"
190
- name: apChannelFrameLowSpeedRate
191
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.4
192
chart_meta:
193
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
194
+ family: 'Network/Wireless/AccessPoint/Channel/Frame/LowSpeed'
195
unit: "%"
196
- name: apChannelFrameNonUnicastRate
197
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.5
198
chart_meta:
199
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
200
+ family: 'Network/Wireless/AccessPoint/Channel/Frame/NonUnicast'
201
unit: "%"
202
- name: apChannelFrameFragmentationRate
203
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.6
204
chart_meta:
205
description: Number of fragments as a percentage of the total packets transmitted on this channel
183
- family: Wireless/AccessPoint/Channel/Frame/Fragmentation
206
+ family: 'Network/Wireless/AccessPoint/Channel/Frame/Fragmentation'
207
unit: "%"
208
- name: apChannelFrameReceiveErrorRate
209
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.7
210
chart_meta:
211
description: Number of error packets as a percentage of the total packets received on this channel
189
- family: Wireless/AccessPoint/Channel/Frame/Error
212
+ family: 'Network/Wireless/AccessPoint/Channel/Frame/Error'
213
unit: "%"
214
- name: apBSSTxPackets
215
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.8
216
chart_meta:
217
description: Total packets transmitted by the ap on this BSSID
195
- family: Wireless/AccessPoint/BSS/Packet/Out
218
+ family: 'Network/Wireless/AccessPoint/BSS/Packet/Out'
219
unit: "{packet}/s"
220
- name: apBSSRxPackets
221
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.10
222
chart_meta:
223
description: Total packets received by the ap on this BSSID
201
- family: Wireless/AccessPoint/BSS/Packet/In
224
+ family: 'Network/Wireless/AccessPoint/BSS/Packet/In'
225
unit: "{packet}/s"
226
- name: apChannelBwRate
227
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.2
228
chart_meta:
229
description: Bandwidth rate in Kbps of the apChannel
207
- family: Wireless/AccessPoint/Channel/Bandwidth
230
+ family: 'Network/Wireless/AccessPoint/Channel/Bandwidth'
231
unit: "kbit/s"
232
- name: apBSSTxBytes
233
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.9
234
chart_meta:
235
description: Total bytes transmitted by the ap on this BSSID
213
- family: Wireless/AccessPoint/BSS/Traffic/Out
236
+ family: 'Network/Wireless/AccessPoint/BSS/Traffic/Out'
237
unit: "By/s"
238
- name: apBSSRxBytes
239
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.11
240
chart_meta:
241
description: Total bytes received by the ap on this BSSID
219
- family: Wireless/AccessPoint/BSS/Traffic/In
242
+ family: 'Network/Wireless/AccessPoint/BSS/Traffic/In'
243
unit: "By/s"
244
- name: apBSSBwRate
245
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.12
246
chart_meta:
247
description: Bandwidth rate in Kbps of the ap on this BSSID
225
- family: Wireless/AccessPoint/BSS/Bandwidth
248
+ family: 'Network/Wireless/AccessPoint/BSS/Bandwidth'
249
unit: "kbit/s"
250
- name: apBSSFrameRetryRate
251
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.13
252
chart_meta:
253
description: Frame retry rate on this BSSID
231
- family: Wireless/AccessPoint/BSS/Frame/Retry
254
+ family: 'Network/Wireless/AccessPoint/BSS/Frame/Retry'
255
unit: "%"
256
- name: apBSSFrameLowSpeedRate
257
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.14
258
chart_meta:
259
description: Frame low speed rate on this BSSID
237
- family: Wireless/AccessPoint/BSS/Frame/LowSpeed
260
+ family: 'Network/Wireless/AccessPoint/BSS/Frame/LowSpeed'
261
unit: "%"
262
- name: apBSSFrameNonUnicastRate
263
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.15
264
chart_meta:
265
description: Frame non unicast packet rate on this BSSID
243
- family: Wireless/AccessPoint/BSS/Frame/NonUnicast
266
+ family: 'Network/Wireless/AccessPoint/BSS/Frame/NonUnicast'
267
unit: "%"
268
- name: apBSSFrameFragmentationRate
269
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.16
270
chart_meta:
271
description: Frame fragmentation rate on this BSSID
249
- family: Wireless/AccessPoint/BSS/Frame/Fragmentation
272
+ family: 'Network/Wireless/AccessPoint/BSS/Frame/Fragmentation'
273
unit: "%"
274
- name: apBSSFrameReceiveErrorRate
275
OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.17
276
chart_meta:
277
description: Frame receive error rate on this BSSID
255
- family: Wireless/AccessPoint/BSS/Frame/Error
278
+ family: 'Network/Wireless/AccessPoint/BSS/Frame/Error'
279
unit: "%"
280
metric_tags:
281
- symbol:
@@ -265,7 +288,7 @@ metrics:
288
OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.1.0
289
chart_meta:
290
description: Number of 802.1x users
268
- family: User/802.1x/Count
291
+ family: 'System/User/802.1x/Count'
292
unit: "{user}"
293
- MIB: WLSX-USER-MIB
294
symbol:
@@ -273,7 +296,7 @@ metrics:
296
OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.2.0
297
chart_meta:
298
description: Number of VPN users
276
- family: User/VPN/Count
299
+ family: 'System/User/VPN/Count'
300
unit: "{user}"
301
- MIB: WLSX-USER-MIB
302
symbol:
@@ -281,7 +304,7 @@ metrics:
304
OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.3.0
305
chart_meta:
306
description: Number of Captive Portal users
284
- family: User/CaptivePortal/Count
307
+ family: 'System/User/CaptivePortal/Count'
308
unit: "{user}"
309
- MIB: WLSX-USER-MIB
310
symbol:
@@ -289,7 +312,7 @@ metrics:
312
OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.4.0
313
chart_meta:
314
description: Number of MAC users
292
- family: User/MAC/Count
315
+ family: 'System/User/MAC/Count'
316
unit: "{user}"
317
- MIB: WLSX-USER-MIB
318
symbol:
@@ -297,7 +320,7 @@ metrics:
320
OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.5.0
321
chart_meta:
322
description: Number of stateful 802.1x users
300
- family: User/Stateful802.1x/Count
323
+ family: 'System/User/Stateful802.1x/Count'
324
unit: "{user}"
325
- MIB: WLSX-HA-MIB
326
symbol:
@@ -305,7 +328,7 @@ metrics:
328
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.1.0
329
chart_meta:
330
description: Number of active APs
308
- family: HighAvailability/AccessPoint/Active
331
+ family: 'System/HighAvailability/AccessPoint/Active'
332
unit: "{access_point}"
333
- MIB: WLSX-HA-MIB
334
symbol:
@@ -313,7 +336,7 @@ metrics:
336
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.2.0
337
chart_meta:
338
description: Number of standby APs
316
- family: HighAvailability/AccessPoint/Standby
339
+ family: 'System/HighAvailability/AccessPoint/Standby'
340
unit: "{access_point}"
341
- MIB: WLSX-HA-MIB
342
symbol:
@@ -321,7 +344,7 @@ metrics:
344
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.3.0
345
chart_meta:
346
description: Total number of APs
324
- family: HighAvailability/AccessPoint/Total
347
+ family: 'System/HighAvailability/AccessPoint/Total'
348
unit: "{access_point}"
349
- MIB: WLSX-HA-MIB
350
table:
@@ -332,25 +355,25 @@ metrics:
355
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.1
356
chart_meta:
357
description: Number of active per VAP GRE tunnels
335
- family: HighAvailability/Tunnel/VAPGRE/Active
358
+ family: 'Network/HighAvailability/Tunnel/VAPGRE/Active'
359
unit: "{tunnel}"
360
- name: haStandbyVapTunnels
361
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.2
362
chart_meta:
363
description: Number of standby per VAP GRE tunnels
341
- family: HighAvailability/Tunnel/VAPGRE/Standby
364
+ family: 'Network/HighAvailability/Tunnel/VAPGRE/Standby'
365
unit: "{tunnel}"
366
- name: haTotalVapTunnels
367
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.3
368
chart_meta:
369
description: Total number of per VAP GRE tunnels
347
- family: HighAvailability/Tunnel/VAPGRE/Total
370
+ family: 'Network/HighAvailability/Tunnel/VAPGRE/Total'
371
unit: "{tunnel}"
372
- name: haAPHbtTunnels
373
OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.4
374
chart_meta:
375
description: Number of AP hbt GRE tunnels
353
- family: HighAvailability/Tunnel/APHBTGRE/Total
376
+ family: 'Network/HighAvailability/Tunnel/APHBTGRE/Total'
377
unit: "{tunnel}"
378
metric_tags:
379
- symbol:
@@ -359,6 +382,7 @@ metrics:
382
table: wlsxHighAvalabilityConfigTable
383
tag: ha_membership
384
# The actual index of the table is haProfileName that is not accessible
385
+
386
- MIB: WLSX-WLAN-MIB
387
table:
388
name: wlsxWlanStationTable
@@ -368,19 +392,19 @@ metrics:
392
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.10
393
chart_meta:
394
description: Transmit rate with which the station is associated with this system
371
- family: Wireless/Station/Transmit
395
+ family: 'Network/Wireless/Station/Transmit'
396
unit: "bit/s"
397
- name: wlanStaRSSI
398
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.14
399
chart_meta:
400
description: Signal to noise ratio for the station
377
- family: Wireless/Station/Signal/RSSI
401
+ family: 'Network/Wireless/Station/Signal/RSSI'
402
unit: "dB"
403
- name: wlanStaUpTime
404
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.15
405
chart_meta:
406
description: Time since the station associated to the current BSSID
383
- family: Wireless/Station/Uptime
407
+ family: 'Network/Wireless/Station/Uptime'
408
unit: "cs"
409
# - name: wlanStaTransmitRateCode
410
# OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.17
@@ -389,46 +413,46 @@ metrics:
413
# unit: "TBD"
414
# No mapping found
415
metric_tags:
392
- - symbol:
416
+ - tag: wlan_sta_phy_type
417
+ symbol:
418
name: wlanStaPhyType
419
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.3
395
- tag: wlan_sta_phy_type
420
mapping:
421
1: dot11a
422
2: dot11b
423
3: dot11g
424
4: dot11ag
425
5: wired
402
- - symbol:
426
+ - tag: wlan_sta_access_point_essid
427
+ symbol:
428
name: wlanStaAccessPointESSID
429
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.12
405
- tag: wlan_sta_access_point_essid
406
- - symbol:
430
+ - tag: wlan_sta_channel
431
+ symbol:
432
name: wlanStaChannel
433
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.6
409
- tag: wlan_sta_channel
410
- - symbol:
434
+ - tag: wlan_sta_vlan_id
435
+ symbol:
436
name: wlanStaVlanId
437
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.7
413
- tag: wlan_sta_vlan_id
414
- - symbol:
438
+ - tag: wlan_sta_is_authenticated
439
+ symbol:
440
name: wlanStaIsAuthenticated
441
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.4
417
- tag: wlan_sta_is_authenticated
442
mapping:
443
1: "true"
444
2: "false"
421
- - symbol:
445
+ - tag: wlan_sta_is_associated
446
+ symbol:
447
name: wlanStaIsAssociated
448
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.5
424
- tag: wlan_sta_is_associated
449
mapping:
450
1: "true"
451
2: "false"
428
- - symbol:
452
+ - tag: wlan_sta_ht_mode
453
+ symbol:
454
name: wlanStaHTMode
455
OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.16
431
- tag: wlan_sta_ht_mode
456
mapping:
457
1: none
458
2: ht20
@@ -443,6 +467,7 @@ metrics:
467
11: he80
468
12: he160
469
13: he80plus80
470
+
471
- MIB: WLSX-WLAN-MIB
472
table:
473
name: wlsxWlanStationStatsTable
@@ -452,38 +477,16 @@ metrics:
477
OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.25
478
chart_meta:
479
description: Number of bytes transmitted by this station, 64-bit value
455
- family: Wireless/Station/Traffic/Out
480
+ family: 'Network/Wireless/Station/Traffic/Out'
481
unit: "By"
482
- name: wlanStaRxBytes64
483
OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.26
484
chart_meta:
485
description: Number of bytes received by this station, 64-bit value
461
- family: Wireless/Station/Traffic/In
486
+ family: 'Network/Wireless/Station/Traffic/In'
487
unit: "By"
488
metric_tags:
464
- - symbol:
489
+ - tag: wlan_sta_channel_num
490
+ symbol:
491
name: wlanStaChannelNum
492
OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.1
467
- tag: wlan_sta_channel_num
468
-metric_tags:
469
- - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.27.0
470
- symbol: wlsxSysExtHwVersion
471
- tag: wlsx_sys_ext_hw_version
472
- - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.28.0
473
- symbol: wlsxSysExtSwVersion
474
- tag: wlsx_sys_ext_sw_version
475
- - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
476
- symbol: wlsxModelName
477
- tag: wlsx_model_name
478
- - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
479
- symbol: wlsxSwitchRole
480
- tag: wlsx_switch_role
481
- mapping:
482
- 1: master
483
- 2: local
484
- 3: standbymaster
485
- 4: branch
486
- 5: md
487
- - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
488
- symbol: wlsxSwitchLicenseSerialNumber
489
- tag: wlsx_switch_license_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles/default/audiocodes-mediant-sbc.yaml
+1
-29
@@ -1,6 +1,7 @@
1
extends:
2
- _system-base.yaml
3
- _std-if-mib.yaml
4
+ - _std-host-resources-mib-feat-base.yaml
5
6
metadata:
7
device:
@@ -12,32 +13,3 @@ metadata:
13
14
sysobjectid:
15
- 1.3.6.1.4.1.5003.8.1.1.71
15
-
16
-metrics:
17
- - MIB: HOST-RESOURCES-MIB
18
- symbol:
19
- name: cpu.usage
20
- OID: 1.3.6.1.2.1.25.3.3.1.2.1
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
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
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
-30
@@ -5,33 +5,3 @@ extends:
5
6
sysobjectid:
7
- 1.3.6.1.4.1.6889.1.58
8
-
9
-metrics:
10
- - MIB: HOST-RESOURCES-MIB
11
- symbol:
12
- name: cpu.usage
13
- OID: 1.3.6.1.2.1.25.3.3.1.2.196608
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
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
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
+724
-467
@@ -1,451 +1,202 @@
1
extends:
2
- avaya.yaml
3
4
+sysobjectid:
5
+ - 1.3.6.1.4.1.81.17.1.17 # Cajun P330
6
+ - 1.3.6.1.4.1.81.17.1.18 # Cajun P130
7
+ - 1.3.6.1.4.1.81.17.1.19 # Cajun P360
8
+
9
metadata:
10
device:
11
fields:
12
type:
13
value: "Switch"
14
10
-sysobjectid:
11
- - 1.3.6.1.4.1.81.17.1.17 # Cajun P330
12
- - 1.3.6.1.4.1.81.17.1.18 # Cajun P130
13
- - 1.3.6.1.4.1.81.17.1.19 # Cajun P360
15
+metric_tags:
16
+ - tag: avaya_gen_cpu_utilization_enable_monitoring
17
+ OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.2
18
+ symbol: genCpuUtilizationEnableMonitoring
19
+ mapping:
20
+ 1: disabled
21
+ 2: enabled
22
23
+# https://mibbrowser.online/mibdb_search.php?mib=XSWITCH-MIB
24
metrics:
16
- - MIB: UTILIZATION-MANAGEMENT-MIB
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
- 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
28
- chart_meta:
29
- description: Percentage of memory used
30
- family: Memory/Usage
31
- unit: "%"
32
- - MIB: CONFIG-MIB
25
+ - MIB: XSWITCH-MIB
26
table:
34
- name: genPortTable
35
- OID: 1.3.6.1.4.1.81.9.1
27
+ name: scEthPortTable
28
+ OID: 1.3.6.1.4.1.81.28.2.1.1
29
symbols:
37
- - name: avaya.genPortFunctionality
38
- OID: 1.3.6.1.4.1.81.9.1.1.3
39
- description: Port functionality
40
- family: Port/Functionality
41
- mapping:
42
- 1: private
43
- 2: repeater_aui
44
- 3: repeater_thin
45
- 4: repeater10_base_t
46
- 5: ten_base_f_sync_act
47
- 6: foirl
48
- 7: xcvr
49
- 8: lobe
50
- 9: ri
51
- 10: ro
52
- 11: serial
53
- 12: local_talk
54
- 13: fddi
55
- 14: clock
56
- 15: gen_token_ring
57
- 16: dte
58
- 17: active_lobe
59
- 18: gen_active_token_ring
60
- 19: ten_base_fb
61
- 20: eth10_base_t
62
- 21: fiber
63
- 22: wan
64
- 23: star
65
- 24: active_ri
66
- 25: active_ro
67
- 26: fl
68
- 27: sonet-oc3
69
- 28: a100_base_tx
70
- 29: a100_base_fx
71
- 30: oc3
72
- 31: an_atm_main
73
- 32: an_atm_secondary
74
- 33: a1000_base_fx
75
- 40: sonet
76
- 41: fim_voice
77
- 42: sdh-stm1
78
- 43: eth1000_base_sx
79
- 44: eth1000_base_lx
80
- 45: eth10_base_fl
81
- 46: eth_lag
82
- 47: lag100
83
- 48: lag1000
84
- 49: eth1000_base_tx
85
- 50: eth1000_base_cx
86
- 51: g_bic_not_present
87
- 52: g_bic_not_supported
88
- 53: eth1000_base_x_proprietary
89
- 54: oc12
90
- 55: s_fp_not_present
91
- 56: s_fp_not_supported
92
- 57: eth10_base_tw_in_pwr
93
- 58: eth100_base_t_xw_in_pwr
94
- metric_tags:
95
- - symbol:
96
- name: avaya.genPortId
97
- OID: 1.3.6.1.4.1.81.9.1.1.2
98
- tag: avaya_gen_port_id
99
- - symbol:
100
- name: avaya.genPortType
101
- OID: 1.3.6.1.4.1.81.9.1.1.4
102
- tag: avaya_gen_port_type
30
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.3
31
+ name: avaya.scEthPortOctetsRec
32
+ scale_factor: 8
33
+ chart_meta:
34
+ description: The total number of good octets received and bad octets filtered by the port
35
+ family: 'Network/EthPort/Traffic/Total/In'
36
+ unit: "By/s"
37
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.4
38
+ name: avaya.scEthPortPktsRec
39
+ chart_meta:
40
+ description: The total number of good packets received and bad packets filtered by the port
41
+ family: 'Network/EthPort/Packet/Total/In'
42
+ unit: "{packet}/s"
43
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.5
44
+ name: avaya.scEthPortGoodBroadcastPktsRec
45
+ chart_meta:
46
+ description: The total number of good packets received that were directed to the broadcast address
47
+ family: 'Network/EthPort/Packet/Broadcast/In'
48
+ unit: "{packet}/s"
49
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.6
50
+ name: avaya.scEthPortGoodMulticastPktsRec
51
+ chart_meta:
52
+ description: The total number of good packets received that were directed to a multicast address
53
+ family: 'Network/EthPort/Packet/Multicast/In'
54
+ unit: "{packet}/s"
55
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.7
56
+ name: avaya.scEthPortCRCAlignErrors
57
+ chart_meta:
58
+ description: The total number of packets received that had a bad Frame Check Sequence
59
+ family: 'Network/EthPort/Error/CRCAlign/In'
60
+ unit: "{error}/s"
61
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.8
62
+ name: avaya.scEthPortOversizePkts
63
+ chart_meta:
64
+ description: The total number of packets received that were longer than 1518 octets
65
+ family: 'Network/EthPort/Packet/Oversize/In'
66
+ unit: "{packet}/s"
67
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.9
68
+ name: avaya.scEthPortFragments
69
+ chart_meta:
70
+ description: The total number of packets received that were less than 64 octets
71
+ family: 'Network/EthPort/Packet/Fragment/In'
72
+ unit: "{packet}/s"
73
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.10
74
+ name: avaya.scEthPortJabber
75
+ chart_meta:
76
+ description: The total number of packets received that were longer than 1518 octets
77
+ family: 'Network/EthPort/Error/Jabber/In'
78
+ unit: "{packet}/s"
79
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.11
80
+ name: avaya.scEthPortCollisions
81
+ chart_meta:
82
+ description: The best estimate of the total number of collisions
83
+ family: 'Network/EthPort/Collision/Total/Count'
84
+ unit: "{collision}/s"
85
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.12
86
+ name: avaya.scEthPortPkts64Octets
87
+ scale_factor: 8
88
+ chart_meta:
89
+ description: The total number of packets (including error packets) that were 64 octets in length
90
+ family: 'Network/EthPort/Packet/Size/64/Total'
91
+ unit: "By/s"
92
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.13
93
+ name: avaya.scEthPortPkts65to127Octets
94
+ scale_factor: 8
95
+ chart_meta:
96
+ description: The total number of packets (including error packets) that were between 65 and 127 octets
97
+ family: 'Network/EthPort/Packet/Size/65-127/Total'
98
+ unit: "By/s"
99
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.14
100
+ name: avaya.scEthPortPkts128to255Octets
101
+ scale_factor: 8
102
+ chart_meta:
103
+ description: The total number of packets (including error packets) that were between 128 and 255 octets
104
+ family: 'Network/EthPort/Packet/Size/128-255/Total'
105
+ unit: "By/s"
106
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.15
107
+ name: avaya.scEthPortPkts256to511Octets
108
+ scale_factor: 8
109
+ chart_meta:
110
+ description: The total number of packets (including error packets) that were between 256 and 511 octets
111
+ family: 'Network/EthPort/Packet/Size/256-511/Total'
112
+ unit: "By/s"
113
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.16
114
+ name: avaya.scEthPortPkts512to1023Octets
115
+ scale_factor: 8
116
+ chart_meta:
117
+ description: The total number of packets (including error packets) that were between 512 and 1023 octets
118
+ family: 'Network/EthPort/Packet/Size/512-1023/Total'
119
+ unit: "By/s"
120
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.17
121
+ name: avaya.scEthPortPkts1024to1518Octets
122
+ scale_factor: 8
123
+ chart_meta:
124
+ description: The total number of packets (including error packets) that were between 1024 and 1518 octets
125
+ family: 'Network/EthPort/Packet/Size/1024-1518/Total'
126
+ unit: "By/s"
127
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.18
128
+ name: avaya.scEthPortGoodPktsRec
129
+ chart_meta:
130
+ description: The total number of good packets received
131
+ family: 'Network/EthPort/Packet/Good/In'
132
+ unit: "{packet}/s"
133
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.19
134
+ name: avaya.scEthPortBadPkts
135
+ chart_meta:
136
+ description: The total number of bad packets filtered
137
+ family: 'Network/EthPort/Packet/Bad/In'
138
+ unit: "{packet}/s"
139
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.20
140
+ name: avaya.scEthPortGoodOctetsRec
141
+ scale_factor: 8
142
+ chart_meta:
143
+ description: The total number of good octets of data received
144
+ family: 'Network/EthPort/Traffic/Good/In'
145
+ unit: "By/s"
146
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.21
147
+ name: avaya.scEthPortBadOctets
148
+ scale_factor: 8
149
+ chart_meta:
150
+ description: The total number of bad octets of data filtered
151
+ family: 'Network/EthPort/Traffic/Bad/In'
152
+ unit: "By/s"
153
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.22
154
+ name: avaya.scEthPortGoodBroadcastOctetsRec
155
+ scale_factor: 8
156
+ chart_meta:
157
+ description: The total number of good octets received that were directed to the broadcast address
158
+ family: 'Network/EthPort/Traffic/Broadcast/In'
159
+ unit: "By/s"
160
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.23
161
+ name: avaya.scEthPortGoodMulticastOctetsRec
162
+ scale_factor: 8
163
+ chart_meta:
164
+ description: The total number of good octets received that were directed to a multicast address
165
+ family: 'Network/EthPort/Traffic/Multicast/In'
166
+ unit: "By/s"
167
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.25
168
+ name: avaya.scEthPortGoodOctetsSent
169
+ scale_factor: 8
170
+ chart_meta:
171
+ description: The total number of good octets of data sent
172
+ family: 'Network/EthPort/Traffic/Good/Out'
173
+ unit: "By/s"
174
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.26
175
+ name: avaya.scEthPortLateCollisions
176
+ chart_meta:
177
+ description: The best estimate of the total number of late collisions
178
+ family: 'Network/EthPort/Collision/Late/Count'
179
+ unit: "{collision}/s"
180
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.27
181
+ name: avaya.scEthPortFunctionalStatus
182
+ chart_meta:
183
+ description: Functional status of the port
184
+ family: 'Network/EthPort/Functional/Status'
185
+ unit: "{status}"
186
mapping:
104
- 1: le10b_port
105
- 2: le10c_port
106
- 3: le15_port
107
- 4: le20_port
108
- 5: le30x_port
109
- 6: le30xd_port
110
- 7: le40x_port
111
- 8: le40xt_port
112
- 9: lobe_rj45
113
- 10: lobe_d9
114
- 11: lobe_d25
115
- 12: lobe_fo
116
- 13: ri104_d25
117
- 14: ro104_d25
118
- 15: ri_rj45
119
- 16: ri_d9
120
- 17: ri_d25
121
- 18: ri_fo
122
- 19: ri104_rj45
123
- 20: ri104_d9
124
- 21: ro_rj45
125
- 22: ro_d9
126
- 23: ro_d25
127
- 24: ro_fo
128
- 25: ro104_rj45
129
- 26: ro104_d9
130
- 27: le80xt_port
131
- 28: le140xt_port
132
- 29: ielb-aui_port
133
- 30: ielb-10bt_port
134
- 31: ltrf4_port
135
- 32: ltrf16_port
136
- 33: lts16_port
137
- 34: llt8_port
138
- 35: le20r_port
139
- 36: itlb_ro_port
140
- 37: itlb_ri_port
141
- 38: itlb_dte_port
142
- 39: star_fo
143
- 40: le10bn_port
144
- 41: le120r_port
145
- 42: le140xtf-fo_port
146
- 43: le140xtf-10bt_port
147
- 44: le140xtc_port
148
- 45: le110b_port
149
- 46: le110bq_port
150
- 47: le140xtq_port
151
- 48: lert40-aui_port
152
- 49: lert40-10bt_port
153
- 50: clock-int
154
- 51: clock-ext
155
- 52: ri104_rj45_s
156
- 53: ro104_rj45_s
157
- 54: lobe104_rj45_s
158
- 55: le20fb_port
159
- 56: le140xtf-fofb_port
160
- 57: fddi-mic_port1
161
- 58: fddi-mic_port2
162
- 59: fddi-mic_port3
163
- 60: fddi-stm_port1
164
- 61: fddi-stm_port2
165
- 62: fddi-stm_port3
166
- 63: fddi-stl_port1
167
- 64: fddi-stl_port2
168
- 65: fddi-stl_port3
169
- 66: fddi-stp_port1
170
- 67: fddi-stp_port2
171
- 68: fddi-stp_port3
172
- 69: fddi-utp_port1
173
- 70: fddi-utp_port2
174
- 71: fddi-utp_port3
175
- 72: fddi-sts_port1
176
- 73: fddi-sts_port2
177
- 74: fddi-sts_port3
178
- 75: le140xtn_port
179
- 76: ltr104a-lobe_port
180
- 77: ltr104a-ri_port
181
- 78: ltr104a-ro_port
182
- 79: le120q_port
183
- 80: le120sq2_port_s
184
- 81: le120sq2_port_m
185
- 82: le120sq5_port
186
- 83: le120q-fb_port
187
- 84: le120sq2-fb_port_s
188
- 85: le120sq2-fb_port_m
189
- 86: le120sq5-fb_port
190
- 87: ltr108t-lobe_port1
191
- 88: ltr108t-ri_port1
192
- 89: ltr108t-ro_port1
193
- 90: ltr108t-lobe_port
194
- 91: ltr108f-lobe_port
195
- 92: ltr108f-star_port_fo
196
- 93: ltr108f-ri_port_fo
197
- 94: ltr108f-ro_port_fo
198
- 95: lse808_port
199
- 96: lhs_port
200
- 98: iefn_port
201
- 99: itfn_port
202
- 100: itre_port
203
- 107: ierp_port
204
- 108: lse108_port
205
- 109: lse208_port
206
- 110: le110cq_port
207
- 111: ltr108t-star_port1
208
- 112: she-10bt_port
209
- 113: she-aui_port
210
- 114: she-fo_port
211
- 115: she-fo_sync_port
212
- 116: le115q_port
213
- 117: sht-lobe_port
214
- 118: sht-ri_rj45_port
215
- 119: sht-ri_d9_port
216
- 120: sht-ri_fo_port
217
- 121: sht-ro_rj45_port
218
- 122: sht-ro_d9_port
219
- 123: sht-ro_fo_port
220
- 124: lhb_port
221
- 126: le140xts_port
222
- 127: le40xtn_port
223
- 128: le80xtn_port
224
- 129: itrp_port
225
- 130: fddi-lcf_port1
226
- 131: fddi-lcf_port2
227
- 132: fddi-lcf_port3
228
- 133: ltr108f-lobe_rj45
229
- 134: lse404_port
230
- 135: star104_rj45_s
231
- 136: she-10bfb_port
232
- 137: sht-star_port
233
- 138: le240xtc_port
234
- 139: le280xt_port
235
- 140: iefr_mic_port
236
- 141: ri104_rj45_sn
237
- 142: iwr10_base_t_port
238
- 144: ro104_rj45_sn
239
- 145: sh-efn-aui_port
240
- 146: lobe104_rj45_sn
241
- 147: sh-efn_port
242
- 148: sh-tfn_port
243
- 152: iere_port
244
- 153: lse404s_port
245
- 154: lse404s-fb_port
246
- 155: le240xtcs_port
247
- 156: le280xts_port
248
- 157: atm_mmf_port
249
- 158: lsa_port
250
- 159: atm_utp_port
251
- 160: sh-elb_aui_port
252
- 161: sh-elb10bt_port
253
- 162: lse404srj_port
254
- 163: lfe100_port
255
- 164: lsf100_port
256
- 165: lst-lobe_rj45_port
257
- 166: lst-star_rj45_port
258
- 167: lst-ri_rj45_port
259
- 168: lst-ro_rj45_port
260
- 169: ten_base_t_port
261
- 170: fl_port
262
- 171: shes-10bt_port
263
- 172: shes-aui_port
264
- 173: shes-fo_port
265
- 174: shes-10bfb_port
266
- 175: le180xt_port
267
- 177: lfe1008_port
268
- 178: lse-pm_port
269
- 179: sh-40sf_port
270
- 180: sh-80rj_port
271
- 181: ls3ls-wan
272
- 183: leb200_port
273
- 184: fat-pipe-fddi_port
274
- 186: lfe4004_port
275
- 190: sonet_port
276
- 191: fim_voice_port
277
- 192: lfe4004_sf_port
278
- 193: lfe4004_st_port
279
- 194: lge-2000_sx_port
280
- 195: lge-2000_lx_port
281
- 196: lfe8008_sutp_port
282
- 255: unknown_port
283
- 1000: visage10_bt_port
284
- 1001: visage16200_f_port
285
- 1004: visage16200_t_port
286
- 1005: visage16200_fc_port
287
- 1006: visage800_t_port
288
- 1007: visage800_f_port
289
- 1008: visage16155_fr_port
290
- 1009: visage16155_f_port
291
- 1010: visage2500_port
292
- 1012: visage3_ls_port
293
- 1013: visage1600_t_port
294
- 1014: visage1000_base_sx_port
295
- 1015: visage1000_base_lx_port
296
- 1016: cajun_p117_s_port
297
- 1017: cajun_p117_sr_port
298
- 2000: m10or100_base_tx_port
299
- 2001: m100_base_fx_port
300
- 2002: m1000_base_sx_port
301
- 2003: m1000_base_lx_port
302
- 2004: m10_base_fl_port
303
- 2005: m10_base_t_port
304
- 2006: m10or100_base_t_xdot1_q_port
305
- 2007: m-acc155or622_mmf_port
306
- 2008: m-acc155or622_smf_port
307
- 2500: cajun_p120-10or100_t_port
308
- 2501: cajun_p120-100_f_port
309
- 2502: cajun_p120-1000_sx_port
310
- 2503: cajun_p120-1000_lx_port
311
- 2504: cajun_p330-10or100_t_port
312
- 2505: cajun_p330-100_f_port
313
- 2506: cajun_p330-1000_sx_port
314
- 2507: cajun_p330-1000_lx_port
315
- 2508: cajun_p330-lag
316
- 2509: cajun_p330-lag100
317
- 2510: cajun_p330-lag1000
318
- 2511: cajun_p110-lag100
319
- 2512: cajun_p110-lag1000
320
- 2513: cajun_p120-1000_base_cx-gbic
321
- 2514: cajun_p120-1000_base_sx-gbic
322
- 2515: cajun_p120-1000_base_lx-gbic
323
- 2516: cajun_p120-1000_base_t-gbic
324
- 2517: cajun_p120-gbic_not_present
325
- 2518: cajun_p120-gbic_unknown
326
- 2519: cajun_p120-gbic_other
327
- 2520: cajun_p120_fibre_channel-gbic
328
- 2521: cajun_p120-1000_base_tx
329
- 2522: cajun_p330-1000_tx_port
330
- 2523: cajun_p330-1000_sx-gbic
331
- 2524: cajun_p330-1000_lx-gbic
332
- 2525: cajun_p330-1000_t-gbic
333
- 2526: cajun_p330-1000_cx-gbic
334
- 2527: cajun_p330-gbic_not_present
335
- 2528: cajun_p330-gbic_not_supported
336
- 2530: cajun_p130-10or100_base_tx_port
337
- 2531: cajun_p130-100_base_fx_port
338
- 2532: cajun_p130-1000_base_sx-gbic_port
339
- 2533: cajun_p130-1000_base_lx-gbic_port
340
- 2534: cajun_p130-1000_base_x_proprietary-gbic_port
341
- 2535: cajun_p130-gbic_not_supported
342
- 2536: cajun_p130-gbic_not_present
343
- 2537: cajun_p130-lag100
344
- 2538: cajun_p130-lag1000
345
- 2539: cajun_p130-1000_base_t_port
346
- 2540: cajun_p330-ml-lag
347
- 2541: cajun_p330-ml-1000_sx-sfp
348
- 2542: cajun_p330-ml-1000_lx-sfp
349
- 2543: cajun_p330-ml-lag100
350
- 2544: cajun_p330-ml-lag1000
351
- 2545: cajun_p330-ml-100or1000_t_port
352
- 2546: cajun_p330-ml-10or100_t_port
353
- 2547: cajun_p330-ml-sfp_not_present
354
- 2548: cajun_p330-ml-sfp_not_supported
355
- 2549: cajun_p330-10or100_t_port_and_in_pwr
356
- 2550: cajun_p330-ml-1000_tx-sfp
357
- 2640: avaya_c360-lag
358
- 2641: avaya_c360-1000_sx-sfp
359
- 2642: avaya_c360-1000_lx-sfp
360
- 2643: avaya_c360-lag100
361
- 2644: avaya_c360-lag1000
362
- 2645: avaya_c360-100or1000_tport
363
- 2646: avaya_c360-10or100_tport
364
- 2647: avaya_c360-sfp_not_present
365
- 2648: avaya_c360-sfp_not_supported
366
- 2649: avaya_c360-10or100_t_port_and_in_pwr
367
- 2650: avaya_c360-1000_tx-sfp
368
- 2811: avaya_g250-10or100_t_port_and_in_pwr
369
- 2812: avaya_g250-10or100_t_port
370
- 2902: avaya_g350-lag
371
- 2903: avaya_g350-1000_sx-sfp
372
- 2904: avaya_g350-1000_lx-sfp
373
- 2905: avaya_g350-lag100
374
- 2906: avaya_g350-lag1000
375
- 2907: avaya_g350-100or1000_t_port
376
- 2908: avaya_g350-10or100_t_port
377
- 2909: avaya_g350-sfp_not_present
378
- 2910: avaya_g350-sfp_not_supported
379
- 2911: avaya_g350-10or100_t_port_and_in_pwr
380
- 2912: avaya_g350-1000_tx-sfp
381
- 2913: avaya_g350-10or100or1000_t_port
382
- 3000: m15-155_f_port
383
- 3001: m3-622_f_port
384
- 3002: m3-622_sf_port
385
- 3003: m15-155_sf_port
386
- 3004: m15-155_ms_port
387
- 3005: m2-2400_i_port
388
- 3009: m4-ds3_port
389
- 3010: m4-e3_port
390
- 3500: avaya_c460-100_fport
391
- 3501: avaya_c460-1000_sx-sfp
392
- 3502: avaya_c460-1000_lx-sfp
393
- 3503: avaya_c460-lag100
394
- 3504: avaya_c460-lag1000
395
- 3505: avaya_c460-1000_t_port
396
- 3506: avaya_c460-10or100_tport
397
- 3507: avaya_c460-sfp_not_present
398
- 3508: avaya_c460-sfp_not_supported
399
- 3509: avaya_c460-10or100_t_port_and_in_pwr
400
- 3640: avaya_w310-lag
401
- 3641: avaya_w310-1000_sx-sfp
402
- 3642: avaya_w310-1000_lx-sfp
403
- 3643: avaya_w310-lag100
404
- 3644: avaya_w310-lag1000
405
- 3647: avaya_w310-sfp_not_present
406
- 3648: avaya_w310-sfp_not_supported
407
- 3649: avaya_w310-10or100_t_port_and_in_pwr
408
- 3650: avaya_w310-1000_tx-sfp
409
- 4000: avaya_communication_manager_branch_editioni40-10or100_t_port_and_in_pwr
410
- 4001: avaya_communication_manager_branch_editioni40-10or100_t_port
411
- 4002: avaya_communication_manager_branch_editioni120-lag
412
- 4003: avaya_communication_manager_branch_editioni120-1000_sx-sfp
413
- 4004: avaya_communication_manager_branch_editioni120-1000_lx-sfp
414
- 4005: avaya_communication_manager_branch_editioni120-lag100
415
- 4006: avaya_communication_manager_branch_editioni120-lag1000
416
- 4007: avaya_communication_manager_branch_editioni120-100or1000_t_port
417
- 4008: avaya_communication_manager_branch_editioni120-10or100_t_port
418
- 4009: avaya_communication_manager_branch_editioni120-sfp_not_present
419
- 4010: avaya_communication_manager_branch_editioni120-sfp_not_supported
420
- 4011: avaya_communication_manager_branch_editioni120-10or100_t_port_and_in_pwr
421
- 4012: avaya_communication_manager_branch_editioni120-1000_tx-sfp
422
- 4013: avaya_communication_manager_branch_editioni120-10or100or1000_t_port
423
- 4014: avaya_communication_manager_branch_edition_g450-10or100or1000_t_port
424
- 4015: avaya_communication_manager_branch_edition_g450-10or100_t_port
425
- 4017: avaya_communication_manager_branch_edition_g430-10or100_tport
426
- 4019: avaya_communication_manager_branch_edition_g430-10or100_t_port_and_in_pwr
427
- 4020: avaya_g430-10or100_tport
428
- 4021: avaya_g430-10or100_t_port_and_in_pwr
429
- - symbol:
430
- name: avaya.genPortDescr
431
- OID: 1.3.6.1.4.1.81.9.1.1.5
432
- tag: avaya_gen_port_descr
433
- - symbol:
434
- name: avaya.genPortName
435
- OID: 1.3.6.1.4.1.81.9.1.1.21
436
- tag: avaya_gen_port_name
437
- - symbol:
438
- name: avaya.genPortClassification
439
- OID: 1.3.6.1.4.1.81.9.1.1.22
440
- tag: avaya_gen_port_classification # TODO: convert to metric
441
- mapping:
442
- 1: regular
443
- 2: valuable
187
+ 1: ok
188
+ 2: rld
189
+ 3: rx_jabber
190
+ 8: partition
191
+ 10: remote_fault
192
+ 11: rsp_error
193
255: not_supported
445
- - symbol:
446
- name: avaya.scEthPortMode
447
- OID: 1.3.6.1.4.1.81.28.2.1.1.1.28
448
- tag: avaya_sc_eth_port_mode # TODO: convert to metric
194
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.28
195
+ name: avaya.scEthPortMode
196
+ chart_meta:
197
+ description: Port duplex mode
198
+ family: 'Network/EthPort/Duplex/Status'
199
+ unit: "{status}"
200
mapping:
201
1: half_duplex
202
2: full_duplex_no_pause
@@ -456,40 +207,546 @@ metrics:
207
7: full_duplex_sym_pause
208
8: full_duplex_asym_rx_pause
209
255: not_supported
459
- - symbol:
460
- name: avaya.scEthPortSpeed
210
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.31
211
+ name: avaya.scEthPortAutoNegotiationStatus
212
+ chart_meta:
213
+ description: The status of the Auto Negotiation process
214
+ family: 'Network/EthPort/AutoNegotiation/Status'
215
+ unit: "{status}"
216
+ mapping:
217
+ 1: pass
218
+ 2: fail
219
+ 3: disable
220
+ 4: inProgress
221
+ 255: notSupported
222
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.32
223
+ name: avaya.scEthPortTotalOctets
224
+ scale_factor: 8
225
+ chart_meta:
226
+ description: The total number of octets received and transmitted
227
+ family: 'Network/EthPort/Traffic/Total'
228
+ unit: "By/s"
229
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.33
230
+ name: avaya.scEthPortTotalPkts
231
+ chart_meta:
232
+ description: The total number of packets received and transmitted
233
+ family: 'Network/EthPort/Packet/Total'
234
+ unit: "{packet}/s"
235
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.34
236
+ name: avaya.scEthPortDropEvents
237
+ chart_meta:
238
+ description: The total number of events in which the probe could not count packets due to lack of resources
239
+ family: 'Network/EthPort/Drop/Event/Count'
240
+ unit: "{event}/s"
241
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.40
242
+ name: avaya.scEthPortGoodUnicastPktsRec
243
+ chart_meta:
244
+ description: The total number of good packets received that were directed to a unicast address
245
+ family: 'Network/EthPort/Packet/Unicast/In'
246
+ unit: "{packet}/s"
247
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.41
248
+ name: avaya.scEthPortDiscardPktsRec
249
+ chart_meta:
250
+ description: The total number of packets which were chosen to be discarded
251
+ family: 'Network/EthPort/Packet/Discard/In'
252
+ unit: "{packet}/s"
253
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.42
254
+ name: avaya.scEthPortUnicastPktsSent
255
+ chart_meta:
256
+ description: The total number of good packets sent by the port that were directed to a unicast address
257
+ family: 'Network/EthPort/Packet/Unicast/Out'
258
+ unit: "{packet}/s"
259
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.43
260
+ name: avaya.scEthPortDiscardPktsSent
261
+ chart_meta:
262
+ description: The total number of packets which were chosen to be discarded
263
+ family: 'Network/EthPort/Packet/Discard/Out'
264
+ unit: "{packet}/s"
265
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.45
266
+ name: avaya.scEthPortMulticastPktsSent
267
+ chart_meta:
268
+ description: The total number of good packets sent by the port that were directed to a multicast address
269
+ family: 'Network/EthPort/Packet/Multicast/Out'
270
+ unit: "{packet}/s"
271
+ - OID: 1.3.6.1.4.1.81.28.2.1.1.1.46
272
+ name: avaya.scEthPortUndersizePktsRec
273
+ chart_meta:
274
+ description: The total number of packets received that were less than 64 octets long
275
+ family: 'Network/EthPort/Packet/Undersize/In'
276
+ unit: "{packet}/s"
277
+ metric_tags:
278
+ - tag: avaya_sc_eth_port_index
279
+ index: 1
280
+ - tag: avaya_sc_eth_port_group_id
281
+ symbol:
282
+ name: scEthPortGroupId
283
+ OID: 1.3.6.1.4.1.81.28.2.1.1.1.1
284
+ - tag: avaya_sc_eth_port_id
285
+ symbol:
286
+ name: scEthPortId
287
+ OID: 1.3.6.1.4.1.81.28.2.1.1.1.2
288
+ - tag: _avaya_sc_eth_port_speed
289
+ symbol:
290
+ name: scEthPortSpeed
291
OID: 1.3.6.1.4.1.81.28.2.1.1.1.29
462
- tag: avaya_sc_eth_port_speed # TODO: convert to metric
292
mapping:
293
1: ethernet
465
- 2: fast_ethernet
466
- 3: gigabit_ethernet
467
- 4: a155_mbps
468
- 5: a622_mbps
469
- 255: not_supported
470
- - symbol:
471
- OID: 1.3.6.1.4.1.81.9.1.1.10
472
- name: avaya.genPortAdminStatus
473
- tag: avaya_gen_port_admin_status # TODO: convert to metric
474
- mapping:
475
- 1: enabled
476
- 2: disabled
477
- - symbol:
478
- OID: 1.3.6.1.4.1.81.28.2.1.1.1.27
479
- name: avaya.scEthPortFunctionalStatus
480
- tag: avaya_sc_eth_port_functional_status # TODO: convert to metric
481
- mapping:
482
- 1: ok
483
- 2: rld
484
- 3: rx_jabber
485
- 8: partition
486
- 10: remote_fault
487
- 11: rsp_error
488
- 255: not_supported
489
-metric_tags:
490
- - tag: avaya_gen_cpu_utilization_enable_monitoring
491
- OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.2
492
- symbol: genCpuUtilizationEnableMonitoring
493
- mapping:
494
- 1: disabled
495
- 2: enabled
294
+ 2: fastEthernet
295
+ 3: gigabitEthernet
296
+ 4: a155Mbps
297
+ 5: a622Mbps
298
+ 6: notSupported
299
+
300
+# TODO: find correlation between CONFIG-MIB and XSWITCH-MIB
301
+# - MIB: CONFIG-MIB
302
+# table:
303
+# name: genPortTable
304
+# OID: 1.3.6.1.4.1.81.9.1
305
+# symbols:
306
+# - name: avaya.genPortFunctionality
307
+# OID: 1.3.6.1.4.1.81.9.1.1.3
308
+# description: Port functionality
309
+# family: 'Port/Functionality'
310
+# mapping:
311
+# 1: private
312
+# 2: repeater_aui
313
+# 3: repeater_thin
314
+# 4: repeater10_base_t
315
+# 5: ten_base_f_sync_act
316
+# 6: foirl
317
+# 7: xcvr
318
+# 8: lobe
319
+# 9: ri
320
+# 10: ro
321
+# 11: serial
322
+# 12: local_talk
323
+# 13: fddi
324
+# 14: clock
325
+# 15: gen_token_ring
326
+# 16: dte
327
+# 17: active_lobe
328
+# 18: gen_active_token_ring
329
+# 19: ten_base_fb
330
+# 20: eth10_base_t
331
+# 21: fiber
332
+# 22: wan
333
+# 23: star
334
+# 24: active_ri
335
+# 25: active_ro
336
+# 26: fl
337
+# 27: sonet-oc3
338
+# 28: a100_base_tx
339
+# 29: a100_base_fx
340
+# 30: oc3
341
+# 31: an_atm_main
342
+# 32: an_atm_secondary
343
+# 33: a1000_base_fx
344
+# 40: sonet
345
+# 41: fim_voice
346
+# 42: sdh-stm1
347
+# 43: eth1000_base_sx
348
+# 44: eth1000_base_lx
349
+# 45: eth10_base_fl
350
+# 46: eth_lag
351
+# 47: lag100
352
+# 48: lag1000
353
+# 49: eth1000_base_tx
354
+# 50: eth1000_base_cx
355
+# 51: g_bic_not_present
356
+# 52: g_bic_not_supported
357
+# 53: eth1000_base_x_proprietary
358
+# 54: oc12
359
+# 55: s_fp_not_present
360
+# 56: s_fp_not_supported
361
+# 57: eth10_base_tw_in_pwr
362
+# 58: eth100_base_t_xw_in_pwr
363
+# - OID: 1.3.6.1.4.1.81.28.2.1.1.1.28
364
+# name: avaya.scEthPortMode
365
+# chart_meta:
366
+# description:
367
+# family: ''
368
+# unit: "{status}"
369
+# mapping:
370
+# 1: half_duplex
371
+# 2: full_duplex_no_pause
372
+# 3: full_duplex_proprietary_fc
373
+# 4: full_duplex_isl
374
+# 5: full_duplex_flow_control_isl
375
+# 6: full_duplex_asym_tx_pause
376
+# 7: full_duplex_sym_pause
377
+# 8: full_duplex_asym_rx_pause
378
+# 255: not_supported
379
+# - OID: 1.3.6.1.4.1.81.9.1.1.10
380
+# name: avaya.genPortAdminStatus
381
+# chart_meta:
382
+# description:
383
+# family: ''
384
+# unit: "{status}"
385
+# mapping:
386
+# 1: enabled
387
+# 2: disabled
388
+# - OID: 1.3.6.1.4.1.81.28.2.1.1.1.27
389
+# name: avaya.scEthPortFunctionalStatus
390
+# chart_meta:
391
+# description:
392
+# family: ''
393
+# unit: "{status}"
394
+# mapping:
395
+# 1: ok
396
+# 2: rld
397
+# 3: rx_jabber
398
+# 8: partition
399
+# 10: remote_fault
400
+# 11: rsp_error
401
+# 255: not_supported
402
+# metric_tags:
403
+# - tag: avaya_gen_port_id
404
+# symbol:
405
+# name: avaya.genPortId
406
+# OID: 1.3.6.1.4.1.81.9.1.1.2
407
+# - tag: avaya_gen_port_type
408
+# symbol:
409
+# name: avaya.genPortType
410
+# OID: 1.3.6.1.4.1.81.9.1.1.4
411
+# mapping:
412
+# 1: le10b_port
413
+# 2: le10c_port
414
+# 3: le15_port
415
+# 4: le20_port
416
+# 5: le30x_port
417
+# 6: le30xd_port
418
+# 7: le40x_port
419
+# 8: le40xt_port
420
+# 9: lobe_rj45
421
+# 10: lobe_d9
422
+# 11: lobe_d25
423
+# 12: lobe_fo
424
+# 13: ri104_d25
425
+# 14: ro104_d25
426
+# 15: ri_rj45
427
+# 16: ri_d9
428
+# 17: ri_d25
429
+# 18: ri_fo
430
+# 19: ri104_rj45
431
+# 20: ri104_d9
432
+# 21: ro_rj45
433
+# 22: ro_d9
434
+# 23: ro_d25
435
+# 24: ro_fo
436
+# 25: ro104_rj45
437
+# 26: ro104_d9
438
+# 27: le80xt_port
439
+# 28: le140xt_port
440
+# 29: ielb-aui_port
441
+# 30: ielb-10bt_port
442
+# 31: ltrf4_port
443
+# 32: ltrf16_port
444
+# 33: lts16_port
445
+# 34: llt8_port
446
+# 35: le20r_port
447
+# 36: itlb_ro_port
448
+# 37: itlb_ri_port
449
+# 38: itlb_dte_port
450
+# 39: star_fo
451
+# 40: le10bn_port
452
+# 41: le120r_port
453
+# 42: le140xtf-fo_port
454
+# 43: le140xtf-10bt_port
455
+# 44: le140xtc_port
456
+# 45: le110b_port
457
+# 46: le110bq_port
458
+# 47: le140xtq_port
459
+# 48: lert40-aui_port
460
+# 49: lert40-10bt_port
461
+# 50: clock-int
462
+# 51: clock-ext
463
+# 52: ri104_rj45_s
464
+# 53: ro104_rj45_s
465
+# 54: lobe104_rj45_s
466
+# 55: le20fb_port
467
+# 56: le140xtf-fofb_port
468
+# 57: fddi-mic_port1
469
+# 58: fddi-mic_port2
470
+# 59: fddi-mic_port3
471
+# 60: fddi-stm_port1
472
+# 61: fddi-stm_port2
473
+# 62: fddi-stm_port3
474
+# 63: fddi-stl_port1
475
+# 64: fddi-stl_port2
476
+# 65: fddi-stl_port3
477
+# 66: fddi-stp_port1
478
+# 67: fddi-stp_port2
479
+# 68: fddi-stp_port3
480
+# 69: fddi-utp_port1
481
+# 70: fddi-utp_port2
482
+# 71: fddi-utp_port3
483
+# 72: fddi-sts_port1
484
+# 73: fddi-sts_port2
485
+# 74: fddi-sts_port3
486
+# 75: le140xtn_port
487
+# 76: ltr104a-lobe_port
488
+# 77: ltr104a-ri_port
489
+# 78: ltr104a-ro_port
490
+# 79: le120q_port
491
+# 80: le120sq2_port_s
492
+# 81: le120sq2_port_m
493
+# 82: le120sq5_port
494
+# 83: le120q-fb_port
495
+# 84: le120sq2-fb_port_s
496
+# 85: le120sq2-fb_port_m
497
+# 86: le120sq5-fb_port
498
+# 87: ltr108t-lobe_port1
499
+# 88: ltr108t-ri_port1
500
+# 89: ltr108t-ro_port1
501
+# 90: ltr108t-lobe_port
502
+# 91: ltr108f-lobe_port
503
+# 92: ltr108f-star_port_fo
504
+# 93: ltr108f-ri_port_fo
505
+# 94: ltr108f-ro_port_fo
506
+# 95: lse808_port
507
+# 96: lhs_port
508
+# 98: iefn_port
509
+# 99: itfn_port
510
+# 100: itre_port
511
+# 107: ierp_port
512
+# 108: lse108_port
513
+# 109: lse208_port
514
+# 110: le110cq_port
515
+# 111: ltr108t-star_port1
516
+# 112: she-10bt_port
517
+# 113: she-aui_port
518
+# 114: she-fo_port
519
+# 115: she-fo_sync_port
520
+# 116: le115q_port
521
+# 117: sht-lobe_port
522
+# 118: sht-ri_rj45_port
523
+# 119: sht-ri_d9_port
524
+# 120: sht-ri_fo_port
525
+# 121: sht-ro_rj45_port
526
+# 122: sht-ro_d9_port
527
+# 123: sht-ro_fo_port
528
+# 124: lhb_port
529
+# 126: le140xts_port
530
+# 127: le40xtn_port
531
+# 128: le80xtn_port
532
+# 129: itrp_port
533
+# 130: fddi-lcf_port1
534
+# 131: fddi-lcf_port2
535
+# 132: fddi-lcf_port3
536
+# 133: ltr108f-lobe_rj45
537
+# 134: lse404_port
538
+# 135: star104_rj45_s
539
+# 136: she-10bfb_port
540
+# 137: sht-star_port
541
+# 138: le240xtc_port
542
+# 139: le280xt_port
543
+# 140: iefr_mic_port
544
+# 141: ri104_rj45_sn
545
+# 142: iwr10_base_t_port
546
+# 144: ro104_rj45_sn
547
+# 145: sh-efn-aui_port
548
+# 146: lobe104_rj45_sn
549
+# 147: sh-efn_port
550
+# 148: sh-tfn_port
551
+# 152: iere_port
552
+# 153: lse404s_port
553
+# 154: lse404s-fb_port
554
+# 155: le240xtcs_port
555
+# 156: le280xts_port
556
+# 157: atm_mmf_port
557
+# 158: lsa_port
558
+# 159: atm_utp_port
559
+# 160: sh-elb_aui_port
560
+# 161: sh-elb10bt_port
561
+# 162: lse404srj_port
562
+# 163: lfe100_port
563
+# 164: lsf100_port
564
+# 165: lst-lobe_rj45_port
565
+# 166: lst-star_rj45_port
566
+# 167: lst-ri_rj45_port
567
+# 168: lst-ro_rj45_port
568
+# 169: ten_base_t_port
569
+# 170: fl_port
570
+# 171: shes-10bt_port
571
+# 172: shes-aui_port
572
+# 173: shes-fo_port
573
+# 174: shes-10bfb_port
574
+# 175: le180xt_port
575
+# 177: lfe1008_port
576
+# 178: lse-pm_port
577
+# 179: sh-40sf_port
578
+# 180: sh-80rj_port
579
+# 181: ls3ls-wan
580
+# 183: leb200_port
581
+# 184: fat-pipe-fddi_port
582
+# 186: lfe4004_port
583
+# 190: sonet_port
584
+# 191: fim_voice_port
585
+# 192: lfe4004_sf_port
586
+# 193: lfe4004_st_port
587
+# 194: lge-2000_sx_port
588
+# 195: lge-2000_lx_port
589
+# 196: lfe8008_sutp_port
590
+# 255: unknown_port
591
+# 1000: visage10_bt_port
592
+# 1001: visage16200_f_port
593
+# 1004: visage16200_t_port
594
+# 1005: visage16200_fc_port
595
+# 1006: visage800_t_port
596
+# 1007: visage800_f_port
597
+# 1008: visage16155_fr_port
598
+# 1009: visage16155_f_port
599
+# 1010: visage2500_port
600
+# 1012: visage3_ls_port
601
+# 1013: visage1600_t_port
602
+# 1014: visage1000_base_sx_port
603
+# 1015: visage1000_base_lx_port
604
+# 1016: cajun_p117_s_port
605
+# 1017: cajun_p117_sr_port
606
+# 2000: m10or100_base_tx_port
607
+# 2001: m100_base_fx_port
608
+# 2002: m1000_base_sx_port
609
+# 2003: m1000_base_lx_port
610
+# 2004: m10_base_fl_port
611
+# 2005: m10_base_t_port
612
+# 2006: m10or100_base_t_xdot1_q_port
613
+# 2007: m-acc155or622_mmf_port
614
+# 2008: m-acc155or622_smf_port
615
+# 2500: cajun_p120-10or100_t_port
616
+# 2501: cajun_p120-100_f_port
617
+# 2502: cajun_p120-1000_sx_port
618
+# 2503: cajun_p120-1000_lx_port
619
+# 2504: cajun_p330-10or100_t_port
620
+# 2505: cajun_p330-100_f_port
621
+# 2506: cajun_p330-1000_sx_port
622
+# 2507: cajun_p330-1000_lx_port
623
+# 2508: cajun_p330-lag
624
+# 2509: cajun_p330-lag100
625
+# 2510: cajun_p330-lag1000
626
+# 2511: cajun_p110-lag100
627
+# 2512: cajun_p110-lag1000
628
+# 2513: cajun_p120-1000_base_cx-gbic
629
+# 2514: cajun_p120-1000_base_sx-gbic
630
+# 2515: cajun_p120-1000_base_lx-gbic
631
+# 2516: cajun_p120-1000_base_t-gbic
632
+# 2517: cajun_p120-gbic_not_present
633
+# 2518: cajun_p120-gbic_unknown
634
+# 2519: cajun_p120-gbic_other
635
+# 2520: cajun_p120_fibre_channel-gbic
636
+# 2521: cajun_p120-1000_base_tx
637
+# 2522: cajun_p330-1000_tx_port
638
+# 2523: cajun_p330-1000_sx-gbic
639
+# 2524: cajun_p330-1000_lx-gbic
640
+# 2525: cajun_p330-1000_t-gbic
641
+# 2526: cajun_p330-1000_cx-gbic
642
+# 2527: cajun_p330-gbic_not_present
643
+# 2528: cajun_p330-gbic_not_supported
644
+# 2530: cajun_p130-10or100_base_tx_port
645
+# 2531: cajun_p130-100_base_fx_port
646
+# 2532: cajun_p130-1000_base_sx-gbic_port
647
+# 2533: cajun_p130-1000_base_lx-gbic_port
648
+# 2534: cajun_p130-1000_base_x_proprietary-gbic_port
649
+# 2535: cajun_p130-gbic_not_supported
650
+# 2536: cajun_p130-gbic_not_present
651
+# 2537: cajun_p130-lag100
652
+# 2538: cajun_p130-lag1000
653
+# 2539: cajun_p130-1000_base_t_port
654
+# 2540: cajun_p330-ml-lag
655
+# 2541: cajun_p330-ml-1000_sx-sfp
656
+# 2542: cajun_p330-ml-1000_lx-sfp
657
+# 2543: cajun_p330-ml-lag100
658
+# 2544: cajun_p330-ml-lag1000
659
+# 2545: cajun_p330-ml-100or1000_t_port
660
+# 2546: cajun_p330-ml-10or100_t_port
661
+# 2547: cajun_p330-ml-sfp_not_present
662
+# 2548: cajun_p330-ml-sfp_not_supported
663
+# 2549: cajun_p330-10or100_t_port_and_in_pwr
664
+# 2550: cajun_p330-ml-1000_tx-sfp
665
+# 2640: avaya_c360-lag
666
+# 2641: avaya_c360-1000_sx-sfp
667
+# 2642: avaya_c360-1000_lx-sfp
668
+# 2643: avaya_c360-lag100
669
+# 2644: avaya_c360-lag1000
670
+# 2645: avaya_c360-100or1000_tport
671
+# 2646: avaya_c360-10or100_tport
672
+# 2647: avaya_c360-sfp_not_present
673
+# 2648: avaya_c360-sfp_not_supported
674
+# 2649: avaya_c360-10or100_t_port_and_in_pwr
675
+# 2650: avaya_c360-1000_tx-sfp
676
+# 2811: avaya_g250-10or100_t_port_and_in_pwr
677
+# 2812: avaya_g250-10or100_t_port
678
+# 2902: avaya_g350-lag
679
+# 2903: avaya_g350-1000_sx-sfp
680
+# 2904: avaya_g350-1000_lx-sfp
681
+# 2905: avaya_g350-lag100
682
+# 2906: avaya_g350-lag1000
683
+# 2907: avaya_g350-100or1000_t_port
684
+# 2908: avaya_g350-10or100_t_port
685
+# 2909: avaya_g350-sfp_not_present
686
+# 2910: avaya_g350-sfp_not_supported
687
+# 2911: avaya_g350-10or100_t_port_and_in_pwr
688
+# 2912: avaya_g350-1000_tx-sfp
689
+# 2913: avaya_g350-10or100or1000_t_port
690
+# 3000: m15-155_f_port
691
+# 3001: m3-622_f_port
692
+# 3002: m3-622_sf_port
693
+# 3003: m15-155_sf_port
694
+# 3004: m15-155_ms_port
695
+# 3005: m2-2400_i_port
696
+# 3009: m4-ds3_port
697
+# 3010: m4-e3_port
698
+# 3500: avaya_c460-100_fport
699
+# 3501: avaya_c460-1000_sx-sfp
700
+# 3502: avaya_c460-1000_lx-sfp
701
+# 3503: avaya_c460-lag100
702
+# 3504: avaya_c460-lag1000
703
+# 3505: avaya_c460-1000_t_port
704
+# 3506: avaya_c460-10or100_tport
705
+# 3507: avaya_c460-sfp_not_present
706
+# 3508: avaya_c460-sfp_not_supported
707
+# 3509: avaya_c460-10or100_t_port_and_in_pwr
708
+# 3640: avaya_w310-lag
709
+# 3641: avaya_w310-1000_sx-sfp
710
+# 3642: avaya_w310-1000_lx-sfp
711
+# 3643: avaya_w310-lag100
712
+# 3644: avaya_w310-lag1000
713
+# 3647: avaya_w310-sfp_not_present
714
+# 3648: avaya_w310-sfp_not_supported
715
+# 3649: avaya_w310-10or100_t_port_and_in_pwr
716
+# 3650: avaya_w310-1000_tx-sfp
717
+# 4000: avaya_communication_manager_branch_editioni40-10or100_t_port_and_in_pwr
718
+# 4001: avaya_communication_manager_branch_editioni40-10or100_t_port
719
+# 4002: avaya_communication_manager_branch_editioni120-lag
720
+# 4003: avaya_communication_manager_branch_editioni120-1000_sx-sfp
721
+# 4004: avaya_communication_manager_branch_editioni120-1000_lx-sfp
722
+# 4005: avaya_communication_manager_branch_editioni120-lag100
723
+# 4006: avaya_communication_manager_branch_editioni120-lag1000
724
+# 4007: avaya_communication_manager_branch_editioni120-100or1000_t_port
725
+# 4008: avaya_communication_manager_branch_editioni120-10or100_t_port
726
+# 4009: avaya_communication_manager_branch_editioni120-sfp_not_present
727
+# 4010: avaya_communication_manager_branch_editioni120-sfp_not_supported
728
+# 4011: avaya_communication_manager_branch_editioni120-10or100_t_port_and_in_pwr
729
+# 4012: avaya_communication_manager_branch_editioni120-1000_tx-sfp
730
+# 4013: avaya_communication_manager_branch_editioni120-10or100or1000_t_port
731
+# 4014: avaya_communication_manager_branch_edition_g450-10or100or1000_t_port
732
+# 4015: avaya_communication_manager_branch_edition_g450-10or100_t_port
733
+# 4017: avaya_communication_manager_branch_edition_g430-10or100_tport
734
+# 4019: avaya_communication_manager_branch_edition_g430-10or100_t_port_and_in_pwr
735
+# 4020: avaya_g430-10or100_tport
736
+# 4021: avaya_g430-10or100_t_port_and_in_pwr
737
+# - tag: avaya_gen_port_descr
738
+# symbol:
739
+# name: avaya.genPortDescr
740
+# OID: 1.3.6.1.4.1.81.9.1.1.5
741
+# - tag: avaya_gen_port_name
742
+# symbol:
743
+# name: avaya.genPortName
744
+# OID: 1.3.6.1.4.1.81.9.1.1.21
745
+# - symbol:
746
+# name: avaya.genPortClassification
747
+# OID: 1.3.6.1.4.1.81.9.1.1.22
748
+# tag: avaya_gen_port_classification # TODO: convert to metric
749
+# mapping:
750
+# 1: regular
751
+# 2: valuable
752
+# 255: not_supported
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-media-gateway.yaml
+67
-95
@@ -5,33 +5,51 @@ extends:
5
- _std-ospf-mib.yaml
6
- avaya.yaml
7
8
+sysobjectid:
9
+ - 1.3.6.1.4.1.6889.1.45.103.8 # G450 Media Gateway
10
+ - 1.3.6.1.4.1.6889.1.45.103.41 # G430 Media Gateway
11
+
12
metadata:
13
device:
14
fields:
15
type:
16
value: "Media Gateway"
17
14
-sysobjectid:
15
- - 1.3.6.1.4.1.6889.1.45.103.8 # G450 Media Gateway
16
- - 1.3.6.1.4.1.6889.1.45.103.41 # G430 Media Gateway
18
+metric_tags:
19
+ - tag: avaya_cmg_hw_type
20
+ OID: 1.3.6.1.4.1.6889.2.9.1.1.1.0
21
+ symbol: cmgHWType
22
+ mapping:
23
+ 1: media-gateway
24
+ 2: g350
25
+ 3: avaya_g250
26
+ 4: avaya_g250-bri
27
+ 5: avaya_g250-ds1
28
+ 6: avaya_g250-dcp
29
+ 7: avaya_g450
30
+ 8: avaya_g250-a14
31
+ 10: avaya_tgm550
32
+ 28: avaya_communication_manager_branch_editioni120
33
+ 29: avaya_communication_manager_branch_editioni40-analog
34
+ 30: avaya_communication_manager_branch_editioni40-bri
35
+ 31: avaya_communication_manager_branch_editioni40-ds1
36
+ 32: avaya_communication_manager_branch_editioni40-dcp
37
+ 33: avaya_trm480
38
+ 34: avaya_communication_manager_branch_editioni40-a14
39
+ 35: avaya_communication_manager_branch_edition_g450
40
+ 37: avaya_communication_manager_branch_edition_g430
41
+ 41: avaya_g430
42
+ - tag: avaya_cmg_model_number
43
+ OID: 1.3.6.1.4.1.6889.2.9.1.1.2.0
44
+ symbol: cmgModelNumber
45
+ - tag: avaya_cmg_serial_number
46
+ OID: 1.3.6.1.4.1.6889.2.9.1.1.4.0
47
+ symbol: cmgSerialNumber
48
+ - tag: avaya_cmg_active_controller_address
49
+ OID: 1.3.6.1.4.1.6889.2.9.1.3.2.0
50
+ symbol: cmgActiveControllerAddress
51
52
metrics:
19
- - MIB: UTILIZATION-MANAGEMENT-MIB
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
- 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
31
- chart_meta:
32
- description: Percentage of memory used
33
- family: Memory/Usage
34
- unit: "%"
53
- MIB: AVAYA-ENTITY-MIB
54
table:
55
name: avEntPhyChFruTable
@@ -41,7 +59,7 @@ metrics:
59
name: avaya.avEntPhyChFruFault
60
chart_meta:
61
description: Description of FRU fault
44
- family: Hardware/FRU/Fault/Status
62
+ family: 'Hardware/FRU/Fault/Status'
63
unit: "{status}"
64
mapping:
65
1: none
@@ -56,7 +74,7 @@ metrics:
74
name: avaya.avEntPhyChFruOperStat
75
chart_meta:
76
description: Operational status of the chassis FRU unit
59
- family: Hardware/FRU/Operational/Status
77
+ family: 'Hardware/FRU/Operational/Status'
78
unit: "{status}"
79
mapping:
80
1: ok
@@ -66,51 +84,32 @@ metrics:
84
metric_tags:
85
- index: 1
86
tag: avaya_ent_physical_index
69
- # - MIB: G700-MG-MIB
70
- # symbol:
71
- # name: avaya.cmgRemoteSigDscp
72
- # OID: 1.3.6.1.4.1.6889.2.9.1.2.2.2.0
73
- # description: DiffServ code point for signaling traffic on the H.248 link received from the controller
74
- # unit: "1"
75
- # TODO we don't have mapping for this
87
+
88
- MIB: G700-MG-MIB
89
symbol:
90
name: avaya.cmgRemoteSig802Priority
91
OID: 1.3.6.1.4.1.6889.2.9.1.2.2.3.0
92
chart_meta:
93
description: 802.1 priority for signaling traffic on the H.248 link received from the controller
82
- family: Network/SignalTraffic/Remote/Priority
94
+ family: 'Voice/H248/SignalPriority/Remote'
95
unit: "1"
84
- # - MIB: G700-MG-MIB
85
- # symbol:
86
- # name: avaya.cmgLocalSigDscp
87
- # OID: 1.3.6.1.4.1.6889.2.9.1.2.2.4.0
88
- # description: DiffServ code point for signaling traffic on the H.248 link locally administered
89
- # unit: "1"
90
- # TODO we don't have mapping for this
96
+
97
- MIB: G700-MG-MIB
98
symbol:
99
name: avaya.cmgLocalSig802Priority
100
OID: 1.3.6.1.4.1.6889.2.9.1.2.2.5.0
101
chart_meta:
102
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
103
- chart_meta:
104
- description: Current 802.1 VLAN ID in use for this processor
105
- family: Network/VLAN/Current
103
+ family: 'Voice/H248/SignalPriority/Local'
104
unit: "1"
105
+
106
- MIB: G700-MG-MIB
107
symbol:
108
name: avaya.cmgH248LinkErrorCode
109
OID: 1.3.6.1.4.1.6889.2.9.1.3.4.0
110
chart_meta:
111
description: Most recently received H.248 error code affecting the link between media gateway and controller
113
- family: Network/H248Link/Error/Code
112
+ family: 'Voice/H248/Link/Error/Status'
113
unit: "{status}"
114
mapping:
115
0: No error
@@ -175,25 +174,25 @@ metrics:
174
OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.6
175
chart_meta:
176
description: Total number of channels available to the VoIP engine
178
- family: Voice/VoIPEngine/Channel/Total
177
+ family: 'Voice/VoIPEngine/Channel/Total'
178
unit: "{channel}"
179
- name: avaya.cmgVoipChannelsInUse
180
OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.7
181
chart_meta:
182
description: Number of channels currently in use at the VoIP engine
184
- family: Voice/VoIPEngine/Channel/InUse
183
+ family: 'Voice/VoIPEngine/Channel/InUse'
184
unit: "{channel}"
185
- name: avaya.cmgVoipAverageOccupancy
186
OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.8
187
chart_meta:
188
description: Five-minute average occupancy of the VoIP engine
190
- family: Voice/VoIPEngine/Occupancy
189
+ family: 'Voice/VoIPEngine/Occupancy'
190
unit: "%"
191
- OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.9
192
name: avaya.cmgVoipHyperactivity
193
chart_meta:
194
description: Indicates whether hyperactivity has been detected
196
- family: Voice/VoIPEngine/Hyperactivity/Status
195
+ family: 'Voice/VoIPEngine/Hyperactivity/Status'
196
unit: "{status}"
197
mapping:
198
1: normal
@@ -203,7 +202,7 @@ metrics:
202
name: avaya.cmgVoipAdminState
203
chart_meta:
204
description: Maintenance busy-out state
206
- family: Voice/VoIPEngine/Admin/Status
205
+ family: 'Voice/VoIPEngine/Admin/Status'
206
unit: "{status}"
207
mapping:
208
1: busy-out
@@ -214,7 +213,7 @@ metrics:
213
name: avaya.cmgVoipDspStatus
214
chart_meta:
215
description: Status of the DSP complex
217
- family: Voice/VoIPEngine/DSP/Status
216
+ family: 'Voice/VoIPEngine/DSP/Status'
217
unit: "{status}"
218
mapping:
219
1: idle
@@ -234,18 +233,20 @@ metrics:
233
OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.2
234
chart_meta:
235
description: Total number of channels available to the DSP core
237
- family: Voice/VoIPEngine/DSPCore/Channel/Total
236
+ family: 'Voice/VoIPEngine/DSPCore/Channel/Total'
237
unit: "{channel}"
238
- name: avaya.cmgDSPCoreChannelsInUse
239
OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.3
240
chart_meta:
241
description: Number of channels currently in use at the DSP core
243
- family: Voice/VoIPEngine/DSPCore/Channel/InUse
242
+ family: 'Voice/VoIPEngine/DSPCore/Channel/InUse'
243
unit: "{channel}"
244
- OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.4
245
name: avaya.cmgDSPCoreAdminState
247
- family: Voice/VoIPEngine/DSPCore/Admin/Status
248
- unit: "{status}"
246
+ chart_meta:
247
+ description: Maintenance busy-out state
248
+ family: 'Voice/VoIPEngine/DSPCore/Admin/Status'
249
+ unit: "{status}"
250
mapping:
251
1: busy-out
252
2: release
@@ -253,16 +254,20 @@ metrics:
254
255: unknown
255
- OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.5
256
name: avaya.cmgDSPCoreStatus
256
- family: Voice/VoIPEngine/DSPCore/Operational/Status
257
- unit: "{status}"
257
+ chart_meta:
258
+ description: Status of the DSP core
259
+ family: 'Voice/VoIPEngine/DSPCore/Operational/Status'
260
+ unit: "{status}"
261
mapping:
262
1: idle
263
2: in_use
264
3: fault
265
- OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.7
266
name: avaya.cmgDSPCoreDemandTestResult
264
- family: Voice/VoIPEngine/DSPCore/Test/Result
265
- unit: "{status}"
267
+ chart_meta:
268
+ description: Result of demand test
269
+ family: 'Voice/VoIPEngine/DSPCore/Test/Result'
270
+ unit: "{status}"
271
mapping:
272
1: error_code1
273
2: error_code2
@@ -273,40 +278,7 @@ metrics:
278
7: not_responding
279
255: pass
280
metric_tags:
276
- - symbol:
281
+ - tag: avaya_cmg_dsp_core_id
282
+ symbol:
283
OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.1
284
name: avaya.cmgDSPCoreCoreId
279
- tag: avaya_cmg_dsp_core_id
280
-metric_tags:
281
- - OID: 1.3.6.1.4.1.6889.2.9.1.1.1.0
282
- symbol: cmgHWType
283
- tag: avaya_cmg_hw_type
284
- mapping:
285
- 1: media-gateway
286
- 2: g350
287
- 3: avaya_g250
288
- 4: avaya_g250-bri
289
- 5: avaya_g250-ds1
290
- 6: avaya_g250-dcp
291
- 7: avaya_g450
292
- 8: avaya_g250-a14
293
- 10: avaya_tgm550
294
- 28: avaya_communication_manager_branch_editioni120
295
- 29: avaya_communication_manager_branch_editioni40-analog
296
- 30: avaya_communication_manager_branch_editioni40-bri
297
- 31: avaya_communication_manager_branch_editioni40-ds1
298
- 32: avaya_communication_manager_branch_editioni40-dcp
299
- 33: avaya_trm480
300
- 34: avaya_communication_manager_branch_editioni40-a14
301
- 35: avaya_communication_manager_branch_edition_g450
302
- 37: avaya_communication_manager_branch_edition_g430
303
- 41: avaya_g430
304
- - OID: 1.3.6.1.4.1.6889.2.9.1.1.2.0
305
- symbol: cmgModelNumber
306
- tag: avaya_cmg_model_number
307
- - OID: 1.3.6.1.4.1.6889.2.9.1.1.4.0
308
- symbol: cmgSerialNumber
309
- tag: avaya_cmg_serial_number
310
- - OID: 1.3.6.1.4.1.6889.2.9.1.3.2.0
311
- symbol: cmgActiveControllerAddress
312
- tag: avaya_cmg_active_controller_address
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya-nortel-ethernet-routing-switch.yaml
+20
-20
@@ -3,14 +3,24 @@ extends:
3
- _std-if-mib.yaml
4
- avaya.yaml
5
6
+sysobjectid:
7
+ - 1.3.6.1.4.1.45.3.71.10 # 4526T
8
+
9
metadata:
10
device:
11
fields:
12
type:
13
value: "Switch"
14
12
-sysobjectid:
13
- - 1.3.6.1.4.1.45.3.71.10 # 4526T
15
+metric_tags:
16
+ - tag: avaya_s5_chas_ver
17
+ OID: 1.3.6.1.4.1.45.1.6.3.1.5.0
18
+ symbol: s5ChasVer
19
+ description: Version of the chassis in the form major.minor.maintenance letters
20
+ - tag: avaya_s5_chas_ser_num
21
+ OID: 1.3.6.1.4.1.45.1.6.3.1.6.0
22
+ symbol: s5ChasSerNum
23
+ description: Serial number of the chassis
24
25
metrics:
26
- MIB: S5-CHASSIS-MIB
@@ -19,7 +29,7 @@ metrics:
29
OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.5.3.10.0 # s5ChasUtilCPUUsageLast1Minute.3.10.0
30
chart_meta:
31
description: Percentage of time the CPU has been busy over the last 1 minute
22
- family: CPU/Usage
32
+ family: 'System/CPU/Usage'
33
unit: "%"
34
- MIB: S5-CHASSIS-MIB
35
symbol:
@@ -27,7 +37,7 @@ metrics:
37
OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.12.3.10.0 # s5ChasUtilMemoryTotalMB.3.10.0
38
chart_meta:
39
description: Total RAM of unit
30
- family: Memory/Total
40
+ family: 'System/Memory/Total'
41
unit: "By"
42
scale_factor: 104857
43
- MIB: S5-CHASSIS-MIB
@@ -36,7 +46,7 @@ metrics:
46
OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.13.3.10.0 # s5ChasUtilMemoryAvailableMB.3.10.0
47
chart_meta:
48
description: Available RAM of unit
39
- family: Memory/Free
49
+ family: 'System/Memory/Free'
50
unit: "By"
51
scale_factor: 104857
52
- MIB: S5-CHASSIS-MIB
@@ -45,7 +55,7 @@ metrics:
55
OID: 1.3.6.1.4.1.45.1.6.3.7.1.1.5.5.10.0 # s5ChasTmpSnrTmpValue.5.10.0
56
chart_meta:
57
description: Current temperature value of the temperature sensor measured in units of a half degree centigrade
48
- family: Environment/Temperature/Value
58
+ family: 'Environment/Temperature/Value'
59
unit: "Cel"
60
scale_factor: 0.5
61
- MIB: S5-CHASSIS-MIB
@@ -57,7 +67,7 @@ metrics:
67
name: avaya.s5ChasComAdminState
68
chart_meta:
69
description: Desired state of the component or sub-component
60
- family: Hardware/Chassis/Component/Admin/Status
70
+ family: 'Hardware/Chassis/Component/Admin/Status'
71
unit: "{status}"
72
mapping:
73
1: other
@@ -70,7 +80,7 @@ metrics:
80
name: avaya.s5ChasComOperState
81
chart_meta:
82
description: Current operational state of the component or sub-component
73
- family: Hardware/Chassis/Component/Operational/Status
83
+ family: 'Hardware/Chassis/Component/Operational/Status'
84
unit: "{status}"
85
mapping:
86
1: other
@@ -86,17 +96,7 @@ metrics:
96
11: not_config
97
12: obsoleted
98
metric_tags:
89
- - symbol:
99
+ - tag: avaya_s5_chas_com_descr
100
+ symbol:
101
name: avaya.s5ChasComDescr
102
OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.5
92
- tag: avaya_s5_chas_com_descr
93
-
94
-metric_tags:
95
- - OID: 1.3.6.1.4.1.45.1.6.3.1.5.0
96
- symbol: s5ChasVer
97
- tag: avaya_s5_chas_ver
98
- description: Version of the chassis in the form major.minor.maintenance letters
99
- - OID: 1.3.6.1.4.1.45.1.6.3.1.6.0
100
- symbol: s5ChasSerNum
101
- tag: avaya_s5_chas_ser_num
102
- description: Serial number of the chassis
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avaya.yaml
+1
@@ -1,5 +1,6 @@
1
extends:
2
- _system-base.yaml
3
+ - _avaya-utilization-management-mib.yaml
4
5
metadata:
6
device:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avocent-acs.yaml
+4
-4
@@ -28,7 +28,7 @@ metrics:
28
OID: 1.3.6.1.4.1.10418.26.2.1.8.2.0
29
chart_meta:
30
description: State of the first power supply
31
- family: PowerSupply/1/Status
31
+ family: 'Hardware/PowerSupply/1/Status'
32
unit: "{status}"
33
mapping:
34
statePowerOn: 1
@@ -40,7 +40,7 @@ metrics:
40
OID: 1.3.6.1.4.1.10418.26.2.1.8.3.0
41
chart_meta:
42
description: State of the second power supply
43
- family: PowerSupply/2/Status
43
+ family: 'Hardware/PowerSupply/2/Status'
44
unit: "{status}"
45
mapping:
46
statePowerOn: 1
@@ -52,7 +52,7 @@ metrics:
52
OID: 1.3.6.1.4.1.10418.26.2.2.1.0
53
chart_meta:
54
description: Number of active sessions
55
- family: Session/Active
55
+ family: 'System/Activity/Session/Active'
56
unit: "{session}"
57
- MIB: ACS8000-MIB
58
table:
@@ -63,7 +63,7 @@ metrics:
63
name: avocent.acsSerialPortTableStatus
64
chart_meta:
65
description: The status of the serial port
66
- family: SerialPort/Status
66
+ family: 'Hardware/SerialPort/Status'
67
unit: "{status}"
68
mapping:
69
1: disabled
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-32s.yaml
+5
-5
@@ -17,7 +17,7 @@ metrics:
17
name: roomalert.32s.internal_tempf
18
chart_meta:
19
description: Internal temperature
20
- family: Sensor/Internal/Temperature/Value
20
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
21
unit: "degF"
22
- MIB: ROOMALERT32S-MIB
23
symbol:
@@ -25,7 +25,7 @@ metrics:
25
name: roomalert.32s.internal_tempc
26
chart_meta:
27
description: Internal temperature
28
- family: Sensor/Internal/Temperature/Value
28
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
29
unit: "Cel"
30
- MIB: ROOMALERT32S-MIB
31
symbol:
@@ -33,7 +33,7 @@ metrics:
33
name: roomalert.32s.internal_humidity
34
chart_meta:
35
description: Internal relative humidity percentage
36
- family: Sensor/Internal/Humidity/Value
36
+ family: 'Hardware/Sensor/Internal/Humidity/Value'
37
unit: "%"
38
# - MIB: ROOMALERT32S-MIB
39
# symbol:
@@ -49,7 +49,7 @@ metrics:
49
name: roomalert.32s.internal_heat_index
50
chart_meta:
51
description: Internal heat index
52
- family: Sensor/Internal/HeatIndex/Value
52
+ family: 'Hardware/Sensor/Internal/HeatIndex/Value'
53
unit: "degF"
54
- MIB: ROOMALERT32S-MIB
55
symbol:
@@ -57,7 +57,7 @@ metrics:
57
name: roomalert.32s.internal_heat_indexC
58
chart_meta:
59
description: Internal heat index
60
- family: Sensor/Internal/HeatIndex/Value
60
+ family: 'Hardware/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
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-3e.yaml
+15
-15
@@ -17,7 +17,7 @@ metrics:
17
name: roomalert.3e.digital_sen1_1
18
chart_meta:
19
description: The current temperature reading of the Internal Temperature Sensor
20
- family: Sensor/Internal/Temperature/Value
20
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
21
unit: "Cel"
22
- MIB: ROOMALERT3E-MIB
23
symbol:
@@ -25,7 +25,7 @@ metrics:
25
name: roomalert.3e.digital_sen1_2
26
chart_meta:
27
description: The current temperature reading of the Internal Temperature Sensor
28
- family: Sensor/Internal/Temperature/Value
28
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
29
unit: "degF"
30
# - MIB: ROOMALERT3E-MIB
31
# symbol:
@@ -38,7 +38,7 @@ metrics:
38
name: roomalert.3e.digital_sen2_1
39
chart_meta:
40
description: Current temperature
41
- family: Sensor/External/Temperature/Value
41
+ family: 'Hardware/Sensor/External/Temperature/Value'
42
unit: "Cel"
43
- MIB: ROOMALERT3E-MIB
44
symbol:
@@ -46,7 +46,7 @@ metrics:
46
name: roomalert.3e.digital_sen2_2
47
chart_meta:
48
description: Current temperature
49
- family: Sensor/External/Temperature/Value
49
+ family: 'Hardware/Sensor/External/Temperature/Value'
50
unit: "degF"
51
- MIB: ROOMALERT3E-MIB
52
symbol:
@@ -54,7 +54,7 @@ metrics:
54
name: roomalert.3e.digital_sen2_3
55
chart_meta:
56
description: Current relative humidity
57
- family: Sensor/External/Humidity/Value
57
+ family: 'Hardware/Sensor/External/Humidity/Value'
58
unit: "%"
59
- MIB: ROOMALERT3E-MIB
60
symbol:
@@ -62,7 +62,7 @@ metrics:
62
name: roomalert.3e.digital_sen2_5
63
chart_meta:
64
description: Current heat index
65
- family: Sensor/External/HeatIndex/Value
65
+ family: 'Hardware/Sensor/External/HeatIndex/Value'
66
unit: "Cel"
67
- MIB: ROOMALERT3E-MIB
68
symbol:
@@ -70,7 +70,7 @@ metrics:
70
name: roomalert.3e.digital_sen2_4
71
chart_meta:
72
description: Current heat index
73
- family: Sensor/External/HeatIndex/Value
73
+ family: 'Hardware/Sensor/External/HeatIndex/Value'
74
unit: "degF"
75
# - MIB: ROOMALERT3E-MIB
76
# symbol:
@@ -95,7 +95,7 @@ metrics:
95
name: roomalert.3e.switch_sen1
96
chart_meta:
97
description: The reading for the switch sensor
98
- family: Sensor/Switch/Status
98
+ family: 'Hardware/Sensor/Switch/Status'
99
unit: "{status}"
100
mapping:
101
0: open
@@ -111,7 +111,7 @@ metrics:
111
name: roomalert.3e.red_led
112
chart_meta:
113
description: The status of the red Signal Tower LED
114
- family: SignalTower/LED/Red/Status
114
+ family: 'Hardware/SignalTower/LED/Red/Status'
115
unit: "{status}"
116
mapping:
117
0: off
@@ -122,7 +122,7 @@ metrics:
122
name: roomalert.3e.amber_led
123
chart_meta:
124
description: The status of the amber Signal Tower LED
125
- family: SignalTower/LED/Amber/Status
125
+ family: 'Hardware/SignalTower/LED/Amber/Status'
126
unit: "{status}"
127
mapping:
128
0: off
@@ -133,7 +133,7 @@ metrics:
133
name: roomalert.3e.green_led
134
chart_meta:
135
description: The status of the green Signal Tower LED
136
- family: SignalTower/LED/Green/Status
136
+ family: 'Hardware/SignalTower/LED/Green/Status'
137
unit: "{status}"
138
mapping:
139
0: off
@@ -144,7 +144,7 @@ metrics:
144
name: roomalert.3e.blue_led
145
chart_meta:
146
description: The status of the blue Signal Tower LED
147
- family: SignalTower/LED/Blue/Status
147
+ family: 'Hardware/SignalTower/LED/Blue/Status'
148
unit: "{status}"
149
mapping:
150
0: off
@@ -155,7 +155,7 @@ metrics:
155
name: roomalert.3e.white_led
156
chart_meta:
157
description: The status of the white Signal Tower LED
158
- family: SignalTower/LED/White/Status
158
+ family: 'Hardware/SignalTower/LED/White/Status'
159
unit: "{status}"
160
mapping:
161
0: off
@@ -166,7 +166,7 @@ metrics:
166
name: roomalert.3e.alarm1
167
chart_meta:
168
description: The status of the Signal Tower alarm1
169
- family: SignalTower/Alarm/1/Status
169
+ family: 'Hardware/SignalTower/Alarm/1/Status'
170
unit: "{status}"
171
mapping:
172
0: off
@@ -177,7 +177,7 @@ metrics:
177
name: roomalert.3e.alarm2
178
chart_meta:
179
description: The status of the Signal Tower alarm2
180
- family: SignalTower/Alarm/2/Status
180
+ family: 'Hardware/SignalTower/Alarm/2/Status'
181
unit: "{status}"
182
mapping:
183
0: off
src/go/plugin/go.d/config/go.d/snmp.profiles/default/avtech-roomalert-3s.yaml
+7
-7
@@ -17,7 +17,7 @@ metrics:
17
name: roomalert.3s.internal_tempf
18
chart_meta:
19
description: Internal temperature
20
- family: Sensor/Internal/Temperature/Value
20
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
21
unit: "degF"
22
- MIB: ROOMALERT3S-MIB
23
symbol:
@@ -25,7 +25,7 @@ metrics:
25
name: roomalert.3s.internal_tempc
26
chart_meta:
27
description: Internal temperature
28
- family: Sensor/Internal/Temperature/Value
28
+ family: 'Hardware/Sensor/Internal/Temperature/Value'
29
unit: "Cel"
30
- MIB: ROOMALERT3S-MIB
31
symbol:
@@ -33,7 +33,7 @@ metrics:
33
name: roomalert.3s.digital_sen1_1
34
chart_meta:
35
description: Current temperature
36
- family: Sensor/Digital/Temperature/Value
36
+ family: 'Hardware/Sensor/Digital/Temperature/Value'
37
unit: "Cel"
38
- MIB: ROOMALERT3S-MIB
39
symbol:
@@ -41,7 +41,7 @@ metrics:
41
name: roomalert.3s.digital_sen1_2
42
chart_meta:
43
description: Current temperature
44
- family: Sensor/Digital/Temperature/Value
44
+ family: 'Hardware/Sensor/Digital/Temperature/Value'
45
unit: "degF"
46
# - MIB: ROOMALERT3S-MIB
47
# symbol:
@@ -68,7 +68,7 @@ metrics:
68
name: roomalert.3s.digital_sen1_6
69
chart_meta:
70
description: Current dew point
71
- family: Sensor/Digital/DewPoint/Value
71
+ family: 'Hardware/Sensor/Digital/DewPoint/Value'
72
unit: "Cel"
73
- MIB: ROOMALERT3S-MIB
74
symbol:
@@ -76,7 +76,7 @@ metrics:
76
name: roomalert.3s.digital_sen1_7
77
chart_meta:
78
description: Current dew point
79
- family: Sensor/Digital/DewPoint/Value
79
+ family: 'Hardware/Sensor/Digital/DewPoint/Value'
80
unit: "degF"
81
- MIB: ROOMALERT3S-MIB
82
symbol:
@@ -84,7 +84,7 @@ metrics:
84
name: roomalert.3s.switch_sen1
85
chart_meta:
86
description: The reading for switch sensor 1
87
- family: Sensor/Switch/Status
87
+ family: 'Hardware/Sensor/Switch/Status'
88
unit: "{status}"
89
mapping:
90
0: open
src/go/plugin/go.d/config/go.d/snmp.profiles/default/barracuda-cloudgen.yaml
+30
-27
@@ -11,7 +11,6 @@ sysobjectid:
11
- 1.3.6.1.4.1.10704.1.*
12
13
# TODO, could find MIB descriptions here, so I wrote the descriptions from the context of the metric name.
14
-
14
metrics:
15
- MIB: PHION-MIB
16
table:
@@ -22,7 +21,7 @@ metrics:
21
name: boxServiceState
22
chart_meta:
23
description: "Box service state"
25
- family: Service/Status
24
+ family: 'System/Service/Status'
25
unit: "{status}"
26
mapping:
27
-1: unknown
@@ -41,7 +40,7 @@ metrics:
40
name: phion.vpnUsers
41
chart_meta:
42
description: "Number of VPN users"
44
- family: VPN/User/Count
43
+ family: 'Network/VPN/User/Count'
44
unit: "{user}"
45
- MIB: PHION-MIB
46
table:
@@ -52,86 +51,90 @@ metrics:
51
name: phion.trafficShape.rate
52
chart_meta:
53
description: Traffic shape rate
55
- family: TrafficShaping/Rate
54
+ family: 'Network/QoS/TrafficShaping/Rate'
55
unit: "bit/s"
56
scale_factor: 1000
57
- OID: 1.3.6.1.4.1.10704.1.12.1.3
58
name: phion.trafficShape.sessions
59
chart_meta:
60
description: "Number of sessions"
62
- family: TrafficShaping/Session/Count
63
- unit: "{session}/a"
61
+ family: 'Network/QoS/TrafficShaping/Session/Count'
62
+ unit: "{session}/s"
63
- OID: 1.3.6.1.4.1.10704.1.12.1.4
64
name: phion.trafficShape.class1Total
66
- description: "Total bytes for class1"
67
- family: TrafficShaping/Class1/Traffic/Total
65
+ chart_meta:
66
+ description: "Total bytes for class1"
67
+ family: 'Network/QoS/TrafficShaping/Class1/Traffic/Total'
68
+ unit: "bit/s"
69
scale_factor: 8
69
- unit: "bit/s"
70
- OID: 1.3.6.1.4.1.10704.1.12.1.5
71
name: phion.trafficShape.class1Packets
72
chart_meta:
73
description: "Total packets for class1"
74
- family: TrafficShaping/Class1/Packet/Total
74
+ family: 'Network/QoS/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
78
chart_meta:
79
description: "Dropped packets for class1"
80
- family: TrafficShaping/Class1/Packet/Dropped
80
+ family: 'Network/QoS/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"
85
- family: TrafficShaping/Class2/Traffic/Total
84
+ chart_meta:
85
+ description: "Total bytes for class2"
86
+ family: 'Network/QoS/TrafficShaping/Class2/Traffic/Total'
87
+ unit: "bit/s"
88
scale_factor: 8
87
- unit: "bit/s"
89
- OID: 1.3.6.1.4.1.10704.1.12.1.8
90
name: phion.trafficShape.class2Pakets
91
chart_meta:
92
description: "Total packets for class2"
92
- family: TrafficShaping/Class2/Packet/Total
93
+ family: 'Network/QoS/TrafficShaping/Class2/Packet/Total'
94
unit: "{packet}/s"
95
- OID: 1.3.6.1.4.1.10704.1.12.1.9
96
name: phion.trafficShape.class2Drop
97
chart_meta:
98
description: "Dropped packets for class2"
98
- family: TrafficShaping/Class2/Packet/Dropped
99
+ family: 'Network/QoS/TrafficShaping/Class2/Packet/Dropped'
100
unit: "{drop}/s"
101
- OID: 1.3.6.1.4.1.10704.1.12.1.10
102
name: phion.trafficShape.class3Total
102
- description: "Total bytes for class3"
103
- family: TrafficShaping/Class3/Traffic/Total
103
+ chart_meta:
104
+ description: "Total bytes for class3"
105
+ family: 'Network/QoS/TrafficShaping/Class3/Traffic/Total'
106
+ unit: "bit/s"
107
scale_factor: 8
105
- unit: "bit/s"
108
- OID: 1.3.6.1.4.1.10704.1.12.1.11
109
name: phion.trafficShape.class3Pakets
110
chart_meta:
111
description: "Total packets for class3"
110
- family: TrafficShaping/Class3/Packet/Total
112
+ family: 'Network/QoS/TrafficShaping/Class3/Packet/Total'
113
unit: "{packet}/s"
114
- OID: 1.3.6.1.4.1.10704.1.12.1.12
115
name: phion.trafficShape.class3Drop
116
chart_meta:
117
description: "Dropped packets for class3"
116
- family: TrafficShaping/Class3/Packet/Dropped
118
+ family: 'Network/QoS/TrafficShaping/Class3/Packet/Dropped'
119
unit: "{drop}/s"
120
- OID: 1.3.6.1.4.1.10704.1.12.1.13
121
name: phion.trafficShape.noDelayTotal
120
- description: "Total bytes for no delay"
121
- family: TrafficShaping/NoDelay/Traffic/Total
122
+ chart_meta:
123
+ description: "Total bytes for no delay"
124
+ family: 'Network/QoS/TrafficShaping/NoDelay/Traffic/Total'
125
+ unit: "bit/s"
126
scale_factor: 8
123
- unit: "bit/s"
127
- OID: 1.3.6.1.4.1.10704.1.12.1.14
128
name: phion.trafficShape.noDelayPakets
129
chart_meta:
130
description: "Total packets for no delay"
128
- family: TrafficShaping/NoDelay/Packet/Total
131
+ family: 'Network/QoS/TrafficShaping/NoDelay/Packet/Total'
132
unit: "{packet}/s"
133
- OID: 1.3.6.1.4.1.10704.1.12.1.15
134
name: phion.trafficShape.noDelayDrop
135
chart_meta:
136
description: "Dropped packets for no delay"
134
- family: TrafficShaping/NoDelay/Packet/Dropped
137
+ family: 'Network/QoS/TrafficShaping/NoDelay/Packet/Dropped'
138
unit: "{drop}/s"
139
metric_tags:
140
- symbol:
@@ -176,7 +179,7 @@ metrics:
179
name: vpnState
180
chart_meta:
181
description: VPN state
179
- family: VPN/Tunnel/Status
182
+ family: 'Network/VPN/Tunnel/Status'
183
unit: "{status}"
184
mapping:
185
-1: down
src/go/plugin/go.d/config/go.d/snmp.profiles/default/bluecat-server.yaml
+37
-48
@@ -4,6 +4,20 @@ extends:
4
- _std-host-resources-mib-feat-base.yaml
5
- _std-ucd-mib.yaml
6
7
+sysobjectid:
8
+ - 1.3.6.1.4.1.13315.2.*
9
+
10
+metric_tags:
11
+ - tag: bcn_sys_id_product
12
+ OID: 1.3.6.1.4.1.13315.3.2.2.1.1.0
13
+ symbol: bcnSysIdProduct
14
+ - tag: bcn_sys_id_os_release
15
+ OID: 1.3.6.1.4.1.13315.3.2.2.1.2.0
16
+ symbol: bcnSysIdOSRelease
17
+ - tag: bcn_sys_id_platform
18
+ OID: 1.3.6.1.4.1.13315.3.2.2.1.5.0
19
+ symbol: bcnSysIdPlatform
20
+
21
metadata:
22
device:
23
fields:
@@ -12,9 +26,6 @@ metadata:
26
type:
27
value: Server
28
15
-sysobjectid:
16
- - 1.3.6.1.4.1.13315.2.*
17
-
29
metrics:
30
- MIB: BCN-DHCPV4-MIB
31
table:
@@ -25,47 +36,42 @@ metrics:
36
name: bcnDhcpv4SubnetFreeAddresses
37
chart_meta:
38
description: The number of IPs addresses available in this subnet.
28
- family: DHCP/Subnets
39
+ family: 'Network/DHCP/Subnet/Address/Free'
40
unit: "{ip_address}"
41
# Transform combines subnet IP and mask into CIDR notation (e.g., 192.168.1.0/24)
42
# Converts mask to CIDR if possible, otherwise keeps original mask
43
transform: |
33
- {{- $subnetIP := index .Metric.Tags "bcn_dhcpv4_subnet_ip" | default "" -}}
34
- {{- $subnetMask := index .Metric.Tags "bcn_dhcpv4_subnet_mask" | default "" -}}
44
+ {{- $subnetIP := index .Metric.Tags "rm:bcn_dhcpv4_subnet_ip" | default "" -}}
45
+ {{- $subnetMask := index .Metric.Tags "rm:bcn_dhcpv4_subnet_mask" | default "" -}}
46
{{- if and $subnetIP $subnetMask -}}
47
{{- $cidr := mask2cidr $subnetMask -}}
48
{{- setTag .Metric "bcn_dhcpv4_subnet" (printf "%s/%s" $subnetIP (ternary $cidr $subnetMask $cidr)) -}}
49
{{- end -}}
39
- {{- deleteTag .Metric "bcn_dhcpv4_subnet_ip" -}}
40
- {{- deleteTag .Metric "bcn_dhcpv4_subnet_mask" -}}
50
- OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.3
51
name: bcnDhcpv4SubnetSize
52
chart_meta:
53
description: Size of the subnet
45
- family: DHCP/Subnets
54
+ family: 'Network/DHCP/Subnet/Size'
55
unit: "{ip_address}"
56
# Transform combines subnet IP and mask into CIDR notation (e.g., 192.168.1.0/24)
57
# Converts mask to CIDR if possible, otherwise keeps original mask
58
transform: |
50
- {{- $subnetIP := index .Metric.Tags "bcn_dhcpv4_subnet_ip" | default "" -}}
51
- {{- $subnetMask := index .Metric.Tags "bcn_dhcpv4_subnet_mask" | default "" -}}
59
+ {{- $subnetIP := index .Metric.Tags "rm:bcn_dhcpv4_subnet_ip" | default "" -}}
60
+ {{- $subnetMask := index .Metric.Tags "rm:bcn_dhcpv4_subnet_mask" | default "" -}}
61
{{- if and $subnetIP $subnetMask -}}
62
{{- $cidr := mask2cidr $subnetMask -}}
63
{{- setTag .Metric "bcn_dhcpv4_subnet" (printf "%s/%s" $subnetIP (ternary $cidr $subnetMask $cidr)) -}}
64
{{- end -}}
56
- {{- deleteTag .Metric "bcn_dhcpv4_subnet_ip" -}}
57
- {{- deleteTag .Metric "bcn_dhcpv4_subnet_mask" -}}
65
metric_tags:
59
- # Note: This tag will be removed by transform and combined into bcn_dhcpv4_subnet
60
- - symbol:
66
+ - tag: rm:bcn_dhcpv4_subnet_ip
67
+ symbol:
68
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.1
69
name: bcnDhcpv4SubnetIP
63
- tag: bcn_dhcpv4_subnet_ip
64
- # Note: This tag will be removed by transform and combined into bcn_dhcpv4_subnet
65
- - symbol:
70
+ - tag: rm:bcn_dhcpv4_subnet_mask
71
+ symbol:
72
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.2
73
name: bcnDhcpv4SubnetMask
68
- tag: bcn_dhcpv4_subnet_mask
74
+
75
- MIB: BCN-DHCPV4-MIB
76
table:
77
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3
@@ -75,55 +81,38 @@ metrics:
81
name: bcnDhcpv4PoolFreeAddresses
82
chart_meta:
83
description: The number of IPs addresses available in this pool
78
- family: DHCP/Pools
84
+ family: 'Network/DHCP/Pool/Address/Free'
85
unit: "{ip_address}"
86
# Transform combines start and end IPs into a single range tag (e.g., 192.168.1.10-192.168.1.100)
87
transform: |
82
- {{- $startIP := index .Metric.Tags "bcn_dhcpv4_pool_start_ip" | default "" -}}
83
- {{- $endIP := index .Metric.Tags "bcn_dhcpv4_pool_end_ip" | default "" -}}
88
+ {{- $startIP := index .Metric.Tags "rm:bcn_dhcpv4_pool_start_ip" | default "" -}}
89
+ {{- $endIP := index .Metric.Tags "rm:bcn_dhcpv4_pool_end_ip" | default "" -}}
90
{{- if and $startIP $endIP -}}
91
{{- setTag .Metric "bcn_dhcpv4_pool_range" (printf "%s-%s" $startIP $endIP) -}}
92
{{- end -}}
87
- {{- deleteTag .Metric "bcn_dhcpv4_pool_start_ip" -}}
88
- {{- deleteTag .Metric "bcn_dhcpv4_pool_end_ip" -}}
93
- OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.4
94
name: bcnDhcpv4PoolSize
95
chart_meta:
96
description: Pool size
93
- family: DHCP/Pools
97
+ family: 'Network/DHCP/Pool/Size'
98
unit: "{ip_address}"
99
# Transform combines start and end IPs into a single range tag (e.g., 192.168.1.10-192.168.1.100)
100
transform: |
97
- {{- $startIP := index .Metric.Tags "bcn_dhcpv4_pool_start_ip" | default "" -}}
98
- {{- $endIP := index .Metric.Tags "bcn_dhcpv4_pool_end_ip" | default "" -}}
101
+ {{- $startIP := index .Metric.Tags "rm:bcn_dhcpv4_pool_start_ip" | default "" -}}
102
+ {{- $endIP := index .Metric.Tags "rm:bcn_dhcpv4_pool_end_ip" | default "" -}}
103
{{- if and $startIP $endIP -}}
104
{{- setTag .Metric "bcn_dhcpv4_pool_range" (printf "%s-%s" $startIP $endIP) -}}
105
{{- end -}}
102
- {{- deleteTag .Metric "bcn_dhcpv4_pool_start_ip" -}}
103
- {{- deleteTag .Metric "bcn_dhcpv4_pool_end_ip" -}}
106
metric_tags:
105
- - symbol:
107
+ - tag: bcn_dhcpv4_pool_subnet_ip
108
+ symbol:
109
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.3
110
name: bcnDhcpv4PoolSubnetIP
108
- tag: bcn_dhcpv4_pool_subnet_ip
109
- # Note: This tag will be removed by transform and combined into bcn_dhcpv4_pool_range
110
- - symbol:
111
+ - tag: rm:bcn_dhcpv4_pool_start_ip
112
+ symbol:
113
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.1
114
name: bcnDhcpv4PoolStartIP
113
- tag: bcn_dhcpv4_pool_start_ip
114
- # Note: This tag will be removed by transform and combined into bcn_dhcpv4_pool_range
115
- - symbol:
115
+ - tag: rm:bcn_dhcpv4_pool_end_ip
116
+ symbol:
117
OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.2
118
name: bcnDhcpv4PoolEndIP
118
- tag: bcn_dhcpv4_pool_end_ip
119
-
120
-metric_tags:
121
- - OID: 1.3.6.1.4.1.13315.3.2.2.1.1.0
122
- symbol: bcnSysIdProduct
123
- tag: bcn_sys_id_product
124
- - OID: 1.3.6.1.4.1.13315.3.2.2.1.2.0
125
- symbol: bcnSysIdOSRelease
126
- tag: bcn_sys_id_os_release
127
- - OID: 1.3.6.1.4.1.13315.3.2.2.1.5.0
128
- symbol: bcnSysIdPlatform
129
- tag: bcn_sys_id_platform
src/go/plugin/go.d/config/go.d/snmp.profiles/default/brocade-fc-switch.yaml
+22
-22
@@ -32,7 +32,7 @@ metrics:
32
name: cpu.usage
33
chart_meta:
34
description: System's cpu usage
35
- family: CPU/Usage
35
+ family: 'System/CPU/Usage'
36
unit: "%"
37
- MIB: RESOURCE-MIB
38
symbol:
@@ -40,7 +40,7 @@ metrics:
40
name: memory.usage
41
chart_meta:
42
description: System's memory usage
43
- family: Memory/Usage
43
+ family: 'System/Memory/Usage'
44
unit: "%"
45
- MIB: FIBRE-CHANNEL-FE-MIB
46
table:
@@ -51,13 +51,13 @@ metrics:
51
OID: 1.3.6.1.2.1.75.1.2.1.1.2
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
54
+ family: 'Network/FibreChannel/FxPort/Buffer/Available'
55
unit: "{buffer}"
56
- OID: 1.3.6.1.2.1.75.1.2.1.1.3
57
name: fcFxPortOperMode
58
chart_meta:
59
description: Operational mode of the FxPort
60
- family: FibreChannel/FxPort/Operational/Mode
60
+ family: 'Network/FibreChannel/FxPort/Operational/Mode'
61
unit: "{status}"
62
mapping:
63
1: unknown
@@ -67,7 +67,7 @@ metrics:
67
name: fcFxPortAdminMode
68
chart_meta:
69
description: Desired operational mode of the FxPort
70
- family: FibreChannel/FxPort/Admin/Mode
70
+ family: 'Network/FibreChannel/FxPort/Admin/Mode'
71
unit: "{status}"
72
mapping:
73
2: f_port
@@ -86,7 +86,7 @@ metrics:
86
name: fcFxPortPhysAdminStatus
87
chart_meta:
88
description: Desired state of the FxPort
89
- family: FibreChannel/FxPort/Physical/Admin/Status
89
+ family: 'Network/FibreChannel/FxPort/Physical/Admin/Status'
90
unit: "{status}"
91
mapping:
92
1: online
@@ -96,7 +96,7 @@ metrics:
96
name: fcFxPortPhysOperStatus
97
chart_meta:
98
description: Current operational status of the FxPort
99
- family: FibreChannel/FxPort/Physical/Operational/Status
99
+ family: 'Network/FibreChannel/FxPort/Physical/Operational/Status'
100
unit: "{status}"
101
mapping:
102
1: online
@@ -119,105 +119,105 @@ metrics:
119
metric_type: monotonic_count
120
chart_meta:
121
description: Number of Fibre Channel frames transmitted by the port
122
- family: FibreChannel/Port/Frame/Out
122
+ family: 'Network/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
127
chart_meta:
128
description: Number of Fibre Channel frames received by the port
129
- family: FibreChannel/Port/Frame/In
129
+ family: 'Network/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
134
chart_meta:
135
description: Number of Class 2 frames received by the port
136
- family: FibreChannel/Port/Frame/Class2/In
136
+ family: 'Network/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
141
chart_meta:
142
description: Number of Class 3 frames received by the port
143
- family: FibreChannel/Port/Frame/Class3/In
143
+ family: 'Network/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
148
chart_meta:
149
description: Number of Link Control frames received by the port
150
- family: FibreChannel/Port/Frame/LinkControl/In
150
+ family: 'Network/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
155
chart_meta:
156
description: Number of times when RDYs exceeds the frames received
157
- family: FibreChannel/Port/RDY/Exceeded
157
+ family: 'Network/FibreChannel/Port/RDY/Exceeded/Count'
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
162
chart_meta:
163
description: Number of times when the transmit credit has reached zero
164
- family: FibreChannel/Port/Credit/Exhausted
164
+ family: 'Network/FibreChannel/Port/Credit/Exhausted/Count'
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
169
chart_meta:
170
description: Number of encoding or disparity errors inside frames received.
171
- family: FibreChannel/Port/Error/Encoding/InFrame
171
+ family: 'Network/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
176
chart_meta:
177
description: Number of CRC errors detected for frames received
178
- family: FibreChannel/Port/Error/CRC
178
+ family: 'Network/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
183
chart_meta:
184
description: Number of truncated frames received by the port
185
- family: FibreChannel/Port/Frame/Truncated/In
185
+ family: 'Network/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
190
chart_meta:
191
description: Number of received frames that are too long
192
- family: FibreChannel/Port/Frame/TooLong/In
192
+ family: 'Network/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
197
chart_meta:
198
description: Number of received frames with bad EOF delimiter
199
- family: FibreChannel/Port/Error/BadEOF
199
+ family: 'Network/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
204
chart_meta:
205
description: Number of encoding or disparity errors outside frames received
206
- family: FibreChannel/Port/Error/Encoding/OutFrame
206
+ family: 'Network/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
211
chart_meta:
212
description: Number of invalid Ordered Sets received
213
- family: FibreChannel/Port/Error/InvalidOrderedSet
213
+ family: 'Network/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
218
chart_meta:
219
description: Number of Class 3 frames discarded by the port.
220
- family: FibreChannel/Port/Frame/Class3/Discarded
220
+ family: 'Network/FibreChannel/Port/Frame/Class3/Discarded'
221
unit: "{frame}/s"
222
metric_tags:
223
- symbol:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/brother-net-printer.yaml
+13
-11
@@ -1,14 +1,20 @@
1
extends:
2
- brother.yaml
3
4
+sysobjectid:
5
+ - 1.3.6.1.4.1.2435.2.3.9.1
6
+
7
+metric_tags:
8
+ - OID: 1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.1.0
9
+ symbol: brInfoSerialNumber
10
+ tag: br_info_serial_number
11
+
12
metadata:
13
device:
14
fields:
15
type:
16
value: "Printer"
17
10
-sysobjectid:
11
- - 1.3.6.1.4.1.2435.2.3.9.1
18
metrics:
19
- MIB: BROTHER-MIB
20
symbol:
@@ -16,7 +22,7 @@ metrics:
22
name: brJamPlace
23
chart_meta:
24
description: Location of jam
19
- family: Printer/Jam/Location/Status
25
+ family: 'Printer/Jam/Location/Status'
26
unit: "{status}"
27
mapping:
28
0: No Jam
@@ -30,7 +36,7 @@ metrics:
36
name: brToner1Low
37
chart_meta:
38
description: Black toner status
33
- family: Printer/Toner/Black/Status
39
+ family: 'Printer/Toner/Black/Status'
40
unit: "{status}"
41
mapping:
42
0: Toner Full
@@ -43,7 +49,7 @@ metrics:
49
name: brToner2Low
50
chart_meta:
51
description: Cyan toner status
46
- family: Printer/Toner/Cyan/Status
52
+ family: 'Printer/Toner/Cyan/Status'
53
unit: "{status}"
54
mapping:
55
0: Toner Ready
@@ -56,7 +62,7 @@ metrics:
62
name: brToner3Low
63
chart_meta:
64
description: Magenta toner status
59
- family: Printer/Toner/Magenta/Status
65
+ family: 'Printer/Toner/Magenta/Status'
66
unit: "{status}"
67
mapping:
68
0: Toner Ready
@@ -69,14 +75,10 @@ metrics:
75
name: brToner4Low
76
chart_meta:
77
description: Yellow toner status
72
- family: Printer/Toner/Yellow/Status
78
+ family: 'Printer/Toner/Yellow/Status'
79
unit: "{status}"
80
mapping:
81
0: Toner Ready
82
1: Toner Low
83
2: No Toner Cartridge
84
3: Toner Empty
79
-metric_tags:
80
- - OID: 1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.1.0
81
- symbol: brInfoSerialNumber
82
- tag: br_info_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles/default/chatsworth-pdu.yaml
+135
-130
@@ -38,7 +38,7 @@ metrics:
38
name: pduRole
39
chart_meta:
40
description: PDU role
41
- family: PDU/Role/Status
41
+ family: 'PDU/Role/Status'
42
unit: "{status}"
43
mapping:
44
0: secondary
@@ -51,7 +51,7 @@ metrics:
51
name: outOfService
52
chart_meta:
53
description: PDU operation status
54
- family: PDU/Service/Status
54
+ family: 'PDU/Service/Status'
55
unit: "{status}"
56
mapping:
57
1: out of service
@@ -64,7 +64,7 @@ metrics:
64
name: temperatureProbe1
65
chart_meta:
66
description: Probe 1 temperature
67
- family: Sensor/Temperature/Probe1/Value
67
+ family: 'Hardware/Sensor/Temperature/Probe1/Value'
68
unit: "degF"
69
scale_factor: 0.01
70
@@ -74,7 +74,7 @@ metrics:
74
name: temperatureProbe2
75
chart_meta:
76
description: Probe 2 temperature
77
- family: Sensor/Temperature/Probe2/Value
77
+ family: 'Hardware/Sensor/Temperature/Probe2/Value'
78
unit: "degF"
79
scale_factor: 0.01
80
@@ -84,7 +84,7 @@ metrics:
84
name: humidityProbe1
85
chart_meta:
86
description: Probe 1 humidity
87
- family: Sensor/Humidity/Probe1/Value
87
+ family: 'Hardware/Sensor/Humidity/Probe1/Value'
88
unit: "%"
89
scale_factor: 0.01
90
# TODO I am not sure for this
@@ -95,7 +95,7 @@ metrics:
95
name: humidityProbe2
96
chart_meta:
97
description: Probe 1 humidity
98
- family: Sensor/Humidity/Probe2/Value
98
+ family: 'Hardware/Sensor/Humidity/Probe2/Value'
99
unit: "%"
100
scale_factor: 0.01
101
# TODO I am not sure for this
@@ -107,7 +107,7 @@ metrics:
107
name: line1curr
108
chart_meta:
109
description: Line 1 current draw
110
- family: PDU/Line/1/Current
110
+ family: 'PDU/Line/1/Current'
111
unit: "A"
112
scale_factor: 0.01
113
@@ -117,7 +117,7 @@ metrics:
117
name: line2curr
118
chart_meta:
119
description: Line 2 current draw
120
- family: PDU/Line/2/Current
120
+ family: 'PDU/Line/2/Current'
121
unit: "A"
122
scale_factor: 0.01
123
@@ -127,7 +127,7 @@ metrics:
127
name: line3curr
128
chart_meta:
129
description: Line 3 current draw
130
- family: PDU/Line/3/Current
130
+ family: 'PDU/Line/3/Current'
131
unit: "A"
132
scale_factor: 0.01
133
@@ -138,7 +138,7 @@ metrics:
138
name: currentxy1
139
chart_meta:
140
description: XY1 current draw
141
- family: PDU/Branch/XY1/Current
141
+ family: 'PDU/Branch/XY1/Current'
142
unit: "A"
143
scale_factor: 0.01
144
@@ -148,7 +148,7 @@ metrics:
148
name: currentyz1
149
chart_meta:
150
description: YZ1 current draw
151
- family: PDU/Branch/YZ1/Current
151
+ family: 'PDU/Branch/YZ1/Current'
152
unit: "A"
153
scale_factor: 0.01
154
@@ -158,7 +158,7 @@ metrics:
158
name: currentzx1
159
chart_meta:
160
description: ZX1 current draw
161
- family: PDU/Branch/ZX1/Current
161
+ family: 'PDU/Branch/ZX1/Current'
162
unit: "A"
163
scale_factor: 0.01
164
@@ -168,7 +168,7 @@ metrics:
168
name: currentxy2
169
chart_meta:
170
description: XY2 current draw
171
- family: PDU/Branch/XY2/Current
171
+ family: 'PDU/Branch/XY2/Current'
172
unit: "A"
173
scale_factor: 0.01
174
@@ -178,7 +178,7 @@ metrics:
178
name: currentyz2
179
chart_meta:
180
description: YZ2 current draw
181
- family: PDU/Branch/YZ2/Current
181
+ family: 'PDU/Branch/YZ2/Current'
182
unit: "A"
183
scale_factor: 0.01
184
@@ -188,8 +188,8 @@ metrics:
188
name: currentzx2
189
chart_meta:
190
description: ZX2 current draw
191
- family: PDU/Branch/ZX2/Current
192
- unit: "A/100"
191
+ family: 'PDU/Branch/ZX2/Current'
192
+ unit: "A"
193
scale_factor: 0.01
194
195
- MIB: CPI-UNITY-MIB
@@ -198,7 +198,7 @@ metrics:
198
name: voltagexy1
199
chart_meta:
200
description: XY1 voltage in 1/10 volts
201
- family: PDU/Branch/XY1/Voltage
201
+ family: 'PDU/Branch/XY1/Voltage'
202
unit: "V"
203
scale_factor: 0.1
204
@@ -208,7 +208,7 @@ metrics:
208
name: voltageyz1
209
chart_meta:
210
description: YZ1 voltage in 1/10 volts
211
- family: PDU/Branch/YZ1/Voltage
211
+ family: 'PDU/Branch/YZ1/Voltage'
212
unit: "V"
213
scale_factor: 0.1
214
@@ -218,7 +218,7 @@ metrics:
218
name: voltagezx1
219
chart_meta:
220
description: ZX1 voltage in 1/10 volts
221
- family: PDU/Branch/ZX1/Voltage
221
+ family: 'PDU/Branch/ZX1/Voltage'
222
unit: "V"
223
scale_factor: 0.1
224
@@ -228,7 +228,7 @@ metrics:
228
name: voltagexy2
229
chart_meta:
230
description: XY2 voltage in 1/10 volts
231
- family: PDU/Branch/XY2/Voltage
231
+ family: 'PDU/Branch/XY2/Voltage'
232
unit: "V"
233
scale_factor: 0.1
234
@@ -238,7 +238,7 @@ metrics:
238
name: voltageyz2
239
chart_meta:
240
description: YZ2 voltage in 1/10 volts
241
- family: PDU/Branch/YZ2/Voltage
241
+ family: 'PDU/Branch/YZ2/Voltage'
242
unit: "V"
243
scale_factor: 0.1
244
@@ -248,7 +248,7 @@ metrics:
248
name: voltagezx2
249
chart_meta:
250
description: ZX2 voltage in 1/10 volts
251
- family: PDU/Branch/ZX2/Voltage
251
+ family: 'PDU/Branch/ZX2/Voltage'
252
unit: "V"
253
scale_factor: 0.1
254
@@ -258,7 +258,7 @@ metrics:
258
name: powerxy1
259
chart_meta:
260
description: XY1 power consumption in Watts
261
- family: PDU/Branch/XY1/Power
261
+ family: 'PDU/Branch/XY1/Power'
262
unit: "W"
263
264
- MIB: CPI-UNITY-MIB
@@ -267,7 +267,7 @@ metrics:
267
name: poweryz1
268
chart_meta:
269
description: YZ1 power consumption in Watts
270
- family: PDU/Branch/YZ1/Power
270
+ family: 'PDU/Branch/YZ1/Power'
271
unit: "W"
272
273
- MIB: CPI-UNITY-MIB
@@ -276,7 +276,7 @@ metrics:
276
name: powerzx1
277
chart_meta:
278
description: ZX1 power consumption in Watts
279
- family: PDU/Branch/ZX1/Power
279
+ family: 'PDU/Branch/ZX1/Power'
280
unit: "W"
281
282
- MIB: CPI-UNITY-MIB
@@ -285,7 +285,7 @@ metrics:
285
name: powerxy2
286
chart_meta:
287
description: XY2 power consumption in Watts
288
- family: PDU/Branch/XY2/Power
288
+ family: 'PDU/Branch/XY2/Power'
289
unit: "W"
290
291
- MIB: CPI-UNITY-MIB
@@ -294,7 +294,7 @@ metrics:
294
name: poweryz2
295
chart_meta:
296
description: YZ2 power consumption in Watts
297
- family: PDU/Branch/YZ2/Power
297
+ family: 'PDU/Branch/YZ2/Power'
298
unit: "W"
299
300
- MIB: CPI-UNITY-MIB
@@ -303,7 +303,7 @@ metrics:
303
name: powerzx2
304
chart_meta:
305
description: ZX2 power consumption in Watts
306
- family: PDU/Branch/ZX2/Power
306
+ family: 'PDU/Branch/ZX2/Power'
307
unit: "W"
308
309
# - MIB: CPI-UNITY-MIB
@@ -355,10 +355,11 @@ metrics:
355
OID: 1.3.6.1.4.1.30932.1.1.3.11.1.0
356
name: energyxy1s
357
metric_type: monotonic_count
358
- description: XY1 branch energy accumulated
359
- family: PDU/Branch/XY1/Energy
360
- scaling_factor: 0.1
361
- unit: "da*W"
358
+ chart_meta:
359
+ description: XY1 branch energy accumulated
360
+ family: 'PDU/Branch/XY1/Energy'
361
+ unit: "da*W"
362
+ scale_factor: 0.1
363
# This and the following metrics were da*W*s, but because they are accumulated, it should be /s. s/s = 1 so removing the seconds.
364
365
- MIB: CPI-UNITY-MIB
@@ -366,50 +367,55 @@ metrics:
367
OID: 1.3.6.1.4.1.30932.1.1.3.11.2.0
368
name: energyyz1s
369
metric_type: monotonic_count
369
- description: YZ1 branch energy accumulated
370
- family: PDU/Branch/YZ1/Energy
371
- scaling_factor: 0.1
372
- unit: "da*W"
370
+ chart_meta:
371
+ description: YZ1 branch energy accumulated
372
+ family: 'PDU/Branch/YZ1/Energy'
373
+ unit: "da*W"
374
+ scale_factor: 0.1
375
376
- MIB: CPI-UNITY-MIB
377
symbol:
378
OID: 1.3.6.1.4.1.30932.1.1.3.11.3.0
379
name: energyzx1s
380
metric_type: monotonic_count
379
- description: ZX1 branch energy accumulated
380
- family: PDU/Branch/ZX1/Energy
381
- scaling_factor: 0.1
382
- unit: "da*W"
381
+ chart_meta:
382
+ description: ZX1 branch energy accumulated
383
+ family: 'PDU/Branch/ZX1/Energy'
384
+ unit: "da*W"
385
+ scale_factor: 0.1
386
387
- MIB: CPI-UNITY-MIB
388
symbol:
389
OID: 1.3.6.1.4.1.30932.1.1.3.11.4.0
390
name: energyxy2s
391
metric_type: monotonic_count
389
- description: XY2 branch energy accumulated
390
- family: PDU/Branch/XY2/Energy
391
- scaling_factor: 0.1
392
- unit: "da*W"
392
+ chart_meta:
393
+ description: XY2 branch energy accumulated
394
+ family: 'PDU/Branch/XY2/Energy'
395
+ unit: "da*W"
396
+ scale_factor: 0.1
397
398
- MIB: CPI-UNITY-MIB
399
symbol:
400
OID: 1.3.6.1.4.1.30932.1.1.3.11.5.0
401
name: energyyz2s
402
metric_type: monotonic_count
399
- description: YZ2 branch energy accumulated
400
- family: PDU/Branch/YZ2/Energy
401
- scaling_factor: 0.1
402
- unit: "da*W"
403
+ chart_meta:
404
+ description: YZ2 branch energy accumulated
405
+ family: 'PDU/Branch/YZ2/Energy'
406
+ unit: "da*W"
407
+ scale_factor: 0.1
408
409
- MIB: CPI-UNITY-MIB
410
symbol:
411
OID: 1.3.6.1.4.1.30932.1.1.3.11.6.0
412
name: energyzx2s
413
metric_type: monotonic_count
409
- description: ZX2 branch energy accumulated
410
- family: PDU/Branch/ZX2/Energy
411
- scaling_factor: 0.1
412
- unit: "da*W"
414
+ chart_meta:
415
+ description: ZX2 branch energy accumulated
416
+ family: 'PDU/Branch/ZX2/Energy'
417
+ unit: "da*W"
418
+ scale_factor: 0.1
419
420
### [Legacy] Outlets
421
- MIB: CPI-UNITY-MIB
@@ -418,7 +424,7 @@ metrics:
424
name: outlet1Current
425
chart_meta:
426
description: Outlet1 current draw
421
- family: PDU/Outlet/1/Current
427
+ family: 'PDU/Outlet/1/Current'
428
unit: "A"
429
scale_factor: 0.01
430
@@ -428,7 +434,7 @@ metrics:
434
name: outlet2Current
435
chart_meta:
436
description: Outlet2 current draw
431
- family: PDU/Outlet/2/Current
437
+ family: 'PDU/Outlet/2/Current'
438
unit: "A"
439
scale_factor: 0.01
440
@@ -438,7 +444,7 @@ metrics:
444
name: outlet3Current
445
chart_meta:
446
description: Outlet3 current draw
441
- family: PDU/Outlet/3/Current
447
+ family: 'PDU/Outlet/3/Current'
448
unit: "A"
449
scale_factor: 0.01
450
@@ -448,7 +454,7 @@ metrics:
454
name: outlet4Current
455
chart_meta:
456
description: Outlet4 current draw
451
- family: PDU/Outlet/4/Current
457
+ family: 'PDU/Outlet/4/Current'
458
unit: "A"
459
scale_factor: 0.01
460
@@ -458,7 +464,7 @@ metrics:
464
name: outlet5Current
465
chart_meta:
466
description: Outlet5 current draw
461
- family: PDU/Outlet/5/Current
467
+ family: 'PDU/Outlet/5/Current'
468
unit: "A"
469
scale_factor: 0.01
470
@@ -468,7 +474,7 @@ metrics:
474
name: outlet6Current
475
chart_meta:
476
description: Outlet6 current draw
471
- family: PDU/Outlet/6/Current
477
+ family: 'PDU/Outlet/6/Current'
478
unit: "A"
479
scale_factor: 0.01
480
@@ -478,7 +484,7 @@ metrics:
484
name: outlet7Current
485
chart_meta:
486
description: Outlet7 current draw
481
- family: PDU/Outlet/7/Current
487
+ family: 'PDU/Outlet/7/Current'
488
unit: "A"
489
scale_factor: 0.01
490
@@ -488,7 +494,7 @@ metrics:
494
name: outlet8Current
495
chart_meta:
496
description: Outlet8 current draw
491
- family: PDU/Outlet/8/Current
497
+ family: 'PDU/Outlet/8/Current'
498
unit: "A"
499
scale_factor: 0.01
500
@@ -498,7 +504,7 @@ metrics:
504
name: outlet9Current
505
chart_meta:
506
description: Outlet9 current draw
501
- family: PDU/Outlet/9/Current
507
+ family: 'PDU/Outlet/9/Current'
508
unit: "A"
509
scale_factor: 0.01
510
@@ -508,7 +514,7 @@ metrics:
514
name: outlet10Current
515
chart_meta:
516
description: Outlet10 current draw
511
- family: PDU/Outlet/10/Current
517
+ family: 'PDU/Outlet/10/Current'
518
unit: "A"
519
scale_factor: 0.01
520
@@ -518,7 +524,7 @@ metrics:
524
name: outlet11Current
525
chart_meta:
526
description: Outlet11 current draw
521
- family: PDU/Outlet/11/Current
527
+ family: 'PDU/Outlet/11/Current'
528
unit: "A"
529
scale_factor: 0.01
530
@@ -528,7 +534,7 @@ metrics:
534
name: outlet12Current
535
chart_meta:
536
description: Outlet12 current draw
531
- family: PDU/Outlet/12/Current
537
+ family: 'PDU/Outlet/12/Current'
538
unit: "A"
539
scale_factor: 0.01
540
@@ -538,7 +544,7 @@ metrics:
544
name: outlet13Current
545
chart_meta:
546
description: Outlet13 current draw
541
- family: PDU/Outlet/13/Current
547
+ family: 'PDU/Outlet/13/Current'
548
unit: "A"
549
scale_factor: 0.01
550
@@ -548,7 +554,7 @@ metrics:
554
name: outlet14Current
555
chart_meta:
556
description: Outlet14 current draw
551
- family: PDU/Outlet/14/Current
557
+ family: 'PDU/Outlet/14/Current'
558
unit: "A"
559
scale_factor: 0.01
560
@@ -558,7 +564,7 @@ metrics:
564
name: outlet15Current
565
chart_meta:
566
description: Outlet15 current draw
561
- family: PDU/Outlet/15/Current
567
+ family: 'PDU/Outlet/15/Current'
568
unit: "A"
569
scale_factor: 0.01
570
@@ -568,7 +574,7 @@ metrics:
574
name: outlet16Current
575
chart_meta:
576
description: Outlet16 current draw
571
- family: PDU/Outlet/16/Current
577
+ family: 'PDU/Outlet/16/Current'
578
unit: "A"
579
scale_factor: 0.01
580
@@ -578,7 +584,7 @@ metrics:
584
name: outlet17Current
585
chart_meta:
586
description: Outlet17 current draw
581
- family: PDU/Outlet/17/Current
587
+ family: 'PDU/Outlet/17/Current'
588
unit: "A"
589
scale_factor: 0.01
590
@@ -588,7 +594,7 @@ metrics:
594
name: outlet18Current
595
chart_meta:
596
description: Outlet18 current draw
591
- family: PDU/Outlet/18/Current
597
+ family: 'PDU/Outlet/18/Current'
598
unit: "A"
599
scale_factor: 0.01
600
@@ -598,7 +604,7 @@ metrics:
604
name: outlet19Current
605
chart_meta:
606
description: Outlet19 current draw
601
- family: PDU/Outlet/19/Current
607
+ family: 'PDU/Outlet/19/Current'
608
unit: "A"
609
scale_factor: 0.01
610
@@ -608,9 +614,10 @@ metrics:
614
name: outlet20Current
615
chart_meta:
616
description: Outlet20 current draw
611
- family: PDU/Outlet/20/Current
617
+ family: 'PDU/Outlet/20/Current'
618
unit: "A"
619
scale_factor: 0.01
620
+ # ---
621
622
- MIB: CPI-UNITY-MIB
623
symbol:
@@ -618,7 +625,7 @@ metrics:
625
name: outlet21Current
626
chart_meta:
627
description: Outlet21 current draw
621
- family: PDU/Outlet/21/Current
628
+ family: 'PDU/Outlet/21/Current'
629
unit: "A"
630
scale_factor: 0.01
631
@@ -628,7 +635,7 @@ metrics:
635
name: outlet22Current
636
chart_meta:
637
description: Outlet22 current draw
631
- family: PDU/Outlet/22/Current
638
+ family: 'PDU/Outlet/22/Current'
639
unit: "A"
640
scale_factor: 0.01
641
@@ -638,7 +645,7 @@ metrics:
645
name: outlet23Current
646
chart_meta:
647
description: Outlet23 current draw
641
- family: PDU/Outlet/23/Current
648
+ family: 'PDU/Outlet/23/Current'
649
unit: "A"
650
scale_factor: 0.01
651
@@ -648,7 +655,7 @@ metrics:
655
name: outlet24Current
656
chart_meta:
657
description: Outlet24 current draw
651
- family: PDU/Outlet/24/Current
658
+ family: 'PDU/Outlet/24/Current'
659
unit: "A"
660
scale_factor: 0.01
661
@@ -659,7 +666,7 @@ metrics:
666
metric_type: monotonic_count
667
chart_meta:
668
description: Outlet1 receptacle energy accumulated
662
- family: PDU/Outlet/1/Energy
669
+ family: 'PDU/Outlet/1/Energy'
670
unit: "da*W"
671
scale_factor: 0.1
672
@@ -670,7 +677,7 @@ metrics:
677
name: receptacleEnergyoutlet2s
678
metric_type: monotonic_count
679
description: Outlet2 receptacle energy accumulated
673
- family: PDU/Outlet/2/Energy
680
+ family: 'PDU/Outlet/2/Energy'
681
scaling_factor: 0.1
682
unit: "da*W"
683
@@ -681,7 +688,7 @@ metrics:
688
metric_type: monotonic_count
689
chart_meta:
690
description: Outlet3 receptacle energy accumulated
684
- family: PDU/Outlet/3/Energy
691
+ family: 'PDU/Outlet/3/Energy'
692
unit: "da*W"
693
scale_factor: 0.1
694
@@ -693,7 +700,7 @@ metrics:
700
metric_type: monotonic_count
701
chart_meta:
702
description: Outlet4 receptacle energy accumulated
696
- family: PDU/Outlet/4/Energy
703
+ family: 'PDU/Outlet/4/Energy'
704
unit: "da*W"
705
scale_factor: 0.1
706
@@ -705,7 +712,7 @@ metrics:
712
metric_type: monotonic_count
713
chart_meta:
714
description: Outlet5 receptacle energy accumulated
708
- family: PDU/Outlet/5/Energy
715
+ family: 'PDU/Outlet/5/Energy'
716
unit: "da*W"
717
scale_factor: 0.1
718
@@ -717,7 +724,7 @@ metrics:
724
metric_type: monotonic_count
725
chart_meta:
726
description: Outlet6 receptacle energy accumulated
720
- family: PDU/Outlet/6/Energy
727
+ family: 'PDU/Outlet/6/Energy'
728
unit: "da*W"
729
scale_factor: 0.1
730
@@ -729,7 +736,7 @@ metrics:
736
metric_type: monotonic_count
737
chart_meta:
738
description: Outlet7 receptacle energy accumulated
732
- family: PDU/Outlet/7/Energy
739
+ family: 'PDU/Outlet/7/Energy'
740
unit: "da*W"
741
scale_factor: 0.1
742
@@ -741,7 +748,7 @@ metrics:
748
metric_type: monotonic_count
749
chart_meta:
750
description: Outlet8 receptacle energy accumulated
744
- family: PDU/Outlet/8/Energy
751
+ family: 'PDU/Outlet/8/Energy'
752
unit: "da*W"
753
scale_factor: 0.1
754
@@ -753,7 +760,7 @@ metrics:
760
metric_type: monotonic_count
761
chart_meta:
762
description: Outlet9 receptacle energy accumulated
756
- family: PDU/Outlet/9/Energy
763
+ family: 'PDU/Outlet/9/Energy'
764
unit: "da*W"
765
scale_factor: 0.1
766
@@ -765,7 +772,7 @@ metrics:
772
metric_type: monotonic_count
773
chart_meta:
774
description: Outlet10 receptacle energy accumulated
768
- family: PDU/Outlet/10/Energy
775
+ family: 'PDU/Outlet/10/Energy'
776
unit: "da*W"
777
scale_factor: 0.1
778
@@ -777,7 +784,7 @@ metrics:
784
metric_type: monotonic_count
785
chart_meta:
786
description: Outlet11 receptacle energy accumulated
780
- family: PDU/Outlet/11/Energy
787
+ family: 'PDU/Outlet/11/Energy'
788
unit: "da*W"
789
scale_factor: 0.1
790
@@ -789,7 +796,7 @@ metrics:
796
metric_type: monotonic_count
797
chart_meta:
798
description: Outlet12 receptacle energy accumulated
792
- family: PDU/Outlet/12/Energy
799
+ family: 'PDU/Outlet/12/Energy'
800
unit: "da*W"
801
scale_factor: 0.1
802
@@ -801,7 +808,7 @@ metrics:
808
metric_type: monotonic_count
809
chart_meta:
810
description: Outlet13 receptacle energy accumulated
804
- family: PDU/Outlet/13/Energy
811
+ family: 'PDU/Outlet/13/Energy'
812
unit: "da*W"
813
scale_factor: 0.1
814
@@ -813,7 +820,7 @@ metrics:
820
metric_type: monotonic_count
821
chart_meta:
822
description: Outlet14 receptacle energy accumulated
816
- family: PDU/Outlet/14/Energy
823
+ family: 'PDU/Outlet/14/Energy'
824
unit: "da*W"
825
scale_factor: 0.1
826
@@ -825,7 +832,7 @@ metrics:
832
metric_type: monotonic_count
833
chart_meta:
834
description: Outlet15 receptacle energy accumulated
828
- family: PDU/Outlet/15/Energy
835
+ family: 'PDU/Outlet/15/Energy'
836
unit: "da*W"
837
scale_factor: 0.1
838
@@ -837,7 +844,7 @@ metrics:
844
metric_type: monotonic_count
845
chart_meta:
846
description: Outlet16 receptacle energy accumulated
840
- family: PDU/Outlet/16/Energy
847
+ family: 'PDU/Outlet/16/Energy'
848
unit: "da*W"
849
scale_factor: 0.1
850
@@ -849,7 +856,7 @@ metrics:
856
metric_type: monotonic_count
857
chart_meta:
858
description: Outlet17 receptacle energy accumulated
852
- family: PDU/Outlet/17/Energy
859
+ family: 'PDU/Outlet/17/Energy'
860
unit: "da*W"
861
scale_factor: 0.1
862
@@ -861,7 +868,7 @@ metrics:
868
metric_type: monotonic_count
869
chart_meta:
870
description: Outlet18 receptacle energy accumulated
864
- family: PDU/Outlet/18/Energy
871
+ family: 'PDU/Outlet/18/Energy'
872
unit: "da*W"
873
scale_factor: 0.1
874
@@ -873,7 +880,7 @@ metrics:
880
metric_type: monotonic_count
881
chart_meta:
882
description: Outlet19 receptacle energy accumulated
876
- family: PDU/Outlet/19/Energy
883
+ family: 'PDU/Outlet/19/Energy'
884
unit: "da*W"
885
scale_factor: 0.1
886
@@ -885,7 +892,7 @@ metrics:
892
metric_type: monotonic_count
893
chart_meta:
894
description: Outlet20 receptacle energy accumulated
888
- family: PDU/Outlet/20/Energy
895
+ family: 'PDU/Outlet/20/Energy'
896
unit: "da*W"
897
scale_factor: 0.1
898
@@ -897,7 +904,7 @@ metrics:
904
metric_type: monotonic_count
905
chart_meta:
906
description: Outlet21 receptacle energy accumulated
900
- family: PDU/Outlet/21/Energy
907
+ family: 'PDU/Outlet/21/Energy'
908
unit: "da*W"
909
scale_factor: 0.1
910
@@ -909,7 +916,7 @@ metrics:
916
metric_type: monotonic_count
917
chart_meta:
918
description: Outlet22 receptacle energy accumulated
912
- family: PDU/Outlet/22/Energy
919
+ family: 'PDU/Outlet/22/Energy'
920
unit: "da*W"
921
scale_factor: 0.1
922
@@ -921,7 +928,7 @@ metrics:
928
metric_type: monotonic_count
929
chart_meta:
930
description: Outlet23 receptacle energy accumulated
924
- family: PDU/Outlet/23/Energy
931
+ family: 'PDU/Outlet/23/Energy'
932
unit: "da*W"
933
scale_factor: 0.1
934
@@ -933,7 +940,7 @@ metrics:
940
metric_type: monotonic_count
941
chart_meta:
942
description: Outlet24 receptacle energy accumulated
936
- family: PDU/Outlet/24/Energy
943
+ family: 'PDU/Outlet/24/Energy'
944
unit: "da*W"
945
scale_factor: 0.1
946
@@ -951,7 +958,7 @@ metrics:
958
name: cpiPduNumberBranches
959
chart_meta:
960
description: Number of branches in the PDU
954
- family: PDU/Branch/Count
961
+ family: 'PDU/Branch/Count'
962
unit: "{branch}"
963
964
# Get the number of outlets in the PDU.
@@ -959,7 +966,7 @@ metrics:
966
name: cpiPduNumberOutlets
967
chart_meta:
968
description: Number of outlets in the PDU
962
- family: PDU/Outlet/Count
969
+ family: 'PDU/Outlet/Count'
970
unit: "{outlet}"
971
972
# Set or get whether the PDU is in-service: inservice(0), outofservice(1)
@@ -967,7 +974,7 @@ metrics:
974
name: cpiPduOutOfService
975
chart_meta:
976
description: Whether the PDU is in service
970
- family: PDU/Service/Status
977
+ family: 'PDU/Service/Status'
978
unit: "{status}"
979
mapping:
980
0: in service
@@ -978,7 +985,7 @@ metrics:
985
name: cpiPduUpgrade
986
chart_meta:
987
description: Indicator if the PDU firmware is being upgraded
981
- family: PDU/Firmware/Upgrade/Status
988
+ family: 'PDU/Firmware/Upgrade/Status'
989
unit: "{status}"
990
mapping:
991
0: no
@@ -989,7 +996,7 @@ metrics:
996
name: cpiPduChainRole
997
chart_meta:
998
description: Role of the PDU in a daisy chain
992
- family: PDU/Chain/Role/Status
999
+ family: 'PDU/Chain/Role/Status'
1000
unit: "{status}"
1001
mapping:
1002
1: primary
@@ -1000,7 +1007,7 @@ metrics:
1007
name: cpiPduTotalPower
1008
chart_meta:
1009
description: Power for the entire PDU
1003
- family: PDU/Power/Total
1010
+ family: 'PDU/Power/Total'
1011
unit: "VA"
1012
metric_tags:
1013
- tag: pdu_macaddress
@@ -1042,7 +1049,7 @@ metrics:
1049
name: cpiPduEasStatus
1050
chart_meta:
1051
description: Status of the Electronic Access Control system
1045
- family: PDU/Lock/AccessControl/Status
1052
+ family: 'PDU/Lock/AccessControl/Status'
1053
unit: "{status}"
1054
mapping:
1055
0: inactive
@@ -1054,7 +1061,7 @@ metrics:
1061
name: cpiPduDoorStatus
1062
chart_meta:
1063
description: Door sensor status, closed or open
1057
- family: PDU/Lock/Door/Status
1064
+ family: 'PDU/Lock/Door/Status'
1065
unit: "{status}"
1066
mapping:
1067
0: closed
@@ -1065,7 +1072,7 @@ metrics:
1072
name: cpiPduLockStatus
1073
chart_meta:
1074
description: Lock status, closed or open
1068
- family: PDU/Lock/Status
1075
+ family: 'PDU/Lock/Status'
1076
unit: "{status}"
1077
mapping:
1078
0: closed
@@ -1089,22 +1096,20 @@ metrics:
1096
name: cpiPduSensorValue
1097
# description: Value of the sensor, temperature in degrees Fahrenheit or humidity in percent
1098
description: Sensor value
1092
- family: Sensor
1099
+ family: 'Sensor'
1100
transform: |
1094
- {{- $sensorType := index .Metric.Tags "sensor_type" | default "" -}}
1101
+ {{- $sensorType := index .Metric.Tags "rm:sensor_type" | default "" -}}
1102
{{- $config:= get (dict
1096
- "1" (dict "name" "temperature" "unit" "degF" "family" "Sensor/Temperature/Value" "desc" "Temperature reading")
1097
- "2" (dict "name" "humidity" "unit" "%" "family" "Sensor/Humidity/Value" "desc" "Humidity reading")
1103
+ "1" (dict "name" "temperature" "unit" "degF" "family" "Temperature" "desc" "Temperature reading")
1104
+ "2" (dict "name" "humidity" "unit" "%" "family" "Humidity" "desc" "Humidity reading")
1105
) $sensorType -}}
1106
1107
{{- if $config -}}
1108
{{- setName .Metric (printf "%s_%s" .Metric.Name (get $config "name")) -}}
1102
- {{- setFamily .Metric (get $config "family") -}}
1109
+ {{- setFamily .Metric (printf "Hardware/Sensor/%s/Value" (get $config "family")) -}}
1110
{{- with get $config "desc" -}}{{- setDesc $.Metric . -}}{{- end -}}
1111
{{- with get $config "unit" -}}{{- setUnit $.Metric . -}}{{- end -}}
1112
{{- end -}}
1106
-
1107
- {{- deleteTag .Metric "sensor_type" -}}
1113
metric_tags:
1114
- tag: sensor_index
1115
symbol:
@@ -1114,7 +1119,7 @@ metrics:
1119
symbol:
1120
OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.3
1121
name: cpiPduSensorName
1117
- - tag: sensor_type
1122
+ - tag: rm:sensor_type
1123
symbol:
1124
OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.4
1125
name: cpiPduSensorType
@@ -1132,7 +1137,7 @@ metrics:
1137
name: cpiPduLineCurrent
1138
chart_meta:
1139
description: Current draw of the line on the PDU
1135
- family: PDU/Line/Current
1140
+ family: 'PDU/Line/Current'
1141
unit: "A/100"
1142
metric_tags:
1143
# Get the ID of the input line on the PDU.
@@ -1154,7 +1159,7 @@ metrics:
1159
name: cpiPduBranchCurrent
1160
chart_meta:
1161
description: Current draw of the branch on the PDU
1157
- family: PDU/Branch/Current
1162
+ family: 'PDU/Branch/Current'
1163
unit: "A/100"
1164
1165
# Get the maximum current draw in 1/100 amp of the branch on the PDU. Convert the value by dividing by 100.
@@ -1162,7 +1167,7 @@ metrics:
1167
name: cpiPduBranchMaxCurrent
1168
chart_meta:
1169
description: Maximum current draw of the branch on the PDU
1165
- family: PDU/Branch/Current/Maximum
1170
+ family: 'PDU/Branch/Current/Maximum'
1171
unit: "A/100"
1172
1173
# Get the voltage in 1/10 volts of the branch on the PDU. Convert the value by dividing by 10.
@@ -1170,7 +1175,7 @@ metrics:
1175
name: cpiPduBranchVoltage
1176
chart_meta:
1177
description: Voltage in 1/10 volts of the branch on the PDU
1173
- family: PDU/Branch/Voltage
1178
+ family: 'PDU/Branch/Voltage'
1179
unit: "V/10"
1180
1181
# Get the power in volt-amps for the branch.
@@ -1178,7 +1183,7 @@ metrics:
1183
name: cpiPduBranchPower
1184
chart_meta:
1185
description: Power in volt-amps for the branch
1181
- family: PDU/Branch/Power
1186
+ family: 'PDU/Branch/Power'
1187
unit: "VA"
1188
1189
# Get the power factor for the branch.
@@ -1186,7 +1191,7 @@ metrics:
1191
name: cpiPduBranchPowerFactor
1192
chart_meta:
1193
description: Power factor for the branch
1189
- family: PDU/Branch/PowerFactor
1194
+ family: 'PDU/Branch/PowerFactor'
1195
unit: "10*2.1"
1196
# TODO don't think this helps
1197
@@ -1195,7 +1200,7 @@ metrics:
1200
name: cpiPduBranchStatus
1201
chart_meta:
1202
description: Alarm status of the branch
1198
- family: PDU/Branch/Alarm/Status
1203
+ family: 'PDU/Branch/Alarm/Status'
1204
unit: "{status}"
1205
mapping:
1206
0: noalarm
@@ -1206,7 +1211,7 @@ metrics:
1211
name: cpiPduBranchEnergy
1212
chart_meta:
1213
description: Branch energy accumulated in decaVA-secs, divide by 360 to obtain VA-hr
1209
- family: PDU/Branch/Energy
1214
+ family: 'PDU/Branch/Energy'
1215
unit: "V"
1216
scale_factor: 0.1
1217
@@ -1248,7 +1253,7 @@ metrics:
1253
name: cpiPduOutletCurrent
1254
chart_meta:
1255
description: Current draw in 1/100 amp of the outlet on the PDU
1251
- family: PDU/Outlet/Current
1256
+ family: 'PDU/Outlet/Current'
1257
unit: "A/100"
1258
1259
# Get the voltage in 1/10 volts of the outlet on the PDU. Convert the value by dividing by 10.
@@ -1256,7 +1261,7 @@ metrics:
1261
name: cpiPduOutletVoltage
1262
chart_meta:
1263
description: Voltage in 1/10 volts of the outlet on the PDU
1259
- family: PDU/Outlet/Voltage
1264
+ family: 'PDU/Outlet/Voltage'
1265
unit: "V/10"
1266
1267
# The power in Volt-Amps of the outlet on the PDU.
@@ -1264,7 +1269,7 @@ metrics:
1269
name: cpiPduOutletPower
1270
chart_meta:
1271
description: Power in Volt-Amps of the outlet on the PDU
1267
- family: PDU/Outlet/Power
1272
+ family: 'PDU/Outlet/Power'
1273
unit: "VA"
1274
1275
# Get the alarm status of the outlet: noalarm(0), warning(1), alarm(2)
@@ -1272,7 +1277,7 @@ metrics:
1277
name: cpiPduOutletStatus
1278
chart_meta:
1279
description: Alarm status of the outlet
1275
- family: PDU/Outlet/Alarm/Status
1280
+ family: 'PDU/Outlet/Alarm/Status'
1281
unit: "{status}"
1282
mapping:
1283
0: noalarm
@@ -1283,7 +1288,7 @@ metrics:
1288
name: cpiPduOutletEnergy
1289
chart_meta:
1290
description: Outlet energy accumulated in decaWatt-secs, divide by 360 to obtain Watt-hr
1286
- family: PDU/Outlet/Energy
1291
+ family: 'PDU/Outlet/Energy'
1292
unit: "W"
1293
scale_factor: 0.1
1294
src/go/plugin/go.d/config/go.d/snmp.profiles/default/checkpoint.yaml
+25
-25
@@ -71,25 +71,25 @@ metrics:
71
name: multiProcUserTime
72
chart_meta:
73
description: "Processor user time"
74
- family: CPU/Time/User
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
78
chart_meta:
79
description: "Processor system time"
80
- family: CPU/Time/System
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
84
chart_meta:
85
description: "Processor idle time"
86
- family: CPU/Time/Idle
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
90
chart_meta:
91
description: "Processor usage"
92
- family: CPU/Usage
92
+ family: 'CPU/Usage'
93
unit: "%"
94
metric_tags:
95
- symbol:
@@ -102,7 +102,7 @@ metrics:
102
name: procNum
103
chart_meta:
104
description: "Number of processors"
105
- family: CPU/Count
105
+ family: 'CPU/Count'
106
unit: "{processor}"
107
# Memory
108
- MIB: CHECKPOINT-MIB
@@ -112,7 +112,7 @@ metrics:
112
name: memTotalReal64
113
chart_meta:
114
description: "Total real memory"
115
- family: Memory/Real/Total
115
+ family: 'Memory/Real/Total'
116
unit: "By"
117
- MIB: CHECKPOINT-MIB
118
metric_type: gauge
@@ -121,7 +121,7 @@ metrics:
121
name: memActiveReal64
122
chart_meta:
123
description: "Active real memory"
124
- family: Memory/Real/Active
124
+ family: 'Memory/Real/Active'
125
unit: "By"
126
- MIB: CHECKPOINT-MIB
127
metric_type: gauge
@@ -130,7 +130,7 @@ metrics:
130
name: memFreeReal64
131
chart_meta:
132
description: "Free real memory"
133
- family: Memory/Real/Free
133
+ family: 'Memory/Real/Free'
134
unit: "By"
135
- MIB: CHECKPOINT-MIB
136
metric_type: gauge
@@ -139,7 +139,7 @@ metrics:
139
name: memTotalVirtual64
140
chart_meta:
141
description: "Total virtual memory"
142
- family: Memory/Virtual/Total
142
+ family: 'Memory/Virtual/Total'
143
unit: "By"
144
- MIB: CHECKPOINT-MIB
145
metric_type: gauge
@@ -148,7 +148,7 @@ metrics:
148
name: memActiveVirtual64
149
chart_meta:
150
description: "Active virtual memory"
151
- family: Memory/Virtual/Active
151
+ family: 'Memory/Virtual/Active'
152
unit: "By"
153
# Disk
154
- MIB: CHECKPOINT-MIB
@@ -161,37 +161,37 @@ metrics:
161
name: multiDiskSize
162
chart_meta:
163
description: "Disk size"
164
- family: Disk/Size/Total
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
168
chart_meta:
169
description: "Disk used"
170
- family: Disk/Size/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
174
chart_meta:
175
description: "Disk free total bytes"
176
- family: Disk/Size/Free
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
180
chart_meta:
181
description: "Disk free available bytes"
182
- family: Disk/Size/Available
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
186
chart_meta:
187
description: "Disk free total percent"
188
- family: Disk/Free/Percentage
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
192
chart_meta:
193
description: "Disk free available percent"
194
- family: Disk/Available/Percentage
194
+ family: 'Disk/Available/Percentage'
195
unit: "%"
196
metric_tags:
197
- symbol:
@@ -212,13 +212,13 @@ metrics:
212
name: fanSpeedSensorValue
213
chart_meta:
214
description: "Sensor value"
215
- family: Sensor/FanSpeed/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
219
chart_meta:
220
description: "Sensor is out of range true(1), false(0), reading error(2)"
221
- family: Sensor/FanSpeed/Status
221
+ family: 'Sensor/FanSpeed/Status'
222
unit: "{status}"
223
mapping:
224
0: "false"
@@ -242,13 +242,13 @@ metrics:
242
name: tempertureSensorValue
243
chart_meta:
244
description: "Sensor value"
245
- family: Sensor/Temperature/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
249
chart_meta:
250
description: "Sensor is out of range true(1), false(0), reading error(2)"
251
- family: Sensor/Temperature/Status
251
+ family: 'Sensor/Temperature/Status'
252
unit: "{status}"
253
mapping:
254
0: "false"
@@ -270,7 +270,7 @@ metrics:
270
name: fwAccepted
271
chart_meta:
272
description: "Number of accepted packets"
273
- family: Firewall/Packet/Accepted
273
+ family: 'Firewall/Packet/Accepted'
274
unit: "{packet}/s"
275
- MIB: CHECKPOINT-MIB
276
symbol:
@@ -278,7 +278,7 @@ metrics:
278
name: fwDropped
279
chart_meta:
280
description: "Number of dropped packets"
281
- family: Firewall/Packet/Dropped
281
+ family: 'Firewall/Packet/Dropped'
282
unit: "{packet}/s"
283
- MIB: CHECKPOINT-MIB
284
symbol:
@@ -286,7 +286,7 @@ metrics:
286
name: fwRejected
287
chart_meta:
288
description: "Number of rejected packets"
289
- family: Firewall/Packet/Rejected
289
+ family: 'Firewall/Packet/Rejected'
290
unit: "{packet}/s"
291
- MIB: CHECKPOINT-MIB
292
symbol:
@@ -294,7 +294,7 @@ metrics:
294
name: fwNumConn
295
chart_meta:
296
description: "Number of connections"
297
- family: Firewall/Connection/Active
297
+ family: 'Firewall/Connection/Active'
298
unit: "{connection}"
299
- MIB: CHECKPOINT-MIB
300
symbol:
@@ -302,5 +302,5 @@ metrics:
302
name: fwPeakNumConn
303
chart_meta:
304
description: "Peak number of connections"
305
- family: Firewall/Connection/Peak
305
+ family: 'Firewall/Connection/Peak'
306
unit: "{connection}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/chrysalis-luna-hsm.yaml
+7
-7
@@ -11,7 +11,7 @@ metrics:
11
name: hsmOperationRequests
12
chart_meta:
13
description: Number of operations
14
- family: HSM/Operation/Request/Total
14
+ family: 'HSM/Operation/Request/Total'
15
unit: "{operation}"
16
- MIB: CHRYSALIS-UTSP-MIB
17
symbol:
@@ -19,7 +19,7 @@ metrics:
19
name: hsmOperationErrors
20
chart_meta:
21
description: Number of operation errors
22
- family: HSM/Operation/Error/Total
22
+ family: 'HSM/Operation/Error/Total'
23
unit: "{error}"
24
# - MIB: CHRYSALIS-UTSP-MIB
25
# symbol:
@@ -40,7 +40,7 @@ metrics:
40
name: ntlsOperStatus
41
chart_meta:
42
description: Current operational status of the NTL service
43
- family: HSM/NTLS/Operational/Status
43
+ family: 'HSM/NTLS/Operational/Status'
44
unit: "{status}"
45
mapping:
46
1: up
@@ -52,7 +52,7 @@ metrics:
52
name: ntlsConnectedClients
53
chart_meta:
54
description: The current number of connected clients using NTLS
55
- family: HSM/NTLS/Client/Connected
55
+ family: 'HSM/NTLS/Client/Connected'
56
unit: "{client}"
57
- MIB: CHRYSALIS-UTSP-MIB
58
symbol:
@@ -60,7 +60,7 @@ metrics:
60
name: ntlsLinks
61
chart_meta:
62
description: The current number of links in NTLS
63
- family: HSM/NTLS/Link/Active
63
+ family: 'HSM/NTLS/Link/Active'
64
unit: "{link}"
65
- MIB: CHRYSALIS-UTSP-MIB
66
symbol:
@@ -68,7 +68,7 @@ metrics:
68
name: ntlsSuccessfulClientConnections
69
chart_meta:
70
description: The total number of successful client connections
71
- family: HSM/NTLS/Connection/Successful
71
+ family: 'HSM/NTLS/Connection/Successful'
72
unit: "{connection}/s"
73
- MIB: CHRYSALIS-UTSP-MIB
74
symbol:
@@ -76,7 +76,7 @@ metrics:
76
name: ntlsFailedClientConnections
77
chart_meta:
78
description: The total number of unsuccessful client connections
79
- family: HSM/NTLS/Connection/Failed
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
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-access-point.yaml
+9
-9
@@ -25,55 +25,55 @@ metrics:
25
OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.1
26
chart_meta:
27
description: Number of wireless clients currently associating with this device on this interface
28
- family: Interfaces/Wireless/Client/Active
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
32
chart_meta:
33
description: Number of bridges currently associating with this device on this interface
34
- family: Interfaces/Wireless/Bridge/Active
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
38
chart_meta:
39
description: Number of repeaters currently associating with this device on this interface
40
- family: Interfaces/Wireless/Repeater/Active
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
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
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
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
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
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
58
+ family: 'Interfaces/Wireless/Station/Roamed/In'
59
unit: "{station}/s"
60
- name: cDot11AssStatsRoamedAway
61
OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.4
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
64
+ family: 'Interfaces/Wireless/Station/Roamed/Out'
65
unit: "{station}/s"
66
- name: cDot11AssStatsDeauthenticated
67
OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.5
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
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
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
76
+ family: 'Interfaces/Wireless/Station/Disassociated'
77
unit: "{station}/s"
78
metric_tags:
79
- tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-firepower-asa.yaml
+9
-9
@@ -41,7 +41,7 @@ metrics:
41
name: cpu.usage
42
chart_meta:
43
description: The overall CPU busy percentage in the last 1 minute period
44
- family: CPU/Usage
44
+ family: 'CPU/Usage'
45
unit: "%"
46
metric_tags:
47
- tag: cpu_index
@@ -52,7 +52,7 @@ metrics:
52
OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7.1.1 # cempMemPoolUsed.1.1
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
55
+ family: 'Memory/Used'
56
unit: "By"
57
- MIB: CISCO-ENHANCED-MEMPOOL-MIB
58
symbol:
@@ -60,7 +60,7 @@ metrics:
60
OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8.1.1 # cempMemPoolFree.1.1
61
chart_meta:
62
description: Number of bytes from the memory pool that are currently unused on the physical entity
63
- family: Memory/Free
63
+ family: 'Memory/Free'
64
unit: "By"
65
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
66
symbol:
@@ -68,7 +68,7 @@ metrics:
68
name: crasNumDeclinedSessions
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
71
+ family: 'RemoteAccess/Session/Setup/Declined'
72
unit: "{session}/s"
73
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
74
symbol:
@@ -76,7 +76,7 @@ metrics:
76
name: crasNumSetupFailInsufResources
77
chart_meta:
78
description: The number of session setup attempts that failed due to insufficient resources
79
- family: RemoteAccess/Session/Setup/Failed
79
+ family: 'RemoteAccess/Session/Setup/Failed'
80
unit: "{session}/s"
81
metric_type: monotonic_count
82
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
@@ -85,7 +85,7 @@ metrics:
85
name: crasNumSessions
86
chart_meta:
87
description: Number of currently active sessions
88
- family: RemoteAccess/Session/Active
88
+ family: 'RemoteAccess/Session/Active'
89
unit: "{session}"
90
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
91
symbol:
@@ -93,7 +93,7 @@ metrics:
93
name: crasMaxSessionsSupportable
94
chart_meta:
95
description: The maximum number of remote access sessions that may be supported on this device
96
- family: RemoteAccess/Session/Maximum
96
+ family: 'RemoteAccess/Session/Maximum'
97
unit: "{session}"
98
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
99
symbol:
@@ -101,7 +101,7 @@ metrics:
101
name: crasNumUsers
102
chart_meta:
103
description: The number of users who have active sessions
104
- family: RemoteAccess/User/Active
104
+ family: 'RemoteAccess/User/Active'
105
unit: "{user}"
106
- MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
107
symbol:
@@ -109,5 +109,5 @@ metrics:
109
name: crasMaxUsersSupportable
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
112
+ family: 'RemoteAccess/User/Maximum'
113
unit: "{user}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-firepower.yaml
+7
-7
@@ -32,7 +32,7 @@ metrics:
32
name: cpu.usage
33
chart_meta:
34
description: The overall CPU busy percentage in the last 1 minute period.
35
- family: CPU/Usage
35
+ family: 'CPU/Usage'
36
unit: "%"
37
metric_tags:
38
- tag: cpu_index
@@ -46,13 +46,13 @@ metrics:
46
name: memory.free
47
chart_meta:
48
description: Memory free
49
- family: 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
53
chart_meta:
54
description: Memory used
55
- family: Memory/Used
55
+ family: 'Memory/Used'
56
unit: "By"
57
metric_tags:
58
- tag: mem_index
@@ -66,14 +66,14 @@ metrics:
66
name: cfprSmMonitorDataDiskAvailable
67
chart_meta:
68
description: Data disk available
69
- family: Disk/Data/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
74
chart_meta:
75
description: Data disk total
76
- family: Disk/Data/Total
76
+ family: 'Disk/Data/Total'
77
unit: "By"
78
scale_factor: 1024
79
metric_tags:
@@ -90,7 +90,7 @@ metrics:
90
name: cfprEquipmentFanOperState
91
chart_meta:
92
description: Equipment/Fans
93
- family: Fan/Operational/Status
93
+ family: 'Fan/Operational/Status'
94
unit: "{status}"
95
mapping:
96
0: unknown
@@ -137,7 +137,7 @@ metrics:
137
name: cfprEquipmentPsuPower
138
chart_meta:
139
description: Psu power state
140
- family: PowerSupply/Power/Status
140
+ family: 'PowerSupply/Power/Status'
141
unit: "{status}"
142
mapping:
143
0: unknown
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-ironport-email.yaml
+107
-98
@@ -24,7 +24,7 @@ metrics:
24
OID: 1.3.6.1.4.1.15497.1.1.1.1.0
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
27
+ family: 'Memory/Usage'
28
unit: "%"
29
- MIB: ASYNCOS-MAIL-MIB
30
symbol:
@@ -32,7 +32,7 @@ metrics:
32
OID: 1.3.6.1.4.1.15497.1.1.1.2.0
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
35
+ family: 'CPU/Usage'
36
unit: "%"
37
- MIB: ASYNCOS-MAIL-MIB
38
symbol:
@@ -40,7 +40,7 @@ metrics:
40
OID: 1.3.6.1.4.1.15497.1.1.1.14.0
41
chart_meta:
42
description: The number of seconds the oldest message has been in queue
43
- family: Queue/Message/Age
43
+ family: 'Queue/Message/Age'
44
unit: "s"
45
- MIB: ASYNCOS-MAIL-MIB
46
symbol:
@@ -48,7 +48,7 @@ metrics:
48
OID: 1.3.6.1.4.1.15497.1.1.1.3.0
49
chart_meta:
50
description: Disk I/O within the last 5-15 seconds
51
- family: Disk/IO/Utilization
51
+ family: 'Disk/IO/Utilization'
52
unit: "%"
53
- MIB: ASYNCOS-MAIL-MIB
54
symbol:
@@ -56,39 +56,46 @@ metrics:
56
OID: 1.3.6.1.4.1.15497.1.1.1.4.0
57
chart_meta:
58
description: Percent of total queue capacity used
59
- family: Queue/Utilization
59
+ family: 'Queue/Utilization'
60
unit: "%"
61
- # - MIB: ASYNCOS-MAIL-MIB
62
- # symbol:
63
- # name: ironport.queueAvailabilityStatus
64
- # OID: 1.3.6.1.4.1.15497.1.1.1.5.0
65
- # enum:
66
- # queueSpaceAvailable: 1
67
- # queueSpaceShortage: 2
68
- # queueFull: 3
69
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
70
- # comment in profile until it's fixed)
71
- # - MIB: ASYNCOS-MAIL-MIB
72
- # symbol:
73
- # name: ironport.resourceConservationReason
74
- # OID: 1.3.6.1.4.1.15497.1.1.1.6.0
75
- # enum:
76
- # noResourceConservation: 1
77
- # memoryShortage: 2
78
- # queueSpaceShortage: 3
79
- # queueFull: 4
80
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
81
- # comment in profile until it's fixed)
82
- # - MIB: ASYNCOS-MAIL-MIB
83
- # symbol:
84
- # name: ironport.memoryAvailabilityStatus
85
- # OID: 1.3.6.1.4.1.15497.1.1.1.7.0
86
- # enum:
87
- # memoryAvailable: 1
88
- # memoryShortage: 2
89
- # memoryFull: 3
90
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
91
- # comment in profile until it's fixed)
61
+ - MIB: ASYNCOS-MAIL-MIB
62
+ symbol:
63
+ name: ironport.queueAvailabilityStatus
64
+ OID: 1.3.6.1.4.1.15497.1.1.1.5.0
65
+ chart_meta:
66
+ description: Status indicating the current availability of the message queue
67
+ family: 'Queue/Availability/Status'
68
+ unit: "{status}"
69
+ mapping:
70
+ queueSpaceAvailable: 1
71
+ queueSpaceShortage: 2
72
+ queueFull: 3
73
+ - MIB: ASYNCOS-MAIL-MIB
74
+ symbol:
75
+ name: ironport.resourceConservationReason
76
+ OID: 1.3.6.1.4.1.15497.1.1.1.6.0
77
+ chart_meta:
78
+ description: Reason the appliance is conserving resources
79
+ family: 'System/Resource/Conservation'
80
+ unit: "{status}"
81
+ mapping:
82
+ noResourceConservation: 1
83
+ memoryShortage: 2
84
+ queueSpaceShortage: 3
85
+ queueFull: 4
86
+ - MIB: ASYNCOS-MAIL-MIB
87
+ symbol:
88
+ name: ironport.memoryAvailabilityStatus
89
+ OID: 1.3.6.1.4.1.15497.1.1.1.7.0
90
+ chart_meta:
91
+ description: Current status of memory availability
92
+ family: 'Memory/Availability/Status'
93
+ unit: "{status}"
94
+ mapping:
95
+ memoryAvailable: 1
96
+ memoryShortage: 2
97
+ memoryFull: 3
98
+
99
- MIB: ASYNCOS-MAIL-MIB
100
table:
101
name: powerSupplyTable
@@ -98,7 +105,7 @@ metrics:
105
name: ironport.powerSupplyStatus
106
chart_meta:
107
description: Status of the power supply
101
- family: PowerSupply/Status/Operational
108
+ family: 'PowerSupply/Status/Operational'
109
unit: "{status}"
110
mapping:
111
1: power_supply_not_installed
@@ -109,7 +116,7 @@ metrics:
116
name: ironport.powerSupplyRedundancy
117
chart_meta:
118
description: Status of a collection of one or more power supplies
112
- family: PowerSupply/Status/Redundancy
119
+ family: 'PowerSupply/Status/Redundancy'
120
unit: "{status}"
121
mapping:
122
1: power_supply_redundancy_ok
@@ -129,7 +136,7 @@ metrics:
136
OID: 1.3.6.1.4.1.15497.1.1.1.9.1.2
137
chart_meta:
138
description: Temperature reading for the sensor being instrumented
132
- family: Sensor/Temperature/Value
139
+ family: 'Sensor/Temperature/Value'
140
unit: "Cel"
141
metric_tags:
142
- tag: ironport_temperature_name
@@ -145,7 +152,7 @@ metrics:
152
OID: 1.3.6.1.4.1.15497.1.1.1.10.1.2
153
chart_meta:
154
description: Speed in RPMs of the chassis fan
148
- family: Fan/Speed/Value
155
+ family: 'Fan/Speed/Value'
156
unit: "{rotation}/m"
157
metric_tags:
158
- tag: ironport_fan_name
@@ -158,7 +165,7 @@ metrics:
165
OID: 1.3.6.1.4.1.15497.1.1.1.11.0
166
chart_meta:
167
description: Number of messages in the work queue
161
- family: Queue/Work/Messages
168
+ family: 'Queue/Work/Messages'
169
unit: "{message}"
170
- MIB: ASYNCOS-MAIL-MIB
171
table:
@@ -169,7 +176,7 @@ metrics:
176
OID: 1.3.6.1.4.1.15497.1.1.1.12.1.4
177
chart_meta:
178
description: Seconds until the valid Feature Key expires
172
- family: License/Key/Expiration
179
+ family: 'License/Key/Expiration'
180
unit: "s"
181
metric_tags:
182
- tag: ironport_key_description
@@ -192,13 +199,13 @@ metrics:
199
OID: 1.3.6.1.4.1.15497.1.1.1.13.1.3
200
chart_meta:
201
description: The number of successful attempts that have occurred when updating a service
195
- family: Service/Update/Successful
202
+ family: 'Service/Update/Successful'
203
unit: "{attempt}/s"
204
- name: ironport.updateFailures
205
OID: 1.3.6.1.4.1.15497.1.1.1.13.1.4
206
chart_meta:
207
description: The number of failed attempts that have occurred when updating a service.
201
- family: Service/Update/Failed
208
+ family: 'Service/Update/Failed'
209
unit: "{attempt}/s"
210
metric_tags:
211
- tag: ironport_update_service_name
@@ -211,7 +218,7 @@ metrics:
218
OID: 1.3.6.1.4.1.15497.1.1.1.15.0
219
chart_meta:
220
description: Number of DNS requests that have been sent but for which no reply has been received
214
- family: DNS/Request/Outstanding
221
+ family: 'DNS/Request/Outstanding'
222
unit: "{request}/s"
223
- MIB: ASYNCOS-MAIL-MIB
224
symbol:
@@ -219,7 +226,7 @@ metrics:
226
OID: 1.3.6.1.4.1.15497.1.1.1.16.0
227
chart_meta:
228
description: Number of DNS requests waiting to be sent
222
- family: DNS/Request/Pending
229
+ family: 'DNS/Request/Pending'
230
unit: "{request}"
231
- MIB: ASYNCOS-MAIL-MIB
232
symbol:
@@ -227,7 +234,7 @@ metrics:
234
OID: 1.3.6.1.4.1.15497.1.1.1.17.0
235
chart_meta:
236
description: The total number of RAID events that have occurred since the last appliance power on event
230
- family: Disk/RAID/Event/Total
237
+ family: 'Disk/RAID/Event/Total'
238
unit: "{event}/s"
239
- MIB: ASYNCOS-MAIL-MIB
240
table:
@@ -238,7 +245,7 @@ metrics:
245
OID: 1.3.6.1.4.1.15497.1.1.1.18.1.2
246
chart_meta:
247
description: Represents the status of a drive attached to a RAID controller in the appliance
241
- family: Disk/RAID/Status
248
+ family: 'Disk/RAID/Status'
249
unit: "{status}"
250
mapping:
251
1: drive_healthy
@@ -259,32 +266,34 @@ metrics:
266
OID: 1.3.6.1.4.1.15497.1.1.1.19.0
267
chart_meta:
268
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/Resource/File/Open
263
- unit: "{file}"
269
+ family: 'System/Resource/File/Open'
270
+ unit: "{fd}"
271
- MIB: ASYNCOS-MAIL-MIB
272
symbol:
273
name: ironport.mailTransferThreads
274
OID: 1.3.6.1.4.1.15497.1.1.1.20.0
275
chart_meta:
276
description: Number of threads that perform some task related to transferring mail.
270
- family: Mail/Transfer/Threads
277
+ family: 'Mail/Transfer/Threads'
278
unit: "{thread}"
272
- # - MIB: ASYNCOS-MAIL-MIB
273
- # symbol:
274
- # name: ironport.fipsMode
275
- # OID: 1.3.6.1.4.1.15497.1.1.1.23.0
276
- # enum:
277
- # enabled: 1
278
- # disabled: 2
279
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
280
- # comment in profile until it's fixed)
279
+ - MIB: ASYNCOS-MAIL-MIB
280
+ symbol:
281
+ name: ironport.fipsMode
282
+ OID: 1.3.6.1.4.1.15497.1.1.1.23.0
283
+ chart_meta:
284
+ description: Indicates whether the appliance is operating in FIPS mode
285
+ family: 'Security/FIPS/Mode'
286
+ unit: "{status}"
287
+ mapping:
288
+ enabled: 1
289
+ disabled: 2
290
- MIB: ASYNCOS-MAIL-MIB
291
symbol:
292
name: ironport.perCentCPULoad
293
OID: 1.3.6.1.4.1.15497.1.1.1.26.0
294
chart_meta:
295
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
296
+ family: 'CPU/Usage'
297
unit: "%"
298
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
299
symbol:
@@ -292,7 +301,7 @@ metrics:
301
OID: 1.3.6.1.4.1.15497.1.2.3.2.2.0
302
chart_meta:
303
description: The number of HTTP requests received from clients
295
- family: HTTP/Client/Request/Total
304
+ family: 'HTTP/Client/Request/Total'
305
unit: "{request}/s"
306
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
307
symbol:
@@ -300,7 +309,7 @@ metrics:
309
OID: 1.3.6.1.4.1.15497.1.2.3.2.4.0
310
chart_meta:
311
description: The number of HTTP errors caused by client connections.
303
- family: HTTP/Client/Error/Total
312
+ family: 'HTTP/Client/Error/Total'
313
unit: "{error}/s"
314
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
315
symbol:
@@ -308,7 +317,7 @@ metrics:
317
OID: 1.3.6.1.4.1.15497.1.2.3.2.7.0
318
chart_meta:
319
description: The number of connected but idle persistent client connections
311
- family: HTTP/Client/Connection/Idle
320
+ family: 'HTTP/Client/Connection/Idle'
321
unit: "{connection}"
322
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
323
symbol:
@@ -316,7 +325,7 @@ metrics:
325
OID: 1.3.6.1.4.1.15497.1.2.3.2.8.0
326
chart_meta:
327
description: The current number of active + idle client connections
319
- family: HTTP/Client/Connection/Total
328
+ family: 'HTTP/Client/Connection/Total'
329
unit: "{connection}"
330
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
331
symbol:
@@ -324,7 +333,7 @@ metrics:
333
OID: 1.3.6.1.4.1.15497.1.2.3.2.9.0
334
chart_meta:
335
description: The maximum number of simultaneous client connections that will be allowed
327
- family: HTTP/Client/Connection/Max
336
+ family: 'HTTP/Client/Connection/Max'
337
unit: "{connection}"
338
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
339
symbol:
@@ -332,7 +341,7 @@ metrics:
341
OID: 1.3.6.1.4.1.15497.1.2.3.2.10.0
342
chart_meta:
343
description: The total number of sockets accepted from the clients
335
- family: HTTP/Client/Socket/Accepted
344
+ family: 'HTTP/Client/Socket/Accepted'
345
unit: "{socket}/s"
346
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
347
symbol:
@@ -340,7 +349,7 @@ metrics:
349
OID: 1.3.6.1.4.1.15497.1.2.3.2.17.0
350
chart_meta:
351
description: The number of responses blocked by access control
343
- family: HTTP/Client/Response/Denied
352
+ family: 'HTTP/Client/Response/Denied'
353
unit: "{response}/s"
354
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
355
symbol:
@@ -348,7 +357,7 @@ metrics:
357
OID: 1.3.6.1.4.1.15497.1.2.3.3.2.0
358
chart_meta:
359
description: The total number of HTTP requests sent to servers
351
- family: HTTP/Server/Request/Total
360
+ family: 'HTTP/Server/Request/Total'
361
unit: "{request}/s"
362
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
363
symbol:
@@ -356,7 +365,7 @@ metrics:
365
OID: 1.3.6.1.4.1.15497.1.2.3.3.3.0
366
chart_meta:
367
description: The total number of sockets opened from the servers
359
- family: HTTP/Server/Socket/Total
368
+ family: 'HTTP/Server/Socket/Total'
369
unit: "{socket}"
370
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
371
symbol:
@@ -364,7 +373,7 @@ metrics:
373
OID: 1.3.6.1.4.1.15497.1.2.3.3.4.0
374
chart_meta:
375
description: The number of HTTP errors while fetching objects
367
- family: HTTP/Server/Error/Total
376
+ family: 'HTTP/Server/Error/Total'
377
unit: "{error}/s"
378
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
379
symbol:
@@ -372,7 +381,7 @@ metrics:
381
OID: 1.3.6.1.4.1.15497.1.2.3.3.7.0
382
chart_meta:
383
description: The number of connected but idle persistent server connections
375
- family: HTTP/Server/Connection/Idle
384
+ family: 'HTTP/Server/Connection/Idle'
385
unit: "{connection}"
386
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
387
symbol:
@@ -380,7 +389,7 @@ metrics:
389
OID: 1.3.6.1.4.1.15497.1.2.3.3.8.0
390
chart_meta:
391
description: The current number of active + idle server connections
383
- family: HTTP/Server/Connection/Total
392
+ family: 'HTTP/Server/Connection/Total'
393
unit: "{connection}"
394
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
395
symbol:
@@ -388,7 +397,7 @@ metrics:
397
OID: 1.3.6.1.4.1.15497.1.2.3.3.9.0
398
chart_meta:
399
description: The number of server connections closed due to idle time limits
391
- family: HTTP/Server/Connection/Closed
400
+ family: 'HTTP/Server/Connection/Closed'
401
unit: "{connection}/s"
402
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
403
symbol:
@@ -396,7 +405,7 @@ metrics:
405
OID: 1.3.6.1.4.1.15497.1.2.3.3.10.0
406
chart_meta:
407
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/Connection/Limited
408
+ family: 'HTTP/Server/Connection/Limited'
409
unit: "{connection}/s"
410
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
411
symbol:
@@ -404,7 +413,7 @@ metrics:
413
OID: 1.3.6.1.4.1.15497.1.2.3.3.11.0
414
chart_meta:
415
description: The limit on the number of server connections
407
- family: HTTP/Server/Connection/Threshold
416
+ family: 'HTTP/Server/Connection/Threshold'
417
unit: "{connection}"
418
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
419
symbol:
@@ -412,7 +421,7 @@ metrics:
421
OID: 1.3.6.1.4.1.15497.1.2.3.6.1.0
422
chart_meta:
423
description: Total number of HTTP requests from clients
415
- family: HTTP/Request/Total
424
+ family: 'HTTP/Request/Total'
425
unit: "{request}/s"
426
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
427
symbol:
@@ -420,7 +429,7 @@ metrics:
429
OID: 1.3.6.1.4.1.15497.1.2.3.6.2.0
430
chart_meta:
431
description: The HTTP mean response time
423
- family: HTTP/Response/Time/Mean
432
+ family: 'HTTP/Response/Time/Mean'
433
unit: "ms"
434
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
435
symbol:
@@ -428,7 +437,7 @@ metrics:
437
OID: 1.3.6.1.4.1.15497.1.2.3.6.3.0
438
chart_meta:
439
description: The HTTP mean response time of Misses
431
- family: HTTP/Response/Time/Miss
440
+ family: 'HTTP/Response/Time/Miss'
441
unit: "ms"
442
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
443
symbol:
@@ -436,7 +445,7 @@ metrics:
445
OID: 1.3.6.1.4.1.15497.1.2.3.6.4.0
446
chart_meta:
447
description: The HTTP mean response time of Hits
439
- family: HTTP/Response/Time/Hit
448
+ family: 'HTTP/Response/Time/Hit'
449
unit: "ms"
450
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
451
symbol:
@@ -444,7 +453,7 @@ metrics:
453
OID: 1.3.6.1.4.1.15497.1.2.3.6.5.0
454
chart_meta:
455
description: The HTTP hit ratio
447
- family: Cache/Hit/Ratio
456
+ family: 'Cache/Hit/Ratio'
457
unit: "%"
458
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
459
symbol:
@@ -452,7 +461,7 @@ metrics:
461
OID: 1.3.6.1.4.1.15497.1.2.3.6.6.0
462
chart_meta:
463
description: The HTTP byte hit ratio
455
- family: Cache/Hit/ByteRatio
464
+ family: 'Cache/Hit/ByteRatio'
465
unit: "%"
466
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
467
symbol:
@@ -461,7 +470,7 @@ metrics:
470
scale_factor: 1000000 # MBits => bytes
471
chart_meta:
472
description: The total bandwidth savings for HTTP
464
- family: Bandwidth/Savings/Total
473
+ family: 'Bandwidth/Savings/Total'
474
unit: "bit/s"
475
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
476
symbol:
@@ -469,7 +478,7 @@ metrics:
478
OID: 1.3.6.1.4.1.15497.1.2.3.6.8.0
479
chart_meta:
480
description: The proxy up time
472
- family: System/Uptime
481
+ family: 'System/Uptime'
482
unit: "s"
483
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
484
symbol:
@@ -477,7 +486,7 @@ metrics:
486
OID: 1.3.6.1.4.1.15497.1.2.3.6.9.0
487
chart_meta:
488
description: The percentage of errors in the HTTP replies to clients
480
- family: HTTP/Client/Errors/Percentage
489
+ family: 'HTTP/Client/Errors/Percentage'
490
unit: "%"
491
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
492
symbol:
@@ -485,7 +494,7 @@ metrics:
494
OID: 1.3.6.1.4.1.15497.1.2.3.7.1.1.0
495
chart_meta:
496
description: Request throughput in the last minute
488
- family: Throughput/Request/Total
497
+ family: 'Throughput/Request/Total'
498
unit: "{request}"
499
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
500
symbol:
@@ -494,7 +503,7 @@ metrics:
503
scale_factor: 1000
504
chart_meta:
505
description: Bandwidth savings in the last minute
497
- family: Bandwidth/Savings/Current
506
+ family: 'Bandwidth/Savings/Current'
507
unit: "bit/s"
508
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
509
symbol:
@@ -503,7 +512,7 @@ metrics:
512
scale_factor: 1000
513
chart_meta:
514
description: Bandwidth spent in the last minute
506
- family: Bandwidth/Usage/Current
515
+ family: 'Bandwidth/Usage/Current'
516
unit: "bit/s"
517
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
518
symbol:
@@ -512,7 +521,7 @@ metrics:
521
scale_factor: 1000
522
chart_meta:
523
description: Bandwidth total in the last minute
515
- family: Bandwidth/Total/Current
524
+ family: 'Bandwidth/Total/Current'
525
unit: "bit/s"
526
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
527
symbol:
@@ -520,7 +529,7 @@ metrics:
529
OID: 1.3.6.1.4.1.15497.1.2.3.7.5.1.0
530
chart_meta:
531
description: Hit throughput in the last minute
523
- family: Cache/Hit/Throughput
532
+ family: 'Cache/Hit/Throughput'
533
unit: "{hit}"
534
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
535
symbol:
@@ -528,7 +537,7 @@ metrics:
537
OID: 1.3.6.1.4.1.15497.1.2.3.7.6.1.0
538
chart_meta:
539
description: Miss throughput in the last minute
531
- family: Cache/Miss/Throughput
540
+ family: 'Cache/Miss/Throughput'
541
unit: "{miss}"
542
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
543
symbol:
@@ -536,7 +545,7 @@ metrics:
545
OID: 1.3.6.1.4.1.15497.1.2.3.7.7.1.0
546
chart_meta:
547
description: Cache hit response time in the last minute
539
- family: Cache/Response/Time/Hit
548
+ family: 'Cache/Response/Time/Hit'
549
unit: "ms"
550
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
551
symbol:
@@ -544,7 +553,7 @@ metrics:
553
OID: 1.3.6.1.4.1.15497.1.2.3.7.8.1.0
554
chart_meta:
555
description: Cache miss response time in the last minute
547
- family: Cache/Response/Time/Miss
556
+ family: 'Cache/Response/Time/Miss'
557
unit: "ms"
558
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
559
symbol:
@@ -552,7 +561,7 @@ metrics:
561
OID: 1.3.6.1.4.1.15497.1.2.3.7.9.1.0
562
chart_meta:
563
description: Cache total response time in the last minute
555
- family: Cache/Response/Time/Total
564
+ family: 'Cache/Response/Time/Total'
565
unit: "ms"
566
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
567
symbol:
@@ -560,7 +569,7 @@ metrics:
569
OID: 1.3.6.1.4.1.15497.1.2.3.7.10.1.0
570
chart_meta:
571
description: Cache error throughput time in the last minute
563
- family: Cache/Error/Throughput
572
+ family: 'Cache/Error/Throughput'
573
unit: "{error}"
574
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
575
symbol:
@@ -568,7 +577,7 @@ metrics:
577
OID: 1.3.6.1.4.1.15497.1.2.3.7.11.1.0
578
chart_meta:
579
description: Cache denial throughput time in the last minute
571
- family: Cache/Denial/Throughput
580
+ family: 'Cache/Denial/Throughput'
581
unit: "{denial}"
582
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
583
symbol:
@@ -576,7 +585,7 @@ metrics:
585
OID: 1.3.6.1.4.1.15497.1.2.3.7.12.1.0
586
chart_meta:
587
description: Cache error response time in the last minute
579
- family: Cache/Response/Time/Error
588
+ family: 'Cache/Response/Time/Error'
589
unit: "ms"
590
- MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
591
symbol:
@@ -584,7 +593,7 @@ metrics:
593
OID: 1.3.6.1.4.1.15497.1.2.3.7.13.1.0
594
chart_meta:
595
description: Cache denial response time in the last minute
587
- family: Cache/Response/Time/Denial
596
+ family: 'Cache/Response/Time/Denial'
597
unit: "ms"
598
metric_tags:
599
- tag: ironport_cache_admin
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-legacy-wlc.yaml
+3
-3
@@ -44,7 +44,7 @@ metrics:
44
name: cpu.usage
45
chart_meta:
46
description: Current CPU load of the switch
47
- family: CPU/Usage
47
+ family: 'CPU/Usage'
48
unit: "%"
49
- MIB: AIRESPACE-SWITCHING-MIB
50
symbol:
@@ -52,7 +52,7 @@ metrics:
52
name: memory.free
53
chart_meta:
54
description: Free RAM of the switch
55
- family: Memory/RAM/Free
55
+ family: 'Memory/RAM/Free'
56
unit: "By"
57
- MIB: AIRESPACE-SWITCHING-MIB
58
symbol:
@@ -60,5 +60,5 @@ metrics:
60
name: memory.total
61
chart_meta:
62
description: Total RAM of the switch
63
- family: Memory/RAM/Total
63
+ family: 'Memory/RAM/Total'
64
unit: "By"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-load-balancer.yaml
+37
-37
@@ -20,49 +20,49 @@ metrics:
20
name: slbStatsCreatedConnections
21
chart_meta:
22
description: Number of TCP and UDP connections created since SLB was configured
23
- family: SLB/Connection/Created
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
27
chart_meta:
28
description: Number of connections created by SLB since it was configured (64-bit)
29
- family: SLB/Connection/Created
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
33
chart_meta:
34
description: Number of connections established through SLB
35
- family: SLB/Connection/Established
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
39
chart_meta:
40
description: Number of connections established through SLB (64-bit)
41
- family: SLB/Connection/Established
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
45
chart_meta:
46
description: Number of TCP and UDP connections destroyed by SLB
47
- family: SLB/Connection/Destroyed
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
51
chart_meta:
52
description: Number of TCP and UDP connections destroyed by SLB (64-bit)
53
- family: SLB/Connection/Destroyed
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
57
chart_meta:
58
description: Number of TCP and UDP connections reassigned from one real server to another
59
- family: SLB/Connection/Reassigned
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
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
65
+ family: 'SLB/Connection/Reassigned'
66
unit: "{connection}/s"
67
metric_tags:
68
- tag: slb_entity_index
@@ -77,175 +77,175 @@ metrics:
77
name: cslbxStatsCurrConnections
78
chart_meta:
79
description: Number of connections currently still open
80
- family: SLB/Connection/Current
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
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
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
90
chart_meta:
91
description: Number of connections made to the virtual servers with only layer 4 configuration
92
- family: SLB/VirtualServer/Layer4/Connection
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
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
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
102
chart_meta:
103
description: Number of connections made to the virtual servers with some layer 7 configuration
104
- family: SLB/VirtualServer/Layer7/Connection
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
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
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
114
chart_meta:
115
description: Number of connections dropped by virtual servers with only layer 4 configuration
116
- family: SLB/VirtualServer/Layer4/Dropped
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
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
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
126
chart_meta:
127
description: Number of connections dropped by virtual servers with some layer 7 policy
128
- family: SLB/VirtualServer/Layer7/Dropped
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
132
chart_meta:
133
description: Number of connections dropped by virtual servers with some layer 7 configuration
134
- family: SLB/VirtualServer/Layer7/Dropped
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
138
chart_meta:
139
description: Number of connections made to virtual servers with the FTP service
140
- family: SLB/VirtualServer/FTP/Connection
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
144
chart_meta:
145
description: Number of connections made to HTTP redirect servers
146
- family: SLB/HTTPRedirect/Connection
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
150
chart_meta:
151
description: Number of connections dropped by HTTP redirect servers
152
- family: SLB/HTTPRedirect/Dropped
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
156
chart_meta:
157
description: Number of connections rejected because they failed to match any configured policy
158
- family: SLB/Connection/Rejected/NoPolicy
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
204
chart_meta:
205
description: Number of connections rejected because some invalid or unrecognized SSL format was detected
206
- family: SLB/Connection/Rejected/SSL
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
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
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
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
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
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
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
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
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
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
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
240
chart_meta:
241
description: Accumulated number of TCP packets which have checksum error
242
- family: Network/TCP/Error/Checksum
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
246
chart_meta:
247
description: Accumulated number of IP packets which have checksum error
248
- family: Network/IP/Error/Checksum
248
+ family: 'Network/IP/Error/Checksum'
249
unit: "{packet}/s"
250
metric_tags:
251
- tag: slb_entity_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-nexus.yaml
+3
-5
@@ -31,7 +31,7 @@ metrics:
31
name: entSensorValue # Do not change this name — required by transformEntitySensorValue for matching and renaming logic
32
chart_meta:
33
description: Most recent measurement obtained by the agent for this sensor
34
- family: Sensor/Value
34
+ family: 'Sensor/Value'
35
unit: "1"
36
transform: |
37
{{- transformEntitySensorValue .Metric -}}
@@ -63,18 +63,16 @@ metrics:
63
name: cempMemPoolTable
64
symbols:
65
- OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7
66
- # core check only
66
name: memory.used
67
chart_meta:
68
description: Number of bytes from the memory pool that are currently in use by applications on the physical entity
70
- family: Memory/Pool/Used
69
+ family: 'Memory/Pool/Used'
70
unit: "By"
71
- OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8
73
- # core check only
72
name: memory.free
73
chart_meta:
74
description: Number of bytes from the memory pool that are currently unused on the physical entity
77
- family: Memory/Pool/Free
75
+ family: 'Memory/Pool/Free'
76
unit: "By"
77
metric_tags:
78
- tag: mem_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-sb.yaml
+1
-1
@@ -19,5 +19,5 @@ metrics:
19
OID: 1.3.6.1.4.1.9.6.1.101.1.8
20
chart_meta:
21
description: Cpu usage percentage
22
- family: CPU/Usage
22
+ family: 'CPU/Usage'
23
unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-ucs.yaml
+69
-69
@@ -27,7 +27,7 @@ metrics:
27
name: cucsComputeBoardOperPower
28
chart_meta:
29
description: Operational power state of the board
30
- family: Board/Status/Power/Operational
30
+ family: 'Hardware/Board/Status/Power/Operational'
31
unit: "{status}"
32
mapping:
33
0: unknown
@@ -47,7 +47,7 @@ metrics:
47
name: cucsComputeBoardOperState
48
chart_meta:
49
description: Operational state of the board
50
- family: Board/Status/Operational
50
+ family: 'Hardware/Board/Status/Operational'
51
unit: "{status}"
52
mapping:
53
0: unknown
@@ -86,7 +86,7 @@ metrics:
86
name: cucsComputeBoardOperability
87
chart_meta:
88
description: "Operability state of the board"
89
- family: Board/Status/Operability
89
+ family: 'Hardware/Board/Status/Operability'
90
unit: "{status}"
91
mapping:
92
0: unknown
@@ -125,7 +125,7 @@ metrics:
125
name: cucsComputeBoardPerf
126
chart_meta:
127
description: "Performance state of the board"
128
- family: Board/Status/Performance
128
+ family: 'Hardware/Board/Status/Performance'
129
unit: "{status}"
130
mapping:
131
0: unknown
@@ -141,7 +141,7 @@ metrics:
141
name: cucsComputeBoardPower
142
chart_meta:
143
description: "Power state of the board"
144
- family: Board/Power/Status
144
+ family: 'Hardware/Board/Power/Status'
145
unit: "{status}"
146
mapping:
147
0: unknown
@@ -161,7 +161,7 @@ metrics:
161
name: cucsComputeBoardPresence
162
chart_meta:
163
description: "Presence state of the board"
164
- family: Board/Status/Presence
164
+ family: 'Hardware/Board/Status/Presence'
165
unit: "{status}"
166
mapping:
167
0: unknown
@@ -188,7 +188,7 @@ metrics:
188
name: cucsComputeBoardThermal
189
chart_meta:
190
description: "Thermal state of the board"
191
- family: Board/Status/Thermal
191
+ family: 'Hardware/Board/Status/Thermal'
192
unit: "{status}"
193
mapping:
194
0: unknown
@@ -204,7 +204,7 @@ metrics:
204
name: cucsComputeBoardVoltage
205
chart_meta:
206
description: "Voltage state of the board"
207
- family: Board/Status/Voltage
207
+ family: 'Hardware/Board/Status/Voltage'
208
unit: "{status}"
209
mapping:
210
0: unknown
@@ -243,19 +243,19 @@ metrics:
243
OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.4
244
chart_meta:
245
description: "Consumed power"
246
- family: Board/Power/Consumption
246
+ family: 'Hardware/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
250
chart_meta:
251
description: "Input current"
252
- family: Board/Power/Input/Current
252
+ family: 'Hardware/Board/Power/Input/Current'
253
unit: "A"
254
- name: cucsComputeMbPowerStatsInputVoltage
255
OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.12
256
chart_meta:
257
description: "Input voltage"
258
- family: Board/Power/Input/Voltage
258
+ family: 'Hardware/Board/Power/Input/Voltage'
259
unit: "V"
260
metric_tags:
261
- tag: cucs_compute_mb_power_stats_dn
@@ -272,19 +272,19 @@ metrics:
272
OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.9
273
chart_meta:
274
description: "Rack unit available memory"
275
- family: RackUnit/Memory/Available
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
279
chart_meta:
280
description: "Rack Unit total memory"
281
- family: RackUnit/Memory/Total
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
285
chart_meta:
286
description: "Admin power state of the rack unit"
287
- family: RackUnit/Status/Admin/Power
287
+ family: 'RackUnit/Status/Admin/Power'
288
unit: "{status}"
289
mapping:
290
2: cycle_immediate
@@ -304,7 +304,7 @@ metrics:
304
name: cucsComputeRackUnitAdminState
305
chart_meta:
306
description: "Admin state of the rack unit"
307
- family: RackUnit/Status/Admin/State
307
+ family: 'RackUnit/Status/Admin/State'
308
unit: "{status}"
309
mapping:
310
1: in_service
@@ -314,7 +314,7 @@ metrics:
314
name: cucsComputeRackUnitAssociation
315
chart_meta:
316
description: "Association state of the rack unit"
317
- family: RackUnit/Status/Association
317
+ family: 'RackUnit/Status/Association'
318
unit: "{status}"
319
mapping:
320
0: none
@@ -327,7 +327,7 @@ metrics:
327
name: cucsComputeRackUnitAvailability
328
chart_meta:
329
description: "Availability state of the rack unit"
330
- family: RackUnit/Status/Availability
330
+ family: 'RackUnit/Status/Availability'
331
unit: "{status}"
332
mapping:
333
0: unavailable
@@ -336,7 +336,7 @@ metrics:
336
name: cucsComputeRackUnitCheckPoint
337
chart_meta:
338
description: "Checkpoint state of the rack unit"
339
- family: RackUnit/Status/Checkpoint
339
+ family: 'RackUnit/Status/Checkpoint'
340
unit: "{status}"
341
mapping:
342
0: unknown
@@ -348,7 +348,7 @@ metrics:
348
name: cucsComputeRackUnitOperPower
349
chart_meta:
350
description: "Operational power state of the rack unit"
351
- family: RackUnit/Status/Power/Operational
351
+ family: 'RackUnit/Status/Power/Operational'
352
unit: "{status}"
353
mapping:
354
0: unknown
@@ -368,7 +368,7 @@ metrics:
368
name: cucsComputeRackUnitOperState
369
chart_meta:
370
description: "Operational state of the rack unit"
371
- family: RackUnit/Status/Operational
371
+ family: 'RackUnit/Status/Operational'
372
unit: "{status}"
373
mapping:
374
0: indeterminate
@@ -408,7 +408,7 @@ metrics:
408
name: cucsComputeRackUnitOperability
409
chart_meta:
410
description: "Operability state of the rack unit"
411
- family: RackUnit/Status/Operability
411
+ family: 'RackUnit/Status/Operability'
412
unit: "{status}"
413
mapping:
414
0: unknown
@@ -447,7 +447,7 @@ metrics:
447
name: cucsComputeRackUnitPresence
448
chart_meta:
449
description: "Presence state of the rack unit"
450
- family: RackUnit/Status/Presence
450
+ family: 'RackUnit/Status/Presence'
451
unit: "{status}"
452
mapping:
453
0: unknown
@@ -470,19 +470,19 @@ metrics:
470
name: cucsComputeRackUnitNumOfCores
471
chart_meta:
472
description: "Number of cores"
473
- family: RackUnit/CPU/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
477
chart_meta:
478
description: "Number of cpus"
479
- family: RackUnit/CPU/Count
479
+ family: 'RackUnit/CPU/Count'
480
unit: "{cpu}"
481
- name: cucsComputeRackUnitNumOfThreads
482
OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.39
483
chart_meta:
484
description: "Number of threads"
485
- family: RackUnit/CPU/Threads
485
+ family: 'RackUnit/CPU/Threads'
486
unit: "{thread}"
487
metric_tags:
488
- tag: cucs_compute_rack_unit_dn
@@ -519,25 +519,25 @@ metrics:
519
OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.4
520
chart_meta:
521
description: "Ambient temperature"
522
- family: RackUnit/Temperature/Ambient
522
+ family: 'RackUnit/Temperature/Ambient'
523
unit: "Cel"
524
- name: cucsComputeRackUnitMbTempStatsFrontTemp
525
OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.8
526
chart_meta:
527
description: "Front temperature"
528
- family: RackUnit/Temperature/Front
528
+ family: 'RackUnit/Temperature/Front'
529
unit: "Cel"
530
- name: cucsComputeRackUnitMbTempStatsIoh1Temp
531
OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.13
532
chart_meta:
533
description: "Ioh1 temperature"
534
- family: RackUnit/Temperature/IOH1
534
+ family: 'RackUnit/Temperature/IOH1'
535
unit: "Cel"
536
- name: cucsComputeRackUnitMbTempStatsRearTemp
537
OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.21
538
chart_meta:
539
description: "Rear temperature"
540
- family: RackUnit/Temperature/Rear
540
+ family: 'RackUnit/Temperature/Rear'
541
unit: "Cel"
542
metric_tags:
543
- tag: cucs_compute_rack_unit_mb_temp_stats_dn
@@ -554,7 +554,7 @@ metrics:
554
name: cucsEquipmentFanOperState
555
chart_meta:
556
description: "Operational state of the fan"
557
- family: Fan/Status/Operational
557
+ family: 'Hardware/Fan/Status/Operational'
558
unit: "{status}"
559
mapping:
560
0: unknown
@@ -593,7 +593,7 @@ metrics:
593
name: cucsEquipmentFanOperability
594
chart_meta:
595
description: "Operability state of the fan"
596
- family: Fan/Status/Operability
596
+ family: 'Hardware/Fan/Status/Operability'
597
unit: "{status}"
598
mapping:
599
0: unknown
@@ -632,7 +632,7 @@ metrics:
632
name: cucsEquipmentFanPerf
633
chart_meta:
634
description: "Performance state of the fan"
635
- family: Fan/Status/Performance
635
+ family: 'Hardware/Fan/Status/Performance'
636
unit: "{status}"
637
mapping:
638
0: unknown
@@ -648,7 +648,7 @@ metrics:
648
name: cucsEquipmentFanPower
649
chart_meta:
650
description: "Power state of the fan"
651
- family: Fan/Status/Power
651
+ family: 'Hardware/Fan/Status/Power'
652
unit: "{status}"
653
mapping:
654
0: unknown
@@ -668,7 +668,7 @@ metrics:
668
name: cucsEquipmentFanPresence
669
chart_meta:
670
description: "Presence state of the fan"
671
- family: Fan/Status/Presence
671
+ family: 'Hardware/Fan/Status/Presence'
672
unit: "{status}"
673
mapping:
674
0: unknown
@@ -714,7 +714,7 @@ metrics:
714
name: cucsEquipmentPsuOperState
715
chart_meta:
716
description: "Operational state of the psu"
717
- family: PowerSupply/Status/Operational
717
+ family: 'Hardware/PowerSupply/Status/Operational'
718
unit: "{status}"
719
mapping:
720
0: unknown
@@ -753,7 +753,7 @@ metrics:
753
name: cucsEquipmentPsuOperability
754
chart_meta:
755
description: "Operability state of the psu"
756
- family: PowerSupply/Status/Operability
756
+ family: 'Hardware/PowerSupply/Status/Operability'
757
unit: "{status}"
758
mapping:
759
0: unknown
@@ -792,7 +792,7 @@ metrics:
792
name: cucsEquipmentPsuPerf
793
chart_meta:
794
description: "Performance state of the psu"
795
- family: PowerSupply/Status/Performance
795
+ family: 'Hardware/PowerSupply/Status/Performance'
796
unit: "{status}"
797
mapping:
798
0: unknown
@@ -808,7 +808,7 @@ metrics:
808
name: cucsEquipmentPsuPower
809
chart_meta:
810
description: "Power state of the psu"
811
- family: PowerSupply/Status/Power
811
+ family: 'Hardware/PowerSupply/Status/Power'
812
unit: "{status}"
813
mapping:
814
0: unknown
@@ -828,7 +828,7 @@ metrics:
828
name: cucsEquipmentPsuPresence
829
chart_meta:
830
description: "Presence state of the psu"
831
- family: PowerSupply/Status/Presence
831
+ family: 'Hardware/PowerSupply/Status/Presence'
832
unit: "{status}"
833
mapping:
834
0: unknown
@@ -878,13 +878,13 @@ metrics:
878
OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.6
879
chart_meta:
880
description: "Capacity of the memory unit"
881
- family: Memory/Capacity
881
+ family: 'Hardware/Memory/Capacity'
882
unit: "By"
883
- OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.13
884
name: cucsMemoryUnitOperState
885
chart_meta:
886
description: "Operational state of the memory unit"
887
- family: Memory/Status/Operational
887
+ family: 'Hardware/Memory/Status/Operational'
888
unit: "{status}"
889
mapping:
890
0: unknown
@@ -923,7 +923,7 @@ metrics:
923
name: cucsMemoryUnitOperability
924
chart_meta:
925
description: "Operability state of the memory unit"
926
- family: Memory/Status/Operability
926
+ family: 'Hardware/Memory/Status/Operability'
927
unit: "{status}"
928
mapping:
929
0: unknown
@@ -962,7 +962,7 @@ metrics:
962
name: cucsMemoryUnitPerf
963
chart_meta:
964
description: "Performance state of the memory unit"
965
- family: Memory/Status/Performance
965
+ family: 'Hardware/Memory/Status/Performance'
966
unit: "{status}"
967
mapping:
968
0: unknown
@@ -978,7 +978,7 @@ metrics:
978
name: cucsMemoryUnitPower
979
chart_meta:
980
description: "Power state of the memory unit"
981
- family: Memory/Status/Power
981
+ family: 'Hardware/Memory/Status/Power'
982
unit: "{status}"
983
mapping:
984
0: unknown
@@ -998,7 +998,7 @@ metrics:
998
name: cucsMemoryUnitPresence
999
chart_meta:
1000
description: "Presence state of the memory unit"
1001
- family: Memory/Status/Presence
1001
+ family: 'Hardware/Memory/Status/Presence'
1002
unit: "{status}"
1003
mapping:
1004
0: unknown
@@ -1069,7 +1069,7 @@ metrics:
1069
OID: 1.3.6.1.4.1.9.9.719.1.30.12.1.6
1070
chart_meta:
1071
description: "Temperature"
1072
- family: Memory/Temperature
1072
+ family: 'Hardware/Memory/Temperature'
1073
unit: "Cel"
1074
metric_tags:
1075
- tag: cucs_memory_unit_env_stats_dn
@@ -1086,7 +1086,7 @@ metrics:
1086
OID: 1.3.6.1.4.1.9.9.719.1.41.2.1.10
1087
chart_meta:
1088
description: "Temperature"
1089
- family: Processor/Temperature
1089
+ family: 'Hardware/CPU/Temperature'
1090
unit: "Cel"
1091
metric_tags:
1092
- tag: cucs_processor_env_stats_dn
@@ -1103,25 +1103,25 @@ metrics:
1103
name: cucsProcessorUnitCores
1104
chart_meta:
1105
description: "Number of cores"
1106
- family: Processor/Cores/Total
1106
+ family: 'Hardware/CPU/Cores/Total'
1107
unit: "{core}"
1108
- OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.6
1109
name: cucsProcessorUnitCoresEnabled
1110
chart_meta:
1111
description: "Number of cores enabled"
1112
- family: Processor/Cores/Enabled
1112
+ family: 'Hardware/CPU/Cores/Enabled'
1113
unit: "{core}"
1114
- OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.20
1115
name: cucsProcessorUnitThreads
1116
chart_meta:
1117
description: "Number of threads"
1118
- family: Processor/Threads
1118
+ family: 'Hardware/CPU/Threads'
1119
unit: "{thread}"
1120
- OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.9
1121
name: cucsProcessorUnitOperState
1122
chart_meta:
1123
description: "Operational state of the processor unit"
1124
- family: Processor/Status/Operational
1124
+ family: 'Hardware/CPU/Status/Operational'
1125
unit: "{status}"
1126
mapping:
1127
0: unknown
@@ -1160,7 +1160,7 @@ metrics:
1160
name: cucsProcessorUnitOperability
1161
chart_meta:
1162
description: "Operability state of the processor unit"
1163
- family: Processor/Status/Operability
1163
+ family: 'Hardware/CPU/Status/Operability'
1164
unit: "{status}"
1165
mapping:
1166
0: unknown
@@ -1199,7 +1199,7 @@ metrics:
1199
name: cucsProcessorUnitPerf
1200
chart_meta:
1201
description: "Performance state of the processor unit"
1202
- family: Processor/Status/Performance
1202
+ family: 'Hardware/CPU/Status/Performance'
1203
unit: "{status}"
1204
mapping:
1205
0: unknown
@@ -1215,7 +1215,7 @@ metrics:
1215
name: cucsProcessorUnitPower
1216
chart_meta:
1217
description: "Power state of the processor unit"
1218
- family: Processor/Status/Power
1218
+ family: 'Hardware/CPU/Status/Power'
1219
unit: "{status}"
1220
mapping:
1221
0: unknown
@@ -1235,7 +1235,7 @@ metrics:
1235
name: cucsProcessorUnitPresence
1236
chart_meta:
1237
description: "Presence state of the processor unit"
1238
- family: Processor/Presence/Status
1238
+ family: 'Hardware/CPU/Presence/Status'
1239
unit: "{status}"
1240
mapping:
1241
0: unknown
@@ -1294,25 +1294,25 @@ metrics:
1294
OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.19
1295
chart_meta:
1296
description: "Read io error count"
1297
- family: Storage/FlexFlash/Error/Read
1297
+ family: 'Storage/FlexFlash/Error/Read'
1298
unit: "{error}/s"
1299
- name: cucsStorageFlexFlashCardSize
1300
OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.22
1301
chart_meta:
1302
description: "Size of the flex flash card"
1303
- family: Storage/FlexFlash/Capacity
1303
+ family: 'Storage/FlexFlash/Capacity'
1304
unit: "By"
1305
- name: cucsStorageFlexFlashCardWriteIOErrorCount
1306
OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.26
1307
chart_meta:
1308
description: "Write io error count"
1309
- family: Storage/FlexFlash/Error/Write
1309
+ family: 'Storage/FlexFlash/Error/Write'
1310
unit: "{error}/s"
1311
- OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.6
1312
name: cucsStorageFlexFlashCardCardMode
1313
chart_meta:
1314
description: "Mode of the flex flash card"
1315
- family: Storage/FlexFlash/Mode
1315
+ family: 'Storage/FlexFlash/Mode'
1316
unit: "{status}"
1317
mapping:
1318
0: ff_phy_drive_unpaired_primary
@@ -1323,13 +1323,13 @@ metrics:
1323
name: cucsStorageFlexFlashCardDrivesEnabled
1324
chart_meta:
1325
description: "Number of drives enabled"
1326
- family: Storage/FlexFlash/Drive/Enabled
1326
+ family: 'Storage/FlexFlash/Drive/Enabled'
1327
unit: "{drive}"
1328
- OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.5
1329
name: cucsStorageFlexFlashCardCardHealth
1330
chart_meta:
1331
description: "Health state of the flex flash card"
1332
- family: Storage/FlexFlash/Status/Health
1332
+ family: 'Storage/FlexFlash/Status/Health'
1333
unit: "{status}"
1334
mapping:
1335
0: ff_phy_health_na
@@ -1342,7 +1342,7 @@ metrics:
1342
name: cucsStorageFlexFlashCardOperability
1343
chart_meta:
1344
description: "Operability state of the flex flash card"
1345
- family: Storage/FlexFlash/Status/Operability
1345
+ family: 'Storage/FlexFlash/Status/Operability'
1346
unit: "{status}"
1347
mapping:
1348
0: unknown
@@ -1381,7 +1381,7 @@ metrics:
1381
name: cucsStorageFlexFlashCardPresence
1382
chart_meta:
1383
description: "Presence state of the flex flash card"
1384
- family: Storage/FlexFlash/Status/Presence
1384
+ family: 'Storage/FlexFlash/Status/Presence'
1385
unit: "{status}"
1386
mapping:
1387
0: unknown
@@ -1408,7 +1408,7 @@ metrics:
1408
OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.27
1409
chart_meta:
1410
description: "State of the flex flash card"
1411
- family: Storage/FlexFlash/Status/Card
1411
+ family: 'Storage/FlexFlash/Status/Card'
1412
unit: "{status}"
1413
mapping:
1414
0: undefined
@@ -1422,7 +1422,7 @@ metrics:
1422
name: cucsStorageFlexFlashCardCardSync
1423
chart_meta:
1424
description: "Sync state of the flex flash card"
1425
- family: Storage/FlexFlash/Status/Sync
1425
+ family: 'Storage/FlexFlash/Status/Sync'
1426
unit: "{status}"
1427
mapping:
1428
0: na
@@ -1465,13 +1465,13 @@ metrics:
1465
OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.18
1466
chart_meta:
1467
description: "Size of the flex flash drive"
1468
- family: Storage/FlexFlash/Drive/Capacity
1468
+ family: 'Storage/FlexFlash/Drive/Capacity'
1469
unit: "By"
1470
- OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.14
1471
name: cucsStorageFlexFlashDriveOperability
1472
chart_meta:
1473
description: "Operability state of the flex flash drive"
1474
- family: Storage/FlexFlash/Drive/Operability
1474
+ family: 'Storage/FlexFlash/Drive/Operability'
1475
unit: "{status}"
1476
mapping:
1477
0: unknown
@@ -1510,7 +1510,7 @@ metrics:
1510
name: cucsStorageFlexFlashDrivePresence
1511
chart_meta:
1512
description: "Presence state of the flex flash drive"
1513
- family: Storage/FlexFlash/Drive/Presence
1513
+ family: 'Storage/FlexFlash/Drive/Presence'
1514
unit: "{status}"
1515
mapping:
1516
0: unknown
@@ -1537,7 +1537,7 @@ metrics:
1537
name: cucsStorageFlexFlashDriveOperationState
1538
chart_meta:
1539
description: "Operation state of the flex flash drive"
1540
- family: Storage/FlexFlash/Drive/Operation
1540
+ family: 'Storage/FlexFlash/Drive/Operation'
1541
unit: "{status}"
1542
mapping:
1543
0: partition_non_mirrored
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cisco-wan-optimizer.yaml
+14
-14
@@ -29,7 +29,7 @@ metrics:
29
name: cceAlarmCriticalCount
30
chart_meta:
31
description: Number of alarms currently raised with a severity of 'critical'
32
- family: Alarm/Raised/Critical
32
+ family: 'Alarm/Raised/Critical'
33
unit: "{alarm}"
34
- MIB: CISCO-CONTENT-ENGINE-MIB
35
symbol:
@@ -37,7 +37,7 @@ metrics:
37
name: cceAlarmMajorCount
38
chart_meta:
39
description: Number of alarms currently raised with a severity of 'major'
40
- family: Alarm/Raised/Major
40
+ family: 'Alarm/Raised/Major'
41
unit: "{alarm}"
42
- MIB: CISCO-CONTENT-ENGINE-MIB
43
symbol:
@@ -45,7 +45,7 @@ metrics:
45
name: cceAlarmMinorCount
46
chart_meta:
47
description: Number of alarms currently raised with a severity of 'minor'
48
- family: Alarm/Raised/Minor
48
+ family: 'Alarm/Raised/Minor'
49
unit: "{alarm}"
50
- MIB: CISCO-WAN-OPTIMIZATION-MIB
51
symbol:
@@ -53,7 +53,7 @@ metrics:
53
name: cwoTfoStatsTotalOptConn
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
56
+ family: 'TFO/Connection/Optimized/Total'
57
unit: "{connection}/s"
58
- MIB: CISCO-WAN-OPTIMIZATION-MIB
59
symbol:
@@ -61,7 +61,7 @@ metrics:
61
name: cwoTfoStatsActiveOptConn
62
chart_meta:
63
description: This object contains number of currently active TCP connections getting optimized
64
- family: TFO/Connection/Optimized/Active
64
+ family: 'TFO/Connection/Optimized/Active'
65
unit: "{connection}"
66
- MIB: CISCO-WAN-OPTIMIZATION-MIB
67
symbol:
@@ -69,7 +69,7 @@ metrics:
69
name: cwoTfoStatsActiveOptTCPPlusConn
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
72
+ family: 'TFO/Connection/Optimized/TCPPlus'
73
unit: "{connection}"
74
- MIB: CISCO-WAN-OPTIMIZATION-MIB
75
symbol:
@@ -77,7 +77,7 @@ metrics:
77
name: cwoTfoStatsActiveOptTCPOnlyConn
78
chart_meta:
79
description: This object contains number of active connections going through only TCP optimization
80
- family: TFO/Connection/Optimized/TCPOnly
80
+ family: 'TFO/Connection/Optimized/TCPOnly'
81
unit: "{connection}"
82
- MIB: CISCO-WAN-OPTIMIZATION-MIB
83
symbol:
@@ -85,7 +85,7 @@ metrics:
85
name: cwoTfoStatsActiveOptTCPPrepConn
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
88
+ family: 'TFO/Connection/Preposition/Active'
89
unit: "{connection}"
90
- MIB: CISCO-WAN-OPTIMIZATION-MIB
91
symbol:
@@ -93,7 +93,7 @@ metrics:
93
name: cwoTfoStatsActiveADConn
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
96
+ family: 'TFO/Connection/AutoDiscovery/Active'
97
unit: "{connection}"
98
- MIB: CISCO-WAN-OPTIMIZATION-MIB
99
symbol:
@@ -101,7 +101,7 @@ metrics:
101
name: cwoTfoStatsReservedConn
102
chart_meta:
103
description: This object contains number of TCP connections reserved for the MAPI accelerator
104
- family: TFO/Connection/Reserved/MAPI
104
+ family: 'TFO/Connection/Reserved/MAPI'
105
unit: "{connection}"
106
- MIB: CISCO-WAN-OPTIMIZATION-MIB
107
symbol:
@@ -109,7 +109,7 @@ metrics:
109
name: cwoTfoStatsPendingConn
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
112
+ family: 'TFO/Connection/Queue/Pending'
113
unit: "{connection}"
114
- MIB: CISCO-WAN-OPTIMIZATION-MIB
115
symbol:
@@ -117,7 +117,7 @@ metrics:
117
name: cwoTfoStatsActivePTConn
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
120
+ family: 'TFO/Connection/PassThrough/Active'
121
unit: "{connection}"
122
- MIB: CISCO-WAN-OPTIMIZATION-MIB
123
symbol:
@@ -125,7 +125,7 @@ metrics:
125
name: cwoTfoStatsTotalNormalClosedConn
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
128
+ family: 'TFO/Connection/Closed/Normal'
129
unit: "{connection}/s"
130
- MIB: CISCO-WAN-OPTIMIZATION-MIB
131
symbol:
@@ -133,5 +133,5 @@ metrics:
133
name: cwoTfoStatsResetConn
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
136
+ family: 'TFO/Connection/Closed/Reset'
137
unit: "{connection}/s"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cradlepoint.yaml
+7
-7
@@ -66,43 +66,43 @@ metrics:
66
OID: 1.3.6.1.4.1.20992.1.2.2.1.4
67
chart_meta:
68
description: The cellular modems signal strength, given in dBm's.
69
- family: Cellular/Modem/Signal/Strength
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
73
chart_meta:
74
description: The cellular modems Ec/Io ratio given in dBm's.
75
- family: Cellular/Modem/Signal/ECIO
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
79
chart_meta:
80
description: The cellular modems CINR ratio given in dBm's.
81
- family: Cellular/Modem/Signal/CINR
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
85
chart_meta:
86
description: The cellular modems SINR ratio given in dBm's.
87
- family: Cellular/Modem/Signal/SINR
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
91
chart_meta:
92
description: The cellular modems RSRP given in dBm's.
93
- family: Cellular/Modem/Signal/RSRP
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
97
chart_meta:
98
description: The cellular modems RSRQ given in dBm's.
99
- family: Cellular/Modem/Signal/RSRQ
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
103
chart_meta:
104
description: Modem Status
105
- family: Cellular/Modem/Connection/Status
105
+ family: 'Cellular/Modem/Connection/Status'
106
unit: "{status}"
107
mapping:
108
1: established
src/go/plugin/go.d/config/go.d/snmp.profiles/default/cyberpower-pdu.yaml
+42
-42
@@ -21,11 +21,11 @@ metrics:
21
name: cyberpower.ePDULoadStatusLoad
22
chart_meta:
23
description: "Phase/bank load"
24
- family: Load/Current
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
28
+ family: 'Load/Status'
29
unit: "{status}"
30
mapping:
31
1: LoadNormal
@@ -36,25 +36,25 @@ metrics:
36
name: cyberpower.ePDULoadStatusVoltage
37
chart_meta:
38
description: "Phase/bank voltage measured"
39
- family: Voltage/Value
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
43
chart_meta:
44
description: "Phase/bank active power"
45
- family: Power/Active
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
49
chart_meta:
50
description: "Phase/bank apparent power"
51
- family: Power/Apparent
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
55
chart_meta:
56
description: "Power factor of the output"
57
- family: Power/Factor
57
+ family: 'Power/Factor'
58
unit: "%"
59
metric_tags:
60
- symbol:
@@ -70,7 +70,7 @@ metrics:
70
name: ePDULoadBankConfigAlarm
71
chart_meta:
72
description: Bank Alarm
73
- family: Bank/Alarm/Status
73
+ family: 'Bank/Alarm/Status'
74
unit: "{status}"
75
mapping:
76
1: noLoadAlarm
@@ -91,19 +91,19 @@ metrics:
91
name: cyberpower.ePDUOutletStatusLoad
92
chart_meta:
93
description: "Measured Outlet load for an Outlet Monitored Rack PDU"
94
- family: Outlet/Load/Current
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
98
chart_meta:
99
description: "Measured Outlet load for an Outlet Monitored Rack PDU"
100
- family: Outlet/Power/Active
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
104
chart_meta:
105
description: Outlet state
106
- family: Outlet/Operational/Status
106
+ family: 'Outlet/Operational/Status'
107
unit: "{status}"
108
mapping:
109
1: outletStatusOn
@@ -112,7 +112,7 @@ metrics:
112
name: ePDUOutletStatusAlarm
113
chart_meta:
114
description: Outlet Alarm
115
- family: Outlet/Alarm/Status
115
+ family: 'Outlet/Alarm/Status'
116
unit: "{status}"
117
mapping:
118
1: noLoadAlarm
@@ -134,7 +134,7 @@ metrics:
134
name: ePDUPowerSupply1Status
135
chart_meta:
136
description: Power Supply 1 Status
137
- family: PowerSupply/1/Operational/Status
137
+ family: 'PowerSupply/1/Operational/Status'
138
unit: "{status}"
139
mapping:
140
1: powerSupplyOneOk
@@ -145,7 +145,7 @@ metrics:
145
name: ePDUPowerSupply2Status
146
chart_meta:
147
description: Power Supply 2 Status
148
- family: PowerSupply/2/Operational/Status
148
+ family: 'PowerSupply/2/Operational/Status'
149
unit: "{status}"
150
mapping:
151
1: powerSupplyTwoOk
@@ -156,7 +156,7 @@ metrics:
156
OID: 1.3.6.1.4.1.3808.1.1.3.4.1.3
157
name: ePDUPowerSupplyAlarm
158
description: Power Supply Alarm
159
- family: PowerSupply/Alarm/Status
159
+ family: 'PowerSupply/Alarm/Status'
160
mapping:
161
1: allAvailablePowerSuppliesOK
162
2: powerSupplyOneFailed
@@ -175,7 +175,7 @@ metrics:
175
name: ePDUStatusBankState
176
chart_meta:
177
description: Bank load state
178
- family: Bank/Load/Status
178
+ family: 'Bank/Load/Status'
179
unit: "{status}"
180
mapping:
181
1: bankLoadNormal
@@ -200,7 +200,7 @@ metrics:
200
name: ePDUStatusPhaseState
201
chart_meta:
202
description: Phase load state
203
- family: Phase/Load/Status
203
+ family: 'Phase/Load/Status'
204
unit: "{status}"
205
mapping:
206
1: phase_load_normal
@@ -225,7 +225,7 @@ metrics:
225
name: ePDUStatusOutletState
226
chart_meta:
227
description: Outlet load state
228
- family: Outlet/Load/Status
228
+ family: 'Outlet/Load/Status'
229
unit: "{status}"
230
mapping:
231
1: outletLoadNormal
@@ -247,7 +247,7 @@ metrics:
247
name: cyberpower.ePDUStatusInputVoltage
248
chart_meta:
249
description: "Input voltage"
250
- family: Input/Voltage/Value
250
+ family: 'Input/Voltage/Value'
251
unit: "dV"
252
- MIB: CPS-MIB
253
symbol:
@@ -255,7 +255,7 @@ metrics:
255
name: cyberpower.ePDUStatusInputFrequency
256
chart_meta:
257
description: "Input frequency"
258
- family: Input/Frequency/Value
258
+ family: 'Input/Frequency/Value'
259
unit: "dHz"
260
- MIB: CPS-MIB
261
table:
@@ -266,31 +266,31 @@ metrics:
266
name: cyberpower.ePDU2DeviceStatusCurrentLoad
267
chart_meta:
268
description: "Power consumption of the Rack PDU load"
269
- family: Rack/Load/Current
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
273
chart_meta:
274
description: "Peak power consumption of the Rack PDU load"
275
- family: Rack/Load/Current/Peak
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
279
chart_meta:
280
description: "Apparent power consumption of the Rack PDU load"
281
- family: Rack/Power/Apparent
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
285
chart_meta:
286
description: "Power factor of the Rack PDU load"
287
- family: Rack/Power/Factor
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
291
chart_meta:
292
description: Rack PDU role on Daisy Chain group
293
- family: Rack/Role/Status
293
+ family: 'Rack/Role/Status'
294
unit: "{status}"
295
mapping:
296
1: standalone
@@ -300,7 +300,7 @@ metrics:
300
name: ePDU2DeviceStatusLoadState
301
chart_meta:
302
description: Rack PDU load state
303
- family: Rack/Load/Status
303
+ family: 'Rack/Load/Status'
304
unit: "{status}"
305
mapping:
306
1: noLoadAlarm
@@ -312,7 +312,7 @@ metrics:
312
name: ePDU2DeviceStatusPowerSupplyAlarm
313
chart_meta:
314
description: Rack PDU Power Supply alarm
315
- family: Rack/PowerSupply/Alarm/Status
315
+ family: 'Rack/PowerSupply/Alarm/Status'
316
unit: "{status}"
317
mapping:
318
1: normal
@@ -321,7 +321,7 @@ metrics:
321
name: ePDU2DeviceStatusPowerSupply1Status
322
chart_meta:
323
description: Rack PDU Power Supply 1 alarm
324
- family: Rack/PowerSupply/1/Alarm/Status
324
+ family: 'Rack/PowerSupply/1/Alarm/Status'
325
unit: "{status}"
326
mapping:
327
1: normal
@@ -330,7 +330,7 @@ metrics:
330
name: ePDU2DeviceStatusPowerSupply2Status
331
chart_meta:
332
description: Rack PDU Power Supply 2 alarm
333
- family: Rack/PowerSupply/2/Alarm/Status
333
+ family: 'Rack/PowerSupply/2/Alarm/Status'
334
unit: "{status}"
335
mapping:
336
1: normal
@@ -353,42 +353,42 @@ metrics:
353
name: cyberpower.ePDU2PhaseStatusLoad
354
chart_meta:
355
description: "Current draw of the load on the Rack PDU phase"
356
- family: Rack/Phase/Load/Current
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
360
chart_meta:
361
description: "Voltage of the Rack PDU phase"
362
- family: Rack/Phase/Voltage/Value
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
366
chart_meta:
367
description: "Load power consumed on the Rack PDU phase"
368
- family: Rack/Phase/Power/Active
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
372
chart_meta:
373
description: "Load apparent power consumed on the Rack PDU phase"
374
- family: Rack/Phase/Power/Apparent
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
378
chart_meta:
379
description: "Load power factor of the Rack PDU phase"
380
- family: Rack/Phase/Power/Factor
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
384
chart_meta:
385
description: "Peak current of the Rack PDU phase load in tenths of Amps"
386
- family: Rack/Phase/Load/Current/Peak
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:
391
- family: Rack/Phase/Load/Status
391
+ family: 'Rack/Phase/Load/Status'
392
mapping:
393
# this was wrong by DD
394
1: lowLoad
@@ -409,18 +409,18 @@ metrics:
409
name: cyberpower.ePDU2BankStatusLoad
410
chart_meta:
411
description: "Current draw of the load on the Rack PDU bank"
412
- family: Rack/Bank/Load/Current
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
416
chart_meta:
417
description: "Peak current of the Rack PDU bank load in tenths of Amps"
418
- family: Rack/Bank/Load/Current/Peak
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
423
- family: Rack/Bank/Load/Status
423
+ family: 'Rack/Bank/Load/Status'
424
# this was wrong by DD
425
mapping:
426
1: lowLoad
@@ -443,7 +443,7 @@ metrics:
443
name: ePDU2OutletSwitchedStatusState
444
chart_meta:
445
description: Switch state of the Rack PDU switched outlet
446
- family: Rack/Outlet/Switched/Status
446
+ family: 'Rack/Outlet/Switched/Status'
447
unit: "{status}"
448
mapping:
449
1: outletStatusOn
@@ -463,7 +463,7 @@ metrics:
463
name: cyberpower.envirTemperature
464
chart_meta:
465
description: "Environment temperature"
466
- family: Environment/Temperature/Value
466
+ family: 'Environment/Temperature/Value'
467
unit: "degF/10"
468
- MIB: CPS-MIB
469
symbol:
@@ -471,7 +471,7 @@ metrics:
471
name: cyberpower.envirTemperatureCelsius
472
chart_meta:
473
description: "Environment temperature expressed in Celsius"
474
- family: Environment/Temperature/Value
474
+ family: 'Environment/Temperature/Value'
475
unit: "Cel"
476
- MIB: CPS-MIB
477
symbol:
@@ -479,7 +479,7 @@ metrics:
479
name: cyberpower.envirHumidity
480
chart_meta:
481
description: "Environment relative humidity expressed in percentage"
482
- family: Environment/Humidity/Value
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
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-emc-data-domain.yaml
+44
-44
@@ -48,7 +48,7 @@ metrics:
48
name: memory.total
49
OID: 1.3.6.1.2.1.25.2.3.1.5.1
50
chart_meta:
51
- family: "Memory/Total"
51
+ family: 'Memory/Total'
52
description: Size of the storage represented by this entry in units of hrStorageAllocationUnits
53
unit: "By"
54
- MIB: HOST-RESOURCES-MIB
@@ -56,7 +56,7 @@ metrics:
56
name: memory.used
57
OID: 1.3.6.1.2.1.25.2.3.1.6.1
58
chart_meta:
59
- family: "Memory/Used"
59
+ family: 'Memory/Used'
60
description: Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits
61
unit: "By"
62
- MIB: HOST-RESOURCES-MIB
@@ -64,7 +64,7 @@ metrics:
64
OID: 1.3.6.1.2.1.25.2.3.1.6.6 # hrStorageUsed.6 = Memory buffers
65
name: hrMemoryBuffers
66
chart_meta:
67
- family: "Memory/Buffers"
67
+ family: 'Memory/Buffers'
68
description: Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits
69
unit: "By"
70
- MIB: HOST-RESOURCES-MIB
@@ -72,7 +72,7 @@ metrics:
72
OID: 1.3.6.1.2.1.25.2.3.1.6.7 # hrStorageUsed.7 = Cached memory
73
name: hrCachedMemory
74
chart_meta:
75
- family: "Memory/Cached"
75
+ family: 'Memory/Cached'
76
description: Amount of the storage represented by this entry that is allocated in units of hrStorageAllocationUnits
77
unit: "By"
78
- MIB: DATA-DOMAIN-MIB
@@ -80,7 +80,7 @@ metrics:
80
name: fileSystemStatus
81
OID: 1.3.6.1.4.1.19746.1.3.1.1.0
82
chart_meta:
83
- family: "FileSystem/Status"
83
+ family: 'FileSystem/Status'
84
description: Status of the file system
85
unit: "{status}"
86
mapping:
@@ -96,7 +96,7 @@ metrics:
96
name: datadomain.fileSystemVirtualSpace
97
OID: 1.3.6.1.4.1.19746.1.3.1.2.0
98
chart_meta:
99
- family: "FileSystem/VirtualSpace"
99
+ family: 'FileSystem/VirtualSpace'
100
description: Amount of uncompressed data that has been backed up by the system
101
unit: "By"
102
@@ -108,7 +108,7 @@ metrics:
108
- OID: 1.3.6.1.4.1.19746.1.1.1.1.1.1.4
109
name: powerModuleStatus
110
chart_meta:
111
- family: "PowerModule/Status"
111
+ family: 'PowerModule/Status'
112
description: Status of the power module
113
unit: "{status}"
114
mapping:
@@ -132,7 +132,7 @@ metrics:
132
- OID: 1.3.6.1.4.1.19746.1.1.2.1.1.1.6
133
name: tempSensorStatus
134
chart_meta:
135
- family: "Sensor/Temperature/Status"
135
+ family: 'Sensor/Temperature/Status'
136
description: Status of the temperature sensor
137
unit: "{status}"
138
mapping:
@@ -155,7 +155,7 @@ metrics:
155
- OID: 1.3.6.1.4.1.19746.1.1.3.1.1.1.6
156
name: fanStatus
157
chart_meta:
158
- family: "Fan/Status"
158
+ family: 'Fan/Status'
159
description: Status of the fan
160
unit: "{status}"
161
mapping:
@@ -165,7 +165,7 @@ metrics:
165
- OID: 1.3.6.1.4.1.19746.1.1.3.1.1.1.5
166
name: fanLevel
167
chart_meta:
168
- family: "Fan/Level"
168
+ family: 'Fan/Level'
169
description: Speed level of the fan
170
unit: "{status}"
171
mapping:
@@ -188,34 +188,34 @@ metrics:
188
OID: 1.3.6.1.4.1.19746.1.3.2.1.1.4
189
scale_factor: 1073741824 # GB => bytes
190
chart_meta:
191
- family: "FileSystem/Space/Total"
191
+ family: 'FileSystem/Space/Total'
192
description: Size of the file system resource in gigabytes
193
unit: "By"
194
- name: datadomain.fileSystemSpaceUsed
195
OID: 1.3.6.1.4.1.19746.1.3.2.1.1.5
196
scale_factor: 1073741824 # GB => bytes
197
chart_meta:
198
- family: "FileSystem/Space/Used"
198
+ family: 'FileSystem/Space/Used'
199
description: Amount of used space within the file system resource in gigabytes
200
unit: "By"
201
- name: datadomain.fileSystemSpaceAvail
202
OID: 1.3.6.1.4.1.19746.1.3.2.1.1.6
203
scale_factor: 1073741824 # GB => bytes
204
chart_meta:
205
- family: "FileSystem/Space/Available"
205
+ family: 'FileSystem/Space/Available'
206
description: Amount of available space within the file system resource in gigabytes
207
unit: "By"
208
- name: datadomain.fileSystemPercentUsed
209
OID: 1.3.6.1.4.1.19746.1.3.2.1.1.7
210
chart_meta:
211
- family: "FileSystem/Space/Usage"
211
+ family: 'FileSystem/Space/Usage'
212
description: Percentage of used space within the file system resource
213
unit: "%"
214
- name: datadomain.fileSystemSpaceCleanable
215
OID: 1.3.6.1.4.1.19746.1.3.2.1.1.8
216
scale_factor: 1073741824 # GB => bytes
217
chart_meta:
218
- family: "FileSystem/Space/Cleanable"
218
+ family: 'FileSystem/Space/Cleanable'
219
description: Amount of file system space that can be cleaned
220
unit: "By"
221
metric_tags:
@@ -236,49 +236,49 @@ metrics:
236
- name: datadomain.fileSystemCompressionStartTime
237
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.3
238
chart_meta:
239
- family: "FileSystem/Compression/Time/Start"
239
+ family: 'FileSystem/Compression/Time/Start'
240
description: Start time of file system compression
241
unit: "s"
242
- name: datadomain.fileSystemCompressionEndTime
243
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.4
244
chart_meta:
245
- family: "FileSystem/Compression/Time/End"
245
+ family: 'FileSystem/Compression/Time/End'
246
description: End time of file system compression
247
unit: "s"
248
- name: datadomain.fileSystemPreCompressionSize
249
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.5
250
chart_meta:
251
- family: "FileSystem/Compression/Size/Before"
251
+ family: 'FileSystem/Compression/Size/Before'
252
description: Size of file system before compression
253
unit: "By"
254
- name: datadomain.fileSystemPostCompressionSize
255
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.6
256
chart_meta:
257
- family: "FileSystem/Compression/Size/After"
257
+ family: 'FileSystem/Compression/Size/After'
258
description: Size of file system after compression
259
unit: "By"
260
- name: datadomain.fileSystemGlobalCompressionFactor
261
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.7
262
chart_meta:
263
- family: "FileSystem/Compression/Factor/Global"
263
+ family: 'FileSystem/Compression/Factor/Global'
264
description: Global compression factor of the file system
265
unit: "1"
266
- name: datadomain.fileSystemLocalCompressionFactor
267
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.8
268
chart_meta:
269
- family: "FileSystem/Compression/Factor/Local"
269
+ family: 'FileSystem/Compression/Factor/Local'
270
description: Local compression factor of the file system
271
unit: "1"
272
- name: datadomain.fileSystemTotalCompressionFactor
273
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.9
274
chart_meta:
275
- family: "FileSystem/Compression/Factor/Total"
275
+ family: 'FileSystem/Compression/Factor/Total'
276
description: Total compression factor of the file system
277
unit: "1"
278
- name: datadomain.fileSystemReductionPercent1
279
OID: 1.3.6.1.4.1.19746.1.3.3.1.1.11
280
chart_meta:
281
- family: "FileSystem/Compression/Reduction"
281
+ family: 'FileSystem/Compression/Reduction'
282
description: Percentage reduction of the file system size due to compression
283
unit: "%"
284
metric_tags:
@@ -295,97 +295,97 @@ metrics:
295
- name: cpu.usage
296
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.2
297
chart_meta:
298
- family: "CPU/Usage"
298
+ family: 'CPU/Usage'
299
description: CPU 0 percentage busy
300
unit: "%"
301
- name: datadomain.cpuMaxPercentageBusy
302
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.3
303
chart_meta:
304
- family: "CPU/Usage/Maximum"
304
+ family: 'CPU/Usage/Maximum'
305
description: CPU 1 percentage busy
306
unit: "%"
307
- name: datadomain.nfsOpsPerSecond
308
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.4
309
chart_meta:
310
- family: "NFS/Operation/Rate"
310
+ family: 'NFS/Operation/Rate'
311
description: Number of NFS operations performed per second
312
unit: "{operation}/s"
313
- name: datadomain.nfsIdlePercentage
314
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.5
315
chart_meta:
316
- family: "NFS/Time/Idle"
316
+ family: 'NFS/Time/Idle'
317
description: Percentage of time NFS was idle
318
unit: "%"
319
- name: datadomain.nfsProcPercentage
320
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.6
321
chart_meta:
322
- family: "NFS/Time/Processing"
322
+ family: 'NFS/Time/Processing'
323
description: Percentage of time NFS was processing
324
unit: "%"
325
- name: datadomain.nfsSendPercentage
326
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.7
327
chart_meta:
328
- family: "NFS/Time/Send"
328
+ family: 'NFS/Time/Send'
329
description: Percentage of time NFS was sending requests
330
unit: "%"
331
- name: datadomain.nfsReceivePercentage
332
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.8
333
chart_meta:
334
- family: "NFS/Time/Receive"
334
+ family: 'NFS/Time/Receive'
335
description: Percentage of time NFS was receiving requests
336
unit: "%"
337
- name: datadomain.cifsOpsPerSecond
338
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.9
339
chart_meta:
340
- family: "CIFS/Operation/Rate"
340
+ family: 'CIFS/Operation/Rate'
341
description: Number of CIFS operations performed per second
342
unit: "{operation}/s"
343
- name: datadomain.diskReadKBytesPerSecond
344
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.10
345
scale_factor: 1024
346
chart_meta:
347
- family: "Disk/Throughput/Read"
347
+ family: 'Disk/Throughput/Read'
348
description: Number of kilobytes per second read from disk
349
unit: "By/s"
350
- name: datadomain.diskWriteKBytesPerSecond
351
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.11
352
scale_factor: 1024
353
chart_meta:
354
- family: "Disk/Throughput/Write"
354
+ family: 'Disk/Throughput/Write'
355
description: Number of kilobytes per second written to disk
356
unit: "By/s"
357
- name: datadomain.diskBusyPercentage
358
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.12
359
chart_meta:
360
- family: "Disk/Usage"
360
+ family: 'Disk/Usage'
361
description: Percentage of time disks were busy
362
unit: "%"
363
- name: datadomain.nvramReadKBytesPerSecond
364
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.13
365
scale_factor: 1024
366
chart_meta:
367
- family: "NVRAM/Throughput/Read"
367
+ family: 'NVRAM/Throughput/Read'
368
description: Number of kilobytes read per second from NVRAM
369
unit: "By/s"
370
- name: datadomain.nvramWriteKBytesPerSecond
371
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.14
372
scale_factor: 1024
373
chart_meta:
374
- family: "NVRAM/Throughput/Write"
374
+ family: 'NVRAM/Throughput/Write'
375
description: Number of kilobytes written per second to NVRAM
376
unit: "By/s"
377
- name: datadomain.replInKBytesPerSecond
378
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.15
379
scale_factor: 1024
380
chart_meta:
381
- family: "Replication/Throughput/In"
381
+ family: 'Replication/Throughput/In'
382
description: Number of kilobytes per second received for replication
383
unit: "By/s"
384
- name: datadomain.replOutKBytesPerSecond
385
OID: 1.3.6.1.4.1.19746.1.5.1.1.1.16
386
scale_factor: 1024
387
chart_meta:
388
- family: "Replication/Throughput/Out"
388
+ family: 'Replication/Throughput/Out'
389
description: Number of kilobytes per second sent for replication
390
unit: "By/s"
391
metric_tags:
@@ -402,7 +402,7 @@ metrics:
402
- OID: 1.3.6.1.4.1.19746.1.6.1.1.1.8
403
name: diskPropState
404
chart_meta:
405
- family: "Disk/Status"
405
+ family: 'Disk/Status'
406
description: State of the disk
407
unit: "{status}"
408
mapping:
@@ -452,32 +452,32 @@ metrics:
452
- name: datadomain.diskSectorsRead
453
OID: 1.3.6.1.4.1.19746.1.6.2.1.1.3
454
chart_meta:
455
- family: "Disk/Sector/Read"
455
+ family: 'Disk/Sector/Read'
456
description: Number of disk sectors read per second
457
unit: "{disk_sector}/s"
458
- name: datadomain.diskSectorsWritten
459
OID: 1.3.6.1.4.1.19746.1.6.2.1.1.4
460
chart_meta:
461
- family: "Disk/Sector/Write"
461
+ family: 'Disk/Sector/Write'
462
description: Number of disk sectors written per second
463
unit: "{disk_sector}/s"
464
- name: datadomain.diskTotalKBytes
465
OID: 1.3.6.1.4.1.19746.1.6.2.1.1.5
466
scale_factor: 1024
467
chart_meta:
468
- family: "Disk/Throughput/Total"
468
+ family: 'Disk/Throughput/Total'
469
description: Total number of kilobytes read or written per second
470
unit: "By/s"
471
- name: datadomain.diskBusy
472
OID: 1.3.6.1.4.1.19746.1.6.2.1.1.6
473
chart_meta:
474
- family: "Disk/Busy"
474
+ family: 'Disk/Busy'
475
description: Percentage of time disk is busy
476
unit: "%"
477
- OID: 1.3.6.1.4.1.19746.1.6.2.1.1.7
478
name: diskPerfState
479
chart_meta:
480
- family: "Disk/Performance/Status"
480
+ family: 'Disk/Performance/Status'
481
description: Performance state of the disk
482
unit: "{status}"
483
mapping:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-force10.yaml
+2
-2
@@ -17,7 +17,7 @@ metrics:
17
OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.4
18
name: cpu.usage
19
chart_meta:
20
- family: "CPU/Usage"
20
+ family: 'CPU/Usage'
21
description: Cpu utilization in percentage for last 5 minutes.
22
unit: "%"
23
- MIB: F10-S-SERIES-CHASSIS-MIB
@@ -25,6 +25,6 @@ metrics:
25
OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.5
26
name: memory.usage
27
chart_meta:
28
- family: "Memory/Usage"
28
+ family: 'Memory/Usage'
29
description: Total memory usage in percentage.
30
unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-os10.yaml
+8
-8
@@ -35,7 +35,7 @@ metrics:
35
name: dell.os10ChassisTemp
36
OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.11
37
chart_meta:
38
- family: "Chassis/Temperature/Value"
38
+ family: 'Chassis/Temperature/Value'
39
description: "Temperature of the chassis"
40
unit: "Cel"
41
- MIB: DELLEMC-OS10-CHASSIS-MIB
@@ -46,13 +46,13 @@ metrics:
46
- OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.5
47
name: dell.os10CardTemp
48
chart_meta:
49
- family: "Card/Temperature/Value"
49
+ family: 'Card/Temperature/Value'
50
description: "Temperature of the card"
51
unit: "Cel"
52
- OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.4
53
name: dell.os10CardStatus
54
chart_meta:
55
- family: "Card/Status"
55
+ family: 'Card/Status'
56
description: "Status of the card"
57
unit: "{status}"
58
mapping:
@@ -80,7 +80,7 @@ metrics:
80
- OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.1.1.4
81
name: dell.os10PowerSupplyOperStatus
82
chart_meta:
83
- family: "PowerSupply/Operational/Status"
83
+ family: 'PowerSupply/Operational/Status'
84
description: "Operational status of the power supply"
85
unit: "{status}"
86
mapping:
@@ -106,7 +106,7 @@ metrics:
106
- OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.2.1.4
107
name: dell.os10FanTrayOperStatus
108
chart_meta:
109
- family: "FanTray/Operational/Status"
109
+ family: 'FanTray/Operational/Status'
110
description: "Operational status of the fan tray"
111
unit: "{status}"
112
mapping:
@@ -132,7 +132,7 @@ metrics:
132
- OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.3.1.7
133
name: dell.os10FanOperStatus
134
chart_meta:
135
- family: "Fan/Operational/Status"
135
+ family: 'Fan/Operational/Status'
136
description: "Operational status of the fan"
137
unit: "{status}"
138
mapping:
@@ -158,7 +158,7 @@ metrics:
158
- OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.12
159
name: dell.os10bgp4V2PeerAdminStatus
160
chart_meta:
161
- family: "Routing/BGP/Peer/Admin/Status"
161
+ family: 'Routing/BGP/Peer/Admin/Status'
162
description: "Administrative status of the BGP peer"
163
unit: "{status}"
164
mapping:
@@ -167,7 +167,7 @@ metrics:
167
- OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.13
168
name: dell.os10bgp4V2PeerState
169
chart_meta:
170
- family: "Routing/BGP/Peer/State"
170
+ family: 'Routing/BGP/Peer/State'
171
description: "Current state of the BGP peer"
172
unit: "{status}"
173
mapping:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-powerconnect.yaml
+9
-9
@@ -100,7 +100,7 @@ metrics:
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
chart_meta:
103
- family: "CPU/Usage"
103
+ family: 'CPU/Usage'
104
description: "Cpu usage in percent over 60 seconds"
105
unit: "%"
106
- MIB: DNOS-SWITCHING-MIB
@@ -108,7 +108,7 @@ metrics:
108
name: memory.free
109
OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.1.0
110
chart_meta:
111
- family: "Memory/Free"
111
+ family: 'Memory/Free'
112
description: "Amount of free memory"
113
unit: "By"
114
- MIB: DNOS-SWITCHING-MIB
@@ -116,7 +116,7 @@ metrics:
116
name: memory.total
117
OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.2.0
118
chart_meta:
119
- family: "Memory/Total"
119
+ family: 'Memory/Total'
120
description: "Total amount of memory"
121
unit: "By"
122
- MIB: Dell-Vendor-MIB
@@ -124,7 +124,7 @@ metrics:
124
name: productStatusGlobalStatus
125
OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.1.0
126
chart_meta:
127
- family: "Product/Status/Global"
127
+ family: 'Product/Status/Global'
128
description: Global status
129
unit: "{status}"
130
mapping:
@@ -139,13 +139,13 @@ metrics:
139
- name: dell.envMonFanSpeed
140
OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1.1.4
141
chart_meta:
142
- family: "Fan/Speed"
142
+ family: 'Fan/Speed'
143
description: "Fan speed in revolutions per minute"
144
unit: "rpm"
145
- OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1.1.3
146
name: dell.envMonFanState
147
chart_meta:
148
- family: "Fan/Status"
148
+ family: 'Fan/Status'
149
description: "Fan operational state"
150
unit: "{status}"
151
mapping:
@@ -171,19 +171,19 @@ metrics:
171
- name: dell.envMonSupplyCurrentPower
172
OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.5
173
chart_meta:
174
- family: "PowerSupply/Power/Current"
174
+ family: 'PowerSupply/Power/Current'
175
description: "Current power consumption"
176
unit: "W"
177
- name: dell.envMonSupplyAveragePower
178
OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.6
179
chart_meta:
180
- family: "PowerSupply/Power/Average"
180
+ family: 'PowerSupply/Power/Average'
181
description: "Average power consumption"
182
unit: "W"
183
- OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.3
184
name: dell.envMonSupplyState
185
chart_meta:
186
- family: "PowerSupply/Status"
186
+ family: 'PowerSupply/Status'
187
description: "Power supply operational state"
188
unit: "{status}"
189
mapping:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/dell-sonicwall.yaml
+14
-14
@@ -32,7 +32,7 @@ metrics:
32
name: cpu.usage
33
OID: 1.3.6.1.4.1.8741.1.3.1.3.0
34
chart_meta:
35
- family: "CPU/Usage"
35
+ family: 'CPU/Usage'
36
description: Instantaneous CPU Utilization in percent
37
unit: "%"
38
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -40,7 +40,7 @@ metrics:
40
name: memory.usage
41
OID: 1.3.6.1.4.1.8741.1.3.1.4.0
42
chart_meta:
43
- family: "Memory/Usage"
43
+ family: 'Memory/Usage'
44
description: Instantaneous RAM Utilization in percent
45
unit: "%"
46
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -48,7 +48,7 @@ metrics:
48
name: sonicMaxConnCacheEntries
49
OID: 1.3.6.1.4.1.8741.1.3.1.1.0
50
chart_meta:
51
- family: "Connection/Cache/Maximum"
51
+ family: 'Connection/Cache/Maximum'
52
description: Maximum number of connection cache entries allowed through the firewall
53
unit: "{entry}"
54
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -56,7 +56,7 @@ metrics:
56
name: sonicCurrentConnCacheEntries
57
OID: 1.3.6.1.4.1.8741.1.3.1.2.0
58
chart_meta:
59
- family: "Connection/Cache/Active"
59
+ family: 'Connection/Cache/Active'
60
description: Number of active connection cache entries through the firewall
61
unit: "{entry}"
62
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -64,7 +64,7 @@ metrics:
64
name: sonicNatTranslationCount
65
OID: 1.3.6.1.4.1.8741.1.3.1.5.0
66
chart_meta:
67
- family: "NAT/Translation/Active"
67
+ family: 'NAT/Translation/Active'
68
description: Current number of dynamic NAT translations being performed
69
unit: "{translation}"
70
@@ -73,7 +73,7 @@ metrics:
73
name: sonicDpiSslConnCountCur
74
OID: 1.3.6.1.4.1.8741.1.3.5.1.0
75
chart_meta:
76
- family: "DPI/SSL/Connection/Current"
76
+ family: 'DPI/SSL/Connection/Current'
77
description: Current SSL-inspected connections through the firewall
78
unit: "{connection}"
79
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -81,7 +81,7 @@ metrics:
81
name: sonicDpiSslConnCountHighWater
82
OID: 1.3.6.1.4.1.8741.1.3.5.2.0
83
chart_meta:
84
- family: "DPI/SSL/Connection/HighWater"
84
+ family: 'DPI/SSL/Connection/HighWater'
85
description: Highwater SSL-inspected connections through the firewall
86
unit: "{connection}"
87
- MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
@@ -89,7 +89,7 @@ metrics:
89
name: sonicDpiSslConnCountMax
90
OID: 1.3.6.1.4.1.8741.1.3.5.3.0
91
chart_meta:
92
- family: "DPI/SSL/Connection/Maximum"
92
+ family: 'DPI/SSL/Connection/Maximum'
93
description: Maximum SSL-inspected connections through the firewall
94
unit: "{connection}"
95
@@ -101,37 +101,37 @@ metrics:
101
- name: sonicSAStatEncryptPktCount
102
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.8
103
chart_meta:
104
- family: "IPSec/SA/Packet/Encrypted"
104
+ family: 'IPSec/SA/Packet/Encrypted'
105
description: Total encrypted packet count for this phase2 SA
106
unit: "{packet/s}"
107
- name: sonicSAStatEncryptByteCount
108
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.9
109
chart_meta:
110
- family: "IPSec/SA/Data/Encrypted"
110
+ family: 'IPSec/SA/Data/Encrypted'
111
description: Total encrypted byte count for this phase2 SA
112
unit: "By/s"
113
- name: sonicSAStatDecryptPktCount
114
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.10
115
chart_meta:
116
- family: "IPSec/SA/Packet/Decrypted"
116
+ family: 'IPSec/SA/Packet/Decrypted'
117
description: Total decrypted packet count for this phase2 SA
118
unit: "{packet}/s"
119
- name: sonicSAStatDecryptByteCount
120
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.11
121
chart_meta:
122
- family: "IPSec/SA/Data/Decrypted"
122
+ family: 'IPSec/SA/Data/Decrypted'
123
description: Total decrypted byte count for this phase2 SA
124
unit: "By/s"
125
- name: sonicSAStatInFragPktCount
126
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.12
127
chart_meta:
128
- family: "IPSec/SA/Packet/Fragment/In"
128
+ family: 'IPSec/SA/Packet/Fragment/In'
129
description: Incoming Fragmented packet count for this phase2 SA
130
unit: "{packet}/s"
131
- name: sonicSAStatOutFragPktCount
132
OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.13
133
chart_meta:
134
- family: "IPSec/SA/Packet/Fragment/Out"
134
+ family: 'IPSec/SA/Packet/Fragment/Out'
135
description: Outgoing Fragmented packet count for this phase2 SA
136
unit: "{packet}/s"
137
metric_tags:
src/go/plugin/go.d/config/go.d/snmp.profiles/default/extreme-switching.yaml
+133
-91
@@ -4,8 +4,7 @@ extends:
4
- _std-entity-sensor-mib.yaml
5
6
sysobjectid:
7
- - 1.3.6.1.4.1.1916.2.89
8
- - 1.3.6.1.4.1.1916.2.343
7
+ - 1.3.6.1.4.1.1916.2.*
8
9
metadata:
10
device:
@@ -15,13 +14,23 @@ metadata:
14
type:
15
value: "switch"
16
17
+metric_tags:
18
+ - tag: primary_software_rev
19
+ OID: 1.3.6.1.4.1.1916.1.1.1.13.0
20
+ symbol: extremePrimarySoftwareRev
21
+ - tag: primary_secondary_rev
22
+ OID: 1.3.6.1.4.1.1916.1.1.1.14.0
23
+ symbol: extremeSecondarySoftwareRev
24
+
25
metrics:
26
- MIB: EXTREME-SOFTWARE-MONITOR-MIB
27
symbol:
28
name: cpu.usage
29
OID: 1.3.6.1.4.1.1916.1.32.1.2.0
23
- description: Total CPU utlization (percentage) as of last sampling.
24
- unit: "%"
30
+ chart_meta:
31
+ family: 'CPU/Usage'
32
+ description: Total CPU utilization
33
+ unit: "%"
34
- MIB: EXTREME-SOFTWARE-MONITOR-MIB
35
table:
36
name: extremeMemoryMonitorSystemTable
@@ -29,101 +38,134 @@ metrics:
38
symbols:
39
- name: memory.total
40
OID: 1.3.6.1.4.1.1916.1.32.2.2.1.2
32
- description: Total amount of DRAM in Kbytes in the system.
33
- unit: "kBy"
41
+ scale_factor: 1024
42
+ chart_meta:
43
+ family: 'Memory/Total'
44
+ description: Total amount of DRAM in Kbytes in the system.
45
+ unit: "By"
46
- name: memory.free
47
OID: 1.3.6.1.4.1.1916.1.32.2.2.1.3
36
- description: Total amount of free memory in Kbytes in the system.
37
- unit: "kBy"
48
+ scale_factor: 1024
49
+ chart_meta:
50
+ family: 'Memory/Free'
51
+ description: Total amount of free memory in Kbytes in the system.
52
+ unit: "By"
53
metric_tags:
39
- - index: 1 # extremeMemoryMonitorSystemSlotId
40
- tag: mem
41
- # - MIB: EXTREME-SYSTEM-MIB
42
- # symbol:
43
- # name: extremeOverTemperatureAlarm
44
- # OID: 1.3.6.1.4.1.1916.1.1.1.7.0
45
- # enum:
46
- # true: 1
47
- # false: 2
48
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
49
- # comment in profile until it's fixed)
54
+ - tag: mem_index
55
+ index: 1 # extremeMemoryMonitorSystemSlotId
56
+
57
+ - MIB: EXTREME-SYSTEM-MIB
58
+ symbol:
59
+ name: extremeOverTemperatureAlarm
60
+ OID: 1.3.6.1.4.1.1916.1.1.1.7.0
61
+ chart_meta:
62
+ family: 'Hardware/Sensor/Temperature/Alarm/Status'
63
+ description: Over temperature alarm status
64
+ unit: "{status}"
65
+ mapping:
66
+ 1: active
67
+ 2: clear
68
- MIB: EXTREME-SYSTEM-MIB
69
symbol:
70
name: extremeCurrentTemperature
71
OID: 1.3.6.1.4.1.1916.1.1.1.8.0
54
- description: Current temperature in degrees celcius measured inside device enclosure.
55
- unit: "Cel"
56
- # - MIB: EXTREME-SYSTEM-MIB
57
- # symbol:
58
- # name: extremePrimaryPowerOperational
59
- # OID: 1.3.6.1.4.1.1916.1.1.1.10.0
60
- # enum:
61
- # true: 1
62
- # false: 2
63
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
64
- # comment in profile until it's fixed)
65
- # - MIB: EXTREME-SYSTEM-MIB
66
- # symbol:
67
- # name: extremeRedundantPowerStatus
68
- # OID: 1.3.6.1.4.1.1916.1.1.1.11.0
69
- # enum:
70
- # notPresent: 1
71
- # presentOK: 2
72
- # presentNotOK: 3
73
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
74
- # comment in profile until it's fixed)
75
- # - MIB: EXTREME-SYSTEM-MIB
76
- # symbol:
77
- # name: extremeRedundantPowerAlarm
78
- # OID: 1.3.6.1.4.1.1916.1.1.1.12.0
79
- # enum:
80
- # true: 1
81
- # false: 2
82
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
83
- # comment in profile until it's fixed)
84
- # - MIB: EXTREME-SYSTEM-MIB
85
- # symbol:
86
- # name: extremePrimarySoftwareRev
87
- # OID: 1.3.6.1.4.1.1916.1.1.1.13.0
88
- # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
89
- # - MIB: EXTREME-SYSTEM-MIB
90
- # symbol:
91
- # name: extremeSecondarySoftwareRev
92
- # OID: 1.3.6.1.4.1.1916.1.1.1.14.0
93
- # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
72
+ chart_meta:
73
+ family: 'Hardware/Sensor/Temperature/Value'
74
+ description: Current temperature measured inside device enclosure.
75
+ unit: "Cel"
76
+ - MIB: EXTREME-SYSTEM-MIB
77
+ symbol:
78
+ name: extremePrimaryPowerOperational
79
+ OID: 1.3.6.1.4.1.1916.1.1.1.10.0
80
+ chart_meta:
81
+ family: 'Hardware/Power/Primary/Status'
82
+ description: Primary power operational status
83
+ unit: "{status}"
84
+ mapping:
85
+ 1: ok
86
+ 2: failed
87
+ - MIB: EXTREME-SYSTEM-MIB
88
+ symbol:
89
+ name: extremeRedundantPowerStatus
90
+ OID: 1.3.6.1.4.1.1916.1.1.1.11.0
91
+ chart_meta:
92
+ family: 'Hardware/Power/Redundant/Status'
93
+ description: Redundant power supply status
94
+ unit: "{status}"
95
+ mapping:
96
+ 1: not_present
97
+ 2: present_ok
98
+ 3: present_not_ok
99
+ - MIB: EXTREME-SYSTEM-MIB
100
+ symbol:
101
+ name: extremeRedundantPowerAlarm
102
+ OID: 1.3.6.1.4.1.1916.1.1.1.12.0
103
+ chart_meta:
104
+ family: 'Hardware/Power/Redundant/Alarm/Status'
105
+ description: Redundant power alarm status
106
+ unit: "{status}"
107
+ mapping:
108
+ 1: clear
109
+ 2: active
110
- MIB: EXTREME-SYSTEM-MIB
111
symbol:
112
name: extremeInputPowerVoltage
113
OID: 1.3.6.1.4.1.1916.1.1.1.20.0
98
- description: The input power voltage at which the system is currently operating.
99
- unit: "V"
100
- # - MIB: EXTREME-SYSTEM-MIB
101
- # symbol:
102
- # name: extremePowerStatus
103
- # OID: 1.3.6.1.4.1.1916.1.1.1.21.0
104
- # enum:
105
- # notPresent: 1
106
- # presentOK: 2
107
- # presentNotOK: 3
108
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
109
- # comment in profile until it's fixed)
110
- # - MIB: EXTREME-SYSTEM-MIB
111
- # symbol:
112
- # name: extremePowerAlarm
113
- # OID: 1.3.6.1.4.1.1916.1.1.1.22.0
114
- # enum:
115
- # true: 1
116
- # false: 2
117
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
118
- # comment in profile until it's fixed)
119
- # - MIB: EXTREME-SYSTEM-MIB
120
- # symbol:
121
- # name: extremeSystemPowerState
122
- # OID: 1.3.6.1.4.1.1916.1.1.1.36.0
123
- # enum:
124
- # computing: 1
125
- # sufficientButNotRedundantPower: 2
126
- # redundantPowerAvailable: 3
127
- # insufficientPower: 4
128
- # TODO: enum in scalar metric is not supported yet (keep this metric and this
129
- # comment in profile until it's fixed)
114
+ chart_meta:
115
+ family: 'Hardware/Power/Input/Voltage'
116
+ description: The input power voltage at which the system is currently operating.
117
+ unit: "V"
118
+ - MIB: EXTREME-SYSTEM-MIB
119
+ symbol:
120
+ name: extremePowerStatus
121
+ OID: 1.3.6.1.4.1.1916.1.1.1.21.0
122
+ chart_meta:
123
+ family: 'Hardware/Power/Status'
124
+ description: Power supply status
125
+ unit: "{status}"
126
+ mapping:
127
+ 1: not_present
128
+ 2: present_ok
129
+ 3: present_not_ok
130
+ - MIB: EXTREME-SYSTEM-MIB
131
+ symbol:
132
+ name: extremePowerAlarm
133
+ OID: 1.3.6.1.4.1.1916.1.1.1.22.0
134
+ chart_meta:
135
+ family: 'Hardware/Power/Alarm/Status'
136
+ description: Power alarm status
137
+ unit: "{status}"
138
+ mapping:
139
+ 1: clear
140
+ 2: active
141
+ - MIB: EXTREME-SYSTEM-MIB
142
+ symbol:
143
+ name: extremeSystemPowerState
144
+ OID: 1.3.6.1.4.1.1916.1.1.1.36.0
145
+ chart_meta:
146
+ family: 'Hardware/Power/Overall/Status'
147
+ description: Overall system power state
148
+ unit: "{status}"
149
+ mapping:
150
+ 1: computing
151
+ 2: sufficient_but_not_redundant_power
152
+ 3: redundant_power_available
153
+ 4: insufficient_power
154
+
155
+ - MIB: EXTREME-SOFTWARE-MONITOR-MIB
156
+ table:
157
+ name: extremeFanStatusTable
158
+ OID: 1.3.6.1.4.1.1916.1.1.1.9
159
+ symbols:
160
+ - name: extremeFanOperational
161
+ OID: 1.3.6.1.4.1.1916.1.1.1.9.1.2
162
+ chart_meta:
163
+ description: Operational status of a cooling fan
164
+ family: 'Hardware/Fan/Status'
165
+ unit: "{status}"
166
+ mapping:
167
+ 1: ok
168
+ 2: failed
169
+ metric_tags:
170
+ - tag: fan_index
171
+ index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-appliance.yaml
+25
-25
@@ -75,7 +75,7 @@ metrics:
75
OID: 1.3.6.1.4.1.12356.103.2.1.1.0
76
chart_meta:
77
description: Current CPU usage
78
- family: CPU/Usage
78
+ family: 'CPU/Usage'
79
unit: "%"
80
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
81
symbol:
@@ -83,7 +83,7 @@ metrics:
83
OID: 1.3.6.1.4.1.12356.103.2.1.2.0
84
chart_meta:
85
description: Current memory used
86
- family: Memory/Used
86
+ family: 'Memory/Used'
87
unit: "By"
88
scale_factor: 1024
89
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
@@ -92,7 +92,7 @@ metrics:
92
OID: 1.3.6.1.4.1.12356.103.2.1.3.0
93
chart_meta:
94
description: Total physical and swap memory installed
95
- family: Memory/Total
95
+ family: 'Memory/Total'
96
unit: "By"
97
scale_factor: 1024
98
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
@@ -101,7 +101,7 @@ metrics:
101
OID: 1.3.6.1.4.1.12356.103.2.1.4.0
102
chart_meta:
103
description: Current hard disk usage
104
- family: Disk/Space/Used
104
+ family: 'Disk/Space/Used'
105
unit: "By"
106
scale_factor: 1048576
107
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
@@ -110,7 +110,7 @@ metrics:
110
OID: 1.3.6.1.4.1.12356.103.2.1.5.0
111
chart_meta:
112
description: Total hard disk capacity
113
- family: Disk/Space/Total
113
+ family: 'Disk/Space/Total'
114
unit: "By"
115
scale_factor: 1048576
116
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
@@ -119,7 +119,7 @@ metrics:
119
OID: 1.3.6.1.4.1.12356.103.2.1.6.0
120
chart_meta:
121
description: Current CPU usage excluded nice processes usage (percentage)
122
- family: CPU/Usage/ExcludeNice
122
+ family: 'CPU/Usage/ExcludeNice'
123
unit: "%"
124
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
125
symbol:
@@ -127,7 +127,7 @@ metrics:
127
OID: 1.3.6.1.4.1.12356.103.2.1.9.0
128
chart_meta:
129
description: Log receiving rate in number of logs per second
130
- family: Log/Rate/In
130
+ family: 'Log/Rate/In'
131
unit: "{log}/s"
132
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
133
symbol:
@@ -135,7 +135,7 @@ metrics:
135
OID: 1.3.6.1.4.1.12356.103.7.1.1.0
136
chart_meta:
137
description: RAID Level
138
- family: Storage/RAID/Level
138
+ family: 'Storage/RAID/Level'
139
unit: "{status}"
140
mapping:
141
0: unavailable
@@ -159,7 +159,7 @@ metrics:
159
OID: 1.3.6.1.4.1.12356.103.7.1.2.0
160
chart_meta:
161
description: RAID Status
162
- family: "Storage/RAID/Status"
162
+ family: 'Storage/RAID/Status'
163
unit: "{status}"
164
mapping:
165
0: unavailable
@@ -175,7 +175,7 @@ metrics:
175
OID: 1.3.6.1.4.1.12356.103.7.1.3.0
176
chart_meta:
177
description: Raid size in GB
178
- family: Storage/RAID/Space/Total
178
+ family: 'Storage/RAID/Space/Total'
179
unit: "By"
180
scale_factor: 1073741824 # GB => bytes
181
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
@@ -184,7 +184,7 @@ metrics:
184
OID: 1.3.6.1.4.1.12356.103.7.1.4.0
185
chart_meta:
186
description: Disk numbers in the Raid
187
- family: Storage/RAID/Disk/Count
187
+ family: 'Storage/RAID/Disk/Count'
188
unit: "{disk}"
189
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
190
symbol:
@@ -192,7 +192,7 @@ metrics:
192
OID: 1.3.6.1.4.1.12356.103.9.1.1.0
193
chart_meta:
194
description: High availability mode
195
- family: HighAvailability/Mode
195
+ family: 'HighAvailability/Mode'
196
unit: "{status}"
197
mapping:
198
0: standalone
@@ -204,7 +204,7 @@ metrics:
204
OID: 1.3.6.1.4.1.12356.103.9.1.2.0
205
chart_meta:
206
description: Ha cluster ID
207
- family: HighAvailability/Cluster/ID
207
+ family: 'HighAvailability/Cluster/ID'
208
unit: "1"
209
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
210
symbol:
@@ -212,7 +212,7 @@ metrics:
212
OID: 1.3.6.1.4.1.12356.103.9.1.3.0
213
chart_meta:
214
description: Peer numbers in the Ha
215
- family: HighAvailability/Peer/Count
215
+ family: 'HighAvailability/Peer/Count'
216
unit: "{peer}"
217
- MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
218
table:
@@ -223,7 +223,7 @@ metrics:
223
name: fmDeviceEntMode
224
chart_meta:
225
description: Device management mode
226
- family: Device/Mode
226
+ family: 'Device/Mode'
227
unit: "{status}"
228
mapping:
229
0: unregistered
@@ -234,7 +234,7 @@ metrics:
234
name: fmDeviceEntHaMode
235
chart_meta:
236
description: Device high availability mode
237
- family: Device/HighAvailability/Mode
237
+ family: 'Device/HighAvailability/Mode'
238
unit: "{status}"
239
mapping:
240
0: standalone
@@ -247,7 +247,7 @@ metrics:
247
name: fmDeviceEntConnectState
248
chart_meta:
249
description: Device connection status
250
- family: "Device/Status/Connection"
250
+ family: 'Device/Status/Connection'
251
unit: "{status}"
252
mapping:
253
0: unknown
@@ -257,7 +257,7 @@ metrics:
257
name: fmDeviceEntDbState
258
chart_meta:
259
description: Device database status
260
- family: "Device/Status/Database"
260
+ family: 'Device/Status/Database'
261
unit: "{status}"
262
mapping:
263
0: unknown
@@ -268,7 +268,7 @@ metrics:
268
name: fmDeviceEntConfigState
269
chart_meta:
270
description: Device config status
271
- family: "Device/Status/Configuration"
271
+ family: 'Device/Status/Configuration'
272
unit: "{status}"
273
mapping:
274
0: unknown
@@ -278,7 +278,7 @@ metrics:
278
name: fmDeviceEntState
279
chart_meta:
280
description: Device status
281
- family: "Device/Status/Operational"
281
+ family: 'Device/Status/Operational'
282
unit: "{status}"
283
mapping:
284
0: none
@@ -302,7 +302,7 @@ metrics:
302
name: fmDeviceEntSupportState
303
chart_meta:
304
description: The support status of the device
305
- family: "Device/Status/Support"
305
+ family: 'Device/Status/Support'
306
unit: "{status}"
307
mapping:
308
0: expired
@@ -342,13 +342,13 @@ metrics:
342
scale_factor: 1073741824 # GB => bytes
343
chart_meta:
344
description: Raid disk size in GB
345
- family: Storage/RAID/Disk/Size
345
+ family: 'Storage/RAID/Disk/Size'
346
unit: "By"
347
- OID: 1.3.6.1.4.1.12356.103.7.2.1.2
348
name: fmRaidDiskEntState
349
chart_meta:
350
description: Raid disk status
351
- family: Storage/RAID/Disk/Status
351
+ family: 'Storage/RAID/Disk/Status'
352
unit: "{status}"
353
mapping:
354
0: unavailable
@@ -372,7 +372,7 @@ metrics:
372
name: fmSensorEntState
373
chart_meta:
374
description: Sensor status
375
- family: Sensor/Status
375
+ family: 'Sensor/Status'
376
unit: "{status}"
377
mapping:
378
0: ok
@@ -405,7 +405,7 @@ metrics:
405
name: fmHaPeerEntState
406
chart_meta:
407
description: Peer status
408
- family: HighAvailability/Peer/Status
408
+ family: 'HighAvailability/Peer/Status'
409
unit: "{status}"
410
mapping:
411
0: down
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-fortigate.yaml
+30
-30
@@ -72,7 +72,7 @@ metrics:
72
name: fgSysCpuUsage
73
chart_meta:
74
description: Current CPU usage
75
- family: CPU/Usage
75
+ family: 'CPU/Usage'
76
unit: "%"
77
78
### Processors
@@ -85,19 +85,19 @@ metrics:
85
name: fgProcessorPktRxCount
86
chart_meta:
87
description: Number of packets received by this processor
88
- family: Processor/Packet/In
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
92
chart_meta:
93
description: Number of packets transmitted by this processor
94
- family: Processor/Packet/Out
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
98
chart_meta:
99
description: Number of packets dropped by this processor
100
- family: Processor/Packet/Dropped
100
+ family: 'Processor/Packet/Dropped'
101
unit: "{drop}/s"
102
metric_tags:
103
- tag: processor_index
@@ -114,14 +114,14 @@ metrics:
114
name: fgProcessorUsage
115
chart_meta:
116
description: Processor CPU usage averaged over last minute
117
- family: Processor/Usage/Total
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
122
chart_meta:
123
description: Processor CPU system space usage averaged over last minute
124
- family: Processor/Usage/System
124
+ family: 'Processor/Usage/System'
125
unit: "%"
126
metric_tags:
127
# A unique identifier within the fgProcessorTable.
@@ -138,7 +138,7 @@ metrics:
138
name: fgSysMemUsage
139
chart_meta:
140
description: Current memory utilization
141
- family: Memory/Usage
141
+ family: 'Memory/Usage'
142
unit: "%"
143
- MIB: FORTINET-FORTIGATE-MIB
144
symbol:
@@ -147,7 +147,7 @@ metrics:
147
name: fgSysMemCapacity
148
chart_meta:
149
description: Total physical memory installed in kilobytes
150
- family: Memory/Total
150
+ family: 'Memory/Total'
151
unit: "By"
152
scale_factor: 1024
153
- MIB: FORTINET-FORTIGATE-MIB
@@ -157,7 +157,7 @@ metrics:
157
name: fgSysLowMemUsage
158
chart_meta:
159
description: Current low memory utilization
160
- family: Memory/LowMem/Usage
160
+ family: 'Memory/LowMem/Usage'
161
unit: "%"
162
- MIB: FORTINET-FORTIGATE-MIB
163
symbol:
@@ -166,7 +166,7 @@ metrics:
166
name: fgSysLowMemCapacity
167
chart_meta:
168
description: Total low memory capacity in kilobytes
169
- family: Memory/LowMem/Total
169
+ family: 'Memory/LowMem/Total'
170
unit: "By"
171
scale_factor: 1024
172
@@ -178,7 +178,7 @@ metrics:
178
name: fgSysDiskUsage
179
chart_meta:
180
description: Current hard disk usage in megabytes
181
- family: Disk/Space/Used
181
+ family: 'Disk/Space/Used'
182
unit: "By"
183
scale_factor: 1048576
184
- MIB: FORTINET-FORTIGATE-MIB
@@ -188,7 +188,7 @@ metrics:
188
name: fgSysDiskCapacity
189
chart_meta:
190
description: Total hard disk capacity in megabytes
191
- family: Disk/Space/Total
191
+ family: 'Disk/Space/Total'
192
unit: "By"
193
scale_factor: 1048576
194
@@ -204,7 +204,7 @@ metrics:
204
name: fgVdEntOpMode
205
chart_meta:
206
description: Operation mode of the virtual domain
207
- family: VirtualDomain/Status/OperationMode
207
+ family: 'VirtualDomain/Status/OperationMode'
208
unit: "{status}"
209
mapping:
210
1: nat
@@ -214,7 +214,7 @@ metrics:
214
name: fgVdEntHaState
215
chart_meta:
216
description: HA cluster member state of the virtual domain
217
- family: VirtualDomain/Status/HighAvailability
217
+ family: 'VirtualDomain/Status/HighAvailability'
218
unit: "{status}"
219
mapping:
220
1: master
@@ -225,28 +225,28 @@ metrics:
225
name: fgVdEntCpuUsage
226
chart_meta:
227
description: CPU usage of the virtual domain
228
- family: VirtualDomain/CPU/Usage
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
233
chart_meta:
234
description: Memory usage of the virtual domain
235
- family: VirtualDomain/Memory/Usage
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
240
chart_meta:
241
description: Number of active sessions on the virtual domain
242
- family: VirtualDomain/Session/Active
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
247
chart_meta:
248
description: Session setup rate on the virtual domain
249
- family: VirtualDomain/Session/Rate
249
+ family: 'VirtualDomain/Session/Rate'
250
unit: "{session}/s"
251
metric_tags:
252
- tag: virtualdomain_index
@@ -265,7 +265,7 @@ metrics:
265
name: fgVdNumber
266
chart_meta:
267
description: Number of virtual domains in vdTable
268
- family: VirtualDomain/Active
268
+ family: 'VirtualDomain/Active'
269
unit: "{domain}"
270
- MIB: FORTINET-FORTIGATE-MIB
271
symbol:
@@ -274,7 +274,7 @@ metrics:
274
name: fgVdMaxVdoms
275
chart_meta:
276
description: Maximum number of virtual domains allowed on the device
277
- family: VirtualDomain/Maximum
277
+ family: 'VirtualDomain/Maximum'
278
unit: "{domain}"
279
280
### Interfaces
@@ -308,7 +308,7 @@ metrics:
308
name: fgSysSesCount
309
chart_meta:
310
description: Number of active sessions on the device
311
- family: Session/Active/Count
311
+ family: 'Session/Active/Count'
312
unit: "{session}"
313
- MIB: FORTINET-FORTIGATE-MIB
314
symbol:
@@ -317,7 +317,7 @@ metrics:
317
name: fgSysSesRate1
318
chart_meta:
319
description: Average session setup rate over the past minute
320
- family: Session/Rate/Average
320
+ family: 'Session/Rate/Average'
321
unit: "{session}/s"
322
- MIB: FORTINET-FORTIGATE-MIB
323
symbol:
@@ -326,7 +326,7 @@ metrics:
326
name: fgSysSes6Count
327
chart_meta:
328
description: Number of active IPv6 sessions on the device
329
- family: Session/IPv6/Active/Count
329
+ family: 'Session/IPv6/Active/Count'
330
unit: "{session}"
331
- MIB: FORTINET-FORTIGATE-MIB
332
symbol:
@@ -335,7 +335,7 @@ metrics:
335
name: fgSysSes6Rate1
336
chart_meta:
337
description: Average IPv6 session setup rate over the past minute
338
- family: Session/IPv6/Rate/Average
338
+ family: 'Session/IPv6/Rate/Average'
339
unit: "{session}/s"
340
- MIB: FORTINET-FORTIGATE-MIB
341
symbol:
@@ -344,7 +344,7 @@ metrics:
344
name: fgApHTTPConnections
345
chart_meta:
346
description: Current number of HTTP proxy connections
347
- family: Proxy/HTTP/Connection/Active
347
+ family: 'Proxy/HTTP/Connection/Active'
348
unit: "{connection}"
349
- MIB: FORTINET-FORTIGATE-MIB
350
symbol:
@@ -353,7 +353,7 @@ metrics:
353
name: fgApHTTPMaxConnections
354
chart_meta:
355
description: Maximum number of connections supported by HTTP proxy
356
- family: Proxy/HTTP/Connection/Maximum
356
+ family: 'Proxy/HTTP/Connection/Maximum'
357
unit: "{connection}"
358
359
### Firewall
@@ -368,14 +368,14 @@ metrics:
368
name: fgFwPolPktCount
369
chart_meta:
370
description: Number of packets matched to firewall policy
371
- family: Firewall/Policy/Packet/Count
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
376
chart_meta:
377
description: Number of bytes in packets matching firewall policy
378
- family: Firewall/Policy/Throughput/Total
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.
@@ -395,14 +395,14 @@ metrics:
395
name: fgFwPol6PktCount
396
chart_meta:
397
description: Number of packets matched to firewall policy6
398
- family: Firewall/Policy6/Packet/Count
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
403
chart_meta:
404
description: Number of bytes in packets matching firewall policy6
405
- family: Firewall/Policy6/Throughput/Total
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.
src/go/plugin/go.d/config/go.d/snmp.profiles/default/fortinet-fortiswitch.yaml
+5
-5
@@ -28,7 +28,7 @@ metrics:
28
OID: 1.3.6.1.4.1.12356.106.4.1.2.0
29
chart_meta:
30
description: Current CPU usage
31
- family: CPU/Usage
31
+ family: 'CPU/Usage'
32
unit: "%"
33
- MIB: FORTINET-FORTISWITCH-MIB
34
symbol:
@@ -36,7 +36,7 @@ metrics:
36
OID: 1.3.6.1.4.1.12356.106.4.1.3.0
37
chart_meta:
38
description: Current system memory usage
39
- family: Memory/Used
39
+ family: 'Memory/Used'
40
unit: "By"
41
scale_factor: 1024
42
- MIB: FORTINET-FORTISWITCH-MIB
@@ -45,7 +45,7 @@ metrics:
45
OID: 1.3.6.1.4.1.12356.106.4.1.4.0
46
chart_meta:
47
description: Total physical memory installed
48
- family: Memory/Total
48
+ family: 'Memory/Total'
49
unit: "By"
50
scale_factor: 1024
51
- MIB: FORTINET-FORTISWITCH-MIB
@@ -54,7 +54,7 @@ metrics:
54
OID: 1.3.6.1.4.1.12356.106.4.1.5.0
55
chart_meta:
56
description: Current hard disk usage
57
- family: Disk/Space/Used
57
+ family: 'Disk/Space/Used'
58
unit: "By"
59
scale_factor: 1024
60
- MIB: FORTINET-FORTISWITCH-MIB
@@ -63,6 +63,6 @@ metrics:
63
OID: 1.3.6.1.4.1.12356.106.4.1.6.0
64
chart_meta:
65
description: Total hard disk capacity
66
- family: Disk/Space/Total
66
+ family: 'Disk/Space/Total'
67
unit: "By"
68
scale_factor: 1024
src/go/plugin/go.d/config/go.d/snmp.profiles/default/generic-device.yaml
+1
@@ -7,5 +7,6 @@ extends:
7
- _std-tcp-mib.yaml
8
- _std-udp-mib.yaml
9
- _std-ospf-mib.yaml
10
+ - _std-host-resources-mib.yaml
11
12
sysobjectid: 1.3.6.1.4.*
src/go/plugin/go.d/config/go.d/snmp.profiles/default/huawei-routers.yaml
+18
-18
@@ -20,13 +20,13 @@ metrics:
20
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6
21
chart_meta:
22
description: The counter that records the times the remote BGP peer is correctly connected
23
- family: "Routing/BGP/Peer/Connection/Established/Count"
23
+ family: 'Routing/BGP/Peer/Connection/Established/Count'
24
unit: "{connection}/s"
25
- OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5
26
name: huawei.hwBgpPeerState
27
chart_meta:
28
description: Current state of the BGP peer connection
29
- family: "Routing/BGP/Peer/Connection/State"
29
+ family: 'Routing/BGP/Peer/Connection/State'
30
unit: "{status}"
31
mapping:
32
1: idle
@@ -39,7 +39,7 @@ metrics:
39
name: huawei.hwBgpPeerUnAvaiReason
40
chart_meta:
41
description: Reason why the BGP peer is unavailable
42
- family: "Routing/BGP/Peer/Unavailable/Reason"
42
+ family: 'Routing/BGP/Peer/Unavailable/Reason'
43
unit: "{status}"
44
mapping:
45
1: configuration_lead_peer_down
@@ -70,21 +70,21 @@ metrics:
70
metric_type: monotonic_count
71
chart_meta:
72
description: The number of prefixes received from the remote BGP peer
73
- family: "Routing/BGP/Peer/Prefix/Received/Total"
73
+ family: 'Routing/BGP/Peer/Prefix/Received/Total'
74
unit: "{prefix}"
75
- name: huawei.hwBgpPeerPrefixActiveCounter
76
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2
77
metric_type: monotonic_count
78
chart_meta:
79
description: The number of active prefixes received from the remote BGP peer
80
- family: "Routing/BGP/Peer/Prefix/Active/Total"
80
+ family: 'Routing/BGP/Peer/Prefix/Active/Total'
81
unit: "{prefix}"
82
- name: huawei.hwBgpPeerPrefixAdvCounter
83
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3
84
metric_type: monotonic_count
85
chart_meta:
86
description: The number of prefixes sent to the remote BGP peer
87
- family: "Routing/BGP/Peer/Prefix/Advertised/Total"
87
+ family: 'Routing/BGP/Peer/Prefix/Advertised/Total'
88
unit: "{prefix}"
89
metric_tags:
90
- tag: huawei_hw_bgp_peer_vrf_name
@@ -106,73 +106,73 @@ metrics:
106
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.1
107
chart_meta:
108
description: The total number of protocol packets received from the remote BGP peer
109
- family: "Routing/BGP/Peer/Message/Total/In"
109
+ family: 'Routing/BGP/Peer/Message/Total/In'
110
unit: "{packet}/s"
111
- name: huawei.hwBgpPeerOutTotalMsgCounter
112
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.2
113
chart_meta:
114
description: The total number of protocol packets sent to the remote BGP peer
115
- family: "Routing/BGP/Peer/Message/Total/Out"
115
+ family: 'Routing/BGP/Peer/Message/Total/Out'
116
unit: "{packet}/s"
117
- name: huawei.hwBgpPeerInOpenMsgCounter
118
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.3
119
chart_meta:
120
description: The total number of Open packets received from the remote BGP peer
121
- family: "Routing/BGP/Peer/Message/Open/In"
121
+ family: 'Routing/BGP/Peer/Message/Open/In'
122
unit: "{packet}/s"
123
- name: huawei.hwBgpPeerInUpdateMsgCounter
124
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.4
125
chart_meta:
126
description: The total number of Update packets received from the remote BGP peer
127
- family: "Routing/BGP/Peer/Message/Update/In"
127
+ family: 'Routing/BGP/Peer/Message/Update/In'
128
unit: "{packet}/s"
129
- name: huawei.hwBgpPeerInNotificationMsgCounter
130
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.5
131
chart_meta:
132
description: The total number of Notification packets received from the remote BGP peer
133
- family: "Routing/BGP/Peer/Message/Notification/In"
133
+ family: 'Routing/BGP/Peer/Message/Notification/In'
134
unit: "{packet}/s"
135
- name: huawei.hwBgpPeerInKeepAliveMsgCounter
136
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.6
137
chart_meta:
138
description: The total number of Keepalive packets received from the remote BGP peer
139
- family: "Routing/BGP/Peer/Message/KeepAlive/In"
139
+ family: 'Routing/BGP/Peer/Message/KeepAlive/In'
140
unit: "{packet}/s"
141
- name: huawei.hwBgpPeerInRouteFreshMsgCounter
142
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.7
143
chart_meta:
144
description: The total number of Route-Refresh packets received from the remote BGP peer
145
- family: "Routing/BGP/Peer/Message/RouteRefresh/In"
145
+ family: 'Routing/BGP/Peer/Message/RouteRefresh/In'
146
unit: "{packet}/s"
147
- name: huawei.hwBgpPeerOutOpenMsgCounter
148
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.8
149
chart_meta:
150
description: The total number of Open packets sent to the remote BGP peer
151
- family: "Routing/BGP/Peer/Message/Open/Out"
151
+ family: 'Routing/BGP/Peer/Message/Open/Out'
152
unit: "{packet}/s"
153
- name: huawei.hwBgpPeerOutUpdateMsgCounter
154
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.9
155
chart_meta:
156
description: The total number of Update packets sent to the remote BGP peer
157
- family: "Routing/BGP/Peer/Message/Update/Out"
157
+ family: 'Routing/BGP/Peer/Message/Update/Out'
158
unit: "{packet}/s"
159
- name: huawei.hwBgpPeerOutNotificationMsgCounter
160
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.10
161
chart_meta:
162
description: The total number of Notification packets sent to the remote BGP peer
163
- family: "Routing/BGP/Peer/Message/Notification/Out"
163
+ family: 'Routing/BGP/Peer/Message/Notification/Out'
164
unit: "{packet}/s"
165
- name: huawei.hwBgpPeerOutKeepAliveMsgCounter
166
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.11
167
chart_meta:
168
description: The total number of Keepalive packets sent to the remote BGP peer
169
- family: "Routing/BGP/Peer/Message/KeepAlive/Out"
169
+ family: 'Routing/BGP/Peer/Message/KeepAlive/Out'
170
unit: "{packet}/s"
171
- name: huawei.hwBgpPeerOutRouteFreshMsgCounter
172
OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.12
173
chart_meta:
174
description: The total number of Route-Refresh packets sent to the remote BGP peer
175
- family: "Routing/BGP/Peer/Message/RouteRefresh/Out"
175
+ family: 'Routing/BGP/Peer/Message/RouteRefresh/Out'
176
unit: "{packet}/s"
177
metric_tags:
178
- tag: huawei_hw_bgp_peer_vrf_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/huawei-switches.yaml
+3
-3
@@ -21,13 +21,13 @@ metrics:
21
OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.2
22
chart_meta:
23
description: Stack member's priority
24
- family: "Stack/Member/Priority/Value"
24
+ family: 'Stack/Member/Priority/Value'
25
unit: "{priority}"
26
- OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.3
27
name: huawei.hwMemberStackRole
28
chart_meta:
29
description: Current role of the stack member
30
- family: "Stack/Member/Role"
30
+ family: 'Stack/Member/Role'
31
unit: "{status}"
32
mapping:
33
1: master
@@ -57,7 +57,7 @@ metrics:
57
name: huawei.hwStackPortStatus
58
chart_meta:
59
description: Operational status of the stack port
60
- family: "Stack/Port/Status"
60
+ family: 'Stack/Port/Status'
61
unit: "{status}"
62
mapping:
63
1: up
src/go/plugin/go.d/config/go.d/snmp.profiles/default/huawei.yaml
+17
-17
@@ -26,19 +26,19 @@ metrics:
26
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11
27
chart_meta:
28
description: The temperature for the entity
29
- family: "Entity/Temperature/Value"
29
+ family: 'Entity/Temperature/Value'
30
unit: "Cel"
31
- name: huawei.hwEntityVoltage
32
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13
33
chart_meta:
34
description: The voltage for the entity
35
- family: "Entity/Voltage/Value"
35
+ family: 'Entity/Voltage/Value'
36
unit: "V"
37
- OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1
38
name: huawei.hwEntityAdminStatus
39
chart_meta:
40
description: Administrative status of the entity
41
- family: "Entity/Status/Administrative"
41
+ family: 'Entity/Status/Administrative'
42
unit: "{status}"
43
mapping:
44
1: not_supported
@@ -52,7 +52,7 @@ metrics:
52
name: huawei.hwEntityOperStatus
53
chart_meta:
54
description: Operational status of the entity
55
- family: "Entity/Status/Operational"
55
+ family: 'Entity/Status/Operational'
56
unit: "{status}"
57
mapping:
58
1: not_supported
@@ -71,7 +71,7 @@ metrics:
71
name: huawei.hwEntityStandbyStatus
72
chart_meta:
73
description: Standby status of the entity
74
- family: "Entity/Status/Standby"
74
+ family: 'Entity/Status/Standby'
75
unit: "{status}"
76
mapping:
77
1: not_supported
@@ -82,7 +82,7 @@ metrics:
82
name: huawei.hwEntityFaultLight
83
chart_meta:
84
description: Fault light status of the entity
85
- family: "Entity/Status/FaultLight"
85
+ family: 'Entity/Status/FaultLight'
86
unit: "{status}"
87
mapping:
88
1: not_supported
@@ -103,13 +103,13 @@ metrics:
103
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.5
104
chart_meta:
105
description: This object indicates the rotation speed in percentage of the full speed of the fan
106
- family: "Fan/Speed/Value"
106
+ family: 'Fan/Speed/Value'
107
unit: "%"
108
- OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.3
109
name: huawei.hwEntityFanReg
110
chart_meta:
111
description: Whether the fan is registered
112
- family: "Fan/Registration/Status"
112
+ family: 'Fan/Registration/Status'
113
unit: "{status}"
114
mapping:
115
1: yes
@@ -118,7 +118,7 @@ metrics:
118
name: huawei.hwEntityFanSpdAdjMode
119
chart_meta:
120
description: Fan speed adjustment mode
121
- family: "Fan/Speed/Mode"
121
+ family: 'Fan/Speed/Mode'
122
unit: "{status}"
123
mapping:
124
1: auto
@@ -129,7 +129,7 @@ metrics:
129
name: huawei.hwEntityFanPresent
130
chart_meta:
131
description: Whether the fan is present
132
- family: "Fan/Presence/Status"
132
+ family: 'Fan/Presence/Status'
133
unit: "{status}"
134
mapping:
135
1: present
@@ -138,7 +138,7 @@ metrics:
138
name: huawei.hwEntityFanState
139
chart_meta:
140
description: Operational state of the fan
141
- family: "Fan/Status"
141
+ family: 'Fan/Status'
142
unit: "{status}"
143
mapping:
144
1: normal
@@ -162,19 +162,19 @@ metrics:
162
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.2
163
chart_meta:
164
description: Device total power
165
- family: "Power/Capacity/Total"
165
+ family: 'Power/Capacity/Total'
166
unit: "W"
167
- name: huawei.hwSystemPowerUsedPower
168
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.3
169
chart_meta:
170
description: Device used power
171
- family: "Power/Usage/Current"
171
+ family: 'Power/Usage/Current'
172
unit: "W"
173
- name: huawei.hwSystemPowerRemainPower
174
OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.4
175
chart_meta:
176
description: Device remaining power
177
- family: "Power/Capacity/Remaining"
177
+ family: 'Power/Capacity/Remaining'
178
unit: "W"
179
metric_tags:
180
- tag: huawei_hw_system_power_device_id
@@ -264,7 +264,7 @@ metrics:
264
OID: 1.3.6.1.4.1.2011.6.3.4.1.3
265
chart_meta:
266
description: The overall CPU duty percentage in the last 1 minute period
267
- family: "CPU/Usage"
267
+ family: 'CPU/Usage'
268
unit: "%"
269
metric_tags:
270
- tag: cpu_index
@@ -280,14 +280,14 @@ metrics:
280
metric_type: monotonic_count
281
chart_meta:
282
description: Indicates the total size of the memory module which is on the managed object
283
- family: "Memory/Total"
283
+ family: 'Memory/Total'
284
unit: "By"
285
- name: huawei.hwMemoryDevFree
286
OID: 1.3.6.1.4.1.2011.6.3.5.1.1.3
287
metric_type: monotonic_count
288
chart_meta:
289
description: Indicates the free size of the memory
290
- family: "Memory/Free"
290
+ family: 'Memory/Free'
291
unit: "By"
292
metric_tags:
293
- tag: mem_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/juniper-pulse-secure.yaml
+20
-20
@@ -40,7 +40,7 @@ metrics:
40
name: iveCpuUtil
41
chart_meta:
42
description: The cpu utilization of the ive system
43
- family: "CPU/Usage"
43
+ family: 'CPU/Usage'
44
unit: "%"
45
- MIB: JUNIPER-IVE-MIB
46
symbol:
@@ -48,7 +48,7 @@ metrics:
48
name: iveMemoryUtil
49
chart_meta:
50
description: The memory utilization of the ive system
51
- family: "Memory/Usage"
51
+ family: 'Memory/Usage'
52
unit: "%"
53
- MIB: JUNIPER-IVE-MIB
54
symbol:
@@ -56,7 +56,7 @@ metrics:
56
name: iveSwapUtil
57
chart_meta:
58
description: The swap utilization of the ive system
59
- family: "Memory/Swap/Usage"
59
+ family: 'Memory/Swap/Usage'
60
unit: "%"
61
- MIB: JUNIPER-IVE-MIB
62
symbol:
@@ -64,7 +64,7 @@ metrics:
64
name: logFullPercent
65
chart_meta:
66
description: Percentage of log file full
67
- family: "Disk/Log/Usage"
67
+ family: 'Disk/Log/Usage'
68
unit: "%"
69
- MIB: JUNIPER-IVE-MIB
70
symbol:
@@ -72,7 +72,7 @@ metrics:
72
name: diskFullPercent
73
chart_meta:
74
description: Percentage of disk space full
75
- family: "Disk/Usage"
75
+ family: 'Disk/Usage'
76
unit: "%"
77
- MIB: JUNIPER-IVE-MIB
78
symbol:
@@ -80,7 +80,7 @@ metrics:
80
name: iveTemperature
81
chart_meta:
82
description: The Temperature of MAG application blade
83
- family: "System/Temperature/Value"
83
+ family: 'System/Temperature/Value'
84
unit: "Cel"
85
- MIB: JUNIPER-IVE-MIB
86
symbol:
@@ -88,7 +88,7 @@ metrics:
88
name: signedInWebUsers
89
chart_meta:
90
description: Number of signed-in web users
91
- family: "User/Active/Web"
91
+ family: 'User/Active/Web'
92
unit: "{user}"
93
- MIB: JUNIPER-IVE-MIB
94
symbol:
@@ -96,7 +96,7 @@ metrics:
96
name: signedInMailUsers
97
chart_meta:
98
description: Number of signed-in mail users
99
- family: "User/Active/Mail"
99
+ family: 'User/Active/Mail'
100
unit: "{user}"
101
- MIB: JUNIPER-IVE-MIB
102
symbol:
@@ -104,7 +104,7 @@ metrics:
104
name: iveVPNTunnels
105
chart_meta:
106
description: The number of concurrent pulse ipsec and nc users
107
- family: "VPN/Tunnel/Active"
107
+ family: 'VPN/Tunnel/Active'
108
unit: "{tunnel}"
109
- MIB: JUNIPER-IVE-MIB
110
symbol:
@@ -112,7 +112,7 @@ metrics:
112
name: iveConcurrentUsers
113
chart_meta:
114
description: The total number of concurrent user licenses used for the ive node
115
- family: "License/User/Node/Used"
115
+ family: 'License/User/Node/Used'
116
unit: "{license}"
117
- MIB: JUNIPER-IVE-MIB
118
symbol:
@@ -120,7 +120,7 @@ metrics:
120
name: clusterConcurrentUsers
121
chart_meta:
122
description: The total number of concurrent user licenses used for the cluster
123
- family: "License/User/Cluster/Used"
123
+ family: 'License/User/Cluster/Used'
124
unit: "{license}"
125
- MIB: JUNIPER-IVE-MIB
126
symbol:
@@ -128,7 +128,7 @@ metrics:
128
name: iveTotalHits
129
chart_meta:
130
description: The total number of hits to the ive since last reboot
131
- family: "Hit/Total"
131
+ family: 'Hit/Total'
132
unit: "{hit}/s"
133
- MIB: JUNIPER-IVE-MIB
134
symbol:
@@ -136,7 +136,7 @@ metrics:
136
name: iveFileHits
137
chart_meta:
138
description: The total number of file hits to the ive since last reboot
139
- family: "Hit/File"
139
+ family: 'Hit/File'
140
unit: "{hit}/s"
141
- MIB: JUNIPER-IVE-MIB
142
symbol:
@@ -144,7 +144,7 @@ metrics:
144
name: iveWebHits
145
chart_meta:
146
description: The total number of hits via the web interface since the last reboot
147
- family: "Hit/Web"
147
+ family: 'Hit/Web'
148
unit: "{hit}/s"
149
- MIB: JUNIPER-IVE-MIB
150
symbol:
@@ -152,7 +152,7 @@ metrics:
152
name: iveAppletHits
153
chart_meta:
154
description: The total number of applet hits to the ive since last reboot
155
- family: "Hit/Applet"
155
+ family: 'Hit/Applet'
156
unit: "{hit}/s"
157
- MIB: JUNIPER-IVE-MIB
158
symbol:
@@ -160,7 +160,7 @@ metrics:
160
name: ivetermHits
161
chart_meta:
162
description: The total number of terminal hits to the ive since last reboot
163
- family: "Hit/Terminal"
163
+ family: 'Hit/Terminal'
164
unit: "{hit}/s"
165
- MIB: JUNIPER-IVE-MIB
166
symbol:
@@ -168,7 +168,7 @@ metrics:
168
name: iveSAMHits
169
chart_meta:
170
description: The total number of sam secure application manager hits since last reboot
171
- family: "Hit/SAM"
171
+ family: 'Hit/SAM'
172
unit: "{hit}/s"
173
- MIB: JUNIPER-IVE-MIB
174
symbol:
@@ -176,7 +176,7 @@ metrics:
176
name: iveNCHits
177
chart_meta:
178
description: The total number of nc network connect hits since last reboot
179
- family: "Hit/NetworkConnect"
179
+ family: 'Hit/NetworkConnect'
180
unit: "{hit}/s"
181
- MIB: JUNIPER-IVE-MIB
182
symbol:
@@ -184,7 +184,7 @@ metrics:
184
name: meetingHits
185
chart_meta:
186
description: The total number of meeting hits since last reboot
187
- family: "Hit/Meeting"
187
+ family: 'Hit/Meeting'
188
unit: "{hit}/s"
189
- MIB: JUNIPER-IVE-MIB
190
symbol:
@@ -192,5 +192,5 @@ metrics:
192
name: iveSSLConnections
193
chart_meta:
194
description: Total number of ssl connection
195
- family: "SSL/Connection/Active"
195
+ family: 'SSL/Connection/Active'
196
unit: "{connection}"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/mikrotik-router.yaml
+27
-29
@@ -31,43 +31,43 @@ metrics:
31
name: mtxrOpticalTemperature
32
chart_meta:
33
description: Temperature at sensor chip
34
- family: Hardware/OpticalModule/Temperature/Value
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
38
chart_meta:
39
description: Received optical power
40
- family: Hardware/OpticalModule/Power/In
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
44
chart_meta:
45
description: Supply voltage
46
- family: Hardware/OpticalModule/Voltage/Supply
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
50
chart_meta:
51
description: Transmit bias current
52
- family: Hardware/OpticalModule/Current/TxBias
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
56
chart_meta:
57
description: Optical wavelength
58
- family: Hardware/OpticalModule/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
62
chart_meta:
63
description: Transmit optical power
64
- family: Hardware/OpticalModule/Power/Out
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
68
chart_meta:
69
description: Indicates whether the optical transceiver is experiencing a transmit fault
70
- family: Hardware/OpticalModule/Transmit/Fault/Status
70
+ family: 'Hardware/OpticalModule/Transmit/Fault/Status'
71
unit: "{status}"
72
mapping:
73
0: 'ok'
@@ -76,7 +76,7 @@ metrics:
76
name: mtxrOpticalRxLoss
77
chart_meta:
78
description: Indicates whether there is a loss of received optical signal (Rx Loss)
79
- family: Hardware/OpticalModule/Receive/Loss/Status
79
+ family: 'Hardware/OpticalModule/Receive/Loss/Status'
80
unit: "{status}"
81
mapping:
82
0: 'ok'
@@ -99,25 +99,25 @@ metrics:
99
name: mtxrPOEPower
100
chart_meta:
101
description: Power over ethernet
102
- family: Interface/PoE/Power
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
106
chart_meta:
107
description: Power over ethernet voltage
108
- family: Interface/PoE/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
112
chart_meta:
113
description: Power over ethernet current
114
- family: Interface/PoE/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
118
chart_meta:
119
description: Power over ethernet status
120
- family: Interface/PoE/Status
120
+ family: 'Interface/PoE/Status'
121
unit: "{status}"
122
mapping:
123
1: disabled
@@ -144,7 +144,7 @@ metrics:
144
name: cpu.usage
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
147
+ family: 'CPU/Usage'
148
unit: "%"
149
metric_tags:
150
- tag: cpu_index
@@ -160,7 +160,7 @@ metrics:
160
name: memory.total
161
chart_meta:
162
description: Total size of the storage in bytes
163
- family: Memory/Total
163
+ family: 'Memory/Total'
164
unit: "By"
165
transform: |
166
{{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
@@ -170,7 +170,7 @@ metrics:
170
name: memory.used
171
chart_meta:
172
description: Amount of storage currently allocated in bytes
173
- family: Memory/Used
173
+ family: 'Memory/Used'
174
unit: "By"
175
transform: |
176
{{- $unit := index .Metric.Tags "rm:storage_alloc_unit" | default "1" -}}
@@ -197,46 +197,44 @@ metrics:
197
- OID: 1.3.6.1.4.1.14988.1.1.3.100.1.3
198
name: mtxrHlSensorValue
199
description: Sensor value
200
- family: Hardware/Sensor
200
+ family: 'Hardware/Sensor'
201
transform: |
202
- {{- $sensorType := index .Metric.Tags "sensor_type" | default "" -}}
202
+ {{- $sensorType := index .Metric.Tags "rm:sensor_type" | default "" -}}
203
{{- $config := get (dict
204
- "1" (dict "name" "temperature" "unit" "Cel" "family" "Sensor/Temperature/Value"
204
+ "1" (dict "name" "temperature" "unit" "Cel" "family" "Temperature"
205
"desc" "Temperature reading")
206
- "2" (dict "name" "fan_speed" "unit" "{revolution}/min" "family" "Sensor/FanSpeed/Value"
206
+ "2" (dict "name" "fan_speed" "unit" "{revolution}/min" "family" "FanSpeed"
207
"desc" "Fan rotation speed")
208
- "3" (dict "name" "voltage" "unit" "V" "family" "Sensor/Voltage/Value" "divisor" 10.0
208
+ "3" (dict "name" "voltage" "unit" "V" "family" "Voltage" "divisor" 10.0
209
"desc" "Voltage measurement")
210
- "4" (dict "name" "current" "unit" "A" "family" "Sensor/Current/Value" "divisor" 10.0
210
+ "4" (dict "name" "current" "unit" "A" "family" "Current" "divisor" 10.0
211
"desc" "Current draw")
212
- "5" (dict "name" "power" "unit" "W" "family" "Sensor/Power/Value" "divisor" 10.0
212
+ "5" (dict "name" "power" "unit" "W" "family" "Power" "divisor" 10.0
213
"desc" "Power consumption")
214
- "6" (dict "name" "sensor_status" "family" "Sensor/Presence/Status"
214
+ "6" (dict "name" "sensor_status" "family" "Presence"
215
"mapping" (i64map 0 "absent_or_faulty" 1 "present_and_ok")
216
"desc" "Component presence and operational status")
217
- "7" (dict "name" "sensor_state" "family" "Sensor/State/Value"
217
+ "7" (dict "name" "sensor_state" "family" "State"
218
"mapping" (i64map 0 "false" 1 "true")
219
"desc" "Boolean sensor state")
220
- "8" (dict "name" "usage_percentage" "unit" "%" "family" "Sensor/Usage/Value"
220
+ "8" (dict "name" "usage_percentage" "unit" "%" "family" "Usage"
221
"desc" "Resource utilization percentage")
222
) $sensorType -}}
223
224
{{- if $config -}}
225
{{- setName .Metric (printf "%s_%s" .Metric.Name (get $config "name")) -}}
226
- {{- setFamily .Metric (get $config "family") -}}
226
+ {{- setFamily .Metric (printf "Hardware/Sensor/%s/Value" (get $config "family")) -}}
227
{{- with get $config "desc" -}}{{- setDesc $.Metric . -}}{{- end -}}
228
{{- with get $config "unit" -}}{{- setUnit $.Metric . -}}{{- end -}}
229
{{- with get $config "divisor" -}}{{- setValue $.Metric (int64 (div (float64 $.Value) .)) -}}{{- end -}}
230
{{- with get $config "mapping" -}}{{- setMappings $.Metric . -}}{{- end -}}
231
{{- end -}}
232
-
233
- {{- deleteTag .Metric "sensor_type" -}}
232
metric_tags:
233
- tag: sensor_name
234
symbol:
235
OID: 1.3.6.1.4.1.14988.1.1.3.100.1.2
236
name: mtxrHlSensorName
239
- - tag: sensor_type
237
+ - tag: rm:sensor_type
238
symbol:
239
OID: 1.3.6.1.4.1.14988.1.1.3.100.1.4
240
name: mtxrHlSensorUnit
src/go/plugin/go.d/config/go.d/snmp.profiles/default/netapp.yaml
+34
-34
@@ -61,7 +61,7 @@ metrics:
61
# The partialFailure(3) status indicates that one of the links in the interconnect hardware is down.
62
chart_meta:
63
description: The current status of the interconnect
64
- family: ClusterFailover/Interconnect/Status
64
+ family: 'ClusterFailover/Interconnect/Status'
65
unit: "{status}"
66
- MIB: NETAPP-MIB
67
symbol:
@@ -73,7 +73,7 @@ metrics:
73
# buffer cache age will be very low.
74
chart_meta:
75
description: Age in minutes of the oldest read-only blocks in the buffer cache
76
- family: Cache/Buffer/Age
76
+ family: 'Cache/Buffer/Age'
77
unit: "min"
78
- MIB: NETAPP-MIB
79
symbol:
@@ -81,7 +81,7 @@ metrics:
81
name: ncHttpActiveCliConns
82
chart_meta:
83
description: Number of currently active TCP/IP connections to HTTP clients
84
- family: Network/HTTP/Connection/Active
84
+ family: 'Network/HTTP/Connection/Active'
85
unit: "{connection}"
86
87
- MIB: NETAPP-MIB
@@ -90,7 +90,7 @@ metrics:
90
name: extcache64Hits
91
chart_meta:
92
description: Number of wafl buffers read from the external cache
93
- family: Cache/External/Hit/Count
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)
@@ -103,32 +103,32 @@ metrics:
103
name: svTotalTransMBs
104
chart_meta:
105
description: Transfer size
106
- family: SnapVault/Transfer/Throughput/Total
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
111
chart_meta:
112
description: Successful transfers
113
- family: SnapVault/Transfer/Success/Count
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
117
chart_meta:
118
description: Failed or aborted transfers
119
- family: SnapVault/Transfer/Failure/Count
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
123
chart_meta:
124
description: Shows how far away the destination is from the source.
125
- family: SnapVault/Sync/Lag
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
129
chart_meta:
130
description: Current transfer status
131
- family: SnapVault/Transfer/Status
131
+ family: 'SnapVault/Transfer/Status'
132
unit: "{status}"
133
mapping:
134
1: idle
@@ -142,7 +142,7 @@ metrics:
142
name: svState
143
chart_meta:
144
description: Current state of the SnapVault relationship
145
- family: SnapVault/Relationship/Status
145
+ family: 'SnapVault/Relationship/Status'
146
unit: "{status}"
147
mapping:
148
1: uninitialized
@@ -177,32 +177,32 @@ metrics:
177
name: snapmirrorTotalTransMBs
178
chart_meta:
179
description: Transfer size
180
- family: SnapMirror/Transfer/Throughput/Total
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
185
chart_meta:
186
description: Successful transfers
187
- family: SnapMirror/Transfer/Success/Count
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
191
chart_meta:
192
description: Failed or aborted transfers
193
- family: SnapMirror/Transfer/Failure/Count
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
197
chart_meta:
198
description: How far behind from the source the destination is
199
- family: SnapMirror/Sync/Lag
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
203
chart_meta:
204
description: Current transfer status of the SnapMirror
205
- family: SnapMirror/Transfer/Status
205
+ family: 'SnapMirror/Transfer/Status'
206
unit: "{status}"
207
mapping:
208
1: uninitialized
@@ -215,7 +215,7 @@ metrics:
215
name: snapmirrorState
216
chart_meta:
217
description: Current state of the SnapMirror
218
- family: SnapMirror/Status
218
+ family: 'SnapMirror/Status'
219
unit: "{status}"
220
mapping:
221
1: idle
@@ -249,7 +249,7 @@ metrics:
249
name: dfStatus
250
chart_meta:
251
description: The status of the file system
252
- family: FileSystem/Status
252
+ family: 'FileSystem/Status'
253
unit: "{status}"
254
mapping:
255
1: unmounted
@@ -266,7 +266,7 @@ metrics:
266
name: dfMirrorStatus
267
chart_meta:
268
description: The status of the file system
269
- family: FileSystem/Mirror/Status
269
+ family: 'FileSystem/Mirror/Status'
270
unit: "{status}"
271
mapping:
272
1: invalid
@@ -283,34 +283,34 @@ metrics:
283
name: dfHighTotalKBytes
284
chart_meta:
285
description: Total capacity for the referenced file system
286
- family: FileSystem/Space/Total
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
291
chart_meta:
292
description: The total disk space that is in use on the referenced file system
293
- family: FileSystem/Space/Used
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
298
chart_meta:
299
description: Total disk space that is free for use on the referenced file system
300
- family: FileSystem/Space/Available
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
305
chart_meta:
306
description: Total number of inodes in use on the referenced file system
307
- family: FileSystem/Inode/Used
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
311
chart_meta:
312
description: Total number of inodes that are available for use on the referenced file system
313
- family: FileSystem/Inode/Free
313
+ family: 'FileSystem/Inode/Free'
314
unit: "{inode}"
315
metric_tags:
316
- tag: df_index
@@ -336,69 +336,69 @@ metrics:
336
name: if64InOctets
337
chart_meta:
338
description: The total number of octets received on the interface, including framing characters
339
- family: Interfaces/Traffic/Total/In
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
344
chart_meta:
345
description: The total number of octets transmitted out of the interface, including framing characters
346
- family: Interfaces/Traffic/Total/Out
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
351
chart_meta:
352
description: The number of unicast packets delivered to a higher-layer protocol
353
- family: Interfaces/Packet/Unicast/In
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
357
chart_meta:
358
description: The total number of unicast packets requested to be transmitted
359
- family: Interfaces/Packet/Unicast/Out
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
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
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
369
chart_meta:
370
description: The total number of non-unicast packets requested to be transmitted
371
- family: Interfaces/Packet/NonUnicast/Out
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
375
chart_meta:
376
description: The number of inbound packets discarded even though no errors were detected
377
- family: Interfaces/Discard/In
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
381
chart_meta:
382
description: The number of outbound packets discarded even though no errors were detected
383
- family: Interfaces/Discard/Out
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
387
chart_meta:
388
description: The number of inbound packets containing errors preventing delivery to higher-layer protocol
389
- family: Interfaces/Error/Total/In
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
393
chart_meta:
394
description: The number of outbound packets that could not be transmitted due to errors
395
- family: Interfaces/Error/Total/Out
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
399
chart_meta:
400
description: The number of packets discarded due to unknown or unsupported protocol
401
- family: Interfaces/Error/UnknownProtocol/In
401
+ family: 'Interfaces/Error/UnknownProtocol/In'
402
unit: "packets/s"
403
metric_tags:
404
- tag: interface_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/palo-alto.yaml
+16
-16
@@ -84,7 +84,7 @@ metrics:
84
name: panSessionUtilization
85
chart_meta:
86
description: Session table utilization percentage
87
- family: Session/Utilization
87
+ family: 'Session/Utilization'
88
unit: "%"
89
- MIB: PAN-COMMON-MIB
90
symbol:
@@ -92,7 +92,7 @@ metrics:
92
name: panSessionMax
93
chart_meta:
94
description: Total number of sessions supported
95
- family: Session/Maximum
95
+ family: 'Session/Maximum'
96
unit: "{session}"
97
- MIB: PAN-COMMON-MIB
98
symbol:
@@ -100,7 +100,7 @@ metrics:
100
name: panSessionActive
101
chart_meta:
102
description: Total number of active sessions
103
- family: Session/Active/Total
103
+ family: 'Session/Active/Total'
104
unit: "{session}"
105
- MIB: PAN-COMMON-MIB
106
symbol:
@@ -108,7 +108,7 @@ metrics:
108
name: panSessionActiveTcp
109
chart_meta:
110
description: Total number of active TCP sessions
111
- family: Session/Active/TCP
111
+ family: 'Session/Active/TCP'
112
unit: "{session}"
113
- MIB: PAN-COMMON-MIB
114
symbol:
@@ -116,7 +116,7 @@ metrics:
116
name: panSessionActiveUdp
117
chart_meta:
118
description: Total number of active UDP sessions
119
- family: Session/Active/UDP
119
+ family: 'Session/Active/UDP'
120
unit: "{session}"
121
- MIB: PAN-COMMON-MIB
122
symbol:
@@ -124,7 +124,7 @@ metrics:
124
name: panSessionActiveICMP
125
chart_meta:
126
description: Total number of active ICMP sessions
127
- family: Session/Active/ICMP
127
+ family: 'Session/Active/ICMP'
128
unit: "{session}"
129
- MIB: PAN-COMMON-MIB
130
symbol:
@@ -132,7 +132,7 @@ metrics:
132
name: panSessionActiveSslProxy
133
chart_meta:
134
description: Total number of active SSL proxy sessions
135
- family: Session/SSLProxy/Active
135
+ family: 'Session/SSLProxy/Active'
136
unit: "{session}"
137
- MIB: PAN-COMMON-MIB
138
symbol:
@@ -140,7 +140,7 @@ metrics:
140
name: panSessionSslProxyUtilization
141
chart_meta:
142
description: SSL proxy session utilization percentage
143
- family: Session/SSLProxy/Utilization
143
+ family: 'Session/SSLProxy/Utilization'
144
unit: "%"
145
146
#
@@ -152,7 +152,7 @@ metrics:
152
name: panGPGWUtilizationPct
153
chart_meta:
154
description: GlobalProtect Gateway utilization percentage
155
- family: GlobalProtect/Gateway/Utilization
155
+ family: 'GlobalProtect/Gateway/Utilization'
156
unit: "%"
157
- MIB: PAN-COMMON-MIB
158
symbol:
@@ -160,7 +160,7 @@ metrics:
160
name: panGPGWUtilizationMaxTunnels
161
chart_meta:
162
description: Max tunnels allowed
163
- family: GlobalProtect/Gateway/Tunnel/Maximum
163
+ family: 'GlobalProtect/Gateway/Tunnel/Maximum'
164
unit: "{tunnel}"
165
- MIB: PAN-COMMON-MIB
166
symbol:
@@ -168,7 +168,7 @@ metrics:
168
name: panGPGWUtilizationActiveTunnels
169
chart_meta:
170
description: Number of active tunnels
171
- family: GlobalProtect/Gateway/Tunnel/Active
171
+ family: 'GlobalProtect/Gateway/Tunnel/Active'
172
unit: "{tunnel}"
173
- MIB: PAN-ENTITY-EXT-MIB
174
symbol:
@@ -176,7 +176,7 @@ metrics:
176
name: panEntityTotalPowerUsed
177
chart_meta:
178
description: Total power used on the system in watts
179
- family: System/Power/Used
179
+ family: 'System/Power/Used'
180
unit: "W"
181
- MIB: PAN-ENTITY-EXT-MIB
182
symbol:
@@ -184,7 +184,7 @@ metrics:
184
name: panEntityTotalPowerAvail
185
chart_meta:
186
description: Total power available on the system in watts
187
- family: System/Power/Available
187
+ family: 'System/Power/Available'
188
unit: "W"
189
- MIB: PAN-ENTITY-EXT-MIB
190
table:
@@ -195,13 +195,13 @@ metrics:
195
name: panEntryFRUModulePowerUsed
196
chart_meta:
197
description: Power used by the FRU Module in watts
198
- family: FRU/Module/Power
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
202
chart_meta:
203
description: Number of ports on the FRU Module
204
- family: FRU/Module/Port/Count
204
+ family: 'FRU/Module/Port/Count'
205
unit: "{port}"
206
metric_tags:
207
- MIB: ENTITY-MIB
@@ -220,7 +220,7 @@ metrics:
220
name: panEntryFanTrayPowerUsed
221
chart_meta:
222
description: Power used by the Fan Tray in watts
223
- family: FRU/FanTray/Power
223
+ family: 'FRU/FanTray/Power'
224
unit: "W"
225
metric_tags:
226
- MIB: ENTITY-MIB
src/go/plugin/go.d/config/go.d/snmp.profiles/default/servertech-pdu3.yaml
+32
-32
@@ -25,7 +25,7 @@ metrics:
25
OID: 1.3.6.1.4.1.1718.3.1.6.0
26
chart_meta:
27
description: Total power consumption of the system
28
- family: "System/Power/Total"
28
+ family: 'System/Power/Total'
29
unit: "W"
30
- MIB: SENTRY3-MIB
31
symbol:
@@ -33,7 +33,7 @@ metrics:
33
OID: 1.3.6.1.4.1.1718.3.1.15.0
34
chart_meta:
35
description: Count of system configuration modifications
36
- family: "System/Configuration/Modified/Count"
36
+ family: 'System/Configuration/Modified/Count'
37
unit: "{modification}"
38
39
- MIB: SENTRY3-MIB
@@ -45,55 +45,55 @@ metrics:
45
OID: 1.3.6.1.4.1.1718.3.2.1.1.5
46
chart_meta:
47
description: Number of tower infeeds
48
- family: "Tower/Infeed/Count"
48
+ family: 'Tower/Infeed/Count'
49
unit: "{infeed}"
50
- name: servertech.sentry3.towerVACapacity
51
OID: 1.3.6.1.4.1.1718.3.2.1.1.9
52
chart_meta:
53
description: Tower VA capacity
54
- family: "Tower/Power/Capacity/Apparent"
54
+ family: 'Tower/Power/Capacity/Apparent'
55
unit: "VA"
56
- name: servertech.sentry3.towerVACapacityUsed
57
OID: 1.3.6.1.4.1.1718.3.2.1.1.10
58
chart_meta:
59
description: Used tower VA capacity
60
- family: "Tower/Power/Used/Apparent"
60
+ family: 'Tower/Power/Used/Apparent'
61
unit: "VA"
62
- name: servertech.sentry3.towerActivePower
63
OID: 1.3.6.1.4.1.1718.3.2.1.1.11
64
chart_meta:
65
description: Tower active power
66
- family: "Tower/Power/Active"
66
+ family: 'Tower/Power/Active'
67
unit: "W"
68
- name: servertech.sentry3.towerApparentPower
69
OID: 1.3.6.1.4.1.1718.3.2.1.1.12
70
chart_meta:
71
description: Tower apparent power
72
- family: "Tower/Power/Apparent"
72
+ family: 'Tower/Power/Apparent'
73
unit: "VA"
74
- name: servertech.sentry3.towerPowerFactor
75
OID: 1.3.6.1.4.1.1718.3.2.1.1.13
76
chart_meta:
77
description: Tower power factor
78
- family: "Tower/Power/Factor"
78
+ family: 'Tower/Power/Factor'
79
unit: "%"
80
- name: servertech.sentry3.towerEnergy
81
OID: 1.3.6.1.4.1.1718.3.2.1.1.14
82
chart_meta:
83
description: Tower energy consumption
84
- family: "Tower/Energy/Total"
84
+ family: 'Tower/Energy/Total'
85
unit: "Wh"
86
- name: servertech.sentry3.towerLineFrequency
87
OID: 1.3.6.1.4.1.1718.3.2.1.1.15
88
chart_meta:
89
description: Tower line frequency
90
- family: "Tower/Frequency/Value"
90
+ family: 'Tower/Frequency/Value'
91
unit: "Hz"
92
- name: servertech.sentry3.towerStatus
93
OID: 1.3.6.1.4.1.1718.3.2.1.1.4
94
chart_meta:
95
description: Tower operational status
96
- family: "Tower/Status"
96
+ family: 'Tower/Status'
97
unit: "{status}"
98
mapping:
99
0: normal
@@ -129,61 +129,61 @@ metrics:
129
OID: 1.3.6.1.4.1.1718.3.2.2.1.7
130
chart_meta:
131
description: Infeed load value
132
- family: "Infeed/Load/Value"
132
+ family: 'Infeed/Load/Value'
133
unit: "W"
134
- name: servertech.sentry3.infeedOutletCount
135
OID: 1.3.6.1.4.1.1718.3.2.2.1.9
136
chart_meta:
137
description: Number of outlets on infeed
138
- family: "Infeed/Outlet/Count"
138
+ family: 'Infeed/Outlet/Count'
139
unit: "{outlet}"
140
- name: servertech.sentry3.infeedCapacity
141
OID: 1.3.6.1.4.1.1718.3.2.2.1.10
142
chart_meta:
143
description: Infeed capacity
144
- family: "Infeed/Power/Capacity"
144
+ family: 'Infeed/Power/Capacity'
145
unit: "VA"
146
- name: servertech.sentry3.infeedVoltage
147
OID: 1.3.6.1.4.1.1718.3.2.2.1.11
148
chart_meta:
149
description: Infeed voltage
150
- family: "Infeed/Voltage/Value"
150
+ family: 'Infeed/Voltage/Value'
151
unit: "V"
152
- name: servertech.sentry3.infeedPower
153
OID: 1.3.6.1.4.1.1718.3.2.2.1.12
154
chart_meta:
155
description: Infeed power
156
- family: "Infeed/Power/Active"
156
+ family: 'Infeed/Power/Active'
157
unit: "W"
158
- name: servertech.sentry3.infeedEnergy
159
OID: 1.3.6.1.4.1.1718.3.2.2.1.16
160
chart_meta:
161
description: Infeed energy consumption
162
- family: "Infeed/Energy/Total"
162
+ family: 'Infeed/Energy/Total'
163
unit: "Wh"
164
- name: servertech.sentry3.infeedPhaseVoltage
165
OID: 1.3.6.1.4.1.1718.3.2.2.1.18
166
chart_meta:
167
description: Infeed phase voltage
168
- family: "Infeed/Phase/Voltage/Value"
168
+ family: 'Infeed/Phase/Voltage/Value'
169
unit: "V"
170
- name: servertech.sentry3.infeedPhaseCurrent
171
OID: 1.3.6.1.4.1.1718.3.2.2.1.19
172
chart_meta:
173
description: Infeed phase current
174
- family: "Infeed/Phase/Current/Value"
174
+ family: 'Infeed/Phase/Current/Value'
175
unit: "A"
176
- name: servertech.sentry3.infeedCapacityUsed
177
OID: 1.3.6.1.4.1.1718.3.2.2.1.20
178
chart_meta:
179
description: Used infeed capacity
180
- family: "Infeed/Power/Used"
180
+ family: 'Infeed/Power/Used'
181
unit: "VA"
182
- name: servertech.sentry3.infeedStatus
183
OID: 1.3.6.1.4.1.1718.3.2.2.1.5
184
chart_meta:
185
description: Infeed operational status
186
- family: "Infeed/Status"
186
+ family: 'Infeed/Status'
187
unit: "{status}"
188
mapping:
189
0: off
@@ -200,7 +200,7 @@ metrics:
200
OID: 1.3.6.1.4.1.1718.3.2.2.1.6
201
chart_meta:
202
description: Infeed load status
203
- family: "Infeed/Load/Status"
203
+ family: 'Infeed/Load/Status'
204
unit: "{status}"
205
mapping:
206
0: normal
@@ -215,7 +215,7 @@ metrics:
215
OID: 1.3.6.1.4.1.1718.3.2.2.1.17
216
chart_meta:
217
description: Infeed reactance type
218
- family: "Infeed/Reactance/Type"
218
+ family: 'Infeed/Reactance/Type'
219
unit: "{status}"
220
mapping:
221
0: unknown
@@ -253,7 +253,7 @@ metrics:
253
OID: 1.3.6.1.4.1.1718.3.2.3.1.5
254
chart_meta:
255
description: Outlet operational status
256
- family: "Outlet/Status"
256
+ family: 'Outlet/Status'
257
unit: "{status}"
258
mapping:
259
0: off
@@ -270,7 +270,7 @@ metrics:
270
OID: 1.3.6.1.4.1.1718.3.2.3.1.10
271
chart_meta:
272
description: Outlet control state
273
- family: "Outlet/Control/State"
273
+ family: 'Outlet/Control/State'
274
unit: "{status}"
275
mapping:
276
0: idle_off
@@ -295,7 +295,7 @@ metrics:
295
OID: 1.3.6.1.4.1.1718.3.2.3.1.19
296
chart_meta:
297
description: Outlet wakeup state configuration
298
- family: "Outlet/Wakeup/State"
298
+ family: 'Outlet/Wakeup/State'
299
unit: "{status}"
300
mapping:
301
1: last
@@ -320,7 +320,7 @@ metrics:
320
OID: 1.3.6.1.4.1.1718.3.2.4.1.4
321
chart_meta:
322
description: Environmental monitor status
323
- family: "Environment/Monitor/Status"
323
+ family: 'Environment/Monitor/Status'
324
unit: "{status}"
325
mapping:
326
0: normal
@@ -344,19 +344,19 @@ metrics:
344
OID: 1.3.6.1.4.1.1718.3.2.5.1.6
345
chart_meta:
346
description: Temperature value from sensor
347
- family: "Sensor/Temperature/Value"
347
+ family: 'Sensor/Temperature/Value'
348
unit: "Cel"
349
- name: servertech.sentry3.tempHumidSensorHumidValue
350
OID: 1.3.6.1.4.1.1718.3.2.5.1.10
351
chart_meta:
352
description: Humidity value from sensor
353
- family: "Sensor/Humidity/Value"
353
+ family: 'Sensor/Humidity/Value'
354
unit: "%"
355
- name: servertech.sentry3.tempHumidSensorStatus
356
OID: 1.3.6.1.4.1.1718.3.2.5.1.4
357
chart_meta:
358
description: Temperature/humidity sensor communication status
359
- family: "Sensor/Communication/Status"
359
+ family: 'Sensor/Communication/Status'
360
unit: "{status}"
361
mapping:
362
0: found
@@ -367,7 +367,7 @@ metrics:
367
OID: 1.3.6.1.4.1.1718.3.2.5.1.5
368
chart_meta:
369
description: Temperature sensor status
370
- family: "Sensor/Temperature/Status"
370
+ family: 'Sensor/Temperature/Status'
371
unit: "{status}"
372
mapping:
373
0: normal
@@ -382,7 +382,7 @@ metrics:
382
OID: 1.3.6.1.4.1.1718.3.2.5.1.9
383
chart_meta:
384
description: Humidity sensor status
385
- family: "Sensor/Humidity/Status"
385
+ family: 'Sensor/Humidity/Status'
386
unit: "{status}"
387
mapping:
388
0: normal
src/go/plugin/go.d/config/go.d/snmp.profiles/default/servertech-pdu4.yaml
+45
-45
@@ -20,7 +20,7 @@ metrics:
20
OID: 1.3.6.1.4.1.1718.4.1.2.3.1.1
21
chart_meta:
22
description: Unit operational status
23
- family: "Unit/Status"
23
+ family: 'Unit/Status'
24
unit: "{status}"
25
mapping:
26
0: normal
@@ -85,49 +85,49 @@ metrics:
85
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.3
86
chart_meta:
87
description: Active power of the input cord
88
- family: "InputCord/Power/Active"
88
+ family: 'InputCord/Power/Active'
89
unit: "W"
90
- name: servertech.sentry4.st4InputCordApparentPower
91
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.5
92
chart_meta:
93
description: Apparent power of the input cord
94
- family: "InputCord/Power/Apparent"
94
+ family: 'InputCord/Power/Apparent'
95
unit: "VA"
96
- name: servertech.sentry4.st4InputCordPowerUtilized
97
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.7
98
chart_meta:
99
description: Power utilized by the input cord
100
- family: "InputCord/Power/Utilized"
100
+ family: 'InputCord/Power/Utilized'
101
unit: "W"
102
- name: servertech.sentry4.st4InputCordPowerFactor
103
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.8
104
chart_meta:
105
description: Power factor of the input cord
106
- family: "InputCord/Power/Factor"
106
+ family: 'InputCord/Power/Factor'
107
unit: "10*2.1"
108
- name: servertech.sentry4.st4InputCordEnergy
109
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.10
110
chart_meta:
111
description: Energy consumed by the input cord
112
- family: "InputCord/Energy/Total"
112
+ family: 'InputCord/Energy/Total'
113
unit: "Wh"
114
- name: servertech.sentry4.st4InputCordFrequency
115
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.11
116
chart_meta:
117
description: Frequency of the input cord
118
- family: "InputCord/Frequency/Value"
118
+ family: 'InputCord/Frequency/Value'
119
unit: "Hz"
120
- name: servertech.sentry4.st4InputCordOutOfBalance
121
OID: 1.3.6.1.4.1.1718.4.1.3.3.1.12
122
chart_meta:
123
description: Out of balance measurement of the input cord
124
- family: "InputCord/Balance/Deviation"
124
+ family: 'InputCord/Balance/Deviation'
125
unit: "%"
126
- OID: 1.3.6.1.4.1.1718.4.1.3.3.1.1
127
name: servertech.sentry4.st4InputCordState
128
chart_meta:
129
description: Input cord power state
130
- family: "InputCord/Power/State"
130
+ family: 'InputCord/Power/State'
131
unit: "{status}"
132
mapping:
133
0: unknown
@@ -137,7 +137,7 @@ metrics:
137
name: servertech.sentry4.st4InputCordStatus
138
chart_meta:
139
description: Input cord operational status
140
- family: "InputCord/Status"
140
+ family: 'InputCord/Status'
141
unit: "{status}"
142
mapping:
143
0: normal
@@ -166,7 +166,7 @@ metrics:
166
name: servertech.sentry4.st4InputCordActivePowerStatus
167
chart_meta:
168
description: Input cord active power status
169
- family: "InputCord/Power/Active/Status"
169
+ family: 'InputCord/Power/Active/Status'
170
unit: "{status}"
171
mapping:
172
0: normal
@@ -195,7 +195,7 @@ metrics:
195
name: servertech.sentry4.st4InputCordApparentPowerStatus
196
chart_meta:
197
description: Input cord apparent power status
198
- family: "InputCord/Power/Apparent/Status"
198
+ family: 'InputCord/Power/Apparent/Status'
199
unit: "{status}"
200
mapping:
201
0: normal
@@ -224,7 +224,7 @@ metrics:
224
name: servertech.sentry4.st4InputCordPowerFactorStatus
225
chart_meta:
226
description: Input cord power factor status
227
- family: "InputCord/Power/Factor/Status"
227
+ family: 'InputCord/Power/Factor/Status'
228
unit: "{status}"
229
mapping:
230
0: normal
@@ -253,7 +253,7 @@ metrics:
253
name: servertech.sentry4.st4InputCordOutOfBalanceStatus
254
chart_meta:
255
description: Input cord out of balance status
256
- family: "InputCord/Balance/Deviation/Status"
256
+ family: 'InputCord/Balance/Deviation/Status'
257
unit: "{status}"
258
mapping:
259
0: normal
@@ -301,19 +301,19 @@ metrics:
301
OID: 1.3.6.1.4.1.1718.4.1.4.3.1.3
302
chart_meta:
303
description: Current of the line
304
- family: "Line/Current/Value"
304
+ family: 'Line/Current/Value'
305
unit: "A"
306
- name: servertech.sentry4.st4LineCurrentUtilized
307
OID: 1.3.6.1.4.1.1718.4.1.4.3.1.5
308
chart_meta:
309
description: Utilized current of the line
310
- family: "Line/Current/Utilized"
310
+ family: 'Line/Current/Utilized'
311
unit: "A"
312
- OID: 1.3.6.1.4.1.1718.4.1.4.3.1.1
313
name: servertech.sentry4.st4LineState
314
chart_meta:
315
description: Line power state
316
- family: "Line/Power/State"
316
+ family: 'Line/Power/State'
317
unit: "{status}"
318
mapping:
319
0: unknown
@@ -323,7 +323,7 @@ metrics:
323
name: servertech.sentry4.st4LineStatus
324
chart_meta:
325
description: Line operational status
326
- family: "Line/Status"
326
+ family: 'Line/Status'
327
unit: "{status}"
328
mapping:
329
0: normal
@@ -352,7 +352,7 @@ metrics:
352
name: servertech.sentry4.st4LineCurrentStatus
353
chart_meta:
354
description: Line current status
355
- family: "Line/Current/Status"
355
+ family: 'Line/Current/Status'
356
unit: "{status}"
357
mapping:
358
0: normal
@@ -396,55 +396,55 @@ metrics:
396
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.3
397
chart_meta:
398
description: Voltage of the phase
399
- family: "Phase/Voltage/Value"
399
+ family: 'Phase/Voltage/Value'
400
unit: "V"
401
- name: servertech.sentry4.st4PhaseVoltageDeviation
402
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.5
403
chart_meta:
404
description: Voltage deviation of the phase
405
- family: "Phase/Voltage/Deviation"
405
+ family: 'Phase/Voltage/Deviation'
406
unit: "V"
407
- name: servertech.sentry4.st4PhaseCurrent
408
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.6
409
chart_meta:
410
description: Current of the phase
411
- family: "Phase/Current/Value"
411
+ family: 'Phase/Current/Value'
412
unit: "A"
413
- name: servertech.sentry4.st4PhaseCurrentCrestFactor
414
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.7
415
chart_meta:
416
description: Current crest factor of the phase
417
- family: "Phase/Current/CrestFactor"
417
+ family: 'Phase/Current/CrestFactor'
418
unit: "1"
419
- name: servertech.sentry4.st4PhaseActivePower
420
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.8
421
chart_meta:
422
description: Active power of the phase
423
- family: "Phase/Power/Active"
423
+ family: 'Phase/Power/Active'
424
unit: "W"
425
- name: servertech.sentry4.st4PhaseApparentPower
426
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.9
427
chart_meta:
428
description: Apparent power of the phase
429
- family: "Phase/Power/Apparent"
429
+ family: 'Phase/Power/Apparent'
430
unit: "VA"
431
- name: servertech.sentry4.st4PhasePowerFactor
432
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.10
433
chart_meta:
434
description: Power factor of the phase
435
- family: "Phase/Power/Factor"
435
+ family: 'Phase/Power/Factor'
436
unit: "1"
437
- name: servertech.sentry4.st4PhaseEnergy
438
OID: 1.3.6.1.4.1.1718.4.1.5.3.1.13
439
chart_meta:
440
description: Energy consumed by the phase
441
- family: "Phase/Energy/Total"
441
+ family: 'Phase/Energy/Total'
442
unit: "Wh"
443
- OID: 1.3.6.1.4.1.1718.4.1.5.3.1.1
444
name: servertech.sentry4.st4PhaseState
445
chart_meta:
446
description: Phase power state
447
- family: "Phase/Power/State"
447
+ family: 'Phase/Power/State'
448
unit: "{status}"
449
mapping:
450
0: unknown
@@ -454,7 +454,7 @@ metrics:
454
name: sservertech.sentry4.st4PhaseStatus
455
chart_meta:
456
description: Phase operational status
457
- family: "Phase/Status"
457
+ family: 'Phase/Status'
458
unit: "{status}"
459
mapping:
460
0: normal
@@ -483,7 +483,7 @@ metrics:
483
name: servertech.sentry4.st4PhaseVoltageStatus
484
chart_meta:
485
description: Phase voltage status
486
- family: "Phase/Voltage/Status"
486
+ family: 'Phase/Voltage/Status'
487
unit: "{status}"
488
mapping:
489
0: normal
@@ -512,7 +512,7 @@ metrics:
512
name: servertech.sentry4.st4PhasePowerFactorStatus
513
chart_meta:
514
description: Phase power factor status
515
- family: "Phase/Power/Factor/Status"
515
+ family: 'Phase/Power/Factor/Status'
516
unit: "{status}"
517
mapping:
518
0: normal
@@ -541,7 +541,7 @@ metrics:
541
name: servertech.sentry4.st4PhaseReactance
542
chart_meta:
543
description: Phase reactance type
544
- family: "Phase/Reactance/Type"
544
+ family: 'Phase/Reactance/Type'
545
unit: "{status}"
546
mapping:
547
0: unknown
@@ -571,7 +571,7 @@ metrics:
571
name: servertech.sentry4.st4OcpStatus
572
chart_meta:
573
description: Overcurrent protection device status
574
- family: "OCP/Status"
574
+ family: 'OCP/Status'
575
unit: "{status}"
576
mapping:
577
0: normal
@@ -622,19 +622,19 @@ metrics:
622
OID: 1.3.6.1.4.1.1718.4.1.7.3.1.3
623
chart_meta:
624
description: Current of the branch
625
- family: "Branch/Current/Value"
625
+ family: 'Branch/Current/Value'
626
unit: "A"
627
- name: servertech.sentry4.st4BranchCurrentUtilized
628
OID: 1.3.6.1.4.1.1718.4.1.7.3.1.5
629
chart_meta:
630
description: Utilized current of the branch
631
- family: "Branch/Current/Utilized"
631
+ family: 'Branch/Current/Utilized'
632
unit: "A"
633
- OID: 1.3.6.1.4.1.1718.4.1.7.3.1.1
634
name: servertech.sentry4.st4BranchState
635
chart_meta:
636
description: Branch power state
637
- family: "Branch/Power/State"
637
+ family: 'Branch/Power/State'
638
unit: "{status}"
639
mapping:
640
0: unknown
@@ -644,7 +644,7 @@ metrics:
644
name: servertech.sentry4.st4BranchStatus
645
chart_meta:
646
description: Branch operational status
647
- family: "Branch/Status"
647
+ family: 'Branch/Status'
648
unit: "{status}"
649
mapping:
650
0: normal
@@ -673,7 +673,7 @@ metrics:
673
name: servertech.sentry4.st4BranchCurrentStatus
674
chart_meta:
675
description: Branch current status
676
- family: "Branch/Current/Status"
676
+ family: 'Branch/Current/Status'
677
unit: "{status}"
678
mapping:
679
0: normal
@@ -725,7 +725,7 @@ metrics:
725
name: servertech.sentry4.st4OutletWakeupState
726
chart_meta:
727
description: Outlet wakeup state configuration
728
- family: "Outlet/Wakeup/State"
728
+ family: 'Outlet/Wakeup/State'
729
unit: "{status}"
730
mapping:
731
0: on
@@ -735,7 +735,7 @@ metrics:
735
name: servertech.sentry4.st4OutletState
736
chart_meta:
737
description: Outlet power state
738
- family: "Outlet/Power/State"
738
+ family: 'Outlet/Power/State'
739
unit: "{status}"
740
mapping:
741
0: unknown
@@ -745,7 +745,7 @@ metrics:
745
name: servertech.sentry4.st4OutletStatus
746
chart_meta:
747
description: Outlet operational status
748
- family: "Outlet/Status"
748
+ family: 'Outlet/Status'
749
unit: "{status}"
750
mapping:
751
0: normal
@@ -805,13 +805,13 @@ metrics:
805
OID: 1.3.6.1.4.1.1718.4.1.9.3.1.1
806
chart_meta:
807
description: Temperature sensor value
808
- family: "Sensor/Temperature/Value"
808
+ family: 'Sensor/Temperature/Value'
809
unit: "Cel"
810
- OID: 1.3.6.1.4.1.1718.4.1.9.3.1.2
811
name: servertech.sentry4.st4TempSensorStatus
812
chart_meta:
813
description: Temperature sensor status
814
- family: "Sensor/Temperature/Status"
814
+ family: 'Sensor/Temperature/Status'
815
unit: "{status}"
816
mapping:
817
0: normal
@@ -855,13 +855,13 @@ metrics:
855
OID: 1.3.6.1.4.1.1718.4.1.10.3.1.1
856
chart_meta:
857
description: Humidity sensor value
858
- family: "Sensor/Humidity/Value"
858
+ family: 'Sensor/Humidity/Value'
859
unit: "%"
860
- OID: 1.3.6.1.4.1.1718.4.1.10.3.1.2
861
name: servertech.sentry4.st4HumidSensorStatus
862
chart_meta:
863
description: Humidity sensor status
864
- family: "Sensor/Humidity/Status"
864
+ family: 'Sensor/Humidity/Status'
865
unit: "{status}"
866
mapping:
867
0: normal
src/go/plugin/go.d/config/go.d/snmp.profiles/default/silverpeak-edgeconnect.yaml
+6
-6
@@ -34,7 +34,7 @@ metrics:
34
name: silverpeak.mgmt.spsActiveAlarmCount
35
chart_meta:
36
description: The number of active alarm entries in the alarm table
37
- family: "Alarm/Active/Count"
37
+ family: 'Alarm/Active/Count'
38
unit: "{alarm}"
39
40
- MIB: SILVERPEAK-MGMT-MIB
@@ -46,7 +46,7 @@ metrics:
46
name: silverpeak.mgmt.spsActiveAlarmSeverity
47
chart_meta:
48
description: Severity level of the active alarm
49
- family: "Alarm/Severity/Level"
49
+ family: 'Alarm/Severity/Level'
50
unit: "{status}"
51
mapping:
52
0: info
@@ -62,7 +62,7 @@ metrics:
62
name: silverpeak.mgmt.spsActiveAlarmAcked
63
chart_meta:
64
description: Acknowledgement status of the active alarm
65
- family: "Alarm/Acknowledgement/Status"
65
+ family: 'Alarm/Acknowledgement/Status'
66
unit: "{status}"
67
mapping:
68
0: no
@@ -71,7 +71,7 @@ metrics:
71
name: silverpeak.mgmt.spsActiveAlarmActive
72
chart_meta:
73
description: Active status of the alarm
74
- family: "Alarm/Active/Status"
74
+ family: 'Alarm/Active/Status'
75
unit: "{status}"
76
mapping:
77
0: no
@@ -80,7 +80,7 @@ metrics:
80
name: silverpeak.mgmt.spsActiveAlarmClearable
81
chart_meta:
82
description: Whether the alarm can be manually cleared
83
- family: "Alarm/Clearable"
83
+ family: 'Alarm/Clearable'
84
unit: "{status}"
85
mapping:
86
0: no
@@ -89,7 +89,7 @@ metrics:
89
name: silverpeak.mgmt.spsActiveAlarmServiceAffect
90
chart_meta:
91
description: Whether the alarm affects service
92
- family: "Alarm/ServiceImpact"
92
+ family: 'Alarm/ServiceImpact'
93
unit: "{status}"
94
mapping:
95
0: no
src/go/plugin/go.d/config/go.d/snmp.profiles/default/sinetica-eagle-i.yaml
+9
-9
@@ -39,7 +39,7 @@ metrics:
39
OID: 1.3.6.1.4.1.3711.24.1.1.1.2.2.1.7
40
chart_meta:
41
description: The current reading in the relevant measurement units
42
- family: "Sensor/Analog/Value"
42
+ family: 'Sensor/Analog/Value'
43
unit: 1
44
metric_tags:
45
- symbol:
@@ -60,7 +60,7 @@ metrics:
60
name: hawk.i2.ipContNormState
61
chart_meta:
62
description: Normal state of the input contact
63
- family: "Input/Contact/Normal/State"
63
+ family: 'Input/Contact/Normal/State'
64
unit: "{status}"
65
mapping:
66
1: open
@@ -69,7 +69,7 @@ metrics:
69
name: hawk.i2.ipContCurrState
70
chart_meta:
71
description: Current state of the input contact
72
- family: "Input/Contact/Current/State"
72
+ family: 'Input/Contact/Current/State'
73
unit: "{status}"
74
mapping:
75
1: open
@@ -95,7 +95,7 @@ metrics:
95
name: hawk.i2.opNormState
96
chart_meta:
97
description: Normal state of the output
98
- family: "Output/Normal/State"
98
+ family: 'Output/Normal/State'
99
unit: "{status}"
100
mapping:
101
1: on
@@ -104,7 +104,7 @@ metrics:
104
name: hawk.i2.opCurrState
105
chart_meta:
106
description: Current state of the output
107
- family: "Output/Current/State"
107
+ family: 'Output/Current/State'
108
unit: "{status}"
109
mapping:
110
1: on
@@ -113,7 +113,7 @@ metrics:
113
name: hawk.i2.opControlState
114
chart_meta:
115
description: Control state of the output
116
- family: "Output/Control/State"
116
+ family: 'Output/Control/State'
117
unit: "{status}"
118
mapping:
119
1: activate
@@ -138,20 +138,20 @@ metrics:
138
OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.3
139
chart_meta:
140
description: RMS Volts value in volts
141
- family: "PDU/Voltage/Value"
141
+ family: 'PDU/Voltage/Value'
142
unit: "V"
143
- name: hawk.i2.pduRMSAmpsValue
144
OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.4
145
scale_factor: 0.1
146
chart_meta:
147
description: RMS current value in amperes
148
- family: "PDU/Current/Value"
148
+ family: 'PDU/Current/Value'
149
unit: "A"
150
- name: hawk.i2.pduTotalEnergyValue
151
OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.5
152
chart_meta:
153
description: Total energy value in 0.1 kWh
154
- family: "PDU/Energy/Total"
154
+ family: 'PDU/Energy/Total'
155
unit: "hW.h"
156
metric_tags:
157
- tag: hawk_i2_pdu_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/sophos-xgs-firewall.yaml
+13
-13
@@ -32,7 +32,7 @@ metrics:
32
OID: 1.3.6.1.4.1.2604.5.1.2.5.2.0
33
chart_meta:
34
description: "Percentage usage of main memory"
35
- family: "Memory/Usage"
35
+ family: 'Memory/Usage'
36
unit: "%"
37
- MIB: SFOS-FIREWALL-MIB
38
symbol:
@@ -41,7 +41,7 @@ metrics:
41
scale_factor: 1048576
42
chart_meta:
43
description: "Memory capacity in MB"
44
- family: "Memory/Total"
44
+ family: 'Memory/Total'
45
unit: "By"
46
- MIB: SFOS-FIREWALL-MIB
47
symbol:
@@ -50,7 +50,7 @@ metrics:
50
scale_factor: 1048576
51
chart_meta:
52
description: "Disk capacity in MB"
53
- family: "Disk/Total"
53
+ family: 'Disk/Total'
54
unit: "By"
55
- MIB: SFOS-FIREWALL-MIB
56
symbol:
@@ -58,7 +58,7 @@ metrics:
58
OID: 1.3.6.1.4.1.2604.5.1.2.4.2.0
59
chart_meta:
60
description: "% Disk usage"
61
- family: "Disk/Usage"
61
+ family: 'Disk/Usage'
62
unit: "%"
63
- MIB: SFOS-FIREWALL-MIB
64
symbol:
@@ -66,7 +66,7 @@ metrics:
66
OID: 1.3.6.1.4.1.2604.5.1.2.5.3.0
67
chart_meta:
68
description: "Swap Capacity in MB"
69
- family: "Memory/Swap/Total"
69
+ family: 'Memory/Swap/Total'
70
unit: "MBy"
71
- MIB: SFOS-FIREWALL-MIB
72
symbol:
@@ -74,7 +74,7 @@ metrics:
74
OID: 1.3.6.1.4.1.2604.5.1.2.5.4.0
75
chart_meta:
76
description: "% usage of swap"
77
- family: "Memory/Swap/Usage"
77
+ family: 'Memory/Swap/Usage'
78
unit: "%"
79
- MIB: SFOS-FIREWALL-MIB
80
symbol:
@@ -82,7 +82,7 @@ metrics:
82
OID: 1.3.6.1.4.1.2604.5.1.2.6.0
83
chart_meta:
84
description: "Display live user count login into captive portal"
85
- family: "User/Portal/Active"
85
+ family: 'User/Portal/Active'
86
unit: "{session}"
87
- MIB: SFOS-FIREWALL-MIB
88
symbol:
@@ -90,7 +90,7 @@ metrics:
90
OID: 1.3.6.1.4.1.2604.5.1.2.7.0
91
chart_meta:
92
description: "Number of HTTP hits"
93
- family: "Protocol/HTTP/Request/Total"
93
+ family: 'Protocol/HTTP/Request/Total'
94
unit: "{request}/s"
95
- MIB: SFOS-FIREWALL-MIB
96
symbol:
@@ -98,7 +98,7 @@ metrics:
98
OID: 1.3.6.1.4.1.2604.5.1.2.8.0
99
chart_meta:
100
description: "Number of FTP hits"
101
- family: "Protocol/FTP/Request/Total"
101
+ family: 'Protocol/FTP/Request/Total'
102
unit: "{request}/s"
103
- MIB: SFOS-FIREWALL-MIB
104
symbol:
@@ -106,7 +106,7 @@ metrics:
106
OID: 1.3.6.1.4.1.2604.5.1.2.9.1.0
107
chart_meta:
108
description: "Number of POP3 hits"
109
- family: "Protocol/POP3/Request/Total"
109
+ family: 'Protocol/POP3/Request/Total'
110
unit: "{request}/s"
111
- MIB: SFOS-FIREWALL-MIB
112
symbol:
@@ -114,7 +114,7 @@ metrics:
114
OID: 1.3.6.1.4.1.2604.5.1.2.9.2.0
115
chart_meta:
116
description: "Number of IMAP hits"
117
- family: "Protocol/IMAP/Request/Total"
117
+ family: 'Protocol/IMAP/Request/Total'
118
unit: "{request}/s"
119
- MIB: SFOS-FIREWALL-MIB
120
symbol:
@@ -122,7 +122,7 @@ metrics:
122
OID: 1.3.6.1.4.1.2604.5.1.2.9.3.0
123
chart_meta:
124
description: "Number of SMTP hits"
125
- family: "Protocol/SMTP/Request/Total"
125
+ family: 'Protocol/SMTP/Request/Total'
126
unit: "{request}/s"
127
- MIB: SFOS-FIREWALL-MIB
128
table:
@@ -133,7 +133,7 @@ metrics:
133
OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8
134
chart_meta:
135
description: "Count of active tunnel"
136
- family: "IPSec/Tunnel/Active"
136
+ family: 'IPSec/Tunnel/Active'
137
unit: "{tunnel}"
138
metric_tags:
139
- tag: sfos_ip_sec_vpn_conn_name
src/go/plugin/go.d/config/go.d/snmp.profiles/default/synology-disk-station.yaml
+31
-31
@@ -30,7 +30,7 @@ metrics:
30
OID: 1.3.6.1.4.1.2021.10.1.5.1
31
chart_meta:
32
description: The 1,5 and 15 minute load averages as an integer
33
- family: "CPU/Load"
33
+ family: 'CPU/Load'
34
unit: "{load_average}"
35
- MIB: HOST-RESOURCES-MIB
36
symbol:
@@ -38,7 +38,7 @@ metrics:
38
OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 = Physical memory
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"
41
+ family: 'Memory/Used'
42
unit: "By"
43
- MIB: HOST-RESOURCES-MIB
44
symbol:
@@ -46,7 +46,7 @@ metrics:
46
name: hrMemoryBuffers
47
chart_meta:
48
description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
49
- family: "Memory/Buffer"
49
+ family: 'Memory/Buffer'
50
unit: "By"
51
- MIB: HOST-RESOURCES-MIB
52
symbol:
@@ -54,7 +54,7 @@ metrics:
54
name: hrCachedMemory
55
chart_meta:
56
description: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits
57
- family: "Memory/Cache"
57
+ family: 'Memory/Cache'
58
unit: "By"
59
- MIB: SYNOLOGY-SYSTEM-MIB
60
symbol:
@@ -62,7 +62,7 @@ metrics:
62
OID: 1.3.6.1.4.1.6574.1.1.0
63
chart_meta:
64
description: System status
65
- family: "System/Status"
65
+ family: 'System/Status'
66
unit: "{status}"
67
mapping:
68
normal: 1
@@ -73,7 +73,7 @@ metrics:
73
OID: 1.3.6.1.4.1.6574.1.2.0
74
chart_meta:
75
description: The temperature of Disk Station uses Celsius degree
76
- family: "System/Temperature/Value"
76
+ family: 'System/Temperature/Value'
77
unit: "Cel"
78
- MIB: SYNOLOGY-SYSTEM-MIB
79
symbol:
@@ -81,7 +81,7 @@ metrics:
81
OID: 1.3.6.1.4.1.6574.1.3.0
82
chart_meta:
83
description: Power status
84
- family: "Power/Status"
84
+ family: 'Power/Status'
85
unit: "{status}"
86
mapping:
87
normal: 1
@@ -93,7 +93,7 @@ metrics:
93
OID: 1.3.6.1.4.1.6574.1.4.1.0
94
chart_meta:
95
description: Fan status
96
- family: "Fan/System/Status"
96
+ family: 'Fan/System/Status'
97
unit: "{status}"
98
mapping:
99
normal: 1
@@ -105,7 +105,7 @@ metrics:
105
OID: 1.3.6.1.4.1.6574.1.4.2.0
106
chart_meta:
107
description: CPU fan status
108
- family: "Fan/CPU/Status"
108
+ family: 'Fan/CPU/Status'
109
unit: "{status}"
110
mapping:
111
normal: 1
@@ -117,7 +117,7 @@ metrics:
117
OID: 1.3.6.1.4.1.6574.1.5.4.0
118
chart_meta:
119
description: System upgrade availability
120
- family: "System/Upgrade/Status"
120
+ family: 'System/Upgrade/Status'
121
unit: "{status}"
122
mapping:
123
available: 1
@@ -135,13 +135,13 @@ metrics:
135
OID: 1.3.6.1.4.1.6574.2.1.1.6
136
chart_meta:
137
description: The temperature of each disk uses Celsius degree
138
- family: "Disk/Temperature/Value"
138
+ family: 'Disk/Temperature/Value'
139
unit: "Cel"
140
- OID: 1.3.6.1.4.1.6574.2.1.1.5
141
name: synology.diskStatus
142
chart_meta:
143
description: Disk status
144
- family: "Disk/Status"
144
+ family: 'Disk/Status'
145
unit: "{status}"
146
mapping:
147
1: normal
@@ -173,20 +173,20 @@ metrics:
173
metric_type: monotonic_count
174
chart_meta:
175
description: The free size of raid
176
- family: "Storage/RAID/Free"
176
+ family: 'Storage/RAID/Free'
177
unit: "By"
178
- name: synology.raidTotalSize
179
OID: 1.3.6.1.4.1.6574.3.1.1.5
180
metric_type: monotonic_count
181
chart_meta:
182
description: The total size of raid
183
- family: "Storage/RAID/Total"
183
+ family: 'Storage/RAID/Total'
184
unit: "By"
185
- OID: 1.3.6.1.4.1.6574.3.1.1.3
186
name: synology.raid.raidStatus
187
chart_meta:
188
description: Raid status
189
- family: "Storage/RAID/Status"
189
+ family: 'Storage/RAID/Status'
190
unit: "{status}"
191
mapping:
192
1: normal
@@ -226,13 +226,13 @@ metrics:
226
OID: 1.3.6.1.4.1.6574.5.1.1.5
227
chart_meta:
228
description: SMART attribute current value
229
- family: "Disk/SMART/Current"
229
+ family: 'Disk/SMART/Current'
230
unit: "1"
231
- name: synology.diskSMARTAttrThreshold
232
OID: 1.3.6.1.4.1.6574.5.1.1.7
233
chart_meta:
234
description: SMART attribute threshold value
235
- family: "Disk/SMART/Threshold"
235
+ family: 'Disk/SMART/Threshold'
236
unit: "1"
237
metric_tags:
238
- tag: synology_disk_smart_info_dev_name
@@ -262,7 +262,7 @@ metrics:
262
OID: 1.3.6.1.4.1.6574.6.1.1.3
263
chart_meta:
264
description: Number of users using this service
265
- family: "Service/User/Active"
265
+ family: 'Service/User/Active'
266
unit: "{user}"
267
metric_tags:
268
- tag: synology_service_name
@@ -279,31 +279,31 @@ metrics:
279
OID: 1.3.6.1.4.1.6574.101.1.1.5
280
chart_meta:
281
description: The number of read accesses from this device since boot
282
- family: "Storage/IO/Operations/Read"
282
+ family: 'Storage/IO/Operations/Read'
283
unit: "{access}/s"
284
- name: synology.storageIOWrites
285
OID: 1.3.6.1.4.1.6574.101.1.1.6
286
chart_meta:
287
description: The number of write accesses to this device since boot
288
- family: "Storage/IO/Operations/Write"
288
+ family: 'Storage/IO/Operations/Write'
289
unit: "{access}/s"
290
- name: synology.storageIOLA
291
OID: 1.3.6.1.4.1.6574.101.1.1.8
292
chart_meta:
293
description: The load of disk (%)
294
- family: "Storage/IO/Load"
294
+ family: 'Storage/IO/Load'
295
unit: "%"
296
- name: synology.storageIONReadX
297
OID: 1.3.6.1.4.1.6574.101.1.1.12
298
chart_meta:
299
description: The number of bytes read from this device since boot
300
- family: "Storage/IO/Throughput/Read"
300
+ family: 'Storage/IO/Throughput/Read'
301
unit: "By/s"
302
- name: synology.storageIONWrittenX
303
OID: 1.3.6.1.4.1.6574.101.1.1.13
304
chart_meta:
305
description: The number of bytes written to this device since boot
306
- family: "Storage/IO/Throughput/Write"
306
+ family: 'Storage/IO/Throughput/Write'
307
unit: "By/s"
308
metric_tags:
309
- tag: synology_storage_io_device
@@ -320,31 +320,31 @@ metrics:
320
OID: 1.3.6.1.4.1.6574.102.1.1.5
321
chart_meta:
322
description: The number of read accesses from this device since boot
323
- family: "Volume/IO/Operations/Read"
323
+ family: 'Volume/IO/Operations/Read'
324
unit: "{access}/s"
325
- name: synology.spaceIOWrites
326
OID: 1.3.6.1.4.1.6574.102.1.1.6
327
chart_meta:
328
description: The number of write accesses to this device since boot
329
- family: "Volume/IO/Operations/Write"
329
+ family: 'Volume/IO/Operations/Write'
330
unit: "{access}/s"
331
- name: synology.spaceIOLA
332
OID: 1.3.6.1.4.1.6574.102.1.1.8
333
chart_meta:
334
description: The load of disk (%)
335
- family: "Volume/IO/Load"
335
+ family: 'Volume/IO/Load'
336
unit: "%"
337
- name: synology.spaceIONReadX
338
OID: 1.3.6.1.4.1.6574.102.1.1.12
339
chart_meta:
340
description: The number of bytes read from this device since boot
341
- family: "Volume/IO/Throughput/Read"
341
+ family: 'Volume/IO/Throughput/Read'
342
unit: "By/s"
343
- name: synology.spaceIONWrittenX
344
OID: 1.3.6.1.4.1.6574.102.1.1.13
345
chart_meta:
346
description: The number of bytes written to this device since boot
347
- family: "Volume/IO/Throughput/Write"
347
+ family: 'Volume/IO/Throughput/Write'
348
unit: "By/s"
349
metric_tags:
350
- tag: synology_space_io_device
@@ -358,7 +358,7 @@ metrics:
358
OID: 1.3.6.1.4.1.6574.108.1.0
359
chart_meta:
360
description: GPU info support status
361
- family: "GPU/Support/Status"
361
+ family: 'GPU/Support/Status'
362
unit: "{status}"
363
mapping:
364
supported: 0
@@ -369,7 +369,7 @@ metrics:
369
OID: 1.3.6.1.4.1.6574.108.2.0
370
chart_meta:
371
description: GPU utilization percentage
372
- family: "GPU/Usage"
372
+ family: 'GPU/Usage'
373
unit: "%"
374
- MIB: SYNOLOGY-GPUINFO-MIB
375
symbol:
@@ -377,5 +377,5 @@ metrics:
377
OID: 1.3.6.1.4.1.6574.108.3.0
378
chart_meta:
379
description: GPU memory utilization percentage
380
- family: "GPU/Memory/Usage"
380
+ family: 'GPU/Memory/Usage'
381
unit: "%"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/tp-link.yaml
+2
-2
@@ -22,7 +22,7 @@ metrics:
22
OID: 1.3.6.1.4.1.11863.6.4.1.1.1.1.3
23
chart_meta:
24
description: CPU utilization in 1 minute
25
- family: CPU/Usage
25
+ family: 'CPU/Usage'
26
unit: "%"
27
metric_tags:
28
- tag: cpu_index
@@ -37,7 +37,7 @@ metrics:
37
OID: 1.3.6.1.4.1.11863.6.4.1.2.1.1.2
38
chart_meta:
39
description: Memory utilization
40
- family: Memory/Usage
40
+ family: 'Memory/Usage'
41
unit: "%"
42
metric_tags:
43
- tag: mem_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/tripplite-pdu.yaml
+18
-18
@@ -21,7 +21,7 @@ metrics:
21
name: tlpDeviceStatus
22
chart_meta:
23
description: The currently most critical alarm status for the device
24
- family: Device/Alarm/Status
24
+ family: 'Device/Alarm/Status'
25
unit: "{status}"
26
mapping:
27
0: none
@@ -65,31 +65,31 @@ metrics:
65
name: tlpPduDeviceTemperatureC
66
chart_meta:
67
description: The ambient temperature at or near the PDU casing.
68
- family: Environment/Temperature/Value
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
72
chart_meta:
73
description: The ambient temperature at or near the PDU casing.
74
- family: Environment/Temperature/Value
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
78
chart_meta:
79
description: The percentage of imbalance of the three phases.
80
- family: Phase/Imbalance/Value
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
84
chart_meta:
85
description: The AC output total power for all circuits.
86
- family: Output/Power/Total
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
90
chart_meta:
91
description: The current state of the main output of the device
92
- family: Output/Main/Status
92
+ family: 'Output/Main/Status'
93
unit: "{status}"
94
mapping:
95
0: unknown
@@ -116,25 +116,25 @@ metrics:
116
name: tlpPduOutputVoltage
117
chart_meta:
118
description: The magnitude of the present output voltage for a given output line.
119
- family: Output/Phase/Voltage/Value
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
123
chart_meta:
124
description: The output current, in hundreths of amps, for a given phase.
125
- family: Output/Phase/Current/Value
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
129
chart_meta:
130
description: The present source of output power.
131
- family: Output/Source/Status
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
135
chart_meta:
136
description: The present output frequency.
137
- family: Output/Frequency/Value
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:
@@ -167,25 +167,25 @@ metrics:
167
name: tlpPduOutletState
168
chart_meta:
169
description: The current state of the outlet.
170
- family: Outlet/Operational/Status
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
174
chart_meta:
175
description: The magnitude of the present output voltage for a given outlet.
176
- family: Outlet/Voltage/Value
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
180
chart_meta:
181
description: The present output current, in hundreths of amps, of a given outlet.
182
- family: Outlet/Current/Value
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
186
chart_meta:
187
description: The output power of a given outlet.
188
- family: Outlet/Power/Active
188
+ family: 'Outlet/Power/Active'
189
unit: "W"
190
metric_tags:
191
- tag: tlp_pdu_outlet_name
@@ -206,7 +206,7 @@ metrics:
206
name: tlpPduBreakerStatus
207
chart_meta:
208
description: The current state of the bank breaker
209
- family: Breaker/Status
209
+ family: 'Breaker/Status'
210
unit: "{status}"
211
mapping:
212
0: open
@@ -232,7 +232,7 @@ metrics:
232
name: tlpAlarmsPresent
233
chart_meta:
234
description: The present number of active alarm conditions.
235
- family: Alarm/Active/Count
235
+ family: 'Alarm/Active/Count'
236
unit: "{alarm}"
237
238
- MIB: TRIPPLITE-PRODUCTS
@@ -244,7 +244,7 @@ metrics:
244
name: tlpAlarmState
245
chart_meta:
246
description: The current state of this alarm condition
247
- family: Alarm/Condition/Status
247
+ family: 'Alarm/Condition/Status'
248
unit: "{status}"
249
mapping:
250
1: active
@@ -253,7 +253,7 @@ metrics:
253
name: tlpAlarmAcknowledged
254
chart_meta:
255
description: Denotes whether the alarm condition has been acknowledged
256
- family: Alarm/Condition/Acknowledgment/Status
256
+ family: 'Alarm/Condition/Acknowledgment/Status'
257
unit: "{status}"
258
mapping:
259
1: not_acknowledged
src/go/plugin/go.d/config/go.d/snmp.profiles/default/tripplite-ups.yaml
+17
-17
@@ -33,7 +33,7 @@ metrics:
33
name: tlUpsMainOutletState
34
chart_meta:
35
description: The current state of the main output of the device
36
- family: Outlet/Main/Status
36
+ family: 'Outlet/Main/Status'
37
unit: "{status}"
38
mapping:
39
unknown: 0
@@ -46,7 +46,7 @@ metrics:
46
name: tlUpsTemperature
47
chart_meta:
48
description: The ambient temperature
49
- family: Environment/Temperature/Value
49
+ family: 'Environment/Temperature/Value'
50
unit: "Cel"
51
- MIB: TRIPPLITE-12X
52
symbol:
@@ -54,7 +54,7 @@ metrics:
54
name: tlUpsBatteryAge # The age of the battery in years.
55
chart_meta:
56
description: The age of the battery in years
57
- family: Battery/Age/Internal
57
+ family: 'Battery/Age/Internal'
58
unit: "{year}"
59
- MIB: TRIPPLITE-12X
60
symbol:
@@ -62,7 +62,7 @@ metrics:
62
name: tlUpsTemperatureF
63
chart_meta:
64
description: The ambient temperature (F)
65
- family: Environment/Temperature/Value
65
+ family: 'Environment/Temperature/Value'
66
unit: "degF"
67
- MIB: TRIPPLITE-12X
68
symbol:
@@ -70,7 +70,7 @@ metrics:
70
name: tlUpsExternalBatteryAge # The age of the battery in years.
71
chart_meta:
72
description: The age of external battery in years
73
- family: Battery/Age/External
73
+ family: 'Battery/Age/External'
74
unit: "{year}"
75
- MIB: TRIPPLITE-12X
76
symbol:
@@ -78,7 +78,7 @@ metrics:
78
name: tlUpsAlarmsPresent
79
chart_meta:
80
description: The present number of active alarm conditions
81
- family: Alarm/Active/Count
81
+ family: 'Alarm/Active/Count'
82
unit: "{alarm}"
83
# - MIB: TRIPPLITE-12X
84
# symbol:
@@ -96,7 +96,7 @@ metrics:
96
name: tlEnvTemperatureC
97
chart_meta:
98
description: The ambient temperature (C)
99
- family: Environment/Temperature/Value
99
+ family: 'Environment/Temperature/Value'
100
unit: "Cel"
101
- MIB: TRIPPLITE-12X
102
symbol:
@@ -104,7 +104,7 @@ metrics:
104
name: tlEnvTemperatureF
105
chart_meta:
106
description: The ambient temperature (F)
107
- family: Environment/Temperature/Value
107
+ family: 'Environment/Temperature/Value'
108
unit: "degF"
109
- MIB: TRIPPLITE-12X
110
symbol:
@@ -112,7 +112,7 @@ metrics:
112
name: tlEnvTemperatureInAlarm
113
chart_meta:
114
description: Indicates whether or not temperature is in alarm
115
- family: Environment/Temperature/Alarm/Status
115
+ family: 'Environment/Temperature/Alarm/Status'
116
unit: "{status}"
117
mapping:
118
true: 1
@@ -123,7 +123,7 @@ metrics:
123
name: tlEnvHumidity
124
chart_meta:
125
description: The ambient humidity (%)
126
- family: Environment/Humidity/Value
126
+ family: 'Environment/Humidity/Value'
127
unit: "%"
128
- MIB: TRIPPLITE-12X
129
symbol:
@@ -131,7 +131,7 @@ metrics:
131
name: tlEnvHumidityInAlarm
132
chart_meta:
133
description: Indicates whether or not humidity is in alarm
134
- family: Environment/Humidity/Alarm/Status
134
+ family: 'Environment/Humidity/Alarm/Status'
135
unit: "{status}"
136
mapping:
137
true: 1
@@ -145,7 +145,7 @@ metrics:
145
name: tlUpsInputVoltage
146
chart_meta:
147
description: The magnitude of the present input voltage
148
- family: Input/Voltage/Value
148
+ family: 'Input/Voltage/Value'
149
unit: "V"
150
metric_tags:
151
- tag: tl_ups_input_voltage_index
@@ -168,21 +168,21 @@ metrics:
168
name: tlUpsOutputCircuitLoadCurrent
169
chart_meta:
170
description: The magnitude of the present output current
171
- family: Output/Circuit/Current/Value
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
176
chart_meta:
177
description: The magnitude of the present circuit voltage
178
- family: Output/Circuit/Voltage/Value
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
183
chart_meta:
184
description: The magnitude of the present power in watts
185
- family: Output/Circuit/Power/Active
185
+ family: 'Output/Circuit/Power/Active'
186
unit: "W"
187
metric_tags:
188
- tag: tl_ups_output_circuit_index
@@ -203,7 +203,7 @@ metrics:
203
name: tlEnvContactStatus
204
chart_meta:
205
description: The current status of the contact
206
- family: Environment/Contact/Status
206
+ family: 'Environment/Contact/Status'
207
unit: "{status}"
208
mapping:
209
0: normal
@@ -230,7 +230,7 @@ metrics:
230
name: tlUpsOutletGroupState
231
chart_meta:
232
description: The current state of the outlet group
233
- family: Outlet/Group/Status
233
+ family: 'Outlet/Group/Status'
234
unit: "{status}"
235
mapping:
236
0: unknown
src/go/plugin/go.d/config/go.d/snmp.profiles/default/ubiquiti-unifi.yaml
+8
-8
@@ -13,7 +13,7 @@ metrics:
13
scale_factor: 1024
14
chart_meta:
15
description: Total usable physical memory (in KB)
16
- family: Memory/Total
16
+ family: 'Memory/Total'
17
unit: "By"
18
- MIB: FROGFOOT-RESOURCES-MIB
19
symbol:
@@ -22,7 +22,7 @@ metrics:
22
scale_factor: 1024
23
chart_meta:
24
description: Available physical memory (in KB)
25
- family: Memory/Free
25
+ family: 'Memory/Free'
26
unit: "By"
27
28
- MIB: UBNT-UniFi-MIB
@@ -34,37 +34,37 @@ metrics:
34
name: ubiquiti.unifiRadioRxPackets
35
chart_meta:
36
description: Number of received packets on the radio
37
- family: Wireless/Radio/Packet/In
37
+ family: 'Wireless/Radio/Packet/In'
38
unit: "{packet}/s"
39
- OID: 1.3.6.1.4.1.41112.1.6.1.1.1.5
40
name: ubiquiti.unifiRadioTxPackets
41
chart_meta:
42
description: Number of transmitted packets on the radio
43
- family: Wireless/Radio/Packet/Out
43
+ family: 'Wireless/Radio/Packet/Out'
44
unit: "{packet}/s"
45
- OID: 1.3.6.1.4.1.41112.1.6.1.1.1.6
46
name: ubiquiti.unifiRadioCuTotal
47
chart_meta:
48
description: Total channel utilization on the radio
49
- family: Wireless/Radio/ChannelUtilization/Total
49
+ family: 'Wireless/Radio/ChannelUtilization/Total'
50
unit: "%"
51
- OID: 1.3.6.1.4.1.41112.1.6.1.1.1.7
52
name: ubiquiti.unifiRadioCuSelfRx
53
chart_meta:
54
description: Channel utilization for self received traffic on the radio
55
- family: Wireless/Radio/ChannelUtilization/SelfReceive
55
+ family: 'Wireless/Radio/ChannelUtilization/SelfReceive'
56
unit: "%"
57
- OID: 1.3.6.1.4.1.41112.1.6.1.1.1.8
58
name: ubiquiti.unifiRadioCuSelfTx
59
chart_meta:
60
description: Channel utilization for self transmitted traffic on the radio
61
- family: Wireless/Radio/ChannelUtilization/SelfTransmit
61
+ family: 'Wireless/Radio/ChannelUtilization/SelfTransmit'
62
unit: "%"
63
- OID: 1.3.6.1.4.1.41112.1.6.1.1.1.9
64
name: ubiquiti.unifiRadioOtherBss
65
chart_meta:
66
description: Number of other basic service sets detected on the radio
67
- family: Wireless/Radio/BSS/Other/Count
67
+ family: 'Wireless/Radio/BSS/Other/Count'
68
unit: "{bss}"
69
metric_tags:
70
- tag: ubiquiti_unifi_radio_index
src/go/plugin/go.d/config/go.d/snmp.profiles/default/vertiv-liebert-ac.yaml
+12
-12
@@ -19,7 +19,7 @@ metrics:
19
name: lgpEnvTemperatureSettingDegF
20
chart_meta:
21
description: The temperature setting used to control the well known temperature object lgpEnvControlTemperature
22
- family: Environment/Temperature/Setpoint
22
+ family: 'Environment/Temperature/Setpoint'
23
unit: "degF"
24
25
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -28,7 +28,7 @@ metrics:
28
name: lgpEnvTemperatureToleranceDegF
29
chart_meta:
30
description: The acceptable variance from lgpEnvTemperatureSettingDegF without initiating a control action
31
- family: Environment/Temperature/Tolerance
31
+ family: 'Environment/Temperature/Tolerance'
32
unit: "degF"
33
34
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -40,19 +40,19 @@ metrics:
40
name: lgpEnvTemperatureMeasurementDegF
41
chart_meta:
42
description: The measured temperature value
43
- family: Environment/Temperature/Value
43
+ family: 'Environment/Temperature/Value'
44
unit: "degF"
45
- OID: 1.3.6.1.4.1.476.1.42.3.4.1.3.3.1.3
46
name: lgpEnvTemperatureMeasurementDegC
47
chart_meta:
48
description: The measured temperature value
49
- family: Environment/Temperature/Value
49
+ family: 'Environment/Temperature/Value'
50
unit: "Cel"
51
- OID: 1.3.6.1.4.1.476.1.42.3.4.2.2.3.1.3
52
name: lgpEnvHumidityMeasurementRel
53
chart_meta:
54
description: The measured humidity value
55
- family: Environment/Humidity/Value
55
+ family: 'Environment/Humidity/Value'
56
unit: "%"
57
metric_tags:
58
- tag: lgp_env_temperature_descr_deg_f
@@ -66,7 +66,7 @@ metrics:
66
name: lgpEnvStatisticsComp1RunHr
67
chart_meta:
68
description: Accumulated run hours of compressor 1
69
- family: Component/Compressor/1/Runtime
69
+ family: 'Component/Compressor/1/Runtime'
70
unit: "h"
71
72
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -75,7 +75,7 @@ metrics:
75
name: lgpEnvStatisticsComp2RunHr
76
chart_meta:
77
description: Accumulated run hours of compressor 2
78
- family: Component/Compressor/2/Runtime
78
+ family: 'Component/Compressor/2/Runtime'
79
unit: "h"
80
81
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -84,7 +84,7 @@ metrics:
84
name: lgpEnvStatisticsFanRunHr
85
chart_meta:
86
description: Accumulated run hours of the main fan
87
- family: Component/Fan/Runtime
87
+ family: 'Component/Fan/Runtime'
88
unit: "h"
89
90
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -93,7 +93,7 @@ metrics:
93
name: lgpEnvStatisticsHumRunHr
94
chart_meta:
95
description: Accumulated run hours of the humidifier
96
- family: Component/Humidifier/Runtime
96
+ family: 'Component/Humidifier/Runtime'
97
unit: "h"
98
99
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -102,7 +102,7 @@ metrics:
102
name: lgpEnvStatisticsReheat1RunHr
103
chart_meta:
104
description: Accumulated run hours of reheat element 1
105
- family: Component/Reheat/1/Runtime
105
+ family: 'Component/Reheat/1/Runtime'
106
unit: "h"
107
108
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -111,7 +111,7 @@ metrics:
111
name: lgpEnvStatisticsReheat2RunHr
112
chart_meta:
113
description: Accumulated run hours of reheat element 2
114
- family: Component/Reheat/2/Runtime
114
+ family: 'Component/Reheat/2/Runtime'
115
unit: "h"
116
117
- MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
@@ -120,5 +120,5 @@ metrics:
120
name: lgpEnvStatisticsReheat3RunHr
121
chart_meta:
122
description: Accumulated run hours of reheat element 3
123
- family: Component/Reheat/3/Runtime
123
+ family: 'Component/Reheat/3/Runtime'
124
unit: "h"
src/go/plugin/go.d/config/go.d/snmp.profiles/default/vertiv-watchdog.yaml
+6
-6
@@ -34,25 +34,25 @@ metrics:
34
name: vertiv.internalTemp
35
chart_meta:
36
description: Internal temperature measurement
37
- family: Sensor/Temperature/Value
37
+ family: 'Sensor/Temperature/Value'
38
unit: "Cel"
39
- OID: 1.3.6.1.4.1.21239.5.1.2.1.6
40
name: vertiv.internalHumidity
41
chart_meta:
42
description: Internal humidity measurement
43
- family: Sensor/Humidity/Value
43
+ family: 'Sensor/Humidity/Value'
44
unit: "%"
45
- OID: 1.3.6.1.4.1.21239.5.1.2.1.7
46
name: vertiv.internalDewPoint
47
chart_meta:
48
description: Internal dew point temperature
49
- family: Sensor/DewPoint/Value
49
+ family: 'Sensor/DewPoint/Value'
50
unit: "Cel"
51
- OID: 1.3.6.1.4.1.21239.5.1.2.1.4
52
name: vertiv.internalAvail
53
chart_meta:
54
description: Internal availability status
55
- family: Sensor/Availability/Status
55
+ family: 'Sensor/Availability/Status'
56
unit: "{status}"
57
mapping:
58
0: unavailable
@@ -75,13 +75,13 @@ metrics:
75
name: vertiv.tempSensorTemp
76
chart_meta:
77
description: Temperature measured by the temperature sensor
78
- family: Sensor/Temperature/Value
78
+ family: 'Sensor/Temperature/Value'
79
unit: "Cel"
80
- OID: 1.3.6.1.4.1.21239.5.1.4.1.4
81
name: vertiv.tempSensorAvail
82
chart_meta:
83
description: Sensor availability status
84
- family: Sensor/Availability/Status
84
+ family: 'Sensor/Availability/Status'
85
unit: "{status}"
86
mapping:
87
0: unavailable
src/go/plugin/go.d/config/go.d/snmp.profiles/default/vmware-esx.yaml
+2
-2
@@ -24,7 +24,7 @@ metrics:
24
name: vmwHbaStatus
25
chart_meta:
26
description: Current HBA status
27
- family: Storage/HBA/Status
27
+ family: 'Storage/HBA/Status'
28
unit: "{status}"
29
mapping:
30
1: unknown
@@ -47,7 +47,7 @@ metrics:
47
name: vmwHardwareStatus
48
chart_meta:
49
description: Last reported status of this component
50
- family: Hardware/Component/Status
50
+ family: 'Hardware/Component/Status'
51
unit: "{status}"
52
mapping:
53
1: unknown
src/go/plugin/go.d/config/go.d/snmp.profiles/default/zebra-printer.yaml
+2
-2
@@ -37,7 +37,7 @@ metrics:
37
name: zbrTrackedAlertsSeverity
38
chart_meta:
39
description: The severity level of tracked alerts
40
- family: Alert/Severity/Status
40
+ family: 'Alert/Severity/Status'
41
unit: "{status}"
42
mapping:
43
1: other
@@ -47,7 +47,7 @@ metrics:
47
name: zbrTrackedAlertsCode
48
chart_meta:
49
description: The code associated with tracked alerts
50
- family: Alert/Code/Status
50
+ family: 'Alert/Code/Status'
51
unit: "{status}"
52
mapping:
53
1: paper-out
src/go/plugin/go.d/config/go.d/snmp.profiles/default/zyxel-switch.yaml
+2
-2
@@ -38,7 +38,7 @@ metrics:
38
OID: 1.3.6.1.4.1.890.1.15.3.2.4.0
39
chart_meta:
40
description: Device CPU usage (%)
41
- family: CPU/Usage
41
+ family: 'CPU/Usage'
42
unit: "%"
43
44
- MIB: ZYXEL-ES-COMMON
@@ -47,5 +47,5 @@ metrics:
47
OID: 1.3.6.1.4.1.890.1.15.3.2.5.0
48
chart_meta:
49
description: Device memory usage (%)
50
- family: Memory/Usage
50
+ family: 'Memory/Usage'
51
unit: "%"