@cryptotaxi247 / netdata-1 / commits / 9950cebd6

add datadog profiles for snmp collector (#19785)

* add datadog profiles for snmp collector * move to default and update readme * udate CMake * update REDISTRIBUTED.md and readme * update yamllint to ignore datadog snmp profiles --------- Co-authored-by: ilyam8 <ilya@netdata.cloud>

Fotis Voutsas committed Mar 6, 2025 at 14:02 UTC 9950cebd62c1afc934e254a718f4b8228c5da6f3
241 files changed +30463 -10
.yamllint.yml
+1
@@ -9,6 +9,7 @@ yaml-files:
9 ignore: |
10 mqtt_websockets/
11 packaging/makeself/tmp/
12 + src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/
13
14 rules:
15 braces: enable
CMakeLists.txt
+12
@@ -3626,6 +3626,18 @@ if(ENABLE_PLUGIN_GO)
3626 COMPONENT plugin-go
3627 DESTINATION usr/lib/netdata/conf.d/go.d/sd)
3628
3629 + install(DIRECTORY
3630 + COMPONENT plugin-go
3631 + DESTINATION usr/lib/netdata/conf.d/go.d/snmp.profiles.d)
3632 + install(DIRECTORY
3633 + COMPONENT plugin-go
3634 + DESTINATION usr/lib/netdata/conf.d/go.d/snmp.profiles.d/default)
3635 +
3636 + file(GLOB GO_SD_CONF_FILES src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/*.yaml)
3637 + install(FILES ${GO_SD_CONF_FILES}
3638 + COMPONENT plugin-go
3639 + DESTINATION usr/lib/netdata/conf.d/go.d/snmp.profiles.d/default)
3640 +
3641 if(BUILD_FOR_PACKAGING)
3642 install(FILES
3643 ${PKG_FILES_PATH}/copyright
REDISTRIBUTED.md
+11 -10
@@ -25,18 +25,19 @@ We have decided to redistribute all these, instead of using them through a CDN,
25
26 **python.d.plugin**:
27
28 -| Name | Copyright | License |
29 -|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|------------------------------------------------------------------|
30 -| [PyYAML](https://pypi.org/project/PyYAML/) | Copyright 2006, Kirill Simonov | [MIT](https://github.com/yaml/pyyaml/blob/master/LICENSE) |
31 -| [urllib3](https://github.com/shazow/urllib3) | Copyright 2008-2016 Andrey Petrov and contributors | [MIT](https://github.com/shazow/urllib3/blob/master/LICENSE.txt) |
32 -| [Utilities for writing code that runs on Python 2 and 3](https://raw.githubusercontent.com/netdata/netdata/master/src/collectors/python.d.plugin/python_modules/urllib3/packages/six.py) | Copyright (c) 2010-2015 Benjamin Peterson | [MIT](https://github.com/benjaminp/six/blob/master/LICENSE) |
33 -| [monotonic](https://github.com/atdt/monotonic) | Copyright 2014, 2015, 2016 Ori Livneh | [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) |
34 -| [filelock](https://github.com/benediktschmitt/py-filelock) | Copyright 2015, Benedikt Schmitt | [Unlicense](https://unlicense.org/) |
28 +| Name | Copyright | License |
29 +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|------------------------------------------------------------------|
30 +| [PyYAML](https://pypi.org/project/PyYAML/) | Copyright 2006, Kirill Simonov | [MIT](https://github.com/yaml/pyyaml/blob/master/LICENSE) |
31 +| [urllib3](https://github.com/shazow/urllib3) | Copyright 2008-2016 Andrey Petrov and contributors | [MIT](https://github.com/shazow/urllib3/blob/master/LICENSE.txt) |
32 +| [Utilities for writing code that runs on Python 2 and 3](https://raw.githubusercontent.com/netdata/netdata/master/src/collectors/python.d.plugin/python_modules/urllib3/packages/six.py) | Copyright (c) 2010-2015 Benjamin Peterson | [MIT](https://github.com/benjaminp/six/blob/master/LICENSE) |
33 +| [monotonic](https://github.com/atdt/monotonic) | Copyright 2014, 2015, 2016 Ori Livneh | [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) |
34 +| [filelock](https://github.com/benediktschmitt/py-filelock) | Copyright 2015, Benedikt Schmitt | [Unlicense](https://unlicense.org/) |
35
36 ---
37
38 **go.d.plugin**:
39
40 -| Name | Copyright | License |
41 -|----------------------------------------------------|-----------------------------|---------------------------------------------------------------------|
42 -| [lmsensors](https://github.com/mdlayher/lmsensors) | Copyright 2016, Matt Layher | [MIT](https://github.com/mdlayher/lmsensors/blob/master/LICENSE.md) |
40 +| Name | Copyright | License |
41 +|--------------------------------------------------------------------------------------------------------------------------|-----------------------------------|-------------------------------------------------------------------------------------------------------------|
42 +| [lmsensors](https://github.com/mdlayher/lmsensors) | Copyright 2016, Matt Layher | [MIT](https://github.com/mdlayher/lmsensors/blob/master/LICENSE.md) |
43 +| [snmp profiles](https://github.com/DataDog/integrations-core/tree/master/snmp/datadog_checks/snmp/data/default_profiles) | Copyright (c) 2016, Datadog, Inc. | [BSD 3-Clause "New" or "Revised" License](https://github.com/DataDog/integrations-core/blob/master/LICENSE) |
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/3com-huawei.yaml new
+67
@@ -0,0 +1,67 @@
1 +extends:
2 + - 3com.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.43.45.1.2.* # 3Com Huawei Products (a3Com.jv-mib.huawei.hwproducts)
6 +
7 +metrics:
8 + - MIB: A3COM-HUAWEI-LswDEVM-MIB
9 + table:
10 + name: hwCpuTable # indexes: hwCpuIndex
11 + OID: 1.3.6.1.4.1.43.45.1.6.1.1
12 + symbols:
13 + - name: cpu.usage
14 + OID: 1.3.6.1.4.1.43.45.1.6.1.1.1.3
15 + metric_tags:
16 + - index: 1
17 + tag: cpu
18 + - MIB: A3COM-HUAWEI-LswDEVM-MIB
19 + table:
20 + name: hwMemTable # indexes: hwMemModuleIndex
21 + OID: 1.3.6.1.4.1.43.45.1.6.1.2.1
22 + symbols:
23 + - name: memory.total
24 + OID: 1.3.6.1.4.1.43.45.1.6.1.2.1.1.2
25 + - name: memory.free
26 + OID: 1.3.6.1.4.1.43.45.1.6.1.2.1.1.3
27 + metric_tags:
28 + - index: 1
29 + tag: mem
30 + - MIB: A3COM-HUAWEI-LswDEVM-MIB
31 + table:
32 + name: hwdevMFanStatusTable # indexes: hwDevMFanNum
33 + OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.1
34 + symbols:
35 + - name: hwdevMFanStatus
36 + constant_value_one: true
37 + metric_tags:
38 + - index: 1
39 + tag: fan_num
40 + - symbol:
41 + OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.1.1.2
42 + name: hwDevMFanStatus
43 + tag: fan_status
44 + mapping:
45 + 1: active
46 + 2: deactive
47 + 3: not_installed
48 + 4: unsupported
49 + - MIB: A3COM-HUAWEI-LswDEVM-MIB
50 + table:
51 + name: hwdevMPowerStatusTable # indexes: hwDevMPowerNum
52 + OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.2
53 + symbols:
54 + - name: hwdevMPowerStatus
55 + constant_value_one: true
56 + metric_tags:
57 + - index: 1
58 + tag: power_num
59 + - symbol:
60 + OID: 1.3.6.1.4.1.43.45.1.2.23.1.9.1.2.1.2
61 + name: hwDevMPowerStatus
62 + tag: power_status
63 + mapping:
64 + 1: active
65 + 2: deactive
66 + 3: not_installed
67 + 4: unsupported
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/3com.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "3com"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.43.1.* # 3Com products
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/README.md new
+9
@@ -0,0 +1,9 @@
1 +# SNMP Profiles
2 +
3 +This directory contains [SNMP profiles](https://github.com/DataDog/integrations-core/tree/master/snmp/datadog_checks/snmp/data/default_profiles) copied from Datadog's integrations-core repository.
4 +
5 +**License:** BSD 3-Clause License (https://github.com/DataDog/integrations-core/blob/master/LICENSE)
6 +
7 +## Attribution
8 +
9 +These profiles are copyright © Datadog, Inc. and have been included under the terms of the BSD 3-Clause License.
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_apc-metadata.yaml new
+41
@@ -0,0 +1,41 @@
1 +# Example sysDescr for apc devices:
2 +# - APC Web/SNMP Management Card (MB:v3.9.2 PF:v3.9.2 PN:apc_hw02_aos_392.bin AF1:v3.7.2 AN1:apc_hw02_sumx_372.bin MN:AP9619 HR:A10 SN: 5A1827E00000 MD:12/04/2007) (Embedded PowerNet SNMP Agent SW v2.2 compatible)
3 +# - APC Web/SNMP Management Card (MB:v4.1.0 PF:v6.4.6 PN:apc_hw05_aos_646.bin AF1:v6.4.6 AN1:apc_hw05_rpdu2g_646.bin MN:AP8881 HR:02 SN: 5A1827E02199 MD:07/04/2018)
4 +# - APC Web/SNMP Management Card (MB:v4.1.0 PF:v6.5.0 PN:apc_hw05_aos_650.bin AF1:v6.5.0 AN1:apc_hw05_sumx_650.bin MN:AP9630 HR:08 SN: ZA1744002099 MD:10/30/2017) (Embedded PowerNet SNMP Agent SW v2.2 compatible)
5 +
6 +extends:
7 + - _apc.yaml
8 +
9 +metadata:
10 + device:
11 + fields:
12 + serial_number:
13 + symbol:
14 + OID: 1.3.6.1.2.1.1.1.0
15 + name: sysDescr
16 + match_pattern: '\bSN:\s+(\w+)'
17 + match_value: '$1'
18 + # Examples: SN: 5A1827E00000
19 + # Note: there is a whitespace between `SN:` and the serial number.
20 + model:
21 + symbol:
22 + OID: 1.3.6.1.2.1.1.1.0
23 + name: sysDescr
24 + match_pattern: '\bMN:(\w+)'
25 + match_value: '$1'
26 + # Examples: MN:AP9631
27 + os_name:
28 + symbol:
29 + OID: 1.3.6.1.2.1.1.1.0
30 + name: sysDescr
31 + match_pattern: '\bPN:apc_hw(\d+)_aos_'
32 + match_value: 'AOS'
33 + # Examples: PN:apc_hw02_aos_374.bin
34 + # PN:apc_hw21_aos_1.1.0.16.bin
35 + os_version:
36 + symbol:
37 + OID: 1.3.6.1.2.1.1.1.0
38 + name: sysDescr
39 + match_pattern: '\bPF:(\S+)'
40 + match_value: '$1'
41 + # Examples: `MN:v3.9.2`, correspond to version in PN:apc_hw02_aos_392.bin
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_apc.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "apc"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_arista-metadata.yaml new
+44
@@ -0,0 +1,44 @@
1 +# Note related to use of index `1` of entPhysicalTable columns:
2 +# Based on snmpwalks of Arista, the main/chassis hardware have the index `1`
3 +# Librennms is also using index `1`: https://github.com/librenms/librenms/blob/1ac60e3b1d90616119f3c4adc28213e3c35c2477/includes/definitions/discovery/arista_eos.yaml#L4
4 +metadata:
5 + device:
6 + fields:
7 + serial_number:
8 + symbol:
9 + OID: 1.3.6.1.2.1.47.1.1.1.1.11.1 # entPhysicalSerialNum OID at index `1`
10 + name: entPhysicalSerialNum
11 + # Examples: `HSH16195058`
12 + version:
13 + symbol:
14 + OID: 1.3.6.1.2.1.47.1.1.1.1.8.1 # entPhysicalHardwareRev OID at index `1`
15 + name: entPhysicalHardwareRev
16 + # Examples: `12.00`
17 + product_name:
18 + symbol:
19 + OID: 1.3.6.1.2.1.47.1.1.1.1.2.1 # entPhysicalDescr OID at index `1`
20 + name: entPhysicalDescr
21 + # Examples: `DCS-7504 Chassis`
22 + model:
23 + symbols:
24 + - OID: 1.3.6.1.2.1.47.1.1.1.1.13.1 # entPhysicalModelName OID at index `1`
25 + name: entPhysicalModelName
26 + # Examples: `DCS-7504`
27 + - OID: 1.3.6.1.2.1.1.1.0
28 + name: sysDescr
29 + match_pattern: 'running on an Arista Networks ([\w-]+)'
30 + match_value: '$1'
31 + # Examples: `Arista Networks CCS-720XP-48Y6`
32 + os_name:
33 + symbol:
34 + OID: 1.3.6.1.2.1.1.1.0
35 + name: sysDescr
36 + match_pattern: '\bArista Networks EOS\b'
37 + match_value: 'EOS'
38 + os_version:
39 + symbol:
40 + OID: 1.3.6.1.2.1.1.1.0
41 + name: sysDescr
42 + match_pattern: '\sversion\s(\S+)'
43 + match_value: '$1'
44 + # Examples: `version 4.23.1F`
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_arista-queue.yaml new
+40
@@ -0,0 +1,40 @@
1 +metrics:
2 + ### Interface
3 +
4 + - # This table contains statistical information of the ingress queue in an interface.
5 + MIB: ARISTA-QUEUE-MIB
6 + table:
7 + OID: 1.3.6.1.4.1.30065.3.6.1.1
8 + name: aristaIngressQueueTable
9 + metric_type: monotonic_count
10 + symbols:
11 + - OID: 1.3.6.1.4.1.30065.3.6.1.1.1.3
12 + name: aristaIngressQueuePktsDropped
13 + metric_tags:
14 + - tag: interface_index
15 + symbol:
16 + OID: 1.3.6.1.4.1.30065.3.6.1.1.1.1
17 + name: aristaIngressIfIndex
18 + - tag: queue_index
19 + symbol:
20 + OID: 1.3.6.1.4.1.30065.3.6.1.1.1.2
21 + name: aristaIngressQueueIndex
22 +
23 + - # This table contains statistical objects for the egress queues of an interface.
24 + MIB: ARISTA-QUEUE-MIB
25 + table:
26 + OID: 1.3.6.1.4.1.30065.3.6.1.2
27 + name: aristaEgressQueueTable
28 + metric_type: monotonic_count
29 + symbols:
30 + - OID: 1.3.6.1.4.1.30065.3.6.1.2.1.6
31 + name: aristaEgressQueuePktsDropped
32 + metric_tags:
33 + - tag: interface_index
34 + symbol:
35 + OID: 1.3.6.1.4.1.30065.3.6.1.2.1.1
36 + name: aristaEgressIfIndex
37 + - tag: queue_index
38 + symbol:
39 + OID: 1.3.6.1.4.1.30065.3.6.1.2.1.2
40 + name: aristaEgressQueueIndex
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_arista.yaml new
+5
@@ -0,0 +1,5 @@
1 +metadata:
2 + device:
3 + fields:
4 + vendor:
5 + value: "arista"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_aruba-base.yaml new
+5
@@ -0,0 +1,5 @@
1 +metadata:
2 + device:
3 + fields:
4 + vendor:
5 + value: "aruba"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_aruba-switch-cpu-memory.yaml new
+37
@@ -0,0 +1,37 @@
1 +# CPU and memory metrics for Aruba switch
2 +metrics:
3 + ### Processor
4 +
5 + - # The table of processors contained by the controller.
6 + MIB: WLSX-SYSTEMEXT-MIB
7 + table:
8 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13
9 + name: wlsxSysExtProcessorTable
10 + symbols:
11 + # The average, over the last minute, of the percentage of time that this processor was not idle.
12 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13.1.3
13 + # core check only
14 + name: cpu.usage
15 + metric_tags:
16 + - tag: cpu
17 + index: 1
18 +
19 + ### Memory
20 +
21 + - # The memory status of the controller. All memory values measured in KB.
22 + MIB: WLSX-SYSTEMEXT-MIB
23 + table:
24 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1
25 + name: wlsxSysExtMemoryTable
26 + symbols:
27 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.2
28 + # core check only
29 + name: memory.total
30 + scale_factor: 1000
31 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.3
32 + # core check only
33 + name: memory.used
34 + scale_factor: 1000
35 + metric_tags:
36 + - tag: mem
37 + index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_base.yaml new
+29
@@ -0,0 +1,29 @@
1 +# Base profile that should only contain any items we want to provide for all profiles.
2 +
3 +metric_tags:
4 + - OID: 1.3.6.1.2.1.1.5.0
5 + symbol: sysName
6 + tag: snmp_host
7 + - OID: 1.3.6.1.2.1.1.5.0
8 + symbol: sysName
9 + tag: device_hostname
10 +
11 +metadata:
12 + device:
13 + fields:
14 + name:
15 + symbol:
16 + OID: 1.3.6.1.2.1.1.5.0
17 + name: sysName
18 + description:
19 + symbol:
20 + OID: 1.3.6.1.2.1.1.1.0
21 + name: sysDescr
22 + sys_object_id:
23 + symbol:
24 + OID: 1.3.6.1.2.1.1.2.0
25 + name: sysObjectID
26 + location:
27 + symbol:
28 + OID: 1.3.6.1.2.1.1.6.0
29 + name: sysLocation
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_base_cisco.yaml new
+4
@@ -0,0 +1,4 @@
1 +# Backward compatibility shim, in case users referenced this in their own profiles before the rename.
2 +extends:
3 + - _base.yaml
4 + - _cisco-generic.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_base_cisco_voice.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Backward compatibility shim, in case users referenced this in their own profiles before the rename.
2 +extends:
3 + - _base.yaml
4 + - _cisco-generic.yaml
5 + - _cisco-voice.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_checkpoint-firewall-cpu-memory.yaml new
+32
@@ -0,0 +1,32 @@
1 +# CPU and memory metrics for Checkpoint Firewall devices
2 +
3 +metrics:
4 + # CPU
5 + - MIB: CHECKPOINT-MIB
6 + metric_tags:
7 + - symbol:
8 + OID: 1.3.6.1.4.1.2620.1.6.7.5.1.1
9 + name: multiProcIndex
10 + tag: cpu_core
11 + - tag: cpu
12 + index: 1
13 + symbols:
14 + - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.5
15 + # core check only
16 + name: cpu.usage
17 + table:
18 + OID: 1.3.6.1.4.1.2620.1.6.7.5
19 + name: multiProcTable
20 + # Memory
21 + - MIB: CHECKPOINT-MIB
22 + metric_type: gauge
23 + symbol:
24 + OID: 1.3.6.1.4.1.2620.1.6.7.4.3.0
25 + # core check only
26 + name: memory.total
27 + - MIB: CHECKPOINT-MIB
28 + metric_type: gauge
29 + symbol:
30 + OID: 1.3.6.1.4.1.2620.1.6.7.4.4.0
31 + # core check only
32 + name: memory.used
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-asa.yaml new
+68
@@ -0,0 +1,68 @@
1 +# Profile for Cisco ASA devices
2 +
3 +extends:
4 + - _cisco-generic.yaml
5 +
6 +metrics:
7 + - MIB: CISCO-FIREWALL-MIB
8 + table:
9 + OID: 1.3.6.1.4.1.9.9.147.1.2.2.2
10 + name: cfwConnectionStatTable
11 + symbols:
12 + - OID: 1.3.6.1.4.1.9.9.147.1.2.2.2.1.5
13 + name: cfwConnectionStatValue
14 + metric_tags:
15 + - index: 1
16 + tag: service_type
17 + - index: 2
18 + tag: stat_type
19 +
20 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
21 + symbol:
22 + # declined sessions
23 + OID: 1.3.6.1.4.1.9.9.392.1.4.1.2.0
24 + name: crasNumDeclinedSessions
25 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
26 + symbol:
27 + # num sessions
28 + OID: 1.3.6.1.4.1.9.9.392.1.3.1.0
29 + name: crasNumSessions
30 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
31 + symbol:
32 + # num users
33 + OID: 1.3.6.1.4.1.9.9.392.1.3.3.0
34 + name: crasNumUsers
35 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
36 + metric_type: monotonic_count
37 + symbol:
38 + # session setup failed
39 + OID: 1.3.6.1.4.1.9.9.392.1.4.1.3.0
40 + name: crasNumSetupFailInsufResources
41 + - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
42 + symbol:
43 + OID: 1.3.6.1.4.1.9.9.171.1.3.1.1.0
44 + name: cipSecGlobalActiveTunnels
45 + - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
46 + metric_type: monotonic_count
47 + symbol:
48 + OID: 1.3.6.1.4.1.9.9.171.1.3.1.4.0
49 + name: cipSecGlobalHcInOctets
50 + - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
51 + metric_type: monotonic_count
52 + symbol:
53 + OID: 1.3.6.1.4.1.9.9.171.1.3.1.17.0
54 + name: cipSecGlobalHcOutOctets
55 + - MIB: ENTITY-SENSOR-MIB
56 + table:
57 + OID: 1.3.6.1.2.1.99.1.1
58 + name: entPhySensorTable
59 + symbols:
60 + - OID: 1.3.6.1.2.1.99.1.1.1.4
61 + name: entPhySensorValue
62 + metric_tags:
63 + - symbol:
64 + OID: 1.3.6.1.2.1.99.1.1.1.1
65 + name: entPhySensorType
66 + tag: sensor_type
67 + - index: 1
68 + tag: sensor_id
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-catalyst.yaml new
+57
@@ -0,0 +1,57 @@
1 +# Metrics mixin for Cisco Catalyst devices.
2 +# Stored in a separate file for reuse within the cisco-3850 compat shim.
3 +
4 +# Example sysDescr:
5 +# "Cisco Systems WS-C6509.Cisco Catalyst Operating System Software, Version 5.5(8).Copyright (c) 1995-2001 by Cisco Systems."
6 +# "Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.06E RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2016 by Cisco Systems, Inc. Compiled Sat 17-Dec-"
7 +
8 +metadata:
9 + device:
10 + fields:
11 + serial_number:
12 + symbol:
13 + # Cisco Catalyst devices are using CISCO-STACK-MIB
14 + # Source1: http://www.circitor.fr/Mibs/Html/C/CISCO-STACK-MIB.php
15 + # "This MIB provides configuration and runtime status for chassis, modules, ports, etc. on the Catalyst systems."
16 + # Source2: chassisSerialNumberString is present for this device:
17 + # Cisco Systems WS-C6509.Cisco Catalyst Operating System Software, Version 5.5(8).Copyright (c) 1995-2001 by Cisco Systems.
18 + MIB: CISCO-STACK-MIB
19 + OID: 1.3.6.1.4.1.9.5.1.2.19.0
20 + name: chassisSerialNumberString
21 +
22 +metrics:
23 + - MIB: CISCO-ENTITY-SENSOR-MIB
24 + table:
25 + OID: 1.3.6.1.4.1.9.9.91.1.1.1
26 + name: entSensorValueTable
27 + symbols:
28 + - OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.4
29 + name: entSensorValue
30 + metric_tags:
31 + - symbol:
32 + OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.1
33 + name: entSensorType
34 + tag: sensor_type
35 + - index: 1
36 + tag: sensor_id
37 + - MIB: CISCO-IF-EXTENSION-MIB
38 + table:
39 + OID: 1.3.6.1.4.1.9.9.276.1.1.1
40 + name: cieIfPacketStatsTable
41 + metric_type: gauge
42 + symbols:
43 + - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.1
44 + name: cieIfLastInTime
45 + - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.2
46 + name: cieIfLastOutTime
47 + - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.10
48 + name: cieIfInputQueueDrops
49 + - OID: 1.3.6.1.4.1.9.9.276.1.1.1.1.11
50 + name: cieIfOutputQueueDrops
51 + metric_tags:
52 + - MIB: IF-MIB
53 + symbol:
54 + OID: 1.3.6.1.2.1.31.1.1.1.1
55 + name: ifName
56 + table: ifXTable
57 + tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-cpu-memory.yaml new
+26
@@ -0,0 +1,26 @@
1 +# CPU and memory metrics for Cisco devices.
2 +
3 +metrics:
4 + - MIB: CISCO-PROCESS-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.9.9.109.1.1.1
7 + name: cpmCPUTotalTable
8 + symbols:
9 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7 # cpmCPUTotal1minRev
10 + name: cpu.usage
11 + metric_tags:
12 + - index: 1 # cpmCPUTotalIndex
13 + tag: cpu
14 +
15 + - MIB: CISCO-MEMORY-POOL-MIB
16 + table:
17 + OID: 1.3.6.1.4.1.9.9.48.1.1
18 + name: ciscoMemoryPoolTable
19 + symbols:
20 + - OID: 1.3.6.1.4.1.9.9.48.1.1.1.5 # ciscoMemoryPoolUsed
21 + name: memory.used
22 + - OID: 1.3.6.1.4.1.9.9.48.1.1.1.6 # ciscoMemoryPoolFree
23 + name: memory.free
24 + metric_tags:
25 + - index: 1 # ciscoMemoryPoolType
26 + tag: mem
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-generic.yaml new
+558
@@ -0,0 +1,558 @@
1 +# Metrics mixin for Cisco devices.
2 +
3 +extends:
4 + - _generic-if.yaml
5 + - _generic-tcp.yaml
6 + - _generic-udp.yaml
7 + - _generic-ospf.yaml
8 + - _generic-bgp4.yaml
9 + - _generic-ip.yaml
10 + - _cisco-cpu-memory.yaml
11 + - _cisco-metadata.yaml
12 +
13 +metrics:
14 + - MIB: CISCO-ENTITY-FRU-CONTROL-MIB
15 + table:
16 + OID: 1.3.6.1.4.1.9.9.117.1.1.2
17 + name: cefcFRUPowerStatusTable
18 + symbols:
19 + - OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.1
20 + name: cefcFRUPowerAdminStatus
21 + - OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.2
22 + name: cefcFRUPowerOperStatus
23 + - OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.3
24 + name: cefcFRUCurrent
25 + metric_tags:
26 + - index: 1
27 + tag: fru
28 + - MIB: CISCO-ENTITY-FRU-CONTROL-MIB
29 + table:
30 + OID: 1.3.6.1.4.1.9.9.117.1.1.2
31 + name: cefcFRUPowerStatusTable
32 + symbols:
33 + - name: cefcFRUPowerStatus
34 + constant_value_one: true
35 + metric_tags:
36 + - index: 1
37 + tag: fru
38 + - symbol:
39 + OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.1
40 + name: cefcFRUPowerAdminStatus
41 + tag: power_admin_status
42 + mapping:
43 + 1: on
44 + 2: off
45 + 3: inline_auto
46 + 4: inline_on
47 + 5: power_cycle
48 + - symbol:
49 + OID: 1.3.6.1.4.1.9.9.117.1.1.2.1.2
50 + name: cefcFRUPowerOperStatus
51 + tag: power_oper_status
52 + mapping:
53 + 1: off_env_other
54 + 2: on
55 + 3: off_admin
56 + 4: off_denied
57 + 5: off_env_power
58 + 6: off_env_temp
59 + 7: off_env_fan
60 + 8: failed
61 + 9: on_but_fan_fail
62 + 10: off_cooling
63 + 11: off_connector_rating
64 + 12: on_but_inline_power_fail
65 + - MIB: CISCO-PROCESS-MIB
66 + table:
67 + OID: 1.3.6.1.4.1.9.9.109.1.1.1
68 + name: cpmCPUTotalTable
69 + symbols:
70 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.10
71 + name: cpmCPUTotalMonIntervalValue
72 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.12
73 + name: cpmCPUMemoryUsed
74 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.13
75 + name: cpmCPUMemoryFree
76 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7
77 + name: cpmCPUTotal1minRev
78 + metric_tags:
79 + - index: 1
80 + tag: cpu
81 + - MIB: CISCO-IF-EXTENSION-MIB
82 + metric_type: monotonic_count
83 + table:
84 + OID: 1.3.6.1.4.1.9.9.276.1.1.2
85 + name: cieIfInterfaceTable
86 + symbols:
87 + - OID: 1.3.6.1.4.1.9.9.276.1.1.2.1.1
88 + name: cieIfResetCount
89 + metric_tags:
90 + - MIB: IF-MIB
91 + symbol:
92 + OID: 1.3.6.1.2.1.31.1.1.1.1
93 + name: ifName
94 + table: ifXTable
95 + tag: interface
96 + - MIB: CISCO-ENVMON-MIB
97 + table:
98 + OID: 1.3.6.1.4.1.9.9.13.1.3
99 + name: ciscoEnvMonTemperatureStatusTable
100 + symbols:
101 + - OID: 1.3.6.1.4.1.9.9.13.1.3.1.3
102 + name: ciscoEnvMonTemperatureStatusValue
103 + metric_tags:
104 + - tag: temp_state
105 + symbol:
106 + OID: 1.3.6.1.4.1.9.9.13.1.3.1.6
107 + name: ciscoEnvMonTemperatureState
108 + mapping:
109 + 1: normal
110 + 2: warning
111 + 3: critical
112 + 4: shutdown
113 + 5: not_present
114 + 6: not_functioning
115 + - tag: temp_index
116 + index: 1
117 + - MIB: CISCO-ENVMON-MIB
118 + table:
119 + OID: 1.3.6.1.4.1.9.9.13.1.5
120 + name: ciscoEnvMonSupplyStatusTable
121 + symbols:
122 + - OID: 1.3.6.1.4.1.9.9.13.1.5.1.3
123 + name: ciscoEnvMonSupplyState
124 + metric_tags:
125 + - symbol:
126 + OID: 1.3.6.1.4.1.9.9.13.1.5.1.4
127 + name: ciscoEnvMonSupplySource
128 + tag: power_source
129 + mapping:
130 + 1: unknown
131 + 2: ac
132 + 3: dc
133 + 4: external_power_supply
134 + 5: internal_redundant
135 + - symbol:
136 + OID: 1.3.6.1.4.1.9.9.13.1.5.1.2
137 + name: ciscoEnvMonSupplyStatusDescr
138 + tag: power_status_descr
139 +
140 + - MIB: CISCO-ENVMON-MIB
141 + table:
142 + OID: 1.3.6.1.4.1.9.9.13.1.5
143 + name: ciscoEnvMonSupplyStatusTable
144 + symbols:
145 + - name: ciscoEnvMonSupplyStatus
146 + constant_value_one: true
147 + metric_tags:
148 + - symbol:
149 + OID: 1.3.6.1.4.1.9.9.13.1.5.1.3
150 + name: ciscoEnvMonSupplyState
151 + tag: cisco_env_mon_supply_state
152 + mapping:
153 + 1: normal
154 + 2: warning
155 + 3: critical
156 + 4: shutdown
157 + 5: not_present
158 + 6: not_functioning
159 + - symbol:
160 + OID: 1.3.6.1.4.1.9.9.13.1.5.1.4
161 + name: ciscoEnvMonSupplySource
162 + tag: power_source
163 + mapping:
164 + 1: unknown
165 + 2: ac
166 + 3: dc
167 + 4: external_power_supply
168 + 5: internal_redundant
169 + - symbol:
170 + OID: 1.3.6.1.4.1.9.9.13.1.5.1.2
171 + name: ciscoEnvMonSupplyStatusDescr
172 + tag: power_status_descr
173 +
174 + - MIB: CISCO-ENVMON-MIB
175 + table:
176 + OID: 1.3.6.1.4.1.9.9.13.1.4
177 + name: ciscoEnvMonFanStatusTable
178 + symbols:
179 + - OID: 1.3.6.1.4.1.9.9.13.1.4.1.3
180 + name: ciscoEnvMonFanState
181 + metric_tags:
182 + - symbol:
183 + OID: 1.3.6.1.4.1.9.9.13.1.4.1.1
184 + name: ciscoEnvMonFanStatusIndex
185 + tag: fan_status_index
186 +
187 + - MIB: CISCO-ENVMON-MIB
188 + table:
189 + OID: 1.3.6.1.4.1.9.9.13.1.4
190 + name: ciscoEnvMonFanStatusTable
191 + symbols:
192 + - name: ciscoEnvMonFanStatus
193 + constant_value_one: true
194 + metric_tags:
195 + - symbol:
196 + OID: 1.3.6.1.4.1.9.9.13.1.4.1.3
197 + name: ciscoEnvMonFanState
198 + tag: fan_state
199 + mapping:
200 + 1: normal
201 + 2: warning
202 + 3: critical
203 + 4: shutdown
204 + 5: not_present
205 + 6: not_functioning
206 + - symbol:
207 + OID: 1.3.6.1.4.1.9.9.13.1.4.1.2
208 + name: ciscoEnvMonFanStatusDescr
209 + tag: fan_status_descr
210 + - symbol:
211 + OID: 1.3.6.1.4.1.9.9.13.1.4.1.1
212 + name: ciscoEnvMonFanStatusIndex
213 + tag: fan_status_index
214 +
215 + # stackport specific info - every physical stackport has an entry in ifTable
216 + - MIB: CISCO-STACKWISE-MIB
217 + table:
218 + OID: 1.3.6.1.4.1.9.9.500.1.2.2
219 + name: cswStackPortInfoTable
220 + symbols:
221 + - OID: 1.3.6.1.4.1.9.9.500.1.2.2.1.1
222 + name: cswStackPortOperStatus
223 + metric_tags:
224 + - MIB: IF-MIB
225 + symbol:
226 + OID: 1.3.6.1.2.1.31.1.1.1.1
227 + name: ifName
228 + table: ifXTable
229 + tag: interface
230 +
231 + # every switch with entPhysicalClass chassis will have an entry in switchinfo
232 + - MIB: CISCO-STACKWISE-MIB
233 + table:
234 + OID: 1.3.6.1.4.1.9.9.500.1.2.1
235 + name: cswSwitchInfoTable
236 + symbols:
237 + - OID: 1.3.6.1.4.1.9.9.500.1.2.1.1.6
238 + name: cswSwitchState
239 + metric_tags:
240 + - tag: mac_addr
241 + symbol:
242 + OID: 1.3.6.1.4.1.9.9.500.1.2.1.1.7
243 + name: cswSwitchMacAddress
244 + format: mac_address
245 + - MIB: ENTITY-MIB
246 + symbol:
247 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
248 + name: entPhysicalName
249 + table: entPhysicalTable
250 + tag: entity_name
251 +
252 + - MIB: CISCO-STACKWISE-MIB
253 + table:
254 + OID: 1.3.6.1.4.1.9.9.500.1.2.1
255 + name: cswSwitchInfoTable
256 + symbols:
257 + - name: cswSwitchInfo
258 + constant_value_one: true
259 + metric_tags:
260 + - tag: mac_addr
261 + symbol:
262 + OID: 1.3.6.1.4.1.9.9.500.1.2.1.1.7
263 + name: cswSwitchMacAddress
264 + format: mac_address
265 + - MIB: ENTITY-MIB
266 + symbol:
267 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
268 + name: entPhysicalName
269 + table: entPhysicalTable
270 + tag: entity_physical_name
271 + - symbol:
272 + OID: 1.3.6.1.4.1.9.9.500.1.2.1.1.6
273 + name: cswSwitchState
274 + tag: switch_state
275 + mapping:
276 + 1: waiting
277 + 2: progressing
278 + 3: added
279 + 4: ready
280 + 5: sdm_mismatch
281 + 6: ver_mismatch
282 + 7: feature_mismatch
283 + 8: new_master_init
284 + 9: provisioned
285 + 10: invalid
286 + 11: removed
287 + - MIB: CISCO-ENTITY-FRU-CONTROL-MIB
288 + table:
289 + OID: 1.3.6.1.4.1.9.9.117.1.4.1
290 + name: cefcFanTrayStatusTable
291 + symbols:
292 + - OID: 1.3.6.1.4.1.9.9.117.1.4.1.1.1
293 + name: cefcFanTrayOperStatus
294 + metric_tags:
295 + - index: 1
296 + tag: fru
297 +
298 + - MIB: CISCO-ENTITY-FRU-CONTROL-MIB
299 + table:
300 + OID: 1.3.6.1.4.1.9.9.117.1.4.1
301 + name: cefcFanTrayStatusTable
302 + symbols:
303 + - name: cefcFanTrayStatus
304 + constant_value_one: true
305 + metric_tags:
306 + - index: 1
307 + tag: fru
308 + - symbol:
309 + OID: 1.3.6.1.4.1.9.9.117.1.4.1.1.1
310 + name: cefcFanTrayOperStatus
311 + tag: cefc_fan_tray_oper_status
312 + mapping:
313 + 1: unknown
314 + 2: up
315 + 3: down
316 + 4: warning
317 + - symbol:
318 + OID: 1.3.6.1.4.1.9.9.117.1.4.1.1.2
319 + name: cefcFanTrayDirection
320 + tag: cefc_fan_tray_direction
321 + mapping:
322 + 1: unknown
323 + 2: front_to_back
324 + 3: back_to_front
325 + - MIB: CISCO-MEMORY-POOL-MIB
326 + table:
327 + OID: 1.3.6.1.4.1.9.9.48.1.1
328 + name: ciscoMemoryPoolTable
329 + symbols:
330 + - OID: 1.3.6.1.4.1.9.9.48.1.1.1.5
331 + name: ciscoMemoryPoolUsed
332 + - OID: 1.3.6.1.4.1.9.9.48.1.1.1.6
333 + name: ciscoMemoryPoolFree
334 + - OID: 1.3.6.1.4.1.9.9.48.1.1.1.7
335 + name: ciscoMemoryPoolLargestFree
336 + metric_tags:
337 + - symbol:
338 + OID: 1.3.6.1.4.1.9.9.48.1.1.1.2
339 + name: ciscoMemoryPoolName
340 + tag: mem_pool_name
341 +
342 + - MIB: CISCO-FIREWALL-MIB
343 + table:
344 + OID: 1.3.6.1.4.1.9.9.147.1.2.2.2
345 + name: cfwConnectionStatTable
346 + symbols:
347 + - OID: 1.3.6.1.4.1.9.9.147.1.2.2.2.1.4
348 + name: cfwConnectionStatCount
349 + metric_tags:
350 + - symbol:
351 + OID: 1.3.6.1.4.1.9.9.147.1.2.2.2.1.2
352 + name: cfwConnectionStatType
353 + tag: connection_type
354 + mapping:
355 + 1: other
356 + 2: total_open
357 + 3: current_open
358 + 4: current_closing
359 + 5: current_half_open
360 + 6: current_in_use
361 + 7: high
362 + - MIB: CISCO-FIREWALL-MIB
363 + table:
364 + OID: 1.3.6.1.4.1.9.9.147.1.2.1.1
365 + name: cfwHardwareStatusTable
366 + symbols:
367 + - OID: 1.3.6.1.4.1.9.9.147.1.2.1.1.1.3
368 + name: cfwHardwareStatusValue
369 + metric_tags:
370 + - index: 1
371 + tag: hardware_type
372 + - symbol:
373 + OID: 1.3.6.1.4.1.9.9.147.1.2.1.1.1.2
374 + name: cfwHardwareInformation
375 + tag: hardware_desc
376 +
377 + - MIB: CISCO-VIRTUAL-SWITCH-MIB
378 + table:
379 + OID: 1.3.6.1.4.1.9.9.388.1.2.2
380 + name: cvsChassisTable
381 + symbols:
382 + - OID: 1.3.6.1.4.1.9.9.388.1.2.2.1.3
383 + name: cvsChassisUpTime
384 + metric_tags:
385 + - symbol:
386 + OID: 1.3.6.1.4.1.9.9.388.1.2.2.1.1
387 + name: cvsChassisSwitchID
388 + tag: chassis_switch_id
389 +
390 + # RTT info
391 + - MIB: CISCO-RTTMON-MIB
392 + table:
393 + OID: 1.3.6.1.4.1.9.9.42.1.2.10
394 + name: rttMonLatestRttOperTable
395 + symbols:
396 + - OID: 1.3.6.1.4.1.9.9.42.1.2.10.1.1
397 + name: rttMonLatestRttOperCompletionTime
398 + - OID: 1.3.6.1.4.1.9.9.42.1.2.10.1.2
399 + name: rttMonLatestRttOperSense
400 + metric_tags:
401 + - symbol:
402 + OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.10
403 + name: rttMonCtrlOperState
404 + table: rttMonCtrlOperTable
405 + tag: rtt_state
406 + mapping:
407 + 1: reset
408 + 2: orderly_stop
409 + 3: immediate_stop
410 + 4: pending
411 + 5: inactive
412 + 6: active
413 + 7: restart
414 + - symbol:
415 + OID: 1.3.6.1.4.1.9.9.42.1.2.1.1.4
416 + name: rttMonCtrlAdminRttType
417 + table: rttMonCtrlAdminTable
418 + tag: rtt_type
419 + mapping:
420 + 1: echo
421 + 2: path_echo
422 + 3: file_io
423 + 4: script
424 + 5: udp_echo
425 + 6: tcp_connect
426 + 7: http
427 + 8: dns
428 + 9: jitter
429 + 10: dlsw
430 + 11: dhcp
431 + 12: ftp
432 + 13: voip
433 + 14: rtp
434 + 15: lsp_group
435 + 16: icmpjitter
436 + 17: lsp_ping
437 + 18: lsp_trace
438 + 19: ethernet_ping
439 + 20: ethernet_jitter
440 + 21: lsp_ping_pseudowire
441 + 22: video
442 + 23: y1731_delay
443 + 24: y1731_loss
444 + 25: mcast_jitter
445 + 26: fabric_path_echo
446 + - index: 1
447 + tag: rtt_index
448 + - symbol:
449 + OID: 1.3.6.1.4.1.9.9.42.1.2.2.1.6
450 + name: rttMonEchoAdminSourceAddress
451 + format: ip_address
452 + table: rttMonEchoAdminTable
453 + tag: rtt_source_address
454 + - symbol:
455 + OID: 1.3.6.1.4.1.9.9.42.1.2.2.1.2
456 + name: rttMonEchoAdminTargetAddress
457 + format: ip_address
458 + table: rttMonEchoAdminTable
459 + tag: rtt_target_address
460 + - symbol:
461 + OID: 1.3.6.1.4.1.9.9.42.1.2.10.1.2
462 + name: rttMonLatestRttOperSense
463 + table: rttMonLatestRttOperTable
464 + tag: rtt_sense
465 + mapping:
466 + 0: other
467 + 1: ok
468 + 2: disconnected
469 + 3: over_threshold
470 + 4: timeout
471 + 5: busy
472 + 6: not_connected
473 + 7: dropped
474 + 8: sequence_error
475 + 9: verify_error
476 + 10: application_specific
477 + 11: dns_server_timeout
478 + 12: tcp_connect_timeout
479 + 13: http_transaction_timeout
480 + 14: dns_query_error
481 + 15: http_error
482 + 16: error
483 +
484 + - MIB: CISCO-RTTMON-MIB
485 + table:
486 + OID: 1.3.6.1.4.1.9.9.42.1.2.9
487 + name: rttMonCtrlOperTable
488 + symbols:
489 + - OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.6
490 + name: rttMonCtrlOperTimeoutOccurred
491 + metric_tags:
492 + - symbol:
493 + OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.10
494 + name: rttMonCtrlOperState
495 + tag: rtt_state
496 + mapping:
497 + 1: reset
498 + 2: orderly_stop
499 + 3: immediate_stop
500 + 4: pending
501 + 5: inactive
502 + 6: active
503 + 7: restart
504 + - symbol:
505 + OID: 1.3.6.1.4.1.9.9.42.1.2.1.1.4
506 + name: rttMonCtrlAdminRttType
507 + table: rttMonCtrlAdminTable
508 + tag: rtt_type
509 + mapping:
510 + 1: echo
511 + 2: path_echo
512 + 3: file_io
513 + 4: script
514 + 5: udp_echo
515 + 6: tcp_connect
516 + 7: http
517 + 8: dns
518 + 9: jitter
519 + 10: dlsw
520 + 11: dhcp
521 + 12: ftp
522 + 13: voip
523 + 14: rtp
524 + 15: lsp_group
525 + 16: icmpjitter
526 + 17: lsp_ping
527 + 18: lsp_trace
528 + 19: ethernet_ping
529 + 20: ethernet_jitter
530 + 21: lsp_ping_pseudowire
531 + 22: video
532 + 23: y1731_delay
533 + 24: y1731_loss
534 + 25: mcast_jitter
535 + 26: fabric_path_echo
536 + - index: 1
537 + tag: rtt_index
538 + - symbol:
539 + OID: 1.3.6.1.4.1.9.9.42.1.2.2.1.6
540 + name: rttMonEchoAdminSourceAddress
541 + format: ip_address
542 + table: rttMonEchoAdminTable
543 + tag: rtt_source_address
544 + - symbol:
545 + OID: 1.3.6.1.4.1.9.9.42.1.2.2.1.2
546 + name: rttMonEchoAdminTargetAddress
547 + format: ip_address
548 + table: rttMonEchoAdminTable
549 + tag: rtt_target_address
550 + - symbol:
551 + OID: 1.3.6.1.4.1.9.9.42.1.2.9.1.6
552 + name: rttMonCtrlOperTimeoutOccurred
553 + name: rttMonCtrlOperTable
554 + tag: rtt_timeout
555 + mapping:
556 + 1: true
557 + 2: false
558 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-ipsec-flow-monitor.yaml new
+94
@@ -0,0 +1,94 @@
1 +metrics:
2 + - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
3 + table:
4 + name: cikeTunnelTable
5 + OID: 1.3.6.1.4.1.9.9.171.1.2.3
6 + symbols:
7 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.15
8 + name: cikeTunLifeTime
9 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.19
10 + name: cikeTunInOctets
11 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.20
12 + name: cikeTunInPkts
13 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.21
14 + name: cikeTunInDropPkts
15 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.27
16 + name: cikeTunOutOctets
17 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.28
18 + name: cikeTunOutPkts
19 + - OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.29
20 + name: cikeTunOutDropPkts
21 + metric_tags:
22 + - index: 1
23 + tag: phase_1_tunnel_index
24 + - tag: peer_local_value
25 + symbol:
26 + OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.3
27 + name: cikeTunLocalValue
28 + - tag: peer_remote_value
29 + symbol:
30 + OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.7
31 + name: cikeTunRemoteValue
32 + - tag: tunnel_status
33 + symbol:
34 + OID: 1.3.6.1.4.1.9.9.171.1.2.3.1.35
35 + name: cikeTunStatus
36 + mapping:
37 + 1: active
38 + 2: destroy
39 + - MIB: CISCO-IPSEC-FLOW-MONITOR-MIB
40 + table:
41 + name: cipSecTunnelTable
42 + OID: 1.3.6.1.4.1.9.9.171.1.3.2
43 + symbols:
44 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.9
45 + name: cipSecTunLifeTime
46 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.26
47 + name: cipSecTunInOctets
48 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.27
49 + name: cipSecTunHcInOctets
50 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.32
51 + name: cipSecTunInPkts
52 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.36
53 + name: cipSecTunInAuthFails
54 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.38
55 + name: cipSecTunInDecryptFails
56 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.39
57 + name: cipSecTunOutOctets
58 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.40
59 + name: cipSecTunHcOutOctets
60 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.45
61 + name: cipSecTunOutPkts
62 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.48
63 + name: cipSecTunOutAuthFails
64 + - OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.50
65 + name: cipSecTunOutEncryptFails
66 + metric_tags:
67 + - index: 1
68 + tag: phase_2_tunnel_index
69 + - tag: phase_1_tunnel_index
70 + symbol:
71 + OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.2
72 + name: cipSecTunIkeTunnelIndex
73 + - tag: tunnel_alive
74 + symbol:
75 + OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.3
76 + name: cipSecTunIkeTunnelAlive
77 + mapping:
78 + 1: true
79 + 2: false
80 + - tag: peer_local_address
81 + symbol:
82 + OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.4
83 + name: cipSecTunLocalAddr
84 + - tag: peer_remote_address
85 + symbol:
86 + OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.5
87 + name: cipSecTunRemoteAddr
88 + - tag: tunnel_status
89 + symbol:
90 + OID: 1.3.6.1.4.1.9.9.171.1.3.2.1.51
91 + name: cipSecTunStatus
92 + mapping:
93 + 1: active
94 + 2: destroy
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-metadata.yaml new
+57
@@ -0,0 +1,57 @@
1 +# Metadata mixin for Cisco devices.
2 +
3 +metadata:
4 + device:
5 + fields:
6 + vendor:
7 + value: "cisco"
8 + version:
9 + symbol:
10 + OID: 1.3.6.1.2.1.1.1.0
11 + name: sysDescr
12 + extract_value: '\sVersion\s+([a-zA-Z0-9.()]+)'
13 + # Example:
14 + # - Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.06E RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2016 by Cisco Systems, Inc. Compiled Sat 17-Dec-
15 + # - Cisco Internetwork Operating System Software ..IOS (tm) C2600 Software (C2600-I-M), Version 12.0(3)T3, RELEASE SOFTWARE (fc1)..Copyright (c) 1986-1999 by cisco Systems, Inc...
16 + # - Cisco NX-OS(tm) m9100, Software (m9100-s2ek9-mz), Version 4.1(1c), RELEASE SOFTWARE Copyright (c) 2002-2008 by Cisco Systems, Inc. Compiled 11/24/2008 18:00:00
17 + # - Cisco IOS XR Software (Cisco ASR9K Series), Version 4.2.3[Default] Copyright (c) 2013 by Cisco Systems, Inc.
18 + # Credit: Some examples are from: https://github.com/mtoshi/sysdescrparser/blob/master/samples/sample_data.json
19 + model:
20 + symbol:
21 + OID: 1.3.6.1.2.1.1.1.0
22 + name: sysDescr
23 + extract_value: '\sSoftware\s+\(([-a-zA-Z0-9_ ]+)\)'
24 + # Example:
25 + # - Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.06E RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2016 by Cisco Systems, Inc. Compiled Sat 17-Dec-
26 + # - Cisco Internetwork Operating System Software ..IOS (tm) C2600 Software (C2600-I-M), Version 12.0(3)T3, RELEASE SOFTWARE (fc1)..Copyright (c) 1986-1999 by cisco Systems, Inc...
27 + # - Cisco NX-OS(tm) m9100, Software (m9100-s2ek9-mz), Version 4.1(1c), RELEASE SOFTWARE Copyright (c) 2002-2008 by Cisco Systems, Inc. Compiled 11/24/2008 18:00:00
28 + # - Cisco IOS XR Software (Cisco ASR9K Series), Version 4.2.3[Default] Copyright (c) 2013 by Cisco Systems, Inc.
29 + # - Cisco NX-OS(tm) Nexus9000 C9364C, Software (NXOS 32-bit), Version 9.3(9), RELEASE SOFTWARE Copyright (c) 2002-2022 by Cisco Systems, Inc. Compiled 2/4/2022 7:00:00
30 + # Credit: Some examples are from: https://github.com/mtoshi/sysdescrparser/blob/master/samples/sample_data.json
31 +
32 + os_name:
33 + # TODO: Add tests (possibly unit tests) for profile regex patterns
34 + # Right now, we can only e2e test profiles but for match (match_pattern/match_value) and extract_value,
35 + # we need a way to unit test profiles. Using e2e is much heavier and is not suitable to testing regex patterns.
36 + # Some changes to test tooling might be needed to make easy to test those cases.
37 + symbols:
38 + - OID: 1.3.6.1.2.1.1.1.0
39 + name: sysDescr
40 + match_pattern: 'Cisco Internetwork Operating System Software'
41 + match_value: 'IOS'
42 + # Cisco Internetwork Operating System Software ..IOS (tm) C2600 Software (C2600-I-M), Version 12.0(3)T3, RELEASE SOFTWARE (fc1)..Copyright (c) 1986-1999 by cisco Systems, Inc...
43 + - OID: 1.3.6.1.2.1.1.1.0
44 + name: sysDescr
45 + match_pattern: 'Cisco IOS Software'
46 + match_value: 'IOS'
47 + # Example: Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.06E RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2016 by Cisco Systems, Inc.
48 + - OID: 1.3.6.1.2.1.1.1.0
49 + name: sysDescr
50 + match_pattern: 'Cisco NX-OS'
51 + match_value: 'NXOS'
52 + # Example: Cisco NX-OS(tm) m9100, Software (m9100-s2ek9-mz), Version 4.1(1c), RELEASE SOFTWARE Copyright (c) 2002-2008 by Cisco Systems, Inc. Compiled 11/24/2008 18:00:00
53 + - OID: 1.3.6.1.2.1.1.1.0
54 + name: sysDescr
55 + match_pattern: 'Cisco IOS XR'
56 + match_value: 'IOSXR'
57 + # Example: Cisco IOS XR Software (Cisco ASR9K Series), Version 4.2.3[Default] Copyright (c) 2013 by Cisco Systems, Inc.
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-voice.yaml new
+169
@@ -0,0 +1,169 @@
1 +# Metrics mixin for Cisco voice devices.
2 +
3 +metrics:
4 + - MIB: HOST-RESOURCES-MIB
5 + table:
6 + name: hrSWRunPerfTable
7 + OID: 1.3.6.1.2.1.25.5.1
8 + symbols:
9 + - name: hrSWRunPerfMem
10 + OID: 1.3.6.1.2.1.25.5.1.1.2
11 + - name: hrSWRunPerfCPU
12 + OID: 1.3.6.1.2.1.25.5.1.1.1
13 + metric_tags:
14 + - symbol:
15 + name: hrSWRunIndex
16 + OID: 1.3.6.1.2.1.25.4.2.1.1
17 + table: hrSWRunTable
18 + tag: run_index
19 + - MIB: HOST-RESOURCES-MIB
20 + table:
21 + name: hrSWRunTable
22 + OID: 1.3.6.1.2.1.25.4.2
23 + symbols:
24 + - name: hrSWRunStatus
25 + OID: 1.3.6.1.2.1.25.4.2.1.7
26 + metric_tags:
27 + - symbol:
28 + name: hrSWRunIndex
29 + OID: 1.3.6.1.2.1.25.4.2.1.1
30 + table: hrSWRunTable
31 + tag: run_index
32 + - MIB: CISCO-CVP-MIB
33 + table:
34 + name: ccvpSipTable
35 + OID: 1.3.6.1.4.1.9.9.590.1.6.1
36 + symbols:
37 + - name: ccvpSipIntAvgLatency1
38 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.5
39 + - name: ccvpSipIntAvgLatency2
40 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.6
41 + - name: ccvpSipIntConnectsRcv
42 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.4
43 + - name: ccvpSipIntNewCalls
44 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.3
45 + - name: ccvpSipRtActiveCalls
46 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.1
47 + - name: ccvpSipRtTotalCallLegs
48 + OID: 1.3.6.1.4.1.9.9.590.1.6.1.1.2
49 + metric_tags:
50 + - symbol:
51 + name: ccvpServiceIndex
52 + OID: 1.3.6.1.4.1.9.9.590.1.5.1.1.1
53 + table: ccvpServiceTable
54 + tag: service_index
55 +
56 + - MIB: CISCO-CVP-MIB
57 + metric_type: gauge
58 + symbol:
59 + name: ccvpLicAggMaxPortsInUse
60 + OID: 1.3.6.1.4.1.9.9.590.1.2.12.0
61 + - MIB: CISCO-CVP-MIB
62 + symbol:
63 + name: ccvpLicRtPortsInUse
64 + OID: 1.3.6.1.4.1.9.9.590.1.2.2.0
65 +
66 + - MIB: CISCO-CCM-MIB
67 + metric_type: gauge
68 + symbol:
69 + name: ccmRegisteredGateways
70 + OID: 1.3.6.1.4.1.9.9.156.1.5.8.0
71 + - MIB: CISCO-CCM-MIB
72 + metric_type: gauge
73 + symbol:
74 + name: ccmRegisteredPhones
75 + OID: 1.3.6.1.4.1.9.9.156.1.5.5.0
76 + - MIB: CISCO-CCM-MIB
77 + metric_type: gauge
78 + symbol:
79 + name: ccmRejectedPhones
80 + OID: 1.3.6.1.4.1.9.9.156.1.5.7.0
81 + - MIB: CISCO-CCM-MIB
82 + metric_type: gauge
83 + symbol:
84 + name: ccmUnregisteredPhones
85 + OID: 1.3.6.1.4.1.9.9.156.1.5.6.0
86 +
87 + - MIB: CISCO-VOICE-DIAL-CONTROL-MIB
88 + table:
89 + name: cvCallVolIfTable
90 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.5
91 + symbols:
92 + - name: cvCallVolMediaIncomingCalls
93 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.1
94 + - name: cvCallVolMediaOutgoingCalls
95 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.5.1.2
96 + metric_tags:
97 + - MIB: IF-MIB
98 + symbol:
99 + OID: 1.3.6.1.2.1.31.1.1.1.1
100 + name: ifName
101 + table: ifXTable
102 + tag: interface
103 +
104 + - MIB: CISCO-VOICE-DIAL-CONTROL-MIB
105 + table:
106 + name: cvCallVolPeerTable
107 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.4
108 + symbols:
109 + - name: cvCallVolPeerIncomingCalls
110 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.1
111 + - name: cvCallVolPeerOutgoingCalls
112 + OID: 1.3.6.1.4.1.9.9.63.1.3.8.4.1.2
113 + metric_tags:
114 + - index: 1
115 + tag: peer_index
116 +
117 + - MIB: DIAL-CONTROL-MIB
118 + metric_type: monotonic_count
119 + table:
120 + name: dialCtlPeerStatsTable
121 + OID: 1.3.6.1.2.1.10.21.1.2.2
122 + symbols:
123 + - name: dialCtlPeerStatsAcceptCalls
124 + OID: 1.3.6.1.2.1.10.21.1.2.2.1.5
125 + - name: dialCtlPeerStatsFailCalls
126 + OID: 1.3.6.1.2.1.10.21.1.2.2.1.4
127 + - name: dialCtlPeerStatsRefuseCalls
128 + OID: 1.3.6.1.2.1.10.21.1.2.2.1.6
129 + - name: dialCtlPeerStatsSuccessCalls
130 + OID: 1.3.6.1.2.1.10.21.1.2.2.1.3
131 + metric_tags:
132 + - index: 1
133 + tag: peer_index
134 +
135 + - MIB: CISCO-CONTACT-CENTER-APPS-MIB
136 + table:
137 + name: cccaPimTable
138 + OID: 1.3.6.1.4.1.9.9.473.1.3.6
139 + symbols:
140 + - name: cccaPimStatus
141 + OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.4
142 + metric_tags:
143 + - symbol:
144 + OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.1
145 + name: cccaPimNumber
146 + tag: pim_num
147 + - symbol:
148 + OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.2
149 + name: cccaPimPeripheralName
150 + tag: pim_name
151 + - symbol:
152 + OID: 1.3.6.1.4.1.9.9.473.1.3.6.1.5
153 + name: cccaPimPeripheralHostName
154 + tag: pim_host
155 +
156 + - MIB: CISCO-CONTACT-CENTER-APPS-MIB
157 + table:
158 + name: cccaRouterTable
159 + OID: 1.3.6.1.4.1.9.9.473.1.3.1
160 + symbols:
161 + - name: cccaRouterAgentsLoggedOn
162 + OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.3
163 + - name: cccaRouterCallsInProgress
164 + OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.4
165 + - name: cccaRouterCallsInQueue
166 + OID: 1.3.6.1.4.1.9.9.473.1.3.1.1.8
167 + metric_tags:
168 + - tag: instance_number
169 + index: 1 # Index of cccaRouterTable is (cccaInstanceNumber, cccaComponentIndex)
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_cisco-wlc.yaml new
+264
@@ -0,0 +1,264 @@
1 +# Base profile for Cisco Wireless LAN Controllers
2 +# This profile is only compatible with the core SNMP integration
3 +
4 +device:
5 + vendor: "cisco"
6 +
7 +metrics:
8 + # Connected APs metrics
9 +
10 + - MIB: AIRESPACE-WIRELESS-MIB
11 + table:
12 + OID: 1.3.6.1.4.1.14179.2.2.1
13 + name: bsnAPTable
14 + symbols:
15 + - name: accessPoint
16 + constant_value_one: true
17 + metric_tags:
18 + - symbol:
19 + OID: 1.3.6.1.4.1.14179.2.2.1.1.1
20 + name: bsnAPDot3MacAddress
21 + tag: ap_mac_address
22 + - symbol:
23 + OID: 1.3.6.1.4.1.14179.2.2.1.1.3
24 + name: bsnAPName
25 + tag: ap_name
26 + - symbol:
27 + OID: 1.3.6.1.4.1.14179.2.2.1.1.4
28 + name: bsnAPLocation
29 + tag: ap_location
30 + - symbol:
31 + OID: 1.3.6.1.4.1.14179.2.2.1.1.19
32 + name: bsnApIpAddress
33 + tag: ap_ip_address
34 + - symbol:
35 + OID: 1.3.6.1.4.1.14179.2.2.1.1.6
36 + name: bsnAPOperationStatus
37 + mapping:
38 + 1: associated
39 + 2: disassociating
40 + 3: downloading
41 + tag: ap_oper_status
42 + - symbol:
43 + OID: 1.3.6.1.4.1.14179.2.2.1.1.37
44 + name: bsnAPAdminStatus
45 + mapping:
46 + 1: enable
47 + 2: disable
48 + tag: ap_admin_status
49 +
50 + # Connected APs 802.11 interfaces metrics
51 +
52 + - MIB: AIRESPACE-WIRELESS-MIB
53 + table:
54 + OID: 1.3.6.1.4.1.14179.2.2.2
55 + name: bsnAPIfTable
56 + symbols:
57 + - name: accessPointInterface
58 + constant_value_one: true
59 + metric_tags:
60 + - symbol:
61 + OID: 1.3.6.1.4.1.14179.2.2.2.1.1
62 + name: bsnAPIfSlotId
63 + tag: ap_if_slot_id
64 + - symbol:
65 + OID: 1.3.6.1.4.1.14179.2.2.1.1.1
66 + name: bsnAPDot3MacAddress
67 + table: bsnAPTable
68 + index_transform: # Keep only MAC address index
69 + - start: 0
70 + end: 5
71 + tag: ap_mac_address
72 + - symbol:
73 + OID: 1.3.6.1.4.1.14179.2.2.1.1.3
74 + name: bsnAPName
75 + table: bsnAPTable
76 + index_transform: # Keep only MAC address index
77 + - start: 0
78 + end: 5
79 + tag: ap_name
80 + - symbol:
81 + OID: 1.3.6.1.4.1.14179.2.2.1.1.4
82 + name: bsnAPLocation
83 + table: bsnAPTable
84 + index_transform: # Keep only MAC address index
85 + - start: 0
86 + end: 5
87 + tag: ap_location
88 + - symbol:
89 + OID: 1.3.6.1.4.1.14179.2.2.1.1.19
90 + name: bsnApIpAddress
91 + table: bsnAPTable
92 + index_transform: # Keep only MAC address index
93 + - start: 0
94 + end: 5
95 + tag: ap_ip_address
96 + - symbol:
97 + OID: 1.3.6.1.4.1.14179.2.2.2.1.12
98 + name: bsnAPIfOperStatus
99 + mapping:
100 + 1: down
101 + 2: up
102 + tag: ap_if_oper_status
103 + - symbol:
104 + OID: 1.3.6.1.4.1.14179.2.2.2.1.34
105 + name: bsnAPIfAdminStatus
106 + mapping:
107 + 1: enable
108 + 2: disable
109 + tag: ap_if_admin_status
110 +
111 + - MIB: AIRESPACE-WIRELESS-MIB
112 + table:
113 + OID: 1.3.6.1.4.1.14179.2.2.2
114 + name: bsnAPIfTable
115 + metric_type: gauge
116 + symbols:
117 + - OID: 1.3.6.1.4.1.14179.2.2.2.1.15
118 + name: bsnApIfNoOfUsers
119 + metric_tags:
120 + - symbol:
121 + OID: 1.3.6.1.4.1.14179.2.2.2.1.1
122 + name: bsnAPIfSlotId
123 + tag: ap_if_slot_id
124 + - symbol:
125 + OID: 1.3.6.1.4.1.14179.2.2.1.1.1
126 + name: bsnAPDot3MacAddress
127 + table: bsnAPTable
128 + index_transform: # Keep only MAC address index
129 + - start: 0
130 + end: 5
131 + tag: ap_mac_address
132 + - symbol:
133 + OID: 1.3.6.1.4.1.14179.2.2.1.1.3
134 + name: bsnAPName
135 + table: bsnAPTable
136 + index_transform: # Keep only MAC address index
137 + - start: 0
138 + end: 5
139 + tag: ap_name
140 + - symbol:
141 + OID: 1.3.6.1.4.1.14179.2.2.1.1.4
142 + name: bsnAPLocation
143 + table: bsnAPTable
144 + index_transform: # Keep only MAC address index
145 + - start: 0
146 + end: 5
147 + tag: ap_location
148 + - symbol:
149 + OID: 1.3.6.1.4.1.14179.2.2.1.1.19
150 + name: bsnApIpAddress
151 + table: bsnAPTable
152 + index_transform: # Keep only MAC address index
153 + - start: 0
154 + end: 5
155 + tag: ap_ip_address
156 +
157 + # Load metrics
158 +
159 + - MIB: AIRESPACE-WIRELESS-MIB
160 + table:
161 + OID: 1.3.6.1.4.1.14179.2.2.13
162 + name: bsnAPIfLoadParametersTable
163 + symbols:
164 + - OID: 1.3.6.1.4.1.14179.2.2.13.1.1
165 + name: bsnAPIfLoadRxUtilization
166 + - OID: 1.3.6.1.4.1.14179.2.2.13.1.2
167 + name: bsnAPIfLoadTxUtilization
168 + - OID: 1.3.6.1.4.1.14179.2.2.13.1.24
169 + name: bsnAPIfPoorSNRClients
170 + - OID: 1.3.6.1.4.1.14179.2.2.13.1.3
171 + name: bsnAPIfLoadChannelUtilization
172 + metric_tags:
173 + - symbol:
174 + OID: 1.3.6.1.4.1.14179.2.2.2.1.1
175 + name: bsnAPIfSlotId
176 + table: bsnAPIfTable
177 + tag: ap_if_slot_id
178 + - symbol:
179 + OID: 1.3.6.1.4.1.14179.2.2.1.1.1
180 + name: bsnAPDot3MacAddress
181 + table: bsnAPTable
182 + index_transform: # Keep only MAC address index
183 + - start: 0
184 + end: 5
185 + tag: ap_mac_address
186 + - symbol:
187 + OID: 1.3.6.1.4.1.14179.2.2.1.1.3
188 + name: bsnAPName
189 + table: bsnAPTable
190 + index_transform: # Keep only MAC address index
191 + - start: 0
192 + end: 5
193 + tag: ap_name
194 + - symbol:
195 + OID: 1.3.6.1.4.1.14179.2.2.1.1.4
196 + name: bsnAPLocation
197 + table: bsnAPTable
198 + index_transform: # Keep only MAC address index
199 + - start: 0
200 + end: 5
201 + tag: ap_location
202 + - symbol:
203 + OID: 1.3.6.1.4.1.14179.2.2.1.1.19
204 + name: bsnApIpAddress
205 + table: bsnAPTable
206 + index_transform: # Keep only MAC address index
207 + - start: 0
208 + end: 5
209 + tag: ap_ip_address
210 +
211 + # WLAN Metrics
212 +
213 + - MIB: AIRESPACE-WIRELESS-MIB
214 + table:
215 + OID: 1.3.6.1.4.1.14179.2.1.1
216 + name: bsnDot11EssTable
217 + symbols:
218 + - name: wlan
219 + constant_value_one: true
220 + metric_tags:
221 + - symbol:
222 + OID: 1.3.6.1.4.1.14179.2.1.1.1.1
223 + name: bsnDot11EssIndex
224 + tag: wlan_index
225 + - symbol:
226 + OID: 1.3.6.1.4.1.14179.2.1.1.1.2
227 + name: bsnDot11EssSsid
228 + tag: ssid
229 + - symbol:
230 + OID: 1.3.6.1.4.1.14179.2.1.1.1.6
231 + name: bsnDot11EssAdminStatus
232 + mapping:
233 + 0: disable
234 + 1: enable
235 + tag: wlan_admin_status
236 + - symbol:
237 + OID: 1.3.6.1.4.1.14179.2.1.1.1.60
238 + name: bsnDot11EssRowStatus
239 + mapping:
240 + 1: active
241 + 2: notInService
242 + 3: notReady
243 + 4: createAndGo
244 + 5: createAndWait
245 + 6: destroy
246 + tag: wlan_row_status
247 +
248 + - MIB: AIRESPACE-WIRELESS-MIB
249 + table:
250 + OID: 1.3.6.1.4.1.14179.2.1.1
251 + name: bsnDot11EssTable
252 + metric_type: gauge
253 + symbols:
254 + - OID: 1.3.6.1.4.1.14179.2.1.1.1.38
255 + name: bsnDot11EssNumberOfMobileStations
256 + metric_tags:
257 + - symbol:
258 + OID: 1.3.6.1.4.1.14179.2.1.1.1.1
259 + name: bsnDot11EssIndex
260 + tag: wlan_index
261 + - symbol:
262 + OID: 1.3.6.1.4.1.14179.2.1.1.1.2
263 + name: bsnDot11EssSsid
264 + tag: ssid
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_dell-rac.yaml new
+1193
@@ -0,0 +1,1193 @@
1 +# Provide metrics that can be found in Dell devices that are or contain DRAC components
2 +
3 +metrics:
4 + - MIB: IDRAC-MIB-SMIv2
5 + table:
6 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10
7 + name: systemStateTable
8 + symbols:
9 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.4
10 + name: systemStateChassisStatus
11 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.6
12 + name: systemStatePowerUnitStatusRedundancy
13 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.9
14 + name: systemStatePowerSupplyStatusCombined
15 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.15
16 + name: systemStateAmperageStatusCombined
17 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.18
18 + name: systemStateCoolingUnitStatusRedundancy
19 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.21
20 + name: systemStateCoolingDeviceStatusCombined
21 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.24
22 + name: systemStateTemperatureStatusCombined
23 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.27
24 + name: systemStateMemoryDeviceStatusCombined
25 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.30
26 + name: systemStateChassisIntrusionStatusCombined
27 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.42
28 + name: systemStatePowerUnitStatusCombined
29 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.44
30 + name: systemStateCoolingUnitStatusCombined
31 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.50
32 + name: systemStateProcessorDeviceStatusCombined
33 + - OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.63
34 + name: systemStateTemperatureStatisticsStatusCombined
35 + metric_tags:
36 + - symbol:
37 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.1
38 + name: systemStatechassisIndex
39 + tag: chassis_index
40 + - MIB: IDRAC-MIB-SMIv2
41 + table:
42 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10
43 + name: systemStateTable
44 + symbols:
45 + - name: dell.systemState
46 + constant_value_one: true
47 + metric_tags:
48 + - symbol:
49 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.1
50 + name: systemStatechassisIndex
51 + tag: chassis_index
52 + - symbol:
53 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.4
54 + name: systemStateChassisStatus
55 + tag: system_state_chassis_status
56 + mapping:
57 + 1: other
58 + 2: unknown
59 + 3: ok
60 + 4: non_critical
61 + 5: critical
62 + 6: non_recoverable
63 + - symbol:
64 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.6
65 + name: systemStatePowerUnitStatusRedundancy
66 + tag: system_state_power_unit_status_redundancy
67 + mapping:
68 + 1: other
69 + 2: unknown
70 + 3: full
71 + 4: degraded
72 + 5: lost
73 + 6: not_redundant
74 + 7: redundancy_offline
75 + - symbol:
76 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.9
77 + name: systemStatePowerSupplyStatusCombined
78 + tag: system_state_power_supply_status_combined
79 + mapping:
80 + 1: other
81 + 2: unknown
82 + 3: ok
83 + 4: non_critical
84 + 5: critical
85 + 6: non_recoverable
86 + - symbol:
87 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.15
88 + name: systemStateAmperageStatusCombined
89 + tag: system_state_amperage_status_combined
90 + mapping:
91 + 1: other
92 + 2: unknown
93 + 3: ok
94 + 4: non_critical
95 + 5: critical
96 + 6: non_recoverable
97 + - symbol:
98 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.18
99 + name: systemStateCoolingUnitStatusRedundancy
100 + tag: system_state_cooling_unit_status_redundancy
101 + mapping:
102 + 1: other
103 + 2: unknown
104 + 3: full
105 + 4: degraded
106 + 5: lost
107 + 6: not_redundant
108 + 7: redundancy_offline
109 + - symbol:
110 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.21
111 + name: systemStateCoolingDeviceStatusCombined
112 + tag: system_state_cooling_device_status_combined
113 + mapping:
114 + 1: other
115 + 2: unknown
116 + 3: ok
117 + 4: non_critical
118 + 5: critical
119 + 6: non_recoverable
120 + - symbol:
121 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.24
122 + name: systemStateTemperatureStatusCombined
123 + tag: system_state_temperature_status_combined
124 + mapping:
125 + 1: other
126 + 2: unknown
127 + 3: ok
128 + 4: non_critical
129 + 5: critical
130 + 6: non_recoverable
131 + - symbol:
132 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.27
133 + name: systemStateMemoryDeviceStatusCombined
134 + tag: system_state_memory_device_status_combined
135 + mapping:
136 + 1: other
137 + 2: unknown
138 + 3: ok
139 + 4: non_critical
140 + 5: critical
141 + 6: non_recoverable
142 + - symbol:
143 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.30
144 + name: systemStateChassisIntrusionStatusCombined
145 + tag: system_state_chassis_intrusion_status_combined
146 + mapping:
147 + 1: other
148 + 2: unknown
149 + 3: ok
150 + 4: non_critical
151 + 5: critical
152 + 6: non_recoverable
153 + - symbol:
154 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.42
155 + name: systemStatePowerUnitStatusCombined
156 + tag: system_state_power_unit_status_combined
157 + mapping:
158 + 1: other
159 + 2: unknown
160 + 3: ok
161 + 4: non_critical
162 + 5: critical
163 + 6: non_recoverable
164 + - symbol:
165 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.44
166 + name: systemStateCoolingUnitStatusCombined
167 + tag: system_state_cooling_unit_status_combined
168 + mapping:
169 + 1: other
170 + 2: unknown
171 + 3: ok
172 + 4: non_critical
173 + 5: critical
174 + 6: non_recoverable
175 + - symbol:
176 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.50
177 + name: systemStateProcessorDeviceStatusCombined
178 + tag: system_state_processor_device_status_combined
179 + mapping:
180 + 1: other
181 + 2: unknown
182 + 3: ok
183 + 4: non_critical
184 + 5: critical
185 + 6: non_recoverable
186 + - symbol:
187 + OID: 1.3.6.1.4.1.674.10892.5.4.200.10.1.63
188 + name: systemStateTemperatureStatisticsStatusCombined
189 + tag: system_state_temperature_statistics_status_combined
190 + mapping:
191 + 1: other
192 + 2: unknown
193 + 3: ok
194 + 4: non_critical
195 + 5: critical
196 + 6: non_recoverable
197 + - MIB: IDRAC-MIB-SMIv2
198 + table:
199 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4
200 + name: physicalDiskTable
201 + symbols:
202 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4
203 + name: physicalDiskState
204 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11
205 + name: physicalDiskCapacityInMB
206 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.17
207 + name: physicalDiskUsedSpaceInMB
208 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.19
209 + name: physicalDiskFreeSpaceInMB
210 + metric_tags:
211 + - symbol:
212 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2
213 + name: physicalDiskName
214 + tag: disk_name
215 + - MIB: IDRAC-MIB-SMIv2
216 + table:
217 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4
218 + name: physicalDiskTable
219 + symbols:
220 + - name: dell.physicalDisk
221 + constant_value_one: true
222 + metric_tags:
223 + - symbol:
224 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4
225 + name: physicalDiskState
226 + tag: disk_state
227 + mapping:
228 + 1: unknown
229 + 2: ready
230 + 3: online
231 + 4: foreign
232 + 5: offline
233 + 6: blocked
234 + 7: failed
235 + 8: nonraid
236 + 9: removed
237 + 10: readonly
238 + - symbol:
239 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2
240 + name: physicalDiskName
241 + tag: disk_name
242 + - symbol:
243 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1
244 + name: physicalDiskNumber
245 + tag: disk_number
246 + - MIB: IDRAC-MIB-SMIv2
247 + table:
248 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9
249 + name: enclosurePowerSupplyTable
250 + symbols:
251 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.4
252 + name: enclosurePowerSupplyState
253 + metric_tags:
254 + - symbol:
255 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.2
256 + name: enclosurePowerSupplyName
257 + tag: supply_name
258 + - symbol:
259 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.1
260 + name: enclosurePowerSupplyNumber
261 + tag: enclosure_power_supply_number
262 + - symbol:
263 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.15
264 + name: enclosurePowerSupplyFQDD
265 + tag: enclosure_power_supply_fqdd
266 + - MIB: IDRAC-MIB-SMIv2
267 + table:
268 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9
269 + name: enclosurePowerSupplyTable
270 + symbols:
271 + - name: enclosurePowerSupply
272 + constant_value_one: true
273 + metric_tags:
274 + - symbol:
275 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.4
276 + name: enclosurePowerSupplyState
277 + tag: enclosure_power_supply_state
278 + mapping:
279 + 1: unknown
280 + 2: ready
281 + 3: failed
282 + 4: missing
283 + 5: degraded
284 + - symbol:
285 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.2
286 + name: enclosurePowerSupplyName
287 + tag: supply_name
288 + - symbol:
289 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.1
290 + name: enclosurePowerSupplyNumber
291 + tag: enclosure_power_supply_number
292 + - symbol:
293 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.15
294 + name: enclosurePowerSupplyFQDD
295 + tag: enclosure_power_supply_fqdd
296 + - MIB: IDRAC-MIB-SMIv2
297 + table:
298 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15
299 + name: batteryTable
300 + symbols:
301 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4
302 + name: batteryState
303 + metric_tags:
304 + - symbol:
305 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.20
306 + name: batteryFQDD
307 + tag: battery_fqdd
308 + - symbol:
309 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21
310 + name: batteryDisplayName
311 + tag: battery_name
312 + - MIB: IDRAC-MIB-SMIv2
313 + table:
314 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15
315 + name: batteryTable
316 + symbols:
317 + - name: dell.battery
318 + constant_value_one: true
319 + metric_tags:
320 + - symbol:
321 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4
322 + name: batteryState
323 + tag: battery_state
324 + mapping:
325 + 1: unknown
326 + 2: ready
327 + 3: failed
328 + 4: degraded
329 + 5: missing
330 + 6: charging
331 + 7: below_threshold
332 + - symbol:
333 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.20
334 + name: batteryFQDD
335 + tag: battery_fqdd
336 + - symbol:
337 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21
338 + name: batteryDisplayName
339 + tag: battery_name
340 + - MIB: IDRAC-MIB-SMIv2
341 + table:
342 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1
343 + name: controllerTable
344 + symbols:
345 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37
346 + name: controllerRollUpStatus
347 + metric_tags:
348 + - symbol:
349 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1
350 + name: controllerNumber
351 + tag: controller_number
352 + - symbol:
353 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2
354 + name: controllerName
355 + tag: controller_name
356 + - symbol:
357 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42
358 + name: controllerPCISlot
359 + tag: controller_pci_slot
360 + - symbol:
361 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78
362 + name: controllerFQDD
363 + tag: controller_fqdd
364 + - MIB: IDRAC-MIB-SMIv2
365 + table:
366 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1
367 + name: controllerTable
368 + symbols:
369 + - name: dell.controller
370 + constant_value_one: true
371 + metric_tags:
372 + - symbol:
373 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37
374 + name: controllerRollUpStatus
375 + tag: controller_roll_up_status
376 + mapping:
377 + 1: other
378 + 2: unknown
379 + 3: ok
380 + 4: non_critical
381 + 5: critical
382 + 6: non_recoverable
383 + - symbol:
384 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1
385 + name: controllerNumber
386 + tag: controller_number
387 + - symbol:
388 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2
389 + name: controllerName
390 + tag: controller_name
391 + - symbol:
392 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42
393 + name: controllerPCISlot
394 + tag: controller_pci_slot
395 + - symbol:
396 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78
397 + name: controllerFQDD
398 + tag: controller_fqdd
399 + - MIB: IDRAC-MIB-SMIv2
400 + table:
401 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80
402 + name: pCIDeviceTable
403 + symbols:
404 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.5
405 + name: pCIDeviceStatus
406 + metric_tags:
407 + - symbol:
408 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.9
409 + name: pCIDeviceDescriptionName
410 + tag: device_descr_name
411 + - symbol:
412 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.1
413 + name: pCIDevicechassisIndex
414 + tag: chassis_index
415 + - MIB: IDRAC-MIB-SMIv2
416 + table:
417 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80
418 + name: pCIDeviceTable
419 + symbols:
420 + - name: dell.pCIDevice
421 + constant_value_one: true
422 + metric_tags:
423 + - symbol:
424 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.5
425 + name: pCIDeviceStatus
426 + tag: device_status
427 + mapping:
428 + 1: other
429 + 2: unknown
430 + 3: ok
431 + 4: non_critical
432 + 5: critical
433 + 6: non_recoverable
434 + - symbol:
435 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.9
436 + name: pCIDeviceDescriptionName
437 + tag: device_descr_name
438 + - symbol:
439 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.1
440 + name: pCIDevicechassisIndex
441 + tag: chassis_index
442 + - MIB: IDRAC-MIB-SMIv2
443 + table:
444 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10
445 + name: systemSlotTable
446 + symbols:
447 + - OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.5
448 + name: systemSlotStatus
449 + metric_tags:
450 + - symbol:
451 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.8
452 + name: systemSlotSlotExternalSlotName
453 + tag: slot_name
454 + - symbol:
455 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.1
456 + name: systemSlotchassisIndex
457 + tag: chassis_index
458 + - MIB: IDRAC-MIB-SMIv2
459 + table:
460 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10
461 + name: systemSlotTable
462 + symbols:
463 + - name: dell.systemSlot
464 + constant_value_one: true
465 + metric_tags:
466 + - symbol:
467 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.5
468 + name: systemSlotStatus
469 + tag: slot_status
470 + mapping:
471 + 1: other
472 + 2: unknown
473 + 3: ok
474 + 4: non_critical
475 + 5: critical
476 + 6: non_recoverable
477 + - symbol:
478 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.8
479 + name: systemSlotSlotExternalSlotName
480 + tag: slot_name
481 + - symbol:
482 + OID: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.1
483 + name: systemSlotchassisIndex
484 + tag: chassis_index
485 + - MIB: IDRAC-MIB-SMIv2
486 + table:
487 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90
488 + name: networkDeviceTable
489 + symbols:
490 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.3
491 + name: networkDeviceStatus
492 + metric_tags:
493 + - symbol:
494 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.1
495 + name: networkDeviceChassisIndex
496 + tag: chassis_index
497 + - symbol:
498 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.16
499 + name: networkDevicePermanentMACAddress
500 + tag: mac_addr
501 + - symbol:
502 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30
503 + name: networkDeviceFQDD
504 + tag: device_fqdd
505 + - MIB: IDRAC-MIB-SMIv2
506 + table:
507 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90
508 + name: networkDeviceTable
509 + symbols:
510 + - name: dell.networkDevice
511 + constant_value_one: true
512 + metric_tags:
513 + - symbol:
514 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.3
515 + name: networkDeviceStatus
516 + tag: network_device_status
517 + mapping:
518 + 1: other
519 + 2: unknown
520 + 3: ok
521 + 4: non_critical
522 + 5: critical
523 + 6: non_recoverable
524 + - symbol:
525 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.1
526 + name: networkDeviceChassisIndex
527 + tag: chassis_index
528 + - symbol:
529 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.2
530 + name: networkDeviceIndex
531 + tag: device_index
532 + - symbol:
533 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.16
534 + name: networkDevicePermanentMACAddress
535 + tag: mac_addr
536 + - symbol:
537 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30
538 + name: networkDeviceFQDD
539 + tag: device_fqdd
540 + - MIB: IDRAC-MIB-SMIv2
541 + table:
542 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50
543 + name: systemBIOSTable
544 + symbols:
545 + - OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.5
546 + name: systemBIOSStatus
547 + metric_tags:
548 + - symbol:
549 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.1
550 + name: systemBIOSchassisIndex
551 + tag: chassis_index
552 + - symbol:
553 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.2
554 + name: systemBIOSIndex
555 + tag: system_bios_index
556 + - MIB: IDRAC-MIB-SMIv2
557 + table:
558 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50
559 + name: systemBIOSTable
560 + symbols:
561 + - name: dell.systemBIOS
562 + constant_value_one: true
563 + metric_tags:
564 + - symbol:
565 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.1
566 + name: systemBIOSchassisIndex
567 + tag: chassis_index
568 + - symbol:
569 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.2
570 + name: systemBIOSIndex
571 + tag: system_bios_index
572 + - symbol:
573 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.5
574 + name: systemBIOSStatus
575 + tag: system_bios_status
576 + mapping:
577 + 1: other
578 + 2: unknown
579 + 3: ok
580 + 4: non_critical
581 + 5: critical
582 + 6: non_recoverable
583 + - MIB: IDRAC-MIB-SMIv2
584 + table:
585 + OID: 1.3.6.1.4.1.674.10892.5.4.300.70
586 + name: intrusionTable
587 + symbols:
588 + - OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.5
589 + name: intrusionStatus
590 + - OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.6
591 + name: intrusionReading
592 + metric_tags:
593 + - symbol:
594 + OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.1
595 + name: intrusionchassisIndex
596 + tag: chassis_index
597 + - symbol:
598 + OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.2
599 + name: intrusionIndex
600 + tag: intrusion_index
601 + - symbol:
602 + OID: 1.3.6.1.4.1.674.10892.5.4.300.70.1.8
603 + name: intrusionLocationName
604 + tag: intrusion_location_name
605 + - MIB: IDRAC-MIB-SMIv2
606 + table:
607 + OID: 1.3.6.1.4.1.674.10892.5.4.600.12
608 + name: powerSupplyTable
609 + symbols:
610 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.6
611 + name: powerSupplyOutputWatts
612 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.9
613 + name: powerSupplyMaximumInputVoltage
614 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.16
615 + name: powerSupplyCurrentInputVoltage
616 + metric_tags:
617 + - symbol:
618 + OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.1
619 + name: powerSupplychassisIndex
620 + tag: chassis_index
621 + - symbol:
622 + OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.2
623 + name: powerSupplyIndex
624 + tag: power_supply_index
625 + - symbol:
626 + OID: 1.3.6.1.4.1.674.10892.5.4.600.12.1.15
627 + name: powerSupplyFQDD
628 + tag: power_supply_fqdd
629 + - MIB: IDRAC-MIB-SMIv2
630 + table:
631 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30
632 + name: amperageProbeTable
633 + symbols:
634 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.5
635 + name: amperageProbeStatus
636 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.6
637 + name: amperageProbeReading
638 + metric_tags:
639 + - symbol:
640 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.7
641 + name: amperageProbeType
642 + tag: probe_type
643 + mapping:
644 + 1: amperage_probe_type_is_other
645 + 2: amperage_probe_type_is_unknown
646 + 3: amperage_probe_type_is_1point5_volt # 1.5 volt
647 + 4: amperage_probe_type_is_3point3_volt # 3.3 volt
648 + 5: amperage_probe_type_is_5_volt # 5 volt
649 + 6: amperage_probe_type_is_minus5_volt # -5 volt
650 + 7: amperage_probe_type_is_12_volt # 12 volt
651 + 8: amperage_probe_type_is_minus12_volt # -12 volt
652 + 9: amperage_probe_type_is_io
653 + 10: amperage_probe_type_is_core
654 + 11: amperage_probe_type_is_flea
655 + 12: amperage_probe_type_is_battery
656 + 13: amperage_probe_type_is_terminator
657 + 14: amperage_probe_type_is_2point5_volt # 2.5 volt
658 + 15: amperage_probe_type_is_gtl
659 + 16: amperage_probe_type_is_discrete
660 + 23: amperage_probe_type_is_power_supply_amps
661 + 24: amperage_probe_type_is_power_supply_watts
662 + 25: amperage_probe_type_is_system_amps
663 + 26: amperage_probe_type_is_system_watts
664 + - symbol:
665 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.1
666 + name: amperageProbechassisIndex
667 + tag: chassis_index
668 + - symbol:
669 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.2
670 + name: amperageProbeIndex
671 + tag: amperage_probe_index
672 + - MIB: IDRAC-MIB-SMIv2
673 + table:
674 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30
675 + name: amperageProbeTable
676 + symbols:
677 + - name: dell.amperageProbe
678 + constant_value_one: true
679 + metric_tags:
680 + - symbol:
681 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.7
682 + name: amperageProbeType
683 + tag: probe_type
684 + mapping:
685 + 1: amperage_probe_type_is_other
686 + 2: amperage_probe_type_is_unknown
687 + 3: amperage_probe_type_is_1point5_volt # 1.5 volt
688 + 4: amperage_probe_type_is_3point3_volt # 3.3 volt
689 + 5: amperage_probe_type_is_5_volt # 5 volt
690 + 6: amperage_probe_type_is_minus5_volt # -5 volt
691 + 7: amperage_probe_type_is_12_volt # 12 volt
692 + 8: amperage_probe_type_is_minus12_volt # -12 volt
693 + 9: amperage_probe_type_is_io
694 + 10: amperage_probe_type_is_core
695 + 11: amperage_probe_type_is_flea
696 + 12: amperage_probe_type_is_battery
697 + 13: amperage_probe_type_is_terminator
698 + 14: amperage_probe_type_is_2point5_volt # 2.5 volt
699 + 15: amperage_probe_type_is_gtl
700 + 16: amperage_probe_type_is_discrete
701 + 23: amperage_probe_type_is_power_supply_amps
702 + 24: amperage_probe_type_is_power_supply_watts
703 + 25: amperage_probe_type_is_system_amps
704 + 26: amperage_probe_type_is_system_watts
705 + - symbol:
706 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.1
707 + name: amperageProbechassisIndex
708 + tag: chassis_index
709 + - symbol:
710 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.2
711 + name: amperageProbeIndex
712 + tag: amperage_probe_index
713 + - symbol:
714 + OID: 1.3.6.1.4.1.674.10892.5.4.600.30.1.5
715 + name: amperageProbeStatus
716 + tag: amperage_probe_status
717 + mapping:
718 + 1: other
719 + 2: unknown
720 + 3: ok
721 + 4: non_critical_upper
722 + 5: critical_upper
723 + 6: non_recoverable_upper
724 + 7: non_critical_lower
725 + 8: critical_lower
726 + 9: non_recoverable_lower
727 + 10: failed
728 + - MIB: IDRAC-MIB-SMIv2
729 + table:
730 + OID: 1.3.6.1.4.1.674.10892.5.4.600.60
731 + name: powerUsageTable
732 + symbols:
733 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.60.1.5
734 + name: powerUsageStatus
735 + metric_tags:
736 + - symbol:
737 + OID: 1.3.6.1.4.1.674.10892.5.4.600.60.1.1
738 + name: powerUsageChassisIndex
739 + tag: chassis_index
740 + - symbol:
741 + OID: 1.3.6.1.4.1.674.10892.5.4.600.60.1.2
742 + name: powerUsageIndex
743 + tag: power_usage_index
744 + - symbol:
745 + OID: 1.3.6.1.4.1.674.10892.5.4.600.60.1.6
746 + name: powerUsageEntityName
747 + tag: power_usage_entity_name
748 + - MIB: IDRAC-MIB-SMIv2
749 + table:
750 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20
751 + name: voltageProbeTable
752 + symbols:
753 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.5
754 + name: voltageProbeStatus
755 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.6
756 + name: voltageProbeReading
757 + metric_tags:
758 + - symbol:
759 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.1
760 + name: voltageProbechassisIndex
761 + tag: chassis_index
762 + - symbol:
763 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.2
764 + name: voltageProbeIndex
765 + tag: voltage_probe_index
766 + - symbol:
767 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.7
768 + name: voltageProbeType
769 + tag: probe_type
770 + mapping:
771 + 1: voltage_probe_type_is_other
772 + 2: voltage_probe_type_is_unknown
773 + 3: voltage_probe_type_is_1point5_volt # 1.5 volt
774 + 4: voltage_probe_type_is_3point3_volt # 3.3 volt
775 + 5: voltage_probe_type_is_5_volt # 5 volt
776 + 6: voltage_probe_type_is_minus5_volt # -5 volt
777 + 7: voltage_probe_type_is_12_volt # 12 volt
778 + 8: voltage_probe_type_is_minus12_volt # -12 volt
779 + 9: voltage_probe_type_is_io
780 + 10: voltage_probe_type_is_core
781 + 11: voltage_probe_type_is_flea
782 + 12: voltage_probe_type_is_battery
783 + 13: voltage_probe_type_is_terminator
784 + 14: voltage_probe_type_is_2point5_volt # 2.5 volt
785 + 15: voltage_probe_type_is_gtl
786 + 16: voltage_probe_type_is_discrete
787 + 17: voltage_probe_type_is_generic_discrete
788 + 18: voltage_probe_type_is_ps_voltage
789 + 19: voltage_probe_type_is_memory_status
790 + - MIB: IDRAC-MIB-SMIv2
791 + table:
792 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20
793 + name: voltageProbeTable
794 + symbols:
795 + - name: dell.voltageProbe
796 + constant_value_one: true
797 + metric_tags:
798 + - symbol:
799 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.1
800 + name: voltageProbechassisIndex
801 + tag: chassis_index
802 + - symbol:
803 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.2
804 + name: voltageProbeIndex
805 + tag: voltage_probe_index
806 + - symbol:
807 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.7
808 + name: voltageProbeType
809 + tag: probe_type
810 + mapping:
811 + 1: voltage_probe_type_is_other
812 + 2: voltage_probe_type_is_unknown
813 + 3: voltage_probe_type_is_1point5_volt # 1.5 volt
814 + 4: voltage_probe_type_is_3point3_volt # 3.3 volt
815 + 5: voltage_probe_type_is_5_volt # 5 volt
816 + 6: voltage_probe_type_is_minus5_volt # -5 volt
817 + 7: voltage_probe_type_is_12_volt # 12 volt
818 + 8: voltage_probe_type_is_minus12_volt # -12 volt
819 + 9: voltage_probe_type_is_io
820 + 10: voltage_probe_type_is_core
821 + 11: voltage_probe_type_is_flea
822 + 12: voltage_probe_type_is_battery
823 + 13: voltage_probe_type_is_terminator
824 + 14: voltage_probe_type_is_2point5_volt # 2.5 volt
825 + 15: voltage_probe_type_is_gtl
826 + 16: voltage_probe_type_is_discrete
827 + 17: voltage_probe_type_is_generic_discrete
828 + 18: voltage_probe_type_is_ps_voltage
829 + 19: voltage_probe_type_is_memory_status
830 + - symbol:
831 + OID: 1.3.6.1.4.1.674.10892.5.4.600.20.1.5
832 + name: voltageProbeStatus
833 + tag: voltage_probe_status
834 + mapping:
835 + 1: other
836 + 2: unknown
837 + 3: ok
838 + 4: non_critical_upper
839 + 5: critical_upper
840 + 6: non_recoverable_upper
841 + 7: non_critical_lower
842 + 8: critical_lower
843 + 9: non_recoverable_lower
844 + 10: failed
845 + - MIB: IDRAC-MIB-SMIv2
846 + table:
847 + OID: 1.3.6.1.4.1.674.10892.5.4.600.50
848 + name: systemBatteryTable
849 + symbols:
850 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.5
851 + name: systemBatteryStatus
852 + - OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.6
853 + name: systemBatteryReading
854 + metric_tags:
855 + - symbol:
856 + OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.1
857 + name: systemBatteryChassisIndex
858 + tag: chassis_index
859 + - symbol:
860 + OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.2
861 + name: systemBatteryIndex
862 + tag: system_battery_index
863 + - symbol:
864 + OID: 1.3.6.1.4.1.674.10892.5.4.600.50.1.7
865 + name: systemBatteryLocationName
866 + tag: system_battery_location_name
867 + - MIB: IDRAC-MIB-SMIv2
868 + table:
869 + OID: 1.3.6.1.4.1.674.10892.5.4.700.10
870 + name: coolingUnitTable
871 + symbols:
872 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.5
873 + name: coolingUnitRedundancyStatus
874 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.8
875 + name: coolingUnitStatus
876 + metric_tags:
877 + - symbol:
878 + OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.1
879 + name: coolingUnitchassisIndex
880 + tag: chassis_index
881 + - symbol:
882 + OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.2
883 + name: coolingUnitIndex
884 + tag: cooling_unit_index
885 + - symbol:
886 + OID: 1.3.6.1.4.1.674.10892.5.4.700.10.1.7
887 + name: coolingUnitName
888 + tag: cooling_unit_name
889 + - MIB: IDRAC-MIB-SMIv2
890 + table:
891 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12
892 + name: coolingDeviceTable
893 + symbols:
894 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.5
895 + name: coolingDeviceStatus
896 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.6
897 + name: coolingDeviceReading
898 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.18
899 + name: coolingDeviceDiscreteReading
900 + metric_tags:
901 + - symbol:
902 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.1
903 + name: coolingDevicechassisIndex
904 + tag: chassis_index
905 + - symbol:
906 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.2
907 + name: coolingDeviceIndex
908 + tag: cooling_device_name
909 + - symbol:
910 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.7
911 + name: coolingDeviceType
912 + tag: cooling_device_type
913 + mapping:
914 + 1: cooling_device_type_is_other
915 + 2: cooling_device_type_is_unknown
916 + 3: cooling_device_type_is_a_fan
917 + 4: cooling_device_type_is_a_blower
918 + 5: cooling_device_type_is_a_chip_fan
919 + 6: cooling_device_type_is_a_cabinet_fan
920 + 7: cooling_device_type_is_a_power_supply_fan
921 + 8: cooling_device_type_is_a_heat_pipe
922 + 9: cooling_device_type_is_refrigeration
923 + 10: cooling_device_type_is_active_cooling
924 + 11: cooling_device_type_is_passive_cooling
925 + - symbol:
926 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.8
927 + name: coolingDeviceLocationName
928 + tag: cooling_device_location_name
929 + - symbol:
930 + OID: 1.3.6.1.4.1.674.10892.5.4.700.12.1.19
931 + name: coolingDeviceFQDD
932 + tag: cooling_device_fqdd
933 + - MIB: IDRAC-MIB-SMIv2
934 + table:
935 + OID: 1.3.6.1.4.1.674.10892.5.4.700.20
936 + name: temperatureProbeTable
937 + symbols:
938 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.5
939 + name: temperatureProbeStatus
940 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.6
941 + name: temperatureProbeReading
942 + - OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.16
943 + name: temperatureProbeDiscreteReading
944 + metric_tags:
945 + - symbol:
946 + OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.1
947 + name: temperatureProbechassisIndex
948 + tag: chassis_index
949 + - symbol:
950 + OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.2
951 + name: temperatureProbeIndex
952 + tag: temperature_probe_index
953 + - symbol:
954 + OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.7
955 + name: temperatureProbeType
956 + tag: temperature_probe_type
957 + mapping:
958 + 1: temperature_probe_type_is_other
959 + 2: temperature_probe_type_is_unknown
960 + 3: temperature_probe_type_is_ambient_esm
961 + 16: temperature_probe_type_is_discrete
962 + - symbol:
963 + OID: 1.3.6.1.4.1.674.10892.5.4.700.20.1.8
964 + name: temperatureProbeLocationName
965 + tag: temperature_probe_location_name
966 + - MIB: IDRAC-MIB-SMIv2
967 + table:
968 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.30
969 + name: processorDeviceTable
970 + symbols:
971 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.5
972 + name: processorDeviceStatus
973 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.11
974 + name: processorDeviceMaximumSpeed
975 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.12
976 + name: processorDeviceCurrentSpeed
977 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.14
978 + name: processorDeviceVoltage
979 + metric_tags:
980 + - symbol:
981 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.1
982 + name: processorDevicechassisIndex
983 + tag: chassis_index
984 + - symbol:
985 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.2
986 + name: processorDeviceIndex
987 + tag: processor_device_index
988 + - symbol:
989 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.23
990 + name: processorDeviceBrandName
991 + tag: processor_device_brand_name
992 + - symbol:
993 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26
994 + name: processorDeviceFQDD
995 + tag: processor_device_fqdd
996 + - MIB: IDRAC-MIB-SMIv2
997 + table:
998 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.32
999 + name: processorDeviceStatusTable
1000 + symbols:
1001 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.5
1002 + name: processorDeviceStatusStatus
1003 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.6
1004 + name: processorDeviceStatusReading
1005 + metric_tags:
1006 + - symbol:
1007 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.1
1008 + name: processorDeviceStatusChassisIndex
1009 + tag: chassis_index
1010 + - symbol:
1011 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.2
1012 + name: processorDeviceStatusIndex
1013 + tag: processor_device_status_index
1014 + - symbol:
1015 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.7
1016 + name: processorDeviceStatusLocationName
1017 + tag: processor_device_status_location_name
1018 + - MIB: IDRAC-MIB-SMIv2
1019 + table:
1020 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50
1021 + name: memoryDeviceTable
1022 + symbols:
1023 + - OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.5
1024 + name: memoryDeviceStatus
1025 + metric_tags:
1026 + - symbol:
1027 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.7
1028 + name: memoryDeviceType
1029 + tag: device_type
1030 + - symbol:
1031 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.2
1032 + name: memoryDeviceIndex
1033 + tag: device_index
1034 + - symbol:
1035 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.1
1036 + name: memoryDevicechassisIndex
1037 + tag: chassis_index
1038 + - MIB: IDRAC-MIB-SMIv2
1039 + table:
1040 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50
1041 + name: memoryDeviceTable
1042 + symbols:
1043 + - name: dell.memoryDevice
1044 + constant_value_one: true
1045 + metric_tags:
1046 + - symbol:
1047 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.7
1048 + name: memoryDeviceType
1049 + tag: device_type
1050 + mapping:
1051 + 1: device_type_is_other
1052 + 2: device_type_is_unknown
1053 + 3: device_type_is_dram
1054 + 4: device_type_is_edram
1055 + 5: device_type_is_vram
1056 + 6: device_type_is_sram
1057 + 7: device_type_is_ram
1058 + 8: device_type_is_rom
1059 + 9: device_type_is_flash
1060 + 10: device_type_is_eeprom
1061 + 11: device_type_is_feprom
1062 + 12: device_type_is_eprom
1063 + 13: device_type_is_cdram
1064 + 14: device_type_is_3dram
1065 + 15: device_type_is_sdram
1066 + 16: device_type_is_sgram
1067 + 17: device_type_is_rdram
1068 + 18: device_type_is_ddr
1069 + 19: device_type_is_ddr2
1070 + 20: device_type_is_ddr2_fbdimm
1071 + 24: device_type_is_ddr3
1072 + 25: device_type_is_fbd2
1073 + 26: device_type_is_ddr4
1074 + - symbol:
1075 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.2
1076 + name: memoryDeviceIndex
1077 + tag: device_index
1078 + - symbol:
1079 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.1
1080 + name: memoryDevicechassisIndex
1081 + tag: chassis_index
1082 + - symbol:
1083 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.5
1084 + name: memoryDeviceStatus
1085 + tag: memory_device_status
1086 + mapping:
1087 + 1: other
1088 + 2: unknown
1089 + 3: ok
1090 + 4: non_critical
1091 + 5: critical
1092 + 6: non_recoverable
1093 + - MIB: IDRAC-MIB-SMIv2
1094 + table:
1095 + OID: 1.3.6.1.4.1.674.10892.5.4.2000.10
1096 + name: fruTable
1097 + symbols:
1098 + - OID: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.3
1099 + name: fruInformationStatus
1100 + metric_tags:
1101 + - symbol:
1102 + OID: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.1
1103 + name: fruChassisIndex
1104 + tag: chassis_index
1105 + - symbol:
1106 + OID: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.2
1107 + name: fruIndex
1108 + tag: fru_index
1109 + - symbol:
1110 + OID: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.12
1111 + name: fruFQDD
1112 + tag: fru_fqdd
1113 + - MIB: IDRAC-MIB-SMIv2
1114 + table:
1115 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1
1116 + name: virtualDiskTable
1117 + symbols:
1118 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4
1119 + name: virtualDiskState
1120 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6
1121 + name: virtualDiskSizeInMB
1122 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20
1123 + name: virtualDiskComponentStatus
1124 + - OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.37
1125 + name: virtualDiskT10PIStatus
1126 + metric_tags:
1127 + - symbol:
1128 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1
1129 + name: virtualDiskNumber
1130 + tag: virtual_disk_number
1131 + - symbol:
1132 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2
1133 + name: virtualDiskName
1134 + tag: virtual_disk_name
1135 + - symbol:
1136 + OID: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.35
1137 + name: virtualDiskFQDD
1138 + tag: virtual_disk_fqdd
1139 + - MIB: DELL-RAC-MIB
1140 + symbol:
1141 + OID: 1.3.6.1.4.1.674.10892.2.3.1.9.0
1142 + name: drsCMCCurrStatus
1143 + - MIB: DELL-RAC-MIB
1144 + symbol:
1145 + OID: 1.3.6.1.4.1.674.10892.2.3.1.1.0
1146 + name: drsGlobalCurrStatus
1147 + - MIB: DELL-RAC-MIB
1148 + symbol:
1149 + OID: 1.3.6.1.4.1.674.10892.2.3.1.5.0
1150 + name: drsPowerCurrStatus
1151 + - MIB: DELL-RAC-MIB
1152 + symbol:
1153 + OID: 1.3.6.1.4.1.674.10892.2.3.1.4.0
1154 + name: drsRedCurrStatus
1155 + - MIB: DELL-RAC-MIB
1156 + symbol:
1157 + OID: 1.3.6.1.4.1.674.10892.2.2.1.0
1158 + name: drsGlobalSystemStatus
1159 + - MIB: DELL-RAC-MIB
1160 + table:
1161 + OID: 1.3.6.1.4.1.674.10892.2.4.1
1162 + name: drsCMCPowerTable
1163 + symbols:
1164 + - OID: 1.3.6.1.4.1.674.10892.2.4.1.1.13
1165 + name: drsWattsReading
1166 + - OID: 1.3.6.1.4.1.674.10892.2.4.1.1.14
1167 + name: drsAmpsReading
1168 + metric_tags:
1169 + - symbol:
1170 + OID: 1.3.6.1.4.1.674.10892.2.4.1.1.1
1171 + name: drsChassisIndex
1172 + tag: chassis_index
1173 + - symbol:
1174 + OID: 1.3.6.1.4.1.674.10892.2.4.2.1.2
1175 + name: drsPSUIndex
1176 + tag: drs_psu_index
1177 + - MIB: DELL-RAC-MIB
1178 + metric_type: monotonic_count
1179 + table:
1180 + OID: 1.3.6.1.4.1.674.10892.2.4.1
1181 + name: drsCMCPowerTable
1182 + symbols:
1183 + - OID: 1.3.6.1.4.1.674.10892.2.4.1.1.6
1184 + name: drsKWhCumulative
1185 + metric_tags:
1186 + - symbol:
1187 + OID: 1.3.6.1.4.1.674.10892.2.4.1.1.1
1188 + name: drsChassisIndex
1189 + tag: chassis_index
1190 + - symbol:
1191 + OID: 1.3.6.1.4.1.674.10892.2.4.2.1.2
1192 + name: drsPSUIndex
1193 + tag: drs_psu_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_dell.yaml new
+10
@@ -0,0 +1,10 @@
1 +# Profile for Dell devices
2 +
3 +extends:
4 + - _base.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "dell"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_f5-big-ip-cpu-memory.yaml new
+30
@@ -0,0 +1,30 @@
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 + - MIB: F5-BIGIP-SYSTEM-MIB
12 + metric_type: gauge
13 + symbol:
14 + OID: 1.3.6.1.4.1.3375.2.1.1.2.1.45.0
15 + # core check only
16 + name: memory.used
17 + # CPU
18 + - MIB: F5-BIGIP-SYSTEM-MIB
19 + table:
20 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2
21 + name: sysMultiHostCpuTable
22 + metric_type: gauge
23 + symbols:
24 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.27
25 + name: cpu.usage # sysMultiHostCpuUsageRatio1m
26 + metric_tags:
27 + - symbol:
28 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.3
29 + name: sysMultiHostCpuId
30 + tag: cpu
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_fortinet-fortigate-cpu-memory.yaml new
+19
@@ -0,0 +1,19 @@
1 +# CPU and memory metrics for Fortinet FortiGate devices
2 +metrics:
3 +
4 + ### CPU
5 + - MIB: FORTINET-FORTIGATE-MIB
6 + symbol:
7 + # Current CPU usage (percentage).
8 + OID: 1.3.6.1.4.1.12356.101.4.1.3.0
9 + # core check only
10 + name: cpu.usage
11 +
12 +
13 + ### Memory
14 + - MIB: FORTINET-FORTIGATE-MIB
15 + symbol:
16 + # Current memory utilization (percentage).
17 + OID: 1.3.6.1.4.1.12356.101.4.1.4.0
18 + # core check only
19 + name: memory.usage
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_fortinet-fortigate-vpn-tunnel.yaml new
+17
@@ -0,0 +1,17 @@
1 +metrics:
2 + - MIB: FORTINET-FORTIGATE-MIB
3 + table:
4 + OID: 1.3.6.1.4.1.12356.101.12.2.2
5 + name: fgVpnTunTable
6 + symbols:
7 + - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.18
8 + name: fgVpnTunEntInOctets
9 + - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.19
10 + name: fgVpnTunEntOutOctets
11 + - OID: 1.3.6.1.4.1.12356.101.12.2.2.1.20
12 + name: fgVpnTunEntStatus
13 + metric_tags:
14 + - tag: vpn_tunnel
15 + symbol:
16 + OID: 1.3.6.1.4.1.12356.101.12.2.2.1.2
17 + name: fgVpnTunEntPhase1Name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-bgp4.yaml new
+69
@@ -0,0 +1,69 @@
1 +# Peer
2 +# This table contains one entry per neighbor (BGP peer) and information about the connections with BGP peers.
3 +metrics:
4 + - MIB: BGP4-MIB
5 + table:
6 + name: bgpPeerTable
7 + OID: 1.3.6.1.2.1.15.3
8 + symbols:
9 + - name: peerConnectionByState
10 + constant_value_one: true
11 + - OID: 1.3.6.1.2.1.15.3.1.3
12 + name: bgpPeerAdminStatus
13 + - OID: 1.3.6.1.2.1.15.3.1.4
14 + name: bgpPeerNegotiatedVersion
15 + - OID: 1.3.6.1.2.1.15.3.1.9
16 + name: bgpPeerRemoteAs
17 + - OID: 1.3.6.1.2.1.15.3.1.2
18 + name: bgpPeerState
19 + - OID: 1.3.6.1.2.1.15.3.1.10
20 + name: bgpPeerInUpdates
21 + - OID: 1.3.6.1.2.1.15.3.1.11
22 + name: bgpPeerOutUpdates
23 + - OID: 1.3.6.1.2.1.15.3.1.12
24 + name: bgpPeerInTotalMessages
25 + - OID: 1.3.6.1.2.1.15.3.1.13
26 + name: bgpPeerOutTotalMessages
27 + - OID: 1.3.6.1.2.1.15.3.1.15
28 + name: bgpPeerFsmEstablishedTransitions
29 + - OID: 1.3.6.1.2.1.15.3.1.16
30 + name: bgpPeerFsmEstablishedTime
31 + - OID: 1.3.6.1.2.1.15.3.1.17
32 + name: bgpPeerConnectRetryInterval
33 + - OID: 1.3.6.1.2.1.15.3.1.18
34 + name: bgpPeerHoldTime
35 + - OID: 1.3.6.1.2.1.15.3.1.19
36 + name: bgpPeerKeepAlive
37 + - OID: 1.3.6.1.2.1.15.3.1.20
38 + name: bgpPeerHoldTimeConfigured
39 + - OID: 1.3.6.1.2.1.15.3.1.21
40 + name: bgpPeerKeepAliveConfigured
41 + - OID: 1.3.6.1.2.1.15.3.1.22
42 + name: bgpPeerMinASOriginationInterval
43 + metric_tags:
44 + - tag: remote_as
45 + symbol:
46 + OID: 1.3.6.1.2.1.15.3.1.9
47 + name: bgpPeerRemoteAs
48 + - tag: admin_status
49 + symbol:
50 + OID: 1.3.6.1.2.1.15.3.1.3
51 + name: bgpPeerAdminStatus
52 + mapping:
53 + 1: stop
54 + 2: start
55 + - tag: peer_state
56 + symbol:
57 + OID: 1.3.6.1.2.1.15.3.1.2
58 + name: bgpPeerState
59 + mapping:
60 + 1: idle
61 + 2: connect
62 + 3: active
63 + 4: opensent
64 + 5: openconfirm
65 + 6: established
66 + - tag: neighbor
67 + symbol:
68 + OID: 1.3.6.1.2.1.15.3.1.7
69 + name: bgpPeerRemoteAddr
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-entity-sensor.yaml new
+100
@@ -0,0 +1,100 @@
1 +metrics:
2 + - MIB: ENTITY-SENSOR-MIB
3 + table:
4 + OID: 1.3.6.1.2.1.99.1.1
5 + name: entPhySensorTable
6 + symbols:
7 + - OID: 1.3.6.1.2.1.99.1.1.1.4
8 + name: entPhySensorValue
9 + metric_tags:
10 + - symbol:
11 + OID: 1.3.6.1.2.1.99.1.1.1.1
12 + name: entPhySensorType
13 + tag: ent_phy_sensor_type
14 + mapping:
15 + 1: other
16 + 2: unknown
17 + 3: volts_ac
18 + 4: volts_dc
19 + 5: amperes
20 + 6: watts
21 + 7: hertz
22 + 8: celsius
23 + 9: percent_rh
24 + 10: rpm
25 + 11: cmm
26 + 12: truthvalue
27 + - symbol:
28 + OID: 1.3.6.1.2.1.99.1.1.1.2
29 + name: entPhySensorScale
30 + tag: ent_phy_sensor_scale
31 + mapping:
32 + 1: yocto
33 + 2: zepto
34 + 3: atto
35 + 4: femto
36 + 5: pico
37 + 6: nano
38 + 7: micro
39 + 8: milli
40 + 9: units
41 + 10: kilo
42 + 11: mega
43 + 12: giga
44 + 13: tera
45 + 14: exa
46 + 15: peta
47 + 16: zetta
48 + 17: yotta
49 + - symbol:
50 + OID: 1.3.6.1.2.1.99.1.1.1.3
51 + name: entPhySensorPrecision
52 + tag: ent_phy_sensor_precision
53 + - symbol:
54 + OID: 1.3.6.1.2.1.99.1.1.1.6
55 + name: entPhySensorUnitsDisplay
56 + tag: ent_phy_sensor_units_display
57 + - symbol:
58 + OID: 1.3.6.1.2.1.47.1.1.1.1.2
59 + name: entPhysicalDescr
60 + tag: ent_physical_descr
61 + - symbol:
62 + OID: 1.3.6.1.2.1.47.1.1.1.1.5
63 + name: entPhysicalClass
64 + tag: ent_physical_class
65 + mapping:
66 + 1: other
67 + 2: unknown
68 + 3: chassis
69 + 4: backplane
70 + 5: container
71 + 6: power_supply
72 + 7: fan
73 + 8: sensor
74 + 9: module
75 + 10: port
76 + 11: stack
77 + 12: cpu
78 + 13: energy_object
79 + 14: battery
80 + 15: storage_drive
81 + - symbol:
82 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
83 + name: entPhysicalName
84 + tag: ent_physical_name
85 + - symbol:
86 + OID: 1.3.6.1.2.1.47.1.1.1.1.11
87 + name: entPhysicalSerialNum
88 + tag: ent_physical_serial_num
89 + - symbol:
90 + OID: 1.3.6.1.2.1.47.1.1.1.1.13
91 + name: entPhysicalModelName
92 + tag: ent_physical_model_name
93 + - symbol:
94 + OID: 1.3.6.1.2.1.99.1.1.1.5
95 + name: entPhySensorOperStatus
96 + tag: ent_phy_sensor_oper_status
97 + mapping:
98 + 1: ok
99 + 2: unavailable
100 + 3: nonoperational
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-host-cpu-memory.yaml new
+35
@@ -0,0 +1,35 @@
1 +# CPU and memory metrics for devices
2 +
3 +metrics:
4 + #
5 + # Memory
6 + #
7 + - MIB: HOST-RESOURCES-MIB
8 + table:
9 + OID: 1.3.6.1.2.1.25.2.3
10 + name: hrStorageTable
11 + symbols:
12 + - OID: 1.3.6.1.2.1.25.2.3.1.5
13 + # core check only
14 + name: memory.total
15 + - OID: 1.3.6.1.2.1.25.2.3.1.6
16 + # core check only
17 + name: memory.used
18 + metric_tags:
19 + - tag: mem
20 + index: 1
21 +
22 + #
23 + # Processor Load
24 + #
25 + - MIB: HOST-RESOURCES-MIB
26 + table:
27 + OID: 1.3.6.1.2.1.25.3.3
28 + name: hrProcessorTable
29 + symbols:
30 + - OID: 1.3.6.1.2.1.25.3.3.1.2
31 + # core check only
32 + name: cpu.usage
33 + metric_tags:
34 + - tag: cpu
35 + index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-host-resources-base.yaml new
+69
@@ -0,0 +1,69 @@
1 +# Generic Resource metrics for devices
2 +
3 +# Currently covers basic uptime and system process count along with storage stats
4 +# TODO: add device table
5 +
6 +metrics:
7 + #
8 + # General System Information
9 + #
10 + - MIB: HOST-RESOURCES-MIB
11 + symbol:
12 + OID: 1.3.6.1.2.1.25.1.1.0
13 + name: hrSystemUptime
14 + - MIB: HOST-RESOURCES-MIB
15 + symbol:
16 + OID: 1.3.6.1.2.1.25.1.5.0
17 + name: hrSystemNumUsers
18 + - MIB: HOST-RESOURCES-MIB
19 + symbol:
20 + OID: 1.3.6.1.2.1.25.1.6.0
21 + name: hrSystemProcesses
22 + - MIB: HOST-RESOURCES-MIB
23 + symbol:
24 + OID: 1.3.6.1.2.1.25.1.7.0
25 + name: hrSystemMaxProcesses
26 +
27 + #
28 + # Storage Devices
29 + #
30 + - MIB: HOST-RESOURCES-MIB
31 + table:
32 + OID: 1.3.6.1.2.1.25.2.3
33 + name: hrStorageTable
34 + symbols:
35 + - OID: 1.3.6.1.2.1.25.2.3.1.4
36 + name: hrStorageAllocationUnits
37 + - OID: 1.3.6.1.2.1.25.2.3.1.5
38 + name: hrStorageSize
39 + - OID: 1.3.6.1.2.1.25.2.3.1.6
40 + name: hrStorageUsed
41 + - OID: 1.3.6.1.2.1.25.2.3.1.7
42 + name: hrStorageAllocationFailures
43 + metric_tags:
44 + - tag: storagedesc
45 + symbol:
46 + OID: 1.3.6.1.2.1.25.2.3.1.3
47 + name: hrStorageDescr
48 + - tag: storagetype
49 + symbol:
50 + OID: 1.3.6.1.2.1.25.2.3.1.2
51 + name: hrStorageType
52 +
53 + #
54 + # Processor Load
55 + #
56 + - MIB: HOST-RESOURCES-MIB
57 + table:
58 + OID: 1.3.6.1.2.1.25.3.3
59 + name: hrProcessorTable
60 + symbols:
61 + - OID: 1.3.6.1.2.1.25.3.3.1.2
62 + name: hrProcessorLoad
63 + metric_tags:
64 + - index: 1 # hrDeviceIndex
65 + tag: hr_device_index
66 + - tag: processorid
67 + symbol:
68 + OID: 1.3.6.1.2.1.25.3.3.1.1
69 + name: hrProcessorFrwID
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-host-resources.yaml new
+4
@@ -0,0 +1,4 @@
1 +# Generic Resource metrics for devices with cpu and memory metrics combined
2 +extends:
3 + - _generic-host-resources-base.yaml
4 + - _generic-host-cpu-memory.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-if.yaml new
+166
@@ -0,0 +1,166 @@
1 +# Generic network interfaces abstract profile.
2 +# MIB: IF-MIB
3 +
4 +metadata:
5 + interface:
6 + fields:
7 + name:
8 + symbol:
9 + OID: 1.3.6.1.2.1.31.1.1.1.1
10 + name: ifName
11 + description:
12 + symbol:
13 + OID: 1.3.6.1.2.1.2.2.1.2
14 + name: ifDescr
15 + mac_address:
16 + symbol:
17 + OID: 1.3.6.1.2.1.2.2.1.6
18 + name: ifPhysAddress
19 + format: mac_address
20 + admin_status:
21 + symbol:
22 + OID: 1.3.6.1.2.1.2.2.1.7
23 + name: ifAdminStatus
24 + oper_status:
25 + symbol:
26 + OID: 1.3.6.1.2.1.2.2.1.8
27 + name: ifOperStatus
28 + # TODO: Impl ip_address
29 + alias: # from another table
30 + symbol:
31 + OID: 1.3.6.1.2.1.31.1.1.1.18
32 + name: ifAlias
33 + id_tags:
34 + - symbol:
35 + OID: 1.3.6.1.2.1.31.1.1.1.1
36 + name: ifName
37 + tag: interface
38 +
39 +metrics:
40 +- MIB: IF-MIB
41 + symbol:
42 + OID: 1.3.6.1.2.1.2.1.0
43 + name: ifNumber
44 +
45 +- MIB: IF-MIB
46 + table:
47 + OID: 1.3.6.1.2.1.2.2
48 + name: ifTable
49 + metric_type: monotonic_count_and_rate
50 + symbols:
51 + - OID: 1.3.6.1.2.1.2.2.1.14
52 + name: ifInErrors
53 + - OID: 1.3.6.1.2.1.2.2.1.13
54 + name: ifInDiscards
55 + - OID: 1.3.6.1.2.1.2.2.1.20
56 + name: ifOutErrors
57 + - OID: 1.3.6.1.2.1.2.2.1.19
58 + name: ifOutDiscards
59 + metric_tags:
60 + - symbol:
61 + OID: 1.3.6.1.2.1.31.1.1.1.1
62 + name: ifName
63 + table: ifXTable
64 + tag: interface
65 + - symbol:
66 + OID: 1.3.6.1.2.1.31.1.1.1.18
67 + name: ifAlias
68 + table: ifXTable
69 + tag: interface_alias
70 + - index: 1 # ifIndex
71 + tag: interface_index
72 +- MIB: IF-MIB
73 + table:
74 + OID: 1.3.6.1.2.1.2.2
75 + name: ifTable
76 + symbols:
77 + - OID: 1.3.6.1.2.1.2.2.1.7
78 + name: ifAdminStatus
79 + - OID: 1.3.6.1.2.1.2.2.1.8
80 + name: ifOperStatus
81 + - OID: 1.3.6.1.2.1.2.2.1.5
82 + name: ifSpeed
83 + metric_tags:
84 + - symbol:
85 + OID: 1.3.6.1.2.1.31.1.1.1.1
86 + name: ifName
87 + table: ifXTable
88 + tag: interface
89 + - symbol:
90 + OID: 1.3.6.1.2.1.31.1.1.1.18
91 + name: ifAlias
92 + table: ifXTable
93 + tag: interface_alias
94 + - index: 1 # ifIndex
95 + tag: interface_index
96 +- MIB: IF-MIB
97 + table:
98 + OID: 1.3.6.1.2.1.31.1.1
99 + name: ifXTable
100 + metric_type: monotonic_count
101 + symbols:
102 + - OID: 1.3.6.1.2.1.31.1.1.1.7
103 + name: ifHCInUcastPkts
104 + - OID: 1.3.6.1.2.1.31.1.1.1.8
105 + name: ifHCInMulticastPkts
106 + - OID: 1.3.6.1.2.1.31.1.1.1.9
107 + name: ifHCInBroadcastPkts
108 + - OID: 1.3.6.1.2.1.31.1.1.1.11
109 + name: ifHCOutUcastPkts
110 + - OID: 1.3.6.1.2.1.31.1.1.1.12
111 + name: ifHCOutMulticastPkts
112 + - OID: 1.3.6.1.2.1.31.1.1.1.13
113 + name: ifHCOutBroadcastPkts
114 + metric_tags:
115 + - symbol:
116 + OID: 1.3.6.1.2.1.31.1.1.1.1
117 + name: ifName
118 + tag: interface
119 + - symbol:
120 + OID: 1.3.6.1.2.1.31.1.1.1.18
121 + name: ifAlias
122 + table: ifXTable
123 + tag: interface_alias
124 + - index: 1 # ifIndex
125 + tag: interface_index
126 +- MIB: IF-MIB
127 + table:
128 + OID: 1.3.6.1.2.1.31.1.1
129 + name: ifXTable
130 + metric_type: monotonic_count_and_rate
131 + symbols:
132 + - OID: 1.3.6.1.2.1.31.1.1.1.6
133 + name: ifHCInOctets
134 + - OID: 1.3.6.1.2.1.31.1.1.1.10
135 + name: ifHCOutOctets
136 + metric_tags:
137 + - symbol:
138 + OID: 1.3.6.1.2.1.31.1.1.1.1
139 + name: ifName
140 + tag: interface
141 + - symbol:
142 + OID: 1.3.6.1.2.1.31.1.1.1.18
143 + name: ifAlias
144 + table: ifXTable
145 + tag: interface_alias
146 + - index: 1 # ifIndex
147 + tag: interface_index
148 +- MIB: IF-MIB
149 + table:
150 + OID: 1.3.6.1.2.1.31.1.1
151 + name: ifXTable
152 + symbols:
153 + - OID: 1.3.6.1.2.1.31.1.1.1.15
154 + name: ifHighSpeed
155 + metric_tags:
156 + - symbol:
157 + OID: 1.3.6.1.2.1.31.1.1.1.1
158 + name: ifName
159 + tag: interface
160 + - symbol:
161 + OID: 1.3.6.1.2.1.31.1.1.1.18
162 + name: ifAlias
163 + table: ifXTable
164 + tag: interface_alias
165 + - index: 1 # ifIndex
166 + tag: interface_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-ip.yaml new
+150
@@ -0,0 +1,150 @@
1 +# Generic IP metrics.
2 +
3 +metrics:
4 +- MIB: IP-MIB
5 + table:
6 + OID: 1.3.6.1.2.1.4.31.1
7 + name: ipSystemStatsTable
8 + metric_type: monotonic_count
9 + symbols:
10 + - OID: 1.3.6.1.2.1.4.31.1.1.4
11 + name: ipSystemStatsHCInReceives
12 + - OID: 1.3.6.1.2.1.4.31.1.1.6
13 + name: ipSystemStatsHCInOctets
14 + - OID: 1.3.6.1.2.1.4.31.1.1.7
15 + name: ipSystemStatsInHdrErrors
16 + - OID: 1.3.6.1.2.1.4.31.1.1.8
17 + name: ipSystemStatsInNoRoutes
18 + - OID: 1.3.6.1.2.1.4.31.1.1.9
19 + name: ipSystemStatsInAddrErrors
20 + - OID: 1.3.6.1.2.1.4.31.1.1.10
21 + name: ipSystemStatsInUnknownProtos
22 + - OID: 1.3.6.1.2.1.4.31.1.1.11
23 + name: ipSystemStatsInTruncatedPkts
24 + - OID: 1.3.6.1.2.1.4.31.1.1.13
25 + name: ipSystemStatsHCInForwDatagrams
26 + - OID: 1.3.6.1.2.1.4.31.1.1.14
27 + name: ipSystemStatsReasmReqds
28 + - OID: 1.3.6.1.2.1.4.31.1.1.15
29 + name: ipSystemStatsReasmOKs
30 + - OID: 1.3.6.1.2.1.4.31.1.1.16
31 + name: ipSystemStatsReasmFails
32 + - OID: 1.3.6.1.2.1.4.31.1.1.17
33 + name: ipSystemStatsInDiscards
34 + - OID: 1.3.6.1.2.1.4.31.1.1.19
35 + name: ipSystemStatsHCInDelivers
36 + - OID: 1.3.6.1.2.1.4.31.1.1.21
37 + name: ipSystemStatsHCOutRequests
38 + - OID: 1.3.6.1.2.1.4.31.1.1.22
39 + name: ipSystemStatsOutNoRoutes
40 + - OID: 1.3.6.1.2.1.4.31.1.1.24
41 + name: ipSystemStatsHCOutForwDatagrams
42 + - OID: 1.3.6.1.2.1.4.31.1.1.25
43 + name: ipSystemStatsOutDiscards
44 + - OID: 1.3.6.1.2.1.4.31.1.1.26
45 + name: ipSystemStatsOutFragReqds
46 + - OID: 1.3.6.1.2.1.4.31.1.1.27
47 + name: ipSystemStatsOutFragOKs
48 + - OID: 1.3.6.1.2.1.4.31.1.1.28
49 + name: ipSystemStatsOutFragFails
50 + - OID: 1.3.6.1.2.1.4.31.1.1.29
51 + name: ipSystemStatsOutFragCreates
52 + - OID: 1.3.6.1.2.1.4.31.1.1.31
53 + name: ipSystemStatsHCOutTransmits
54 + - OID: 1.3.6.1.2.1.4.31.1.1.33
55 + name: ipSystemStatsHCOutOctets
56 + - OID: 1.3.6.1.2.1.4.31.1.1.35
57 + name: ipSystemStatsHCInMcastPkts
58 + - OID: 1.3.6.1.2.1.4.31.1.1.37
59 + name: ipSystemStatsHCInMcastOctets
60 + - OID: 1.3.6.1.2.1.4.31.1.1.39
61 + name: ipSystemStatsHCOutMcastPkts
62 + - OID: 1.3.6.1.2.1.4.31.1.1.41
63 + name: ipSystemStatsHCOutMcastOctets
64 + - OID: 1.3.6.1.2.1.4.31.1.1.43
65 + name: ipSystemStatsHCInBcastPkts
66 + - OID: 1.3.6.1.2.1.4.31.1.1.45
67 + name: ipSystemStatsHCOutBcastPkts
68 + metric_tags:
69 + - index: 1
70 + tag: ipversion
71 + mapping:
72 + 0: unknown
73 + 1: ipv4
74 + 2: ipv6
75 + 3: ipv4z
76 + 4: ipv6z
77 + 16: dns
78 +- MIB: IP-MIB
79 + table:
80 + OID: 1.3.6.1.2.1.4.31.3
81 + name: ipIfStatsTable
82 + metric_type: monotonic_count
83 + symbols:
84 + - OID: 1.3.6.1.2.1.4.31.3.1.6
85 + name: ipIfStatsHCInOctets
86 + - OID: 1.3.6.1.2.1.4.31.3.1.7
87 + name: ipIfStatsInHdrErrors
88 + - OID: 1.3.6.1.2.1.4.31.3.1.8
89 + name: ipIfStatsInNoRoutes
90 + - OID: 1.3.6.1.2.1.4.31.3.1.9
91 + name: ipIfStatsInAddrErrors
92 + - OID: 1.3.6.1.2.1.4.31.3.1.10
93 + name: ipIfStatsInUnknownProtos
94 + - OID: 1.3.6.1.2.1.4.31.3.1.11
95 + name: ipIfStatsInTruncatedPkts
96 + - OID: 1.3.6.1.2.1.4.31.3.1.13
97 + name: ipIfStatsHCInForwDatagrams
98 + - OID: 1.3.6.1.2.1.4.31.3.1.14
99 + name: ipIfStatsReasmReqds
100 + - OID: 1.3.6.1.2.1.4.31.3.1.15
101 + name: ipIfStatsReasmOKs
102 + - OID: 1.3.6.1.2.1.4.31.3.1.16
103 + name: ipIfStatsReasmFails
104 + - OID: 1.3.6.1.2.1.4.31.3.1.17
105 + name: ipIfStatsInDiscards
106 + - OID: 1.3.6.1.2.1.4.31.3.1.19
107 + name: ipIfStatsHCInDelivers
108 + - OID: 1.3.6.1.2.1.4.31.3.1.21
109 + name: ipIfStatsHCOutRequests
110 + - OID: 1.3.6.1.2.1.4.31.3.1.24
111 + name: ipIfStatsHCOutForwDatagrams
112 + - OID: 1.3.6.1.2.1.4.31.3.1.25
113 + name: ipIfStatsOutDiscards
114 + - OID: 1.3.6.1.2.1.4.31.3.1.26
115 + name: ipIfStatsOutFragReqds
116 + - OID: 1.3.6.1.2.1.4.31.3.1.27
117 + name: ipIfStatsOutFragOKs
118 + - OID: 1.3.6.1.2.1.4.31.3.1.28
119 + name: ipIfStatsOutFragFails
120 + - OID: 1.3.6.1.2.1.4.31.3.1.29
121 + name: ipIfStatsOutFragCreates
122 + - OID: 1.3.6.1.2.1.4.31.3.1.31
123 + name: ipIfStatsHCOutTransmits
124 + - OID: 1.3.6.1.2.1.4.31.3.1.33
125 + name: ipIfStatsHCOutOctets
126 + - OID: 1.3.6.1.2.1.4.31.3.1.35
127 + name: ipIfStatsHCInMcastPkts
128 + - OID: 1.3.6.1.2.1.4.31.3.1.37
129 + name: ipIfStatsHCInMcastOctets
130 + - OID: 1.3.6.1.2.1.4.31.3.1.39
131 + name: ipIfStatsHCOutMcastPkts
132 + - OID: 1.3.6.1.2.1.4.31.3.1.41
133 + name: ipIfStatsHCOutMcastOctets
134 + - OID: 1.3.6.1.2.1.4.31.3.1.43
135 + name: ipIfStatsHCInBcastPkts
136 + - OID: 1.3.6.1.2.1.4.31.3.1.45
137 + name: ipIfStatsHCOutBcastPkts
138 + metric_tags:
139 + - index: 1
140 + tag: ipversion
141 + mapping:
142 + 0: unknown
143 + 1: ipv4
144 + 2: ipv6
145 + 3: ipv4z
146 + 4: ipv6z
147 + 16: dns
148 + - index: 2
149 + tag: interface
150 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-lldp.yaml new
+29
@@ -0,0 +1,29 @@
1 +metrics:
2 + - MIB: LLDP-MIB
3 + table:
4 + OID: 1.0.8802.1.1.2.1.4.1
5 + name: lldpRemTable
6 + symbols:
7 + - name: lldpRem
8 + constant_value_one: true
9 + metric_tags:
10 + - symbol:
11 + OID: 1.0.8802.1.1.2.1.4.1.1.6
12 + name: lldpRemPortIdSubtype
13 + tag: lldp_rem_port_id_subtype
14 + mapping:
15 + 1: interface_alias
16 + 2: port_component
17 + 3: mac_address
18 + 4: network_address
19 + 5: interface_name
20 + 6: agent_circuit_id
21 + 7: local
22 + - symbol:
23 + OID: 1.0.8802.1.1.2.1.4.1.1.7
24 + name: lldpRemPortId
25 + tag: lldp_rem_port_id
26 + - symbol:
27 + OID: 1.0.8802.1.1.2.1.4.1.1.9
28 + name: lldpRemSysName
29 + tag: lldp_rem_sys_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-ospf.yaml new
+235
@@ -0,0 +1,235 @@
1 +metrics:
2 + - MIB: OSPF-MIB
3 + table:
4 + OID: 1.3.6.1.2.1.14.10
5 + name: ospfNbrTable
6 + symbols:
7 + - OID: 1.3.6.1.2.1.14.10.1.6
8 + name: ospfNbrState
9 + - OID: 1.3.6.1.2.1.14.10.1.7
10 + name: ospfNbrEvents
11 + - OID: 1.3.6.1.2.1.14.10.1.8
12 + name: ospfNbrLsRetransQLen
13 + metric_tags:
14 + - symbol:
15 + OID: 1.3.6.1.2.1.14.10.1.3
16 + name: ospfNbrRtrId
17 + tag: neighbor_id
18 + - symbol:
19 + OID: 1.3.6.1.2.1.14.10.1.1
20 + name: ospfNbrIpAddr
21 + tag: neighbor_ip
22 + - symbol:
23 + OID: 1.3.6.1.2.1.14.10.1.6
24 + name: ospfNbrState
25 + mapping:
26 + 1: down
27 + 2: attempt
28 + 3: init
29 + 4: two_way
30 + 5: exchange_start
31 + 6: exchange
32 + 7: loading
33 + 8: full
34 + tag: neighbor_state
35 + - MIB: OSPF-MIB
36 + table:
37 + OID: 1.3.6.1.2.1.14.10
38 + name: ospfNbrTable
39 + symbols:
40 + - name: ospfNbr
41 + constant_value_one: true
42 + metric_tags:
43 + - symbol:
44 + OID: 1.3.6.1.2.1.14.10.1.3
45 + name: ospfNbrRtrId
46 + tag: neighbor_id
47 + - symbol:
48 + OID: 1.3.6.1.2.1.14.10.1.1
49 + name: ospfNbrIpAddr
50 + tag: neighbor_ip
51 + - symbol:
52 + OID: 1.3.6.1.2.1.14.10.1.6
53 + name: ospfNbrState
54 + mapping:
55 + 1: down
56 + 2: attempt
57 + 3: init
58 + 4: two_way
59 + 5: exchange_start
60 + 6: exchange
61 + 7: loading
62 + 8: full
63 + tag: neighbor_state
64 + - MIB: OSPF-MIB
65 + table:
66 + OID: 1.3.6.1.2.1.14.11
67 + name: ospfVirtNbrTable
68 + symbols:
69 + - OID: 1.3.6.1.2.1.14.11.1.5
70 + name: ospfVirtNbrState
71 + - OID: 1.3.6.1.2.1.14.11.1.6
72 + name: ospfVirtNbrEvents
73 + - OID: 1.3.6.1.2.1.14.11.1.7
74 + name: ospfVirtNbrLsRetransQLen
75 + metric_tags:
76 + - symbol:
77 + OID: 1.3.6.1.2.1.14.11.1.3
78 + name: ospfVirtNbrIpAddr
79 + tag: neighbor_ip
80 + - symbol:
81 + OID: 1.3.6.1.2.1.14.11.1.2
82 + name: ospfVirtNbrRtrId
83 + tag: neighbor_id
84 + - symbol:
85 + OID: 1.3.6.1.2.1.14.11.1.5
86 + name: ospfVirtNbrState
87 + mapping:
88 + 1: down
89 + 2: attempt
90 + 3: init
91 + 4: two_way
92 + 5: exchange_start
93 + 6: exchange
94 + 7: loading
95 + 8: full
96 + tag: neighbor_state
97 + - MIB: OSPF-MIB
98 + table:
99 + OID: 1.3.6.1.2.1.14.11
100 + name: ospfVirtNbrTable
101 + symbols:
102 + - name: ospfVirtNbr
103 + constant_value_one: true
104 + metric_tags:
105 + - symbol:
106 + OID: 1.3.6.1.2.1.14.11.1.3
107 + name: ospfVirtNbrIpAddr
108 + tag: neighbor_ip
109 + - symbol:
110 + OID: 1.3.6.1.2.1.14.11.1.2
111 + name: ospfVirtNbrRtrId
112 + tag: neighbor_id
113 + - symbol:
114 + OID: 1.3.6.1.2.1.14.11.1.5
115 + name: ospfVirtNbrState
116 + mapping:
117 + 1: down
118 + 2: attempt
119 + 3: init
120 + 4: two_way
121 + 5: exchange_start
122 + 6: exchange
123 + 7: loading
124 + 8: full
125 + tag: neighbor_state
126 + - MIB: OSPF-MIB
127 + table:
128 + OID: 1.3.6.1.2.1.14.7
129 + name: ospfIfTable
130 + symbols:
131 + - OID: 1.3.6.1.2.1.14.7.1.8
132 + name: ospfIfRetransInterval
133 + - OID: 1.3.6.1.2.1.14.7.1.12
134 + name: ospfIfState
135 + - OID: 1.3.6.1.2.1.14.7.1.21
136 + name: ospfIfLsaCount
137 + metric_tags:
138 + - symbol:
139 + OID: 1.3.6.1.2.1.14.7.1.1
140 + name: ospfIfIpAddress
141 + tag: ospf_ip_addr
142 + - symbol:
143 + OID: 1.3.6.1.2.1.14.10.1.3
144 + name: ospfNbrRtrId
145 + table: ospfNbrTable
146 + MIB: OSPF-MIB
147 + tag: neighbor_id
148 + - symbol:
149 + OID: 1.3.6.1.2.1.14.7.1.12
150 + name: ospfIfState
151 + mapping:
152 + 1: down
153 + 2: loopback
154 + 3: waiting
155 + 4: point_to_point
156 + 5: designated_router
157 + 6: backup_designated_router
158 + 7: other_designated_router
159 + tag: if_state
160 + - MIB: OSPF-MIB
161 + table:
162 + OID: 1.3.6.1.2.1.14.7
163 + name: ospfIfTable
164 + symbols:
165 + - name: ospfIf
166 + constant_value_one: true
167 + metric_tags:
168 + - symbol:
169 + OID: 1.3.6.1.2.1.14.7.1.1
170 + name: ospfIfIpAddress
171 + tag: ospf_ip_addr
172 + - symbol:
173 + OID: 1.3.6.1.2.1.14.10.1.3
174 + name: ospfNbrRtrId
175 + table: ospfNbrTable
176 + MIB: OSPF-MIB
177 + tag: neighbor_id
178 + - symbol:
179 + OID: 1.3.6.1.2.1.14.7.1.12
180 + name: ospfIfState
181 + mapping:
182 + 1: down
183 + 2: loopback
184 + 3: waiting
185 + 4: point_to_point
186 + 5: designated_router
187 + 6: backup_designated_router
188 + 7: other_designated_router
189 + tag: if_state
190 + - MIB: OSPF-MIB
191 + table:
192 + OID: 1.3.6.1.2.1.14.9
193 + name: ospfVirtIfTable
194 + symbols:
195 + - OID: 1.3.6.1.2.1.14.9.1.4
196 + name: ospfVirtIfRetransInterval
197 + - OID: 1.3.6.1.2.1.14.9.1.7
198 + name: ospfVirtIfState
199 + - OID: 1.3.6.1.2.1.14.9.1.12
200 + name: ospfVirtIfLsaCount
201 + metric_tags:
202 + - symbol:
203 + OID: 1.3.6.1.2.1.14.11.1.2
204 + name: ospfVirtNbrRtrId
205 + table: ospfVirtNbrTable
206 + MIB: OSPF-MIB
207 + tag: neighbor_id
208 + - symbol:
209 + OID: 1.3.6.1.2.1.14.9.1.7
210 + name: ospfVirtIfState
211 + mapping:
212 + 1: down
213 + 4: point_to_point
214 + tag: if_state
215 + - MIB: OSPF-MIB
216 + table:
217 + OID: 1.3.6.1.2.1.14.9
218 + name: ospfVirtIfTable
219 + symbols:
220 + - name: ospfVirtIf
221 + constant_value_one: true
222 + metric_tags:
223 + - symbol:
224 + OID: 1.3.6.1.2.1.14.11.1.2
225 + name: ospfVirtNbrRtrId
226 + table: ospfVirtNbrTable
227 + MIB: OSPF-MIB
228 + tag: neighbor_id
229 + - symbol:
230 + OID: 1.3.6.1.2.1.14.9.1.7
231 + name: ospfVirtIfState
232 + mapping:
233 + 1: down
234 + 4: point_to_point
235 + tag: if_state
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-bgp4.yaml new
+6
@@ -0,0 +1,6 @@
1 +# Peer
2 +# This table contains one entry per neighbor (BGP peer) and information about the connections with BGP peers.
3 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-bgp4` instead.
4 +
5 +extends:
6 + - _generic-bgp4.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-if.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Generic network interfaces metrics for routers.
2 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-if` instead.
3 +
4 +extends:
5 + - _generic-if.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-ip.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Generic IP metrics for routers.
2 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-ip` instead.
3 +
4 +extends:
5 + - _generic-ip.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-ospf.yaml new
+4
@@ -0,0 +1,4 @@
1 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-ospf` instead.
2 +
3 +extends:
4 + - _generic-ospf.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-tcp.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Generic TCP metrics for routers.
2 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-tcp` instead.
3 +
4 +extends:
5 + - _generic-tcp.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-router-udp.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Generic UDP metrics for routers.
2 +# This profile is deprecated and kept in place for retrocompatibility purposes, please use `_generic-udp` instead.
3 +
4 +extends:
5 + - _generic-udp.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-rtp.yaml new
+57
@@ -0,0 +1,57 @@
1 +metrics:
2 + - MIB: RTP-MIB
3 + table:
4 + name: rtpSessionTable
5 + OID: 1.3.6.1.2.1.87.1.3
6 + symbols:
7 + - OID: 1.3.6.1.2.1.87.1.3.1.6
8 + name: rtpSessionSenderJoins
9 + - OID: 1.3.6.1.2.1.87.1.3.1.7
10 + name: rtpSessionReceiverJoins
11 + - OID: 1.3.6.1.2.1.87.1.3.1.8
12 + name: rtpSessionByes
13 + metric_tags:
14 + - index: 1
15 + tag: rtpSessionIndex
16 + - tag: rtpSessionRemAddr
17 + symbol:
18 + OID: 1.3.6.1.2.1.87.1.3.1.3
19 + name: rtpSessionRemAddr
20 + - tag: rtpSessionLocAddr
21 + symbol:
22 + OID: 1.3.6.1.2.1.87.1.3.1.4
23 + name: rtpSessionLocAddr
24 + - MIB: RTP-MIB
25 + table:
26 + name: rtpSenderTable
27 + OID: 1.3.6.1.2.1.87.1.5
28 + symbols:
29 + - OID: 1.3.6.1.2.1.87.1.5.1.4
30 + name: rtpSenderPackets
31 + - OID: 1.3.6.1.2.1.87.1.5.1.5
32 + name: rtpSenderOctets
33 + metric_tags:
34 + - index: 1
35 + tag: rtpSessionIndex
36 + - index: 2
37 + tag: rtpSenderSSRC
38 + - MIB: RTP-MIB
39 + table:
40 + name: rtpRcvrTable
41 + OID: 1.3.6.1.2.1.87.1.7
42 + symbols:
43 + - OID: 1.3.6.1.2.1.87.1.7.1.12
44 + name: rtpRcvrPackets
45 + - OID: 1.3.6.1.2.1.87.1.7.1.13
46 + name: rtpRcvrOctets
47 + - OID: 1.3.6.1.2.1.87.1.7.1.6
48 + name: rtpRcvrLostPackets
49 + - OID: 1.3.6.1.2.1.87.1.7.1.7
50 + name: rtpRcvrJitter
51 + metric_tags:
52 + - index: 1
53 + tag: rtpSessionIndex
54 + - index: 2
55 + tag: rtpRcvrSRCSSRC
56 + - index: 3
57 + tag: rtpRcvrSSRC
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-sip.yaml new
+55
@@ -0,0 +1,55 @@
1 +metrics:
2 + - MIB: SIP-COMMON-MIB
3 + table:
4 + name: sipCommonCfgTable
5 + OID: 1.3.6.1.2.1.149.1.1.1
6 + symbols:
7 + - OID: 1.3.6.1.2.1.149.1.1.1.1.2
8 + name: sipCommonCfgServiceOperStatus
9 + metric_tags:
10 + - index: 1
11 + tag: applIndex
12 + - MIB: SIP-COMMON-MIB
13 + table:
14 + name: sipCommonSummaryStatsTable
15 + OID: 1.3.6.1.2.1.149.1.3.1
16 + symbols:
17 + - OID: 1.3.6.1.2.1.149.1.3.1.1.1
18 + name: sipCommonSummaryInRequests
19 + - OID: 1.3.6.1.2.1.149.1.3.1.1.2
20 + name: sipCommonSummaryOutRequests
21 + - OID: 1.3.6.1.2.1.149.1.3.1.1.3
22 + name: sipCommonSummaryInResponses
23 + - OID: 1.3.6.1.2.1.149.1.3.1.1.4
24 + name: sipCommonSummaryOutResponses
25 + - OID: 1.3.6.1.2.1.149.1.3.1.1.5
26 + name: sipCommonSummaryTotalTransactions
27 + metric_tags:
28 + - index: 1
29 + tag: applIndex
30 + - MIB: SIP-COMMON-MIB
31 + table:
32 + name: sipCommonStatusCodeTable
33 + OID: 1.3.6.1.2.1.149.1.5.1
34 + symbols:
35 + - OID: 1.3.6.1.2.1.149.1.5.1.1.3
36 + name: sipCommonStatusCodeIns
37 + - OID: 1.3.6.1.2.1.149.1.5.1.1.4
38 + name: sipCommonStatusCodeOuts
39 + metric_tags:
40 + - index: 1
41 + tag: applIndex
42 + - index: 2
43 + tag: sipCommonStatusCodeMethod
44 + - index: 3
45 + tag: sipCommonStatusCodeValue
46 + - MIB: SIP-COMMON-MIB
47 + table:
48 + name: sipCommonTransCurrentTable
49 + OID: 1.3.6.1.2.1.149.1.6.1
50 + symbols:
51 + - OID: 1.3.6.1.2.1.149.1.6.1.1.1
52 + name: sipCommonTransCurrentactions
53 + metric_tags:
54 + - index: 1
55 + tag: applIndex
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-tcp.yaml new
+53
@@ -0,0 +1,53 @@
1 +# Generic TCP metrics.
2 +
3 +metrics:
4 +- MIB: TCP-MIB
5 + metric_type: monotonic_count
6 + symbol:
7 + OID: 1.3.6.1.2.1.6.5.0
8 + name: tcpActiveOpens
9 +- MIB: TCP-MIB
10 + metric_type: monotonic_count
11 + symbol:
12 + OID: 1.3.6.1.2.1.6.6.0
13 + name: tcpPassiveOpens
14 +- MIB: TCP-MIB
15 + metric_type: monotonic_count
16 + symbol:
17 + OID: 1.3.6.1.2.1.6.7.0
18 + name: tcpAttemptFails
19 +- MIB: TCP-MIB
20 + metric_type: monotonic_count
21 + symbol:
22 + OID: 1.3.6.1.2.1.6.8.0
23 + name: tcpEstabResets
24 +- MIB: TCP-MIB
25 + symbol:
26 + OID: 1.3.6.1.2.1.6.9.0
27 + name: tcpCurrEstab
28 +- MIB: TCP-MIB
29 + metric_type: monotonic_count
30 + symbol:
31 + OID: 1.3.6.1.2.1.6.17.0
32 + name: tcpHCInSegs
33 +- MIB: TCP-MIB
34 + metric_type: monotonic_count
35 + symbol:
36 + OID: 1.3.6.1.2.1.6.18.0
37 + name: tcpHCOutSegs
38 +- MIB: TCP-MIB
39 + metric_type: monotonic_count
40 + symbol:
41 + OID: 1.3.6.1.2.1.6.12.0
42 + name: tcpRetransSegs
43 +- MIB: TCP-MIB
44 + metric_type: monotonic_count
45 + symbol:
46 + OID: 1.3.6.1.2.1.6.14.0
47 + name: tcpInErrs
48 +- MIB: TCP-MIB
49 + metric_type: monotonic_count
50 + symbol:
51 + OID: 1.3.6.1.2.1.6.15.0
52 + name: tcpOutRsts
53 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-ucd.yaml new
+147
@@ -0,0 +1,147 @@
1 +metrics:
2 + - MIB: UCD-SNMP-MIB
3 + symbol:
4 + name: cpu.usage
5 + OID: 1.3.6.1.4.1.2021.10.1.5.1
6 + - MIB: UCD-SNMP-MIB
7 + symbol:
8 + name: memory.total
9 + OID: 1.3.6.1.4.1.2021.4.5.0
10 + - MIB: UCD-SNMP-MIB
11 + symbol:
12 + name: memory.free
13 + OID: 1.3.6.1.4.1.2021.4.6.0
14 + - MIB: UCD-SNMP-MIB
15 + symbol:
16 + name: ucd.memTotalSwap
17 + OID: 1.3.6.1.4.1.2021.4.3.0
18 + - MIB: UCD-SNMP-MIB
19 + symbol:
20 + name: ucd.memAvailSwap
21 + OID: 1.3.6.1.4.1.2021.4.4.0
22 + - MIB: UCD-SNMP-MIB
23 + symbol:
24 + name: ucd.memTotalFree
25 + OID: 1.3.6.1.4.1.2021.4.11.0
26 + - MIB: UCD-SNMP-MIB
27 + symbol:
28 + name: ucd.memMinimumSwap
29 + OID: 1.3.6.1.4.1.2021.4.12.0
30 + - MIB: UCD-SNMP-MIB
31 + symbol:
32 + name: ucd.memShared
33 + OID: 1.3.6.1.4.1.2021.4.13.0
34 + - MIB: UCD-SNMP-MIB
35 + symbol:
36 + name: ucd.memBuffer
37 + OID: 1.3.6.1.4.1.2021.4.14.0
38 + - MIB: UCD-SNMP-MIB
39 + symbol:
40 + name: ucd.memCached
41 + OID: 1.3.6.1.4.1.2021.4.15.0
42 + - MIB: UCD-SNMP-MIB
43 + table:
44 + OID: 1.3.6.1.4.1.2021.9
45 + name: dskTable
46 + symbols:
47 + - name: ucd.dskTotal
48 + OID: 1.3.6.1.4.1.2021.9.1.6
49 + - name: ucd.dskAvail
50 + OID: 1.3.6.1.4.1.2021.9.1.7
51 + - name: ucd.dskUsed
52 + OID: 1.3.6.1.4.1.2021.9.1.8
53 + - name: ucd.dskPercent
54 + OID: 1.3.6.1.4.1.2021.9.1.9
55 + - name: ucd.dskPercentNode
56 + OID: 1.3.6.1.4.1.2021.9.1.10
57 + metric_tags:
58 + - tag: ucd_dsk_path
59 + symbol:
60 + OID: 1.3.6.1.4.1.2021.9.1.2
61 + name: ucd.dskPath
62 + - tag: ucd_dsk_device
63 + symbol:
64 + OID: 1.3.6.1.4.1.2021.9.1.3
65 + name: ucd.dskDevice
66 + - symbol:
67 + OID: 1.3.6.1.4.1.2021.9.1.100
68 + name: ucd.dskErrorFlag
69 + tag: ucd_dsk_error_flag
70 + mapping:
71 + 0: no_error
72 + 1: error
73 + - MIB: UCD-DISKIO-MIB
74 + table:
75 + OID: 1.3.6.1.4.1.2021.13.15.1.1
76 + name: diskIOTable
77 + symbols:
78 + - name: ucd.diskIOReads
79 + OID: 1.3.6.1.4.1.2021.13.15.1.1.5
80 + metric_type: monotonic_count
81 + - name: ucd.diskIOWrites
82 + OID: 1.3.6.1.4.1.2021.13.15.1.1.6
83 + metric_type: monotonic_count
84 + - name: ucd.diskIOLA1
85 + OID: 1.3.6.1.4.1.2021.13.15.1.1.9
86 + - name: ucd.diskIOLA5
87 + OID: 1.3.6.1.4.1.2021.13.15.1.1.10
88 + - name: ucd.diskIOLA15
89 + OID: 1.3.6.1.4.1.2021.13.15.1.1.11
90 + - name: ucd.diskIONReadX
91 + OID: 1.3.6.1.4.1.2021.13.15.1.1.12
92 + metric_type: monotonic_count
93 + - name: ucd.diskIONWrittenX
94 + OID: 1.3.6.1.4.1.2021.13.15.1.1.13
95 + metric_type: monotonic_count
96 + metric_tags:
97 + - tag: ucd_disk_io_device
98 + symbol:
99 + name: ucd.diskIODevice
100 + OID: 1.3.6.1.4.1.2021.13.15.1.1.2
101 + - MIB: UCD-SNMP-MIB
102 + symbol:
103 + name: ucd.ssCpuUser
104 + OID: 1.3.6.1.4.1.2021.11.9.0
105 + - MIB: UCD-SNMP-MIB
106 + symbol:
107 + name: ucd.ssCpuSystem
108 + OID: 1.3.6.1.4.1.2021.11.10.0
109 + - MIB: UCD-SNMP-MIB
110 + symbol:
111 + name: ucd.ssCpuIdle
112 + OID: 1.3.6.1.4.1.2021.11.11.0
113 + - MIB: UCD-SNMP-MIB
114 + symbol:
115 + name: ucd.ssCpuRawUser
116 + OID: 1.3.6.1.4.1.2021.11.50.0
117 + metric_type: monotonic_count
118 + - MIB: UCD-SNMP-MIB
119 + symbol:
120 + name: ucd.ssCpuRawNice
121 + OID: 1.3.6.1.4.1.2021.11.51.0
122 + metric_type: monotonic_count
123 + - MIB: UCD-SNMP-MIB
124 + symbol:
125 + name: ucd.ssCpuRawSystem
126 + OID: 1.3.6.1.4.1.2021.11.52.0
127 + metric_type: monotonic_count
128 + - MIB: UCD-SNMP-MIB
129 + symbol:
130 + name: ucd.ssCpuRawIdle
131 + OID: 1.3.6.1.4.1.2021.11.53.0
132 + metric_type: monotonic_count
133 + - MIB: UCD-SNMP-MIB
134 + symbol:
135 + name: ucd.ssCpuRawWait
136 + OID: 1.3.6.1.4.1.2021.11.54.0
137 + metric_type: monotonic_count
138 + - MIB: UCD-SNMP-MIB
139 + symbol:
140 + name: ucd.ssCpuRawKernel
141 + OID: 1.3.6.1.4.1.2021.11.55.0
142 + metric_type: monotonic_count
143 + - MIB: UCD-SNMP-MIB
144 + symbol:
145 + name: ucd.ssCpuRawInterrupt
146 + OID: 1.3.6.1.4.1.2021.11.56.0
147 + metric_type: monotonic_count
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-udp.yaml new
+24
@@ -0,0 +1,24 @@
1 +# Generic UDP metrics.
2 +
3 +metrics:
4 +- MIB: UDP-MIB
5 + metric_type: monotonic_count
6 + symbol:
7 + OID: 1.3.6.1.2.1.7.8.0
8 + name: udpHCInDatagrams
9 +- MIB: UDP-MIB
10 + metric_type: monotonic_count
11 + symbol:
12 + OID: 1.3.6.1.2.1.7.2.0
13 + name: udpNoPorts
14 +- MIB: UDP-MIB
15 + metric_type: monotonic_count
16 + symbol:
17 + OID: 1.3.6.1.2.1.7.3.0
18 + name: udpInErrors
19 +- MIB: UDP-MIB
20 + metric_type: monotonic_count
21 + symbol:
22 + OID: 1.3.6.1.2.1.7.9.0
23 + name: udpHCOutDatagrams
24 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_generic-ups.yaml new
+171
@@ -0,0 +1,171 @@
1 +metrics:
2 +# - MIB: UPS-MIB
3 +# symbol:
4 +# OID: 1.3.6.1.2.1.33.1.2.1.0
5 +# name: upsBatteryStatus
6 +# enum:
7 +# unknown: 1
8 +# batteryNormal: 2
9 +# batteryLow: 3
10 +# batteryDepleted: 4
11 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
12 +# comment in profile until it's fixed)
13 + - MIB: UPS-MIB
14 + symbol:
15 + OID: 1.3.6.1.2.1.33.1.2.2.0
16 + name: upsSecondsOnBattery
17 + - MIB: UPS-MIB
18 + symbol:
19 + OID: 1.3.6.1.2.1.33.1.2.3.0
20 + name: upsEstimatedMinutesRemaining
21 + - MIB: UPS-MIB
22 + symbol:
23 + OID: 1.3.6.1.2.1.33.1.2.4.0
24 + name: upsEstimatedChargeRemaining
25 + - MIB: UPS-MIB
26 + symbol:
27 + OID: 1.3.6.1.2.1.33.1.2.5.0
28 + name: upsBatteryVoltage
29 + - MIB: UPS-MIB
30 + symbol:
31 + OID: 1.3.6.1.2.1.33.1.2.6.0
32 + name: upsBatteryCurrent
33 + - MIB: UPS-MIB
34 + symbol:
35 + OID: 1.3.6.1.2.1.33.1.2.7.0
36 + name: upsBatteryTemperature
37 + - MIB: UPS-MIB
38 + symbol:
39 + OID: 1.3.6.1.2.1.33.1.3.1.0
40 + name: upsInputLineBads
41 + metric_type: monotonic_count
42 + - MIB: UPS-MIB
43 + symbol:
44 + OID: 1.3.6.1.2.1.33.1.3.2.0
45 + name: upsInputNumLines
46 +# - MIB: UPS-MIB
47 +# symbol:
48 +# OID: 1.3.6.1.2.1.33.1.4.1.0
49 +# name: upsOutputSource
50 +# enum:
51 +# other: 1
52 +# none: 2
53 +# normal: 3
54 +# bypass: 4
55 +# battery: 5
56 +# booster: 6
57 +# reducer: 7
58 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
59 +# comment in profile until it's fixed)
60 + - MIB: UPS-MIB
61 + symbol:
62 + OID: 1.3.6.1.2.1.33.1.4.2.0
63 + name: upsOutputFrequency
64 + - MIB: UPS-MIB
65 + symbol:
66 + OID: 1.3.6.1.2.1.33.1.4.3.0
67 + name: upsOutputNumLines
68 + - MIB: UPS-MIB
69 + symbol:
70 + OID: 1.3.6.1.2.1.33.1.5.1.0
71 + name: upsBypassFrequency
72 + - MIB: UPS-MIB
73 + symbol:
74 + OID: 1.3.6.1.2.1.33.1.5.2.0
75 + name: upsBypassNumLines
76 + - MIB: UPS-MIB
77 + symbol:
78 + OID: 1.3.6.1.2.1.33.1.6.1.0
79 + name: upsAlarmsPresent
80 +# - MIB: UPS-MIB
81 +# symbol:
82 +# OID: 1.3.6.1.2.1.33.1.7.3.0
83 +# name: upsTestResultsSummary
84 +# enum:
85 +# donePass: 1
86 +# doneWarning: 2
87 +# doneError: 3
88 +# aborted: 4
89 +# inProgress: 5
90 +# noTestsInitiated: 6
91 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
92 +# comment in profile until it's fixed)
93 + - MIB: UPS-MIB
94 + symbol:
95 + OID: 1.3.6.1.2.1.33.1.7.5.0
96 + name: upsTestStartTime
97 + - MIB: UPS-MIB
98 + table:
99 + OID: 1.3.6.1.2.1.33.1.4.4
100 + name: upsOutputTable
101 + symbols:
102 + - OID: 1.3.6.1.2.1.33.1.4.4.1.2
103 + name: upsOutputVoltage
104 + - OID: 1.3.6.1.2.1.33.1.4.4.1.3
105 + name: upsOutputCurrent
106 + - OID: 1.3.6.1.2.1.33.1.4.4.1.4
107 + name: upsOutputPower
108 + - OID: 1.3.6.1.2.1.33.1.4.4.1.5
109 + name: upsOutputPercentLoad
110 + metric_tags:
111 + - symbol:
112 + OID: 1.3.6.1.2.1.33.1.4.4.1.1
113 + name: upsOutputLineIndex
114 + tag: ups_output_line_index
115 + - MIB: UPS-MIB
116 + table:
117 + OID: 1.3.6.1.2.1.33.1.3.3
118 + name: upsInputTable
119 + symbols:
120 + - OID: 1.3.6.1.2.1.33.1.3.3.1.2
121 + name: upsInputFrequency
122 + - OID: 1.3.6.1.2.1.33.1.3.3.1.3
123 + name: upsInputVoltage
124 + - OID: 1.3.6.1.2.1.33.1.3.3.1.4
125 + name: upsInputCurrent
126 + - OID: 1.3.6.1.2.1.33.1.3.3.1.5
127 + name: upsInputTruePower
128 + metric_tags:
129 + - symbol:
130 + OID: 1.3.6.1.2.1.33.1.3.3.1.1
131 + name: upsInputLineIndex
132 + tag: ups_input_line_index
133 + - MIB: UPS-MIB
134 + table:
135 + OID: 1.3.6.1.2.1.33.1.5.3
136 + name: upsBypassTable
137 + symbols:
138 + - OID: 1.3.6.1.2.1.33.1.5.3.1.2
139 + name: upsBypassVoltage
140 + - OID: 1.3.6.1.2.1.33.1.5.3.1.3
141 + name: upsBypassCurrent
142 + - OID: 1.3.6.1.2.1.33.1.5.3.1.4
143 + name: upsBypassPower
144 + metric_tags:
145 + - symbol:
146 + OID: 1.3.6.1.2.1.33.1.5.3.1.1
147 + name: upsBypassLineIndex
148 + tag: ups_bypass_line_index
149 + - MIB: UPS-MIB
150 + table:
151 + OID: 1.3.6.1.2.1.33.1.6.2
152 + name: upsAlarmTable
153 + symbols:
154 + - OID: 1.3.6.1.2.1.33.1.6.2.1.3
155 + name: upsAlarmTime
156 + metric_tags:
157 + - symbol:
158 + OID: 1.3.6.1.2.1.33.1.6.2.1.2
159 + name: upsAlarmDescr
160 + tag: ups_alarm_descr
161 +
162 +metric_tags:
163 + - OID: 1.3.6.1.2.1.33.1.1.1
164 + symbol: upsIdentManufacturer
165 + tag: ups_ident_manufacturer
166 + - OID: 1.3.6.1.2.1.33.1.1.2
167 + symbol: upsIdentModel
168 + tag: ups_ident_model
169 + - OID: 1.3.6.1.2.1.33.1.1.5
170 + symbol: upsIdentName
171 + tag: ups_ident_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_hp-base.yaml new
+24
@@ -0,0 +1,24 @@
1 +# Profile defining metadata for HP servers
2 +metadata:
3 + device:
4 + fields:
5 + serial_number:
6 + symbol:
7 + MIB: CPQSINFO-MIB
8 + OID: 1.3.6.1.4.1.232.2.2.2.1.0
9 + name: cpqSiSysSerialNum # The serial number of the physical system unit.
10 + version:
11 + symbol:
12 + MIB: CPQSTDEQ-MIB
13 + OID: 1.3.6.1.4.1.232.1.2.6.1.0
14 + name: cpqSeSysRomVer # eg. A03-03/01/2006
15 + os_name:
16 + symbol:
17 + MIB: CPQHOST-MIB
18 + OID: 1.3.6.1.4.1.232.11.2.2.1.0
19 + name: cpqHoName # The operating system name. e.g. Microsoft Windows Server 2003
20 + os_version:
21 + symbol:
22 + MIB: CPQHOST-MIB
23 + OID: 1.3.6.1.4.1.232.11.2.2.2.0
24 + name: cpqHoVersion # The current system release level. e.g. 3.10.0-862.14.4.el7.ve.x86_64
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_hp-compaq-health.yaml new
+239
@@ -0,0 +1,239 @@
1 +metrics:
2 + # Generic device health metrics for HP devices.
3 + # The latest version of these MIBs can be downloaded here:
4 + # https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX_53293d026fb147958b223069b6
5 +
6 + # System utilization.
7 +
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 +
14 + - # EISA bus utilization as percentage of theoretical maximum during last minute.
15 + MIB: CPQHLTH-MIB
16 + symbol:
17 + OID: 1.3.6.1.4.1.232.6.2.8.2.0
18 + name: cpqHeSysUtilEisaBusMin
19 +
20 + # Critical errors.
21 +
22 + - # Overall condition of the critical error log feature.
23 + # NOTE: other(1), ok(2), degraded(3), failed(4)
24 + MIB: CPQHLTH-MIB
25 + symbol:
26 + OID: 1.3.6.1.4.1.232.6.2.2.2.0
27 + name: cpqHeCritLogCondition
28 +
29 + # Correctable memory errors tracking.
30 +
31 + - # Overall status of the correctable memory error log feature.
32 + # NOTE: other(1), notSupported(2), disabled(3), enabled(4)
33 + MIB: CPQHLTH-MIB
34 + symbol:
35 + OID: 1.3.6.1.4.1.232.6.2.3.1.0
36 + name: cpqHeCorrMemLogStatus
37 +
38 + - # Overall condition of the correctable memory error log feature.
39 + # NOTE: other(1), ok(2), degraded(3), failed(4)
40 + MIB: CPQHLTH-MIB
41 + symbol:
42 + OID: 1.3.6.1.4.1.232.6.2.3.2.0
43 + name: cpqHeCorrMemLogCondition
44 +
45 + - # Number of correctable memory errors that have occurred.
46 + MIB: CPQHLTH-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.232.6.2.3.3.0
49 + name: cpqHeCorrMemTotalErrs
50 + metric_type: monotonic_count
51 +
52 + # ASR (Automatic Server Recovery)
53 +
54 + - # Overall status of the ASR feature.
55 + # NOTE: other(1), notAvailable(2), disabled(3), enabled(4)
56 + MIB: CPQHLTH-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.232.6.2.5.1.0
59 + name: cpqHeAsrStatus
60 +
61 + - # Whether the ASR timer passed the server Power-On Self-Test (POST).
62 + # NOTE: other(1), failed(2), ok(3)
63 + MIB: CPQHLTH-MIB
64 + symbol:
65 + OID: 1.3.6.1.4.1.232.6.2.5.6.0
66 + name: cpqHeAsrPost
67 +
68 + - # Number of ASR reboots that occurred on the server since last manual reboot.
69 + # NOTE: -1 if not supported.
70 + MIB: CPQHLTH-MIB
71 + symbol:
72 + OID: 1.3.6.1.4.1.232.6.2.5.10.0
73 + name: cpqHeAsrRebootCount
74 + metric_type: monotonic_count
75 +
76 + - # Overall condition of the ASR feature.
77 + # NOTE: other(1), notAvailable(2), disabled(3), enabled(4)
78 + MIB: CPQHLTH-MIB
79 + symbol:
80 + OID: 1.3.6.1.4.1.232.6.2.5.17.0
81 + name: cpqHeAsrCondition
82 +
83 + - # Status of the ASR network access feature.
84 + # NOTE: other(1), disabled(2), enabled(3)
85 + MIB: CPQHLTH-MIB
86 + symbol:
87 + OID: 1.3.6.1.4.1.232.6.2.5.21.0
88 + name: cpqHeAsrNetworkAccessStatus
89 +
90 + # Temperature and fans.
91 +
92 + - # Status of temperature sensors.
93 + # NOTE: other(1), ok(2), degraded(3), failed(4)
94 + MIB: CPQHLTH-MIB
95 + symbol:
96 + OID: 1.3.6.1.4.1.232.6.2.6.3.0
97 + name: cpqHeThermalTempStatus
98 +
99 + - # Status of fan(s).
100 + # NOTE: other(1), ok(2), degraded(3), failed(4)
101 + MIB: CPQHLTH-MIB
102 + symbol:
103 + OID: 1.3.6.1.4.1.232.6.2.6.4.0
104 + name: cpqHeThermalSystemFanStatus
105 +
106 + - # Status of processor fan(s).
107 + # NOTE: other(1), ok(2), failed(4)
108 + MIB: CPQHLTH-MIB
109 + symbol:
110 + OID: 1.3.6.1.4.1.232.6.2.6.5.0
111 + name: cpqHeThermalCpuFanStatus
112 +
113 + - # Temperator sensors.
114 + MIB: CPQHLTH-MIB
115 + table:
116 + OID: 1.3.6.1.4.1.232.6.2.6.8
117 + name: cpqHeTemperatureTable
118 + symbols:
119 + - OID: 1.3.6.1.4.1.232.6.2.6.8.1.4
120 + name: cpqHeTemperatureCelsius
121 + - # NOTE: other(1), ok(2), degraded(3), failed(4)
122 + OID: 1.3.6.1.4.1.232.6.2.6.8.1.6
123 + name: cpqHeTemperatureCondition
124 + metric_tags:
125 + - tag: temperature_index
126 + symbol:
127 + OID: 1.3.6.1.4.1.232.6.2.6.8.1.3
128 + name: cpqHeTemperatureIndex
129 +
130 + # Power supplies.
131 +
132 + - # Current power meter reading in Watts.
133 + MIB: CPQHLTH-MIB
134 + symbol:
135 + OID: 1.3.6.1.4.1.232.6.2.15.3.0
136 + name: cpqHePowerMeterCurrReading
137 +
138 + - # A table of battery entries.
139 + MIB: CPQHLTH-MIB
140 + table:
141 + OID: 1.3.6.1.4.1.232.6.2.17.2
142 + name: cpqHeSysBatteryTable
143 + symbols:
144 + - # NOTE: other(1), ok(2), degraded(3), failed(4)
145 + OID: 1.3.6.1.4.1.232.6.2.17.2.1.4
146 + name: cpqHeSysBatteryCondition
147 + - # NOTE: 15 different statuses are possible -- not listed here, see MIB.
148 + OID: 1.3.6.1.4.1.232.6.2.17.2.1.5
149 + name: cpqHeSysBatteryStatus
150 + metric_tags:
151 + - tag: battery_index
152 + symbol:
153 + OID: 1.3.6.1.4.1.232.6.2.17.2.1.2
154 + name: cpqHeSysBatteryIndex
155 +
156 + - # Overall condition of the thermal environment.
157 + # NOTE: other(1), ok(2), degraded(3), failed(4)
158 + MIB: CPQHLTH-MIB
159 + symbol:
160 + OID: 1.3.6.1.4.1.232.6.2.6.1.0
161 + name: cpqHeThermalCondition
162 + - # NOTE: other(1), notSupported(2), notInstalled(3), installed(4)
163 + MIB: CPQHLTH-MIB
164 + symbol:
165 + OID: 1.3.6.1.4.1.232.6.2.9.2.0
166 + name: cpqHeFltTolPwrSupplyStatus
167 +
168 + - MIB: CPQHLTH-MIB
169 + table:
170 + OID: 1.3.6.1.4.1.232.6.2.14.13
171 + name: cpqHeResMem2ModuleTable
172 + symbols:
173 + - OID: 1.3.6.1.4.1.232.6.2.14.13.1.20
174 + name: cpqHeResMem2ModuleCondition
175 + metric_tags:
176 + - symbol:
177 + OID: 1.3.6.1.4.1.232.6.2.14.13.1.15
178 + name: cpqHeResMem2ModuleCellTablePtr
179 + tag: mem_board_index
180 +
181 + # DEPRECATED: use the next table instead
182 + - MIB: CPQHLTH-MIB
183 + table:
184 + OID: 1.3.6.1.4.1.232.6.2.9.3
185 + name: cpqHeFltTolPowerSupplyTable
186 + symbols:
187 + - OID: 1.3.6.1.4.1.232.6.2.9.3.1.5
188 + name: cpqHeFltTolPowerSupplyStatus
189 + metric_tags:
190 + - symbol:
191 + OID: 1.3.6.1.4.1.232.6.2.9.3.1.1
192 + name: cpqHeFltTolPowerSupplyChassis
193 + tag: chassis_num
194 +
195 + - MIB: CPQHLTH-MIB
196 + table:
197 + OID: 1.3.6.1.4.1.232.6.2.9.3
198 + name: cpqHeFltTolPowerSupplyTable
199 + symbols:
200 + - name: cpqHeFltTolPowerSupply
201 + constant_value_one: true
202 + - OID: 1.3.6.1.4.1.232.6.2.9.3.1.7
203 + name: cpqHeFltTolPowerSupplyCapacityUsed
204 + - OID: 1.3.6.1.4.1.232.6.2.9.3.1.8
205 + name: cpqHeFltTolPowerSupplyCapacityMaximum
206 + metric_tags:
207 + - symbol:
208 + OID: 1.3.6.1.4.1.232.6.2.9.3.1.5
209 + name: cpqHeFltTolPowerSupplyStatus
210 + mapping:
211 + 1: no_error
212 + 2: general_failure
213 + 3: bist_failure
214 + 4: fan_failure
215 + 5: temp_failure
216 + 6: interlock_open
217 + 7: eprom_failed
218 + 8: vref_failed
219 + 9: dac_failed
220 + 10: ram_test_failed
221 + 11: voltage_channel_failed
222 + 12: orringdiode_failed
223 + 13: brown_out
224 + 14: giveup_on_startup
225 + 15: nvram_invalid
226 + 16: calibration_table_invalid
227 + 17: no_power_input
228 + tag: power_supply_status
229 + - symbol:
230 + OID: 1.3.6.1.4.1.232.6.2.9.3.1.1
231 + name: cpqHeFltTolPowerSupplyChassis
232 + tag: chassis_num
233 +
234 +# TODO: NDM-1592
235 +# - # NOTE: unknown(1), poweredOff(2), poweredOn(3), insufficientPowerOrPowerOnDenied(4)
236 +# MIB: CPQSM2-MIB
237 +# symbol:
238 +# OID: 1.3.6.1.4.1.232.9.2.2.32
239 +# name: cpqSm2CntlrServerPowerState
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_hp-driver-stats.yaml new
+59
@@ -0,0 +1,59 @@
1 +metrics:
2 + # Physical drives statistical information
3 + - MIB: CPQIDA-MIB
4 + metric_type: monotonic_count
5 + table:
6 + OID: 1.3.6.1.4.1.232.3.2.5.1
7 + name: cpqDaPhyDrvTable
8 + symbols:
9 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.8
10 + name: cpqDaPhyDrvUsedReallocs
11 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.9
12 + name: cpqDaPhyDrvRefHours
13 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.16
14 + name: cpqDaPhyDrvHardReadErrs
15 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.17
16 + name: cpqDaPhyDrvRecvReadErrs
17 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.18
18 + name: cpqDaPhyDrvHardWriteErrs
19 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.19
20 + name: cpqDaPhyDrvRecvWriteErrs
21 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.20
22 + name: cpqDaPhyDrvHSeekErrs
23 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.21
24 + name: cpqDaPhyDrvSeekErrs
25 + metric_tags:
26 + - symbol:
27 + OID: 1.3.6.1.4.1.232.3.2.5.1.1.1
28 + name: cpqDaPhyDrvCntlrIndex
29 + tag: drive_cntrl_idx
30 + - symbol:
31 + OID: 1.3.6.1.4.1.232.3.2.5.1.1.2
32 + name: cpqDaPhyDrvIndex
33 + tag: drive_index
34 + - MIB: CPQIDA-MIB
35 + table:
36 + OID: 1.3.6.1.4.1.232.3.2.5.1
37 + name: cpqDaPhyDrvTable
38 + symbols:
39 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.6
40 + name: cpqDaPhyDrvStatus
41 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.7
42 + name: cpqDaPhyDrvFactReallocs
43 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.22
44 + name: cpqDaPhyDrvSpinupTime
45 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.45
46 + name: cpqDaPhyDrvSize
47 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.57
48 + name: cpqDaPhyDrvSmartStatus
49 + - OID: 1.3.6.1.4.1.232.3.2.5.1.1.70
50 + name: cpqDaPhyDrvCurrentTemperature
51 + metric_tags:
52 + - symbol:
53 + OID: 1.3.6.1.4.1.232.3.2.5.1.1.1
54 + name: cpqDaPhyDrvCntlrIndex
55 + tag: drive_cntrl_idx
56 + - symbol:
57 + OID: 1.3.6.1.4.1.232.3.2.5.1.1.2
58 + name: cpqDaPhyDrvIndex
59 + tag: drive_index
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_hp.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "hp"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_huawei.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "huawei"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_intel-lan-adapters.yaml new
+35
@@ -0,0 +1,35 @@
1 +# Provide Intel lan adapters metrics
2 +
3 +metrics:
4 + - MIB: INTEL-LAN-ADAPTERS-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.343.2.7.2.2.1.3
7 + name: genericAdaptersTrafficStatsAttrTable
8 + metric_type: monotonic_count
9 + symbols:
10 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.1
11 + name: adapterRxPackets
12 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.2
13 + name: adapterTxPackets
14 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.3
15 + name: adapterRxBytes
16 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.4
17 + name: adapterTxBytes
18 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.5
19 + name: adapterRxErrors
20 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.6
21 + name: adapterTxErrors
22 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.7
23 + name: adapterRxDropped
24 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.8
25 + name: adapterTxDropped
26 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.9
27 + name: adapterRxMulticast
28 + - OID: 1.3.6.1.4.1.343.2.7.2.2.1.3.1.10
29 + name: adapterCollisions
30 + metric_tags:
31 + - symbol:
32 + OID: 1.3.6.1.4.1.343.2.7.2.2.1.1.1.2
33 + name: adapterName
34 + table: genericAdaptersAttrTable
35 + tag: adapter
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-cos.yaml new
+191
@@ -0,0 +1,191 @@
1 +# Statistics for traffic that satisfies the rules in each configured Destination Class
2 +# See https://www.juniper.net/documentation/en_US/junos/topics/concept/cos-security-understanding.html
3 +metrics:
4 + - MIB: JUNIPER-COS-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.2636.3.15.10
7 + name: jnxCosIfsetQstatTable
8 + metric_type: monotonic_count
9 + symbols:
10 + # The total number of packets queued at the output queue.
11 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.3
12 + name: jnxCosIfsetQstatQedPkts
13 + # Number of bytes queued at the output queue.
14 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.5
15 + name: jnxCosIfsetQstatQedBytes
16 + # Number of packets transmitted on the queue.
17 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.7
18 + name: jnxCosIfsetQstatTxedPkts
19 + # Number of bytes transmitted on the queue.
20 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.9
21 + name: jnxCosIfsetQstatTxedBytes
22 + # The number of packets tail dropped at the output queue.
23 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.11
24 + name: jnxCosIfsetQstatTailDropPkts
25 + # Total number of packets dropped due to RED (Random Early Detection) at the output on the given interface.
26 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.13
27 + name: jnxCosIfsetQstatTotalRedDropPkts
28 + # The total number of low PLP non TCP packets RED-dropped.
29 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.15
30 + name: jnxCosIfsetQstatLpNonTcpRedDropPkts
31 + # The total number of low PLP TCP packets RED-dropped at the output on the given interface.
32 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.17
33 + name: jnxCosIfsetQstatLpTcpRedDropPkts
34 + # The total number of high PLP non TCP packets RED-dropped at the output on the given interface.
35 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.19
36 + name: jnxCosIfsetQstatHpNonTcpRedDropPkts
37 + # The total number of high PLP TCP packets RED-dropped at the output on the given interface.
38 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.21
39 + name: jnxCosIfsetQstatHpTcpRedDropPkts
40 + # The total number of bytes RED-dropped at the output on the given interface.
41 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.23
42 + name: jnxCosIfsetQstatTotalRedDropBytes
43 + # The total number of low PLP non TCP bytes RED-dropped at the output on the given interface.
44 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.25
45 + name: jnxCosIfsetQstatLpNonTcpRedDropBytes
46 + # The total number of low PLP TCP bytes RED-dropped at the output on the given interface.
47 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.27
48 + name: jnxCosIfsetQstatLpTcpRedDropBytes
49 + # The total number of high PLP non TCP bytes RED-dropped at the output on the given interface.
50 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.29
51 + name: jnxCosIfsetQstatHpNonTcpRedDropBytes
52 + # The total number of high PLP TCP bytes RED-dropped at the output queue on the given interface.
53 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.31
54 + name: jnxCosIfsetQstatHpTcpRedDropBytes
55 + # The total number of low PLP packets RED-droppped at the output on the given interface.
56 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.33
57 + name: jnxCosIfsetQstatLpRedDropPkts
58 + # The total number of medium-low PLP packets RED-droppped at the output on the given interface.
59 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.35
60 + name: jnxCosIfsetQstatMLpRedDropPkts
61 + # The total number of medium-high PLP packets RED-droppped at the output on the given interface.
62 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.37
63 + name: jnxCosIfsetQstatMHpRedDropPkts
64 + # The total number of high PLP packets RED-droppped at the output on the given interface.
65 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.39
66 + name: jnxCosIfsetQstatHpRedDropPkts
67 + # The total number of low PLP TCP bytes RED-dropped at the output queue on the given interface.
68 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.41
69 + name: jnxCosIfsetQstatLpRedDropBytes
70 + # The total number of medium-low PLP TCP bytes RED-dropped at the output queue on the given interface.
71 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.43
72 + name: jnxCosIfsetQstatMLpRedDropBytes
73 + # The total number of medium-high PLP TCP bytes RED-dropped at the output queue on the given interface.
74 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.45
75 + name: jnxCosIfsetQstatMHpRedDropBytes
76 + # The total number of high PLP TCP bytes RED-dropped at the output queue on the given interface.
77 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.47
78 + name: jnxCosIfsetQstatHpRedDropBytes
79 + # The total number of rate-limit dropped packets at the output on the given interface.
80 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.49
81 + name: jnxCosIfsetQstatRateLimitDropPkts
82 + # The total number of rate-limit dropped bytes at the output on the given interface.
83 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.51
84 + name: jnxCosIfsetQstatRateLimitDropBytes
85 + metric_tags:
86 + - symbol:
87 + OID: 1.3.6.1.4.1.2636.3.15.9.1.2
88 + name: jnxCosIfsetDescr
89 + table: jnxCosIfTable
90 + tag: interface
91 + index_transform:
92 + - start: 0
93 + end: 0
94 + - symbol:
95 + OID: 1.3.6.1.4.1.2636.3.15.10.1.2
96 + name: jnxCosIfsetQstatQueueNr
97 + tag: queue_number
98 + - MIB: JUNIPER-COS-MIB
99 + table:
100 + OID: 1.3.6.1.4.1.2636.3.15.10
101 + name: jnxCosIfsetQstatTable
102 + metric_type: gauge
103 + symbols:
104 + # The rate (expressed in packets per second) at which packets were queued at the output queue.
105 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.4
106 + name: jnxCosIfsetQstatQedPktRate
107 + # The rate (expressed in bytes per second) at which bytes were queued at the output queue.
108 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.6
109 + name: jnxCosIfsetQstatQedByteRate
110 + # The output queue's packet transmit rate, expressed in packets per second.
111 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.8
112 + name: jnxCosIfsetQstatTxedPktRate
113 + # The queue's current transmit rate in bytes per second.
114 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.10
115 + name: jnxCosIfsetQstatTxedByteRate
116 + # The tail drop packet rate (expressed in packets per second) for the queue.
117 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.12
118 + name: jnxCosIfsetQstatTailDropPktRate
119 + # The most recent estimate of per-second RED-dropped packets at the output queue on the given interface
120 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.14
121 + name: jnxCosIfsetQstatTotalRedDropPktRate
122 + # The rate (expressed in packets per second) at which low PLP non TCP packets were RED-dropped.
123 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.16
124 + name: jnxCosIfsetQstatLpNonTcpRDropPktRate
125 + # The rate (expressed in packets per second) at which low PLP TCP packets were RED-dropped at the output on the given interface.
126 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.18
127 + name: jnxCosIfsetQstatLpTcpRedDropPktRate
128 + # The rate (expressed in packets per second) at which high PLP non TCP packets were RED-dropped at the output on the given interface.
129 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.20
130 + name: jnxCosIfsetQstatHpNonTcpRDropPktRate
131 + # The rate (expressed in packets per second) at which high PLP TCP packets were RED-dropped at the output.
132 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.22
133 + name: jnxCosIfsetQstatHpTcpRedDropPktRate
134 + # The rate (expressed in bytes per second) at which bytes were RED-dropped at the output on the given interface.
135 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.24
136 + name: jnxCosIfsetQstatTotalRedDropByteRate
137 + # The rate (expressed in bytes per second) at which low PLP non TCP bytes were RED-dropped at the output on the given interface.
138 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.26
139 + name: jnxCosIfsetQstatLpNonTcpRDropByteRate
140 + # The rate (expressed in bytes per second) at which low PLP TCP bytes were RED-dropped at the output on the given interface.
141 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.28
142 + name: jnxCosIfsetQstatLpTcpRedDropByteRate
143 + # The rate (expressed in bytes per second) at which high PLP non TCP bytes were RED-dropped at the output queue on the given interface.
144 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.30
145 + name: jnxCosIfsetQstatHpNonTcpRDropByteRate
146 + # The rate (expressed in bytes per second) at which high PLP TCP bytes were RED-dropped at the output on the given interface.
147 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.32
148 + name: jnxCosIfsetQstatHpTcpRedDropByteRate
149 + # The rate (expressed in packets per second) at which low PLP packets were RED-dropped at the output.
150 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.34
151 + name: jnxCosIfsetQstatLpRedDropPktRate
152 + # The rate (expressed in packets per second) at which medium-low PLP packets were RED-dropped at the output.
153 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.36
154 + name: jnxCosIfsetQstatMLpRedDropPktRate
155 + # The rate (expressed in packets per second) at which medium-high PLP packets were RED-dropped at the output
156 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.38
157 + name: jnxCosIfsetQstatMHpRedDropPktRate
158 + # The rate (expressed in packets per second) at which high PLP packets were RED-dropped at the output.
159 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.40
160 + name: jnxCosIfsetQstatHpRedDropPktRate
161 + # The rate (expressed in bytes per second) at which low PLP TCP bytes were RED-dropped at the output on the given interface.
162 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.42
163 + name: jnxCosIfsetQstatLpRedDropByteRate
164 + # The rate (expressed in bytes per second) at which medium-low PLP TCP bytes were RED-dropped at the output on the given interface.
165 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.44
166 + name: jnxCosIfsetQstatMLpRedDropByteRate
167 + # The rate (expressed in bytes per second) at which medium-high PLP TCP bytes were RED-dropped at the output on the given interface.
168 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.46
169 + name: jnxCosIfsetQstatMHpRedDropByteRate
170 + # The rate (expressed in bytes per second) at which high PLP TCP bytes were RED-dropped at the output on the given interface.
171 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.48
172 + name: jnxCosIfsetQstatHpRedDropByteRate
173 + # The rate (expressed in bytes per second) at which packets are rate-limit dropped at the output on the given interface.
174 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.50
175 + name: jnxCosIfsetQstatRateLimitDropPktRate
176 + # The rate (expressed in bytes per second) at which bytes are rate-limit dropped at the output on the given interface.
177 + - OID: 1.3.6.1.4.1.2636.3.15.10.1.52
178 + name: jnxCosIfsetQstatRateLimitDropByteRate
179 + metric_tags:
180 + - symbol:
181 + OID: 1.3.6.1.4.1.2636.3.15.9.1.2
182 + name: jnxCosIfsetDescr
183 + table: jnxCosIfTable
184 + tag: interface
185 + index_transform:
186 + - start: 0
187 + end: 0
188 + - symbol:
189 + OID: 1.3.6.1.4.1.2636.3.15.10.1.2
190 + name: jnxCosIfsetQstatQueueNr
191 + tag: queue_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-dcu.yaml new
+32
@@ -0,0 +1,32 @@
1 +# Statistics for traffic that satisfies the rules in each configured Destination Class
2 +
3 +metrics:
4 + - MIB: JUNIPER-DCU-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.2636.3.6.2
7 + name: jnxDcuStatsTable
8 + metric_type: monotonic_count
9 + symbols:
10 + # The number of packets received on this interface, belonging to this address family that match this Destination Class.
11 + - OID: 1.3.6.1.4.1.2636.3.6.2.1.4
12 + name: jnxDcuStatsPackets
13 + # The number of bytes received on this interface, belonging to this address family that match this Destination Class.
14 + - OID: 1.3.6.1.4.1.2636.3.6.2.1.5
15 + name: jnxDcuStatsBytes
16 + metric_tags:
17 + - symbol:
18 + OID: 1.3.6.1.2.1.31.1.1.1.1
19 + name: ifName
20 + table: ifXTable
21 + tag: interface
22 + index_transform:
23 + - start: 0
24 + end: 0
25 + - symbol:
26 + OID: 1.3.6.1.4.1.2636.3.6.2.1.2
27 + name: jnxDcuStatsAddrFamily
28 + tag: address_family
29 + - symbol:
30 + OID: 1.3.6.1.4.1.2636.3.6.2.1.3
31 + name: jnxDcuStatsClassName
32 + tag: destination_class_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-firewall.yaml new
+26
@@ -0,0 +1,26 @@
1 +# Firewall counter and rate metrics
2 +
3 +metrics:
4 + - MIB: JUNIPER-FIREWALL-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.2636.3.5.2
7 + name: jnxFirewallCounterTable
8 + metric_type: monotonic_count
9 + symbols:
10 + - OID: 1.3.6.1.4.1.2636.3.5.2.1.4
11 + name: jnxFWCounterPacketCount
12 + - OID: 1.3.6.1.4.1.2636.3.5.2.1.5
13 + name: jnxFWCounterByteCount
14 + metric_tags:
15 + - symbol:
16 + OID: 1.3.6.1.4.1.2636.3.5.2.1.1
17 + name: jnxFWCounterFilterName
18 + tag: firewall_filter_name
19 + - symbol:
20 + OID: 1.3.6.1.4.1.2636.3.5.2.1.2
21 + name: jnxFWCounterName
22 + tag: counter_name
23 + - symbol:
24 + OID: 1.3.6.1.4.1.2636.3.5.2.1.3
25 + name: jnxFWCounterType
26 + tag: counter_type
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-junos-generic.yaml new
+45
@@ -0,0 +1,45 @@
1 +# Generic metadata for Juniper JUNOS gears.
2 +
3 +# sysDescr examples:
4 +# - Juniper Networks, Inc. ex2200-24t-4g internet router, kernel JUNOS 10.2R1.8 #0: 2010-05-27 20:13:49 UTC
5 +# - Juniper Networks, Inc. ex2200-48t-4g internet router, kernel JUNOS 10.2R1.8 #0: 2010-05-27 20:13:49 UTC
6 +# - Juniper Networks, Inc. mx480 internet router, kernel JUNOS 11.2R1.10 #0: 2011-07-29 07:15:34 UTC
7 +# - Juniper Networks, Inc. srx1400 internet router, kernel JUNOS 10.4R3.4 #0: 2011-03-19 22:06:23 UTC
8 +# - Juniper Networks, Inc. RX1400 Edge Switch Router SW Version : (10.3.2 patch-0.2 [BuildId 12841]) Build Date : February 3, 2011 16:26 Copyright
9 +# Credit: Some examples are from: https://github.com/mtoshi/sysdescrparser/blob/master/samples/sample_data.json
10 +
11 +metadata:
12 + device:
13 + fields:
14 + vendor:
15 + value: "juniper-networks"
16 + os_name:
17 + value: "JUNOS"
18 + os_version:
19 + symbols:
20 + - OID: 1.3.6.1.2.1.1.1.0
21 + name: sysDescr
22 + extract_value: '\s*kernel\s+JUNOS\s([a-zA-Z0-9\-\.]+)'
23 + - OID: 1.3.6.1.2.1.1.1.0
24 + name: sysDescr
25 + extract_value: '\s*Edge\s+.*\s+Version\s+:\s+\((.*)\)\s+Build'
26 + model:
27 + symbol:
28 + OID: 1.3.6.1.2.1.1.1.0
29 + name: sysDescr
30 + extract_value: '\s*Juniper Networks, Inc\.\s+([a-zA-Z0-9\-]+)'
31 + serial_number:
32 + symbol:
33 + MIB: JUNIPER-MIB
34 + OID: 1.3.6.1.4.1.2636.3.1.3.0
35 + name: jnxBoxSerialNo
36 + product_name:
37 + symbol:
38 + MIB: JUNIPER-MIB
39 + OID: 1.3.6.1.4.1.2636.3.1.2.0
40 + name: jnxBoxDescr
41 + version:
42 + symbol:
43 + MIB: JUNIPER-MIB
44 + OID: 1.3.6.1.4.1.2636.3.1.4.0
45 + name: jnxBoxRevision
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-scu.yaml new
+28
@@ -0,0 +1,28 @@
1 +# Statistics for traffic that satisfies the rules in each configured Destination Class
2 +
3 +metrics:
4 + - MIB: JUNIPER-SCU-MIB
5 + table:
6 + OID: 1.3.6.1.4.1.2636.3.16.1.1
7 + name: jnxScuStatsTable
8 + metric_type: monotonic_count
9 + symbols:
10 + # The number of packets sent out of jnxScuStatsDstIfIndex that match the source class (jnxScuStatsClassName) and match the address type (jnxScuStatsAddrFamily) defined for this table entry.
11 + - OID: 1.3.6.1.4.1.2636.3.16.1.1.1.4
12 + name: jnxScuStatsPackets
13 + # The number of bytes sent out of jnxScuStatsDstIfIndex that match the source class (jnxScuStatsClassName) and match the address type (jnxScuStatsAddrFamily) defined for this table entry.
14 + - OID: 1.3.6.1.4.1.2636.3.16.1.1.1.5
15 + name: jnxScuStatsBytes
16 + metric_tags:
17 + - symbol:
18 + OID: 1.3.6.1.2.1.31.1.1.1.1
19 + name: ifName
20 + table: ifXTable
21 + tag: interface
22 + index_transform:
23 + - start: 0
24 + end: 0
25 + - symbol:
26 + OID: 1.3.6.1.4.1.2636.3.16.1.1.1.2
27 + name: jnxScuStatsAddrFamily
28 + tag: address_family
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-userfirewall.yaml new
+23
@@ -0,0 +1,23 @@
1 +
2 +metrics:
3 + - MIB: JUNIPER-USERFIREWALL-MIB
4 + table:
5 + OID: 1.3.6.1.4.1.2636.3.89.1.1.3
6 + name: jnxUserFwLDAPTable
7 + metric_type: monotonic_count
8 + symbols:
9 + # Total LDAP query number.
10 + - OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.3
11 + name: jnxUserFwLDAPTotalQuery
12 + # LDAP failed query number.
13 + - OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.4
14 + name: jnxUserFwLDAPFailedQuery
15 + metric_tags:
16 + - symbol:
17 + OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.1
18 + name: jnxUserFwLDAPDomain
19 + tag: ldap_domain_name
20 + - symbol:
21 + OID: 1.3.6.1.4.1.2636.3.89.1.1.3.1.2
22 + name: jnxUserFwLDAPHost
23 + tag: ldap_host
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper-virtualchassis.yaml new
+71
@@ -0,0 +1,71 @@
1 +# Virtual Chassis-related metrics
2 +
3 +metrics:
4 +
5 + # These metrics will be sent as monotonic counts and rates:
6 + - MIB: JUNIPER-VIRTUALCHASSIS-MIB
7 + table:
8 + OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2
9 + name: jnxVirtualChassisPortTable
10 + metric_type: monotonic_count
11 + symbols:
12 + # Indicates the total number of packets received on the virtual-chassis port.
13 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5
14 + name: jnxVirtualChassisPortInPkts
15 + # Indicates the total number of packets sent from the virtual-chassis port.
16 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6
17 + name: jnxVirtualChassisPortOutPkts
18 + # Indicates the total number of octets received on the virtual-chassis port.
19 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7
20 + name: jnxVirtualChassisPortInOctets
21 + # Indicates the total number of octets sent on the virtual-chassis port.
22 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8
23 + name: jnxVirtualChassisPortOutOctets
24 + # Indicates the total number of multicast packets received on the virtual-chassis port.
25 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9
26 + name: jnxVirtualChassisPortInMcasts
27 + # Indicates the total number of multicast packets sent from the virtual-chassis port.
28 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10
29 + name: jnxVirtualChassisPortOutMcasts
30 + # Indicates the total number of Carrier errors on the virtual-chassis port.
31 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15
32 + name: jnxVirtualChassisPortCarrierTrans
33 + # Indicates the total number of Input CRC Alignment errors on the virtual-chassis port.
34 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16
35 + name: jnxVirtualChassisPortInCRCAlignErrors
36 + # Indicates the total number of Undersize Packets on the virtual-chassis port.
37 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17
38 + name: jnxVirtualChassisPortUndersizePkts
39 + # Indicates the total number of Collisions on the virtual-chassis port.
40 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18
41 + name: jnxVirtualChassisPortCollisions
42 + metric_tags:
43 + - symbol:
44 + OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.2
45 + name: jnxVirtualChassisPortName
46 + tag: port_name
47 +
48 + # These metrics will be sent as rates only (default for counter64 metrics):
49 + - MIB: JUNIPER-VIRTUALCHASSIS-MIB
50 + table:
51 + OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2
52 + name: jnxVirtualChassisPortTable
53 + metric_type: gauge
54 + symbols:
55 + # Indicates the total number of packets received per second on the virtual-chassis port.
56 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11
57 + name: jnxVirtualChassisPortInPkts1secRate
58 + # Indicates the total number of packets sent per second from the virtual-chassis port.
59 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12
60 + name: jnxVirtualChassisPortOutPkts1secRate
61 + # Indicates the total number of octets received per second on the virtual-chassis port.
62 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13
63 + name: jnxVirtualChassisPortInOctets1secRate
64 + # Indicates the total number of octets sent per second on the virtual-chassis port.
65 + - OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14
66 + name: jnxVirtualChassisPortOutOctets1secRate
67 + metric_tags:
68 + - symbol:
69 + OID: 1.3.6.1.4.1.2636.3.40.1.4.1.2.1.2
70 + name: jnxVirtualChassisPortName
71 + tag: port_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_juniper.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "juniper-networks"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_opengear.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "opengear"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_palo-alto.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "paloaltonetworks"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_ubiquiti.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "ubiquiti"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/_vertiv.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "vertiv"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/a10-thunder.yaml new
+490
@@ -0,0 +1,490 @@
1 +extends:
2 + - a10.yaml
3 +
4 +sysobjectid: 1.3.6.1.4.1.22610.1.3.* # A10 Thunder
5 +
6 +metrics:
7 + - MIB: A10-AX-MIB
8 + symbol:
9 + name: memory.total
10 + OID: 1.3.6.1.4.1.22610.2.4.1.2.1.0
11 + - MIB: A10-AX-MIB
12 + symbol:
13 + name: memory.used
14 + OID: 1.3.6.1.4.1.22610.2.4.1.2.2.0
15 + - MIB: A10-AX-MIB
16 + symbol:
17 + name: cpu.usage
18 + OID: 1.3.6.1.4.1.22610.2.4.1.3.3.0
19 + - MIB: A10-AX-MIB
20 + symbol:
21 + name: axSysDiskTotalSpace
22 + OID: 1.3.6.1.4.1.22610.2.4.1.4.1.0
23 + - MIB: A10-AX-MIB
24 + symbol:
25 + name: axSysDiskFreeSpace
26 + OID: 1.3.6.1.4.1.22610.2.4.1.4.2.0
27 + - MIB: A10-AX-MIB
28 + symbol:
29 + name: axSysHwPhySystemTemp
30 + OID: 1.3.6.1.4.1.22610.2.4.1.5.1.0
31 + - MIB: A10-AX-MIB
32 + symbol:
33 + name: axPowerSupplyVoltageTotal
34 + OID: 1.3.6.1.4.1.22610.2.4.1.5.10.0
35 + - MIB: A10-AX-MIB
36 + symbol:
37 + name: axAppGlobalTotalCurrentConnections
38 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.1.0
39 + - MIB: A10-AX-MIB
40 + symbol:
41 + name: axAppGlobalTotalNewConnections
42 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.2.0
43 + metric_type: monotonic_count
44 + - MIB: A10-AX-MIB
45 + symbol:
46 + name: axAppGlobalTotalNewL4Connections
47 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.3.0
48 + metric_type: monotonic_count
49 + - MIB: A10-AX-MIB
50 + symbol:
51 + name: axAppGlobalTotalNewL7Connections
52 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.4.0
53 + metric_type: monotonic_count
54 + - MIB: A10-AX-MIB
55 + symbol:
56 + name: axAppGlobalTotalNewIPNatConnections
57 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.5.0
58 + metric_type: monotonic_count
59 + - MIB: A10-AX-MIB
60 + symbol:
61 + name: axAppGlobalTotalSSLConnections
62 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.6.0
63 + metric_type: monotonic_count
64 + - MIB: A10-AX-MIB
65 + symbol:
66 + name: axAppGlobalTotalL7Requests
67 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.7.0
68 + metric_type: monotonic_count
69 + - MIB: A10-AX-MIB
70 + symbol:
71 + name: axGlobalAppPacketDrop
72 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.8.0
73 + - MIB: A10-AX-MIB
74 + symbol:
75 + name: axGlobalTotalAppPacketDrop
76 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.9.0
77 + - MIB: A10-AX-MIB
78 + symbol:
79 + name: axGlobalTotalL4Session
80 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.10.0
81 + - MIB: A10-AX-MIB
82 + symbol:
83 + name: axGlobalTotalThroughput
84 + OID: 1.3.6.1.4.1.22610.2.4.3.1.2.13.0
85 + - MIB: A10-AX-MIB
86 + symbol:
87 + name: axAppGlobalBufferConfigLimit
88 + OID: 1.3.6.1.4.1.22610.2.4.3.1.3.1.0
89 + - MIB: A10-AX-MIB
90 + symbol:
91 + name: axAppGlobalBufferCurrentUsage
92 + OID: 1.3.6.1.4.1.22610.2.4.3.1.3.2.0
93 + - MIB: A10-AX-MIB
94 + symbol:
95 + name: axConnReuseStatTotalOpenPersist
96 + OID: 1.3.6.1.4.1.22610.2.4.3.5.1.0
97 + - MIB: A10-AX-MIB
98 + symbol:
99 + name: axConnReuseStatTotalActivePersist
100 + OID: 1.3.6.1.4.1.22610.2.4.3.5.2.0
101 + - MIB: A10-AX-MIB
102 + symbol:
103 + name: axConnReuseStatTotalEstablished
104 + OID: 1.3.6.1.4.1.22610.2.4.3.5.3.0
105 + - MIB: A10-AX-MIB
106 + symbol:
107 + name: axConnReuseStatTotalTerminated
108 + OID: 1.3.6.1.4.1.22610.2.4.3.5.4.0
109 + - MIB: A10-AX-MIB
110 + symbol:
111 + name: axSessionGlobalStatTCPEstablished
112 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.1.0
113 + - MIB: A10-AX-MIB
114 + symbol:
115 + name: axSessionGlobalStatTCPHalfOpen
116 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.2.0
117 + - MIB: A10-AX-MIB
118 + symbol:
119 + name: axSessionGlobalStatUDP
120 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.3.0
121 + - MIB: A10-AX-MIB
122 + symbol:
123 + name: axSessionGlobalStatNonTcpUdpIPSession
124 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.4.0
125 + - MIB: A10-AX-MIB
126 + symbol:
127 + name: axSessionGlobalStatOther
128 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.5.0
129 + - MIB: A10-AX-MIB
130 + symbol:
131 + name: axSessionGlobalStatReverseNATTCP
132 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.6.0
133 + - MIB: A10-AX-MIB
134 + symbol:
135 + name: axSessionGlobalStatReverseNATUDP
136 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.7.0
137 + - MIB: A10-AX-MIB
138 + symbol:
139 + name: axSessionGlobalStatFreeCurrentConns
140 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.9.0
141 + - MIB: A10-AX-MIB
142 + symbol:
143 + name: axSessionGlobalStatConnCount
144 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.10.0
145 + - MIB: A10-AX-MIB
146 + symbol:
147 + name: axSessionGlobalStatConnFree
148 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.11.0
149 + - MIB: A10-AX-MIB
150 + symbol:
151 + name: axSessionGlobalStatTCPSynHalfOpen
152 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.12.0
153 + - MIB: A10-AX-MIB
154 + symbol:
155 + name: axSessionGlobalStatConnSMPAllocated
156 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.13.0
157 + - MIB: A10-AX-MIB
158 + symbol:
159 + name: axSessionGlobalStatConnSMPFree
160 + OID: 1.3.6.1.4.1.22610.2.4.3.19.1.14.0
161 + - MIB: A10-AX-MIB
162 + table:
163 + name: axSysFanStatusTable
164 + OID: 1.3.6.1.4.1.22610.2.4.1.5.9
165 + symbols:
166 + - name: axFanSpeed
167 + OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.4
168 + metric_tags:
169 + - symbol:
170 + name: axFanName
171 + OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.2
172 + tag: ax_fan_name
173 + - symbol:
174 + OID: 1.3.6.1.4.1.22610.2.4.1.5.9.1.3
175 + name: axFanStatus
176 + tag: ax_fan_status
177 + mapping:
178 + 0: failed
179 + 4: ok_fixed_high
180 + 5: ok_low_med
181 + 6: ok_med_med
182 + 7: ok_med_high
183 + -2: not_ready
184 + -1: unknown
185 + - MIB: A10-AX-MIB
186 + table:
187 + name: axPowerSupplyVoltageTable
188 + OID: 1.3.6.1.4.1.22610.2.4.1.5.11
189 + symbols:
190 + - name: axPowerSupplyVoltage
191 + constant_value_one: true
192 + metric_tags:
193 + - symbol:
194 + name: axPowerSupplyVoltageDescription
195 + OID: 1.3.6.1.4.1.22610.2.4.1.5.11.1.3
196 + tag: ax_power_supply_voltage_description
197 + - symbol:
198 + OID: 1.3.6.1.4.1.22610.2.4.1.5.11.1.2
199 + name: axPowerSupplyVoltageStatus
200 + tag: ax_power_supply_voltage_status
201 + mapping:
202 + 0: invalid
203 + 1: normal
204 + 2: unknown
205 + - MIB: A10-AX-MIB
206 + table:
207 + name: axSysPowerSupplyStatusTable
208 + OID: 1.3.6.1.4.1.22610.2.4.1.5.12
209 + symbols:
210 + - name: axSysPowerSupplyStatus
211 + constant_value_one: true
212 + metric_tags:
213 + - symbol:
214 + name: axPowerSupplyName
215 + OID: 1.3.6.1.4.1.22610.2.4.1.5.12.1.2
216 + tag: ax_power_supply_name
217 + - symbol:
218 + OID: 1.3.6.1.4.1.22610.2.4.1.5.12.1.3
219 + name: axPowerSupplyStatus
220 + tag: ax_power_supply_status
221 + mapping:
222 + 0: off
223 + 1: on
224 + 2: absent
225 + -1: unknown
226 + - MIB: A10-AX-MIB
227 + table:
228 + name: axAppGlobalSystemResourceUsageTable
229 + OID: 1.3.6.1.4.1.22610.2.4.3.1.1.1
230 + symbols:
231 + - name: axAppGlobalAllowedCurrentValue
232 + OID: 1.3.6.1.4.1.22610.2.4.3.1.1.1.1.3
233 + - name: axAppGlobalAllowedMaxValue
234 + OID: 1.3.6.1.4.1.22610.2.4.3.1.1.1.1.6
235 + metric_tags:
236 + - symbol:
237 + name: axAppGlobalSystemResourceName
238 + OID: 1.3.6.1.4.1.22610.2.4.3.1.1.1.1.2
239 + tag: ax_app_global_system_resource_name
240 + - MIB: A10-AX-MIB
241 + table:
242 + name: axServerTable
243 + OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2
244 + symbols:
245 + - name: axServer
246 + constant_value_one: true
247 + metric_tags:
248 + - symbol:
249 + name: axServerName
250 + OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.1
251 + tag: ax_server_name
252 + - symbol:
253 + OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.3
254 + name: axServerEnabledState
255 + tag: ax_server_enabled_state
256 + mapping:
257 + 0: disabled
258 + 1: enabled
259 + - symbol:
260 + OID: 1.3.6.1.4.1.22610.2.4.3.2.1.2.1.5
261 + name: axServerMonitorState
262 + tag: ax_server_monitor_state
263 + mapping:
264 + 0: disabled
265 + 1: up
266 + 2: down
267 + - MIB: A10-AX-MIB
268 + table:
269 + name: axServerStatTable
270 + OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2
271 + symbols:
272 + - name: axServerStatServerCurConns
273 + OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.8
274 + - name: axServerStatServerTotalCurrL7Reqs
275 + OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.12
276 + metric_type: monotonic_count
277 + metric_tags:
278 + - symbol:
279 + name: axServerStatName
280 + OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.2
281 + tag: ax_server_stat_name
282 + - symbol:
283 + OID: 1.3.6.1.4.1.22610.2.4.3.2.2.2.1.10
284 + name: axServerStatServerStatus
285 + tag: ax_server_stat_server_status
286 + mapping:
287 + 0: disabled
288 + 1: up
289 + 2: down
290 + - MIB: A10-AX-MIB
291 + table:
292 + name: axServiceGroupTable
293 + OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2
294 + symbols:
295 + - name: axServiceGroup
296 + constant_value_one: true
297 + metric_tags:
298 + - symbol:
299 + name: axServiceGroupName
300 + OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.1
301 + tag: ax_service_group_name
302 + - symbol:
303 + name: axServiceGroupType
304 + OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.2
305 + tag: ax_service_group_type
306 + mapping:
307 + 1: firewall
308 + 2: tcp
309 + 3: udp
310 + - symbol:
311 + name: axServiceGroupLbAlgorithm
312 + OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.3
313 + tag: ax_service_group_lb_algorithm
314 + mapping:
315 + 0: round_robin
316 + 1: weight_round_robin
317 + 2: least_connection
318 + 3: weight_least_connection
319 + 4: service_least_connection
320 + 5: service_weight_least_connection
321 + 6: fast_response_time
322 + 7: least_request
323 + 8: round_robin_strict
324 + - symbol:
325 + OID: 1.3.6.1.4.1.22610.2.4.3.3.1.2.1.4
326 + name: axServiceGroupDisplayStatus
327 + tag: ax_service_group_display_status
328 + mapping:
329 + 1: all_up
330 + 2: functional_up
331 + 3: partial_up
332 + 4: stopped
333 + - MIB: A10-AX-MIB
334 + table:
335 + name: axVirtualServerTable
336 + OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2
337 + symbols:
338 + - name: axVirtualServer
339 + constant_value_one: true
340 + metric_tags:
341 + - symbol:
342 + name: axVirtualServerName
343 + OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.1
344 + tag: ax_virtual_server_name
345 + - symbol:
346 + name: axVirtualServerHAGroup
347 + OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.4
348 + tag: ax_virtual_server_ha_group
349 + - symbol:
350 + OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.3
351 + name: axVirtualServerEnabled
352 + tag: ax_virtual_server_enabled
353 + mapping:
354 + 0: disabled
355 + 1: enabled
356 + - symbol:
357 + OID: 1.3.6.1.4.1.22610.2.4.3.4.1.2.1.5
358 + name: axVirtualServerDisplayStatus
359 + tag: ax_virtual_server_display_status
360 + mapping:
361 + 0: disabled
362 + 1: all_up
363 + 2: functional_up
364 + 3: partial_up
365 + 4: stopped
366 + - MIB: A10-AX-MIB
367 + table:
368 + name: axVirtualServerStatTable
369 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1
370 + symbols:
371 + - name: axVirtualServerStatPktsIn
372 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.3
373 + metric_type: monotonic_count
374 + - name: axVirtualServerStatBytesIn
375 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.4
376 + metric_type: monotonic_count
377 + - name: axVirtualServerStatPktsOut
378 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.5
379 + metric_type: monotonic_count
380 + - name: axVirtualServerStatBytesOut
381 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.6
382 + metric_type: monotonic_count
383 + - name: axVirtualServerStatPersistConns
384 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.7
385 + - name: axVirtualServerStatTotConns
386 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.8
387 + metric_type: monotonic_count
388 + - name: axVirtualServerStatCurConns
389 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.9
390 + - name: axVirtualServerStatTotalL7Reqs
391 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.12
392 + metric_type: monotonic_count
393 + - name: axVirtualServerStatTotalCurrL7Reqs
394 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.13
395 + metric_type: monotonic_count
396 + - name: axVirtualServerStatTotalSuccL7Reqs
397 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.14
398 + metric_type: monotonic_count
399 + metric_tags:
400 + - symbol:
401 + name: axVirtualServerStatAddress
402 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.1
403 + tag: ax_virtual_server_stat_address
404 + - symbol:
405 + name: axVirtualServerStatName
406 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.2
407 + tag: ax_virtual_server_stat_name
408 + - symbol:
409 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.10
410 + name: axVirtualServerStatStatus
411 + tag: ax_virtual_server_stat_status
412 + mapping:
413 + 1: up
414 + 2: down
415 + 3: disabled
416 + - symbol:
417 + OID: 1.3.6.1.4.1.22610.2.4.3.4.2.1.1.11
418 + name: axVirtualServerStatDisplayStatus
419 + tag: ax_virtual_server_stat_display_status
420 + mapping:
421 + 1: up
422 + 2: down
423 + 3: disabled
424 + - MIB: A10-AX-MIB
425 + table:
426 + name: axVirtualServerPortStatTable
427 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1
428 + symbols:
429 + - name: axVirtualServerPortStatCurConns
430 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.12
431 + metric_tags:
432 + - symbol:
433 + name: axVirtualServerPortStatAddress
434 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.1
435 + tag: ax_virtual_server_port_stat_address
436 + - symbol:
437 + name: axVirtualServerStatPortType
438 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.2
439 + tag: ax_virtual_server_stat_port_type
440 + mapping:
441 + 1: firewall
442 + 2: tcp
443 + 3: udp
444 + 8: rtsp
445 + 9: ftp
446 + 10: mms
447 + 12: fast_http
448 + 14: http
449 + 15: https
450 + 16: ssl_proxy
451 + 17: smtp
452 + 11: sip
453 + 19: sips
454 + 18: sip_tcp
455 + 5: others
456 + - symbol:
457 + name: axVirtualServerStatPortNum
458 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.3
459 + tag: ax_virtual_server_stat_port_num
460 + - symbol:
461 + name: axVirtualServerPortStatName
462 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.4
463 + tag: ax_virtual_server_port_stat_name
464 + - symbol:
465 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.5
466 + name: axVirtualServerStatPortStatus
467 + tag: ax_virtual_server_stat_port_status
468 + mapping:
469 + 1: up
470 + 2: down
471 + 3: disabled
472 + - symbol:
473 + OID: 1.3.6.1.4.1.22610.2.4.3.4.4.1.1.13
474 + name: axVirtualServerStatPortDisplayStatus
475 + tag: ax_virtual_server_stat_port_display_status
476 + mapping:
477 + 0: disabled
478 + 1: all_up
479 + 2: functional_up
480 + 4: stopped
481 +metric_tags:
482 + - OID: 1.3.6.1.4.1.22610.2.4.1.6.2.0
483 + symbol: axSysSerialNumber
484 + tag: ax_sys_serial_number
485 + - OID: 1.3.6.1.4.1.22610.2.4.1.6.3.0
486 + symbol: axSysFirmwareVersion
487 + tag: ax_sys_firmware_version
488 + - OID: 1.3.6.1.4.1.22610.2.4.1.6.4.0
489 + symbol: axSysAFleXEngineVersion
490 + tag: ax_sys_a_fle_x_engine_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/a10.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "a10"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/alcatel-lucent-ent.yaml new
+331
@@ -0,0 +1,331 @@
1 +extends:
2 + - alcatel-lucent.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.6486.801.1.1.2.1.*
5 +metrics:
6 + - MIB: ALCATEL-ENT1-HEALTH-MIB
7 + table:
8 + name: healthModuleTable
9 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1
10 + symbols:
11 + - name: cpu.usage
12 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.11
13 + metric_tags:
14 + - symbol:
15 + name: alcatel.ent.healthModuleChassisId
16 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.14
17 + tag: health_module_chassis_id
18 + - index: 1 # healthModuleSlot
19 + tag: cpu
20 + - MIB: ALCATEL-ENT1-HEALTH-MIB
21 + table:
22 + name: healthModuleTable
23 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1
24 + symbols:
25 + - name: memory.usage
26 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.8
27 + metric_tags:
28 + - symbol:
29 + name: alcatel.ent.healthModuleChassisId
30 + OID: 1.3.6.1.4.1.6486.801.1.2.1.16.1.1.1.1.1.14
31 + tag: health_module_chassis_id
32 + - index: 1 # healthModuleSlot
33 + tag: mem
34 + - MIB: ALCATEL-ENT1-CHASSIS-MIB
35 + table:
36 + name: chasEntPhysicalTable
37 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1
38 + symbols:
39 + - name: alcatel.ent.chasEntPhysical
40 + constant_value_one: true
41 + metric_tags:
42 + - # MIB: ENTITY-MIB
43 + # table: entPhysicalTable
44 + symbol:
45 + name: alcatel.ent.entPhysicalClass
46 + OID: 1.3.6.1.2.1.47.1.1.1.1.5
47 + tag: ent_physical_class
48 + mapping:
49 + 1: other
50 + 2: unknown
51 + 3: chassis
52 + 4: backplane
53 + 5: container
54 + 6: power_supply
55 + 7: fan
56 + 8: sensor
57 + 9: module
58 + 10: port
59 + 11: stack
60 + 12: cpu
61 + 13: energy_object
62 + 14: battery
63 + 15: storage_drive
64 + - # MIB: ENTITY-MIB
65 + # table: entPhysicalTable
66 + symbol:
67 + name: alcatel.ent.entPhysicalName
68 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
69 + tag: ent_physical_name
70 + - # MIB: ENTITY-MIB
71 + # table: entPhysicalTable
72 + symbol:
73 + name: alcatel.ent.entPhysicalSerialNum
74 + OID: 1.3.6.1.2.1.47.1.1.1.1.11
75 + tag: ent_physical_serial_num
76 + - # MIB: ENTITY-MIB
77 + # table: entPhysicalTable
78 + symbol:
79 + name: alcatel.ent.entPhysicalModelName
80 + OID: 1.3.6.1.2.1.47.1.1.1.1.13
81 + tag: ent_physical_model_name
82 + - symbol:
83 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.1
84 + name: alcatel.ent.chasEntPhysAdminStatus
85 + tag: chas_ent_phys_admin_status
86 + mapping:
87 + 1: unknown
88 + 2: power_off
89 + 3: power_on
90 + 4: reset
91 + 5: takeover
92 + 6: reset_all
93 + 7: standby
94 + 8: reset_with_fabric
95 + 9: takeover_with_fabrc
96 + 10: vc_takeover
97 + 11: reset_vc_all
98 + - symbol:
99 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.2
100 + name: alcatel.ent.chasEntPhysOperStatus
101 + tag: chas_ent_phys_oper_status
102 + mapping:
103 + 1: up
104 + 2: down
105 + 3: testing
106 + 4: unknown
107 + 5: secondary
108 + 6: not_present
109 + 7: unpowered
110 + 8: master
111 + 9: idle
112 + 10: pwrsave
113 + - symbol:
114 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.6
115 + name: alcatel.ent.chasEntPhysLedStatusOk1
116 + tag: chas_ent_phys_led_status_ok1
117 + mapping:
118 + 0: not_applicable
119 + 1: off
120 + 2: green_on
121 + 3: green_blink
122 + 4: amber_on
123 + 5: amber_blink
124 + - symbol:
125 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.7
126 + name: alcatel.ent.chasEntPhysLedStatusOk2
127 + tag: chas_ent_phys_led_status_ok2
128 + mapping:
129 + 0: not_applicable
130 + 1: off
131 + 2: green_on
132 + 3: green_blink
133 + 4: amber_on
134 + 5: amber_blink
135 + - symbol:
136 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.8
137 + name: alcatel.ent.chasEntPhysLedStatusPrimaryCMM
138 + tag: chas_ent_phys_led_status_primary_cmm
139 + mapping:
140 + 0: not_applicable
141 + 1: off
142 + 2: green_on
143 + 3: green_blink
144 + 4: amber_on
145 + 5: amber_blink
146 + - symbol:
147 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.9
148 + name: alcatel.ent.chasEntPhysLedStatusSecondaryCMM
149 + tag: chas_ent_phys_led_status_secondary_cmm
150 + mapping:
151 + 0: not_applicable
152 + 1: off
153 + 2: green_on
154 + 3: green_blink
155 + 4: amber_on
156 + 5: amber_blink
157 + - symbol:
158 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.10
159 + name: alcatel.ent.chasEntPhysLedStatusTemperature
160 + tag: chas_ent_phys_led_status_temperature
161 + mapping:
162 + 0: not_applicable
163 + 1: off
164 + 2: green_on
165 + 3: green_blink
166 + 4: amber_on
167 + 5: amber_blink
168 + - symbol:
169 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.11
170 + name: alcatel.ent.chasEntPhysLedStatusFan
171 + tag: chas_ent_phys_led_status_fan
172 + mapping:
173 + 0: not_applicable
174 + 1: off
175 + 2: green_on
176 + 3: green_blink
177 + 4: amber_on
178 + 5: amber_blink
179 + - symbol:
180 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.12
181 + name: alcatel.ent.chasEntPhysLedStatusBackupPS
182 + tag: chas_ent_phys_led_status_backup_ps
183 + mapping:
184 + 0: not_applicable
185 + 1: off
186 + 2: green_on
187 + 3: green_blink
188 + 4: amber_on
189 + 5: amber_blink
190 + - symbol:
191 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.13
192 + name: alcatel.ent.chasEntPhysLedStatusInternalPS
193 + tag: chas_ent_phys_led_status_internal_ps
194 + mapping:
195 + 0: not_applicable
196 + 1: off
197 + 2: green_on
198 + 3: green_blink
199 + 4: amber_on
200 + 5: amber_blink
201 + - symbol:
202 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.14
203 + name: alcatel.ent.chasEntPhysLedStatusControl
204 + tag: chas_ent_phys_led_status_control
205 + mapping:
206 + 0: not_applicable
207 + 1: off
208 + 2: green_on
209 + 3: green_blink
210 + 4: amber_on
211 + 5: amber_blink
212 + - symbol:
213 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.15
214 + name: alcatel.ent.chasEntPhysLedStatusFabric
215 + tag: chas_ent_phys_led_status_fabric
216 + mapping:
217 + 0: not_applicable
218 + 1: off
219 + 2: green_on
220 + 3: green_blink
221 + 4: amber_on
222 + 5: amber_blink
223 + - symbol:
224 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.1.1.16
225 + name: alcatel.ent.chasEntPhysLedStatusPS
226 + tag: chas_ent_phys_led_status_ps
227 + mapping:
228 + 0: not_applicable
229 + 1: off
230 + 2: green_on
231 + 3: green_blink
232 + 4: amber_on
233 + 5: amber_blink
234 + - MIB: ALCATEL-ENT1-CHASSIS-MIB
235 + table:
236 + name: chasEntTemperatureTable
237 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2
238 + symbols:
239 + - name: alcatel.ent.chasEntTempCurrent
240 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2.1.1
241 + metric_tags:
242 + - # MIB: ENTITY-MIB
243 + # table: entPhysicalTable
244 + symbol:
245 + name: alcatel.ent.entPhysicalClass
246 + OID: 1.3.6.1.2.1.47.1.1.1.1.5
247 + tag: ent_physical_class
248 + mapping:
249 + 1: other
250 + 2: unknown
251 + 3: chassis
252 + 4: backplane
253 + 5: container
254 + 6: power_supply
255 + 7: fan
256 + 8: sensor
257 + 9: module
258 + 10: port
259 + 11: stack
260 + 12: cpu
261 + 13: energy_object
262 + 14: battery
263 + 15: storage_drive
264 + - # MIB: ENTITY-MIB
265 + # table: entPhysicalTable
266 + symbol:
267 + name: alcatel.ent.entPhysicalName
268 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
269 + tag: ent_physical_name
270 + - # MIB: ENTITY-MIB
271 + # table: entPhysicalTable
272 + symbol:
273 + name: alcatel.ent.entPhysicalSerialNum
274 + OID: 1.3.6.1.2.1.47.1.1.1.1.11
275 + tag: ent_physical_serial_num
276 + - # MIB: ENTITY-MIB
277 + # table: entPhysicalTable
278 + symbol:
279 + name: alcatel.ent.entPhysicalModelName
280 + OID: 1.3.6.1.2.1.47.1.1.1.1.13
281 + tag: ent_physical_model_name
282 + - symbol:
283 + OID: 1.3.6.1.4.1.6486.801.1.1.1.1.1.2.1.4
284 + name: alcatel.ent.chasEntTempStatus
285 + tag: chas_ent_temp_status
286 + mapping:
287 + 1: unknown
288 + 2: not_present
289 + 3: under_threshold
290 + 4: over_first_threshold
291 + 5: over_danger_threshold
292 + - MIB: ALCATEL-ENT1-CHASSIS-MIB
293 + table:
294 + name: alaChasEntPhysFanTable
295 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.11
296 + symbols:
297 + - name: alcatel.ent.alaChasEntPhysFanSpeed
298 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.11.1.4
299 + metric_tags:
300 + - symbol:
301 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.11.1.2
302 + name: alcatel.ent.alaChasEntPhysFanStatus
303 + tag: ala_chas_ent_phys_fan_status
304 + mapping:
305 + 0: no_status
306 + 1: not_running
307 + 2: running
308 + - MIB: ALCATEL-ENT1-CHASSIS-MIB
309 + table:
310 + name: alaChasBpsPowerSupplyTable
311 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4
312 + symbols:
313 + - name: alcatel.ent.alaChasBpsPowerSupply
314 + constant_value_one: true
315 + metric_tags:
316 + - symbol:
317 + name: alcatel.ent.alaChasBpsPowerSupplyName
318 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4.1.3
319 + tag: ala_chas_bps_power_supply_name
320 + - symbol:
321 + name: alcatel.ent.alaChasBpsPowerSupplySerialNum
322 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4.1.8
323 + tag: ala_chas_bps_power_supply_serial_num
324 + - symbol:
325 + OID: 1.3.6.1.4.1.6486.801.1.1.1.3.1.1.14.4.1.10
326 + name: alcatel.ent.alaChasBpsPowerSupplyOperStatus
327 + tag: ala_chas_bps_power_supply_oper_status
328 + mapping:
329 + 1: up
330 + 2: down
331 + 3: unknown
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/alcatel-lucent-ind.yaml new
+246
@@ -0,0 +1,246 @@
1 +extends:
2 + - alcatel-lucent.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.6486.800.1.1.2.1.*
5 +metrics:
6 + - MIB: ALCATEL-IND1-HEALTH-MIB
7 + symbol:
8 + name: cpu.usage
9 + OID: 1.3.6.1.4.1.6486.800.1.2.1.16.1.1.1.14.0 # healthDeviceCpu1MinAvg
10 + - MIB: ALCATEL-IND1-HEALTH-MIB
11 + symbol:
12 + name: memory.usage
13 + OID: 1.3.6.1.4.1.6486.800.1.2.1.16.1.1.1.10.0 # healthDeviceMemory1MinAvg
14 + - MIB: ALCATEL-IND1-HEALTH-MIB
15 + symbol:
16 + name: alcatel.ind.healthDeviceTemperatureChas1MinAvg
17 + OID: 1.3.6.1.4.1.6486.800.1.2.1.16.1.1.1.18.0
18 + - MIB: ALCATEL-IND1-CHASSIS-MIB
19 + table:
20 + name: chasEntPhysicalTable
21 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1
22 + symbols:
23 + - name: alcatel.ind.chasEntPhysical
24 + constant_value_one: true
25 + metric_tags:
26 + - # MIB: ENTITY-MIB
27 + # table: entPhysicalTable
28 + symbol:
29 + OID: 1.3.6.1.2.1.47.1.1.1.1.5
30 + name: alcatel.ind.entPhysicalClass
31 + tag: ent_physical_class
32 + mapping:
33 + 1: other
34 + 2: unknown
35 + 3: chassis
36 + 4: backplane
37 + 5: container
38 + 6: power_supply
39 + 7: fan
40 + 8: sensor
41 + 9: module
42 + 10: port
43 + 11: stack
44 + 12: cpu
45 + 13: energy_object
46 + 14: battery
47 + 15: storage_drive
48 + - # MIB: ENTITY-MIB
49 + # table: entPhysicalTable
50 + symbol:
51 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
52 + name: alcatel.ind.entPhysicalName
53 + tag: ent_physical_name
54 + - # MIB: ENTITY-MIB
55 + # table: entPhysicalTable
56 + symbol:
57 + OID: 1.3.6.1.2.1.47.1.1.1.1.11
58 + name: alcatel.ind.entPhysicalSerialNum
59 + tag: ent_physical_serial_num
60 + - # MIB: ENTITY-MIB
61 + # table: entPhysicalTable
62 + symbol:
63 + OID: 1.3.6.1.2.1.47.1.1.1.1.13
64 + name: alcatel.ind.entPhysicalModelName
65 + tag: ent_physical_model_name
66 + - symbol:
67 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.1
68 + name: alcatel.ind.chasEntPhysAdminStatus
69 + tag: chas_ent_phys_admin_status
70 + mapping:
71 + 1: unknown
72 + 2: power_off
73 + 3: power_on
74 + 4: reset
75 + 5: takeover
76 + 6: reset_all
77 + 7: standby
78 + 8: reset_with_fabric
79 + 9: takeover_with_fabrc
80 + - symbol:
81 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.2
82 + name: alcatel.ind.chasEntPhysOperStatus
83 + tag: chas_ent_phys_oper_status
84 + mapping:
85 + 1: up
86 + 2: down
87 + 3: testing
88 + 4: unknown
89 + 5: secondary
90 + 6: not_present
91 + 7: unpowered
92 + 8: master
93 + - symbol:
94 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.8
95 + name: alcatel.ind.chasEntPhysLedStatusOk1
96 + tag: chas_ent_phys_led_status_ok1
97 + mapping:
98 + 0: not_applicable
99 + 1: off
100 + 2: green_on
101 + 3: green_blink
102 + 4: amber_on
103 + 5: amber_blink
104 + - symbol:
105 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.9
106 + name: alcatel.ind.chasEntPhysLedStatusOk2
107 + tag: chas_ent_phys_led_status_ok2
108 + mapping:
109 + 0: not_applicable
110 + 1: off
111 + 2: green_on
112 + 3: green_blink
113 + 4: amber_on
114 + 5: amber_blink
115 + - symbol:
116 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.10
117 + name: alcatel.ind.chasEntPhysLedStatusPrimaryCMM
118 + tag: chas_ent_phys_led_status_primary_cmm
119 + mapping:
120 + 0: not_applicable
121 + 1: off
122 + 2: green_on
123 + 3: green_blink
124 + 4: amber_on
125 + 5: amber_blink
126 + - symbol:
127 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.11
128 + name: alcatel.ind.chasEntPhysLedStatusSecondaryCMM
129 + tag: chas_ent_phys_led_status_secondary_cmm
130 + mapping:
131 + 0: not_applicable
132 + 1: off
133 + 2: green_on
134 + 3: green_blink
135 + 4: amber_on
136 + 5: amber_blink
137 + - symbol:
138 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.12
139 + name: alcatel.ind.chasEntPhysLedStatusTemperature
140 + tag: chas_ent_phys_led_status_temperature
141 + mapping:
142 + 0: not_applicable
143 + 1: off
144 + 2: green_on
145 + 3: green_blink
146 + 4: amber_on
147 + 5: amber_blink
148 + - symbol:
149 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.13
150 + name: alcatel.ind.chasEntPhysLedStatusFan
151 + tag: chas_ent_phys_led_status_fan
152 + mapping:
153 + 0: not_applicable
154 + 1: off
155 + 2: green_on
156 + 3: green_blink
157 + 4: amber_on
158 + 5: amber_blink
159 + - symbol:
160 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.14
161 + name: alcatel.ind.chasEntPhysLedStatusFan1
162 + tag: chas_ent_phys_led_status_fan1
163 + mapping:
164 + 0: not_applicable
165 + 1: off
166 + 2: green_on
167 + 3: green_blink
168 + 4: amber_on
169 + 5: amber_blink
170 + - symbol:
171 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.15
172 + name: alcatel.ind.chasEntPhysLedStatusFan2
173 + tag: chas_ent_phys_led_status_fan2
174 + mapping:
175 + 0: not_applicable
176 + 1: off
177 + 2: green_on
178 + 3: green_blink
179 + 4: amber_on
180 + 5: amber_blink
181 + - symbol:
182 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.16
183 + name: alcatel.ind.chasEntPhysLedStatusFan3
184 + tag: chas_ent_phys_led_status_fan3
185 + mapping:
186 + 0: not_applicable
187 + 1: off
188 + 2: green_on
189 + 3: green_blink
190 + 4: amber_on
191 + 5: amber_blink
192 + - symbol:
193 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.17
194 + name: alcatel.ind.chasEntPhysLedStatusBackupPS
195 + tag: chas_ent_phys_led_status_backup_ps
196 + mapping:
197 + 0: not_applicable
198 + 1: off
199 + 2: green_on
200 + 3: green_blink
201 + 4: amber_on
202 + 5: amber_blink
203 + - symbol:
204 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.18
205 + name: alcatel.ind.chasEntPhysLedStatusInternalPS
206 + tag: chas_ent_phys_led_status_internal_ps
207 + mapping:
208 + 0: not_applicable
209 + 1: off
210 + 2: green_on
211 + 3: green_blink
212 + 4: amber_on
213 + 5: amber_blink
214 + - symbol:
215 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.19
216 + name: alcatel.ind.chasEntPhysLedStatusControl
217 + tag: chas_ent_phys_led_status_control
218 + mapping:
219 + 0: not_applicable
220 + 1: off
221 + 2: green_on
222 + 3: green_blink
223 + 4: amber_on
224 + 5: amber_blink
225 + - symbol:
226 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.20
227 + name: alcatel.ind.chasEntPhysLedStatusFabric
228 + tag: chas_ent_phys_led_status_fabric
229 + mapping:
230 + 0: not_applicable
231 + 1: off
232 + 2: green_on
233 + 3: green_blink
234 + 4: amber_on
235 + 5: amber_blink
236 + - symbol:
237 + OID: 1.3.6.1.4.1.6486.800.1.1.1.1.1.1.1.21
238 + name: alcatel.ind.chasEntPhysLedStatusPSU
239 + tag: chas_ent_phys_led_status_psu
240 + mapping:
241 + 0: not_applicable
242 + 1: off
243 + 2: green_on
244 + 3: green_blink
245 + 4: amber_on
246 + 5: amber_blink
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/alcatel-lucent-omni-access-wlc.yaml new
+83
@@ -0,0 +1,83 @@
1 +extends:
2 + - alcatel-lucent.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.6486.800.1.1.2.2.2.*
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "WLC"
10 +metrics:
11 + - MIB: WLSX-SWITCH-MIB
12 + table:
13 + name: wlsxSysXProcessorTable
14 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9
15 + symbols:
16 + - name: cpu.usage
17 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9.1.3
18 + metric_tags:
19 + - index: 1
20 + tag: cpu
21 + - symbol:
22 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.9.1.2
23 + name: sysXProcessorDescr
24 + tag: sys_x_processor_descr
25 + - MIB: WLSX-SWITCH-MIB
26 + table:
27 + name: wlsxSysXStorageTable
28 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10
29 + symbols:
30 + - name: sysXStorageSize
31 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
32 + - name: sysXStorageUsed
33 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
34 + metric_tags:
35 + - symbol:
36 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.2
37 + name: sysXStorageType
38 + tag: sys_x_storage_type
39 + mapping:
40 + 1: ram
41 + 2: flash_memory
42 + - symbol:
43 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.5
44 + name: sysXStorageName
45 + tag: sys_x_storage_name
46 + - MIB: WLSX-SWITCH-MIB
47 + table:
48 + name: wlsxSysXMemoryTable
49 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11
50 + symbols:
51 + - name: memory.total
52 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.2
53 + - name: memory.used
54 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.3
55 + - name: memory.free
56 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.11.1.4
57 + metric_tags:
58 + - index: 1
59 + tag: mem
60 + - MIB: WLSX-SWITCH-MIB
61 + symbol:
62 + name: wlsxSwitchTotalNumAccessPoints
63 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.1.0
64 + - MIB: WLSX-SWITCH-MIB
65 + symbol:
66 + name: wlsxSwitchTotalNumStationsAssociated
67 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.2.0
68 +metric_tags:
69 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
70 + symbol: wlsxModelName
71 + tag: wlsx_model_name
72 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
73 + symbol: wlsxSwitchRole
74 + tag: wlsx_switch_role
75 + mapping:
76 + 1: master
77 + 2: local
78 + 3: standbymaster
79 + 4: branch
80 + 5: md
81 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
82 + symbol: wlsxSwitchLicenseSerialNumber
83 + tag: wlsx_switch_license_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/alcatel-lucent.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "alcatel-lucent"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/anue.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "anue"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.32620.1.*
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/apc-netbotz.yaml new
+360
@@ -0,0 +1,360 @@
1 +extends:
2 + - _apc.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.5528.100.20.*
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "sensor"
10 +metrics:
11 + - MIB: NETBOTZV2-MIB
12 + table:
13 + OID: 1.3.6.1.4.1.5528.100.2.1
14 + name: enclosureTable
15 + symbols:
16 + - name: netbotz.enclosure
17 + constant_value_one: true
18 + metric_tags:
19 + - symbol:
20 + OID: 1.3.6.1.4.1.5528.100.2.1.1.7
21 + name: enclosureIndex
22 + tag: netbotz_enclosure_index
23 + - symbol:
24 + OID: 1.3.6.1.4.1.5528.100.2.1.1.1
25 + name: enclosureId
26 + tag: netbotz_enclosure_id
27 + - symbol:
28 + OID: 1.3.6.1.4.1.5528.100.2.1.1.4
29 + name: enclosureLabel
30 + tag: netbotz_enclosure_label
31 + - symbol:
32 + OID: 1.3.6.1.4.1.5528.100.2.1.1.2
33 + name: enclosureStatus
34 + tag: netbotz_enclosure_status
35 + mapping:
36 + 0: disconnected
37 + 1: error
38 + 2: normal
39 + - symbol:
40 + OID: 1.3.6.1.4.1.5528.100.2.1.1.3
41 + name: enclosureErrorStatus
42 + tag: netbotz_enclosure_error_status
43 + mapping:
44 + 0: normal
45 + 1: info
46 + 2: warning
47 + 3: error
48 + 4: critical
49 + 5: failure
50 + - MIB: NETBOTZV2-MIB
51 + table:
52 + OID: 1.3.6.1.4.1.5528.100.3.1
53 + name: dinPortTable
54 + symbols:
55 + - name: netbotz.dinPort
56 + constant_value_one: true
57 + metric_tags:
58 + - symbol:
59 + OID: 1.3.6.1.4.1.5528.100.3.1.1.9
60 + name: dinPortIndex
61 + tag: netbotz_din_port_index
62 + - symbol:
63 + OID: 1.3.6.1.4.1.5528.100.3.1.1.1
64 + name: dinPortId
65 + tag: netbotz_din_port_id
66 + - symbol:
67 + OID: 1.3.6.1.4.1.5528.100.3.1.1.2
68 + name: dinPortStatus
69 + tag: netbotz_din_port_status
70 + mapping:
71 + 0: disconnected
72 + 1: error
73 + 2: normal
74 + - MIB: NETBOTZV2-MIB
75 + table:
76 + OID: 1.3.6.1.4.1.5528.100.3.10
77 + name: otherPortTable
78 + symbols:
79 + - name: netbotz.otherPort
80 + constant_value_one: true
81 + metric_tags:
82 + - symbol:
83 + OID: 1.3.6.1.4.1.5528.100.3.10.1.5
84 + name: otherPortIndex
85 + tag: netbotz_other_port_index
86 + - symbol:
87 + OID: 1.3.6.1.4.1.5528.100.3.10.1.1
88 + name: otherPortId
89 + tag: netbotz_other_port_id
90 + - symbol:
91 + OID: 1.3.6.1.4.1.5528.100.3.10.1.3
92 + name: otherPortLabel
93 + tag: netbotz_other_port_label
94 + - symbol:
95 + OID: 1.3.6.1.4.1.5528.100.3.10.1.4
96 + name: otherPortEncId
97 + tag: netbotz_other_port_enc_id
98 + - symbol:
99 + OID: 1.3.6.1.4.1.5528.100.3.10.1.2
100 + name: otherPortStatus
101 + tag: netbotz_other_port_status
102 + mapping:
103 + 0: disconnected
104 + 1: error
105 + 2: normal
106 + - MIB: NETBOTZV2-MIB
107 + table:
108 + OID: 1.3.6.1.4.1.5528.100.4.1.1
109 + name: tempSensorTable
110 + symbols:
111 + - OID: 1.3.6.1.4.1.5528.100.4.1.1.1.8
112 + name: netbotz.tempSensorValueInt
113 + - OID: 1.3.6.1.4.1.5528.100.4.1.1.1.9
114 + name: netbotz.tempSensorValueIntF
115 + metric_tags:
116 + - symbol:
117 + OID: 1.3.6.1.4.1.5528.100.4.1.1.1.10
118 + name: tempSensorIndex
119 + tag: netbotz_temp_sensor_index
120 + - symbol:
121 + OID: 1.3.6.1.4.1.5528.100.4.1.1.1.1
122 + name: tempSensorId
123 + tag: netbotz_temp_sensor_id
124 + - symbol:
125 + OID: 1.3.6.1.4.1.5528.100.4.1.1.1.4
126 + name: tempSensorLabel
127 + tag: netbotz_temp_sensor_label
128 + - symbol:
129 + OID: 1.3.6.1.4.1.5528.100.4.1.1.1.5
130 + name: tempSensorEncId
131 + tag: netbotz_temp_sensor_enc_id
132 + - symbol:
133 + OID: 1.3.6.1.4.1.5528.100.4.1.1.1.3
134 + name: tempSensorErrorStatus
135 + tag: netbotz_temp_sensor_error_status
136 + mapping:
137 + 0: normal
138 + 1: info
139 + 2: warning
140 + 3: error
141 + 4: critical
142 + 5: failure
143 + - MIB: NETBOTZV2-MIB
144 + table:
145 + OID: 1.3.6.1.4.1.5528.100.4.1.2
146 + name: humiSensorTable
147 + symbols:
148 + - OID: 1.3.6.1.4.1.5528.100.4.1.2.1.8
149 + name: netbotz.humiSensorValueInt
150 + metric_tags:
151 + - symbol:
152 + OID: 1.3.6.1.4.1.5528.100.4.1.2.1.9
153 + name: humiSensorIndex
154 + tag: netbotz_humi_sensor_index
155 + - symbol:
156 + OID: 1.3.6.1.4.1.5528.100.4.1.2.1.1
157 + name: humiSensorId
158 + tag: netbotz_humi_sensor_id
159 + - symbol:
160 + OID: 1.3.6.1.4.1.5528.100.4.1.2.1.4
161 + name: humiSensorLabel
162 + tag: netbotz_humi_sensor_label
163 + - symbol:
164 + OID: 1.3.6.1.4.1.5528.100.4.1.2.1.5
165 + name: humiSensorEncId
166 + tag: netbotz_humi_sensor_enc_id
167 + - symbol:
168 + OID: 1.3.6.1.4.1.5528.100.4.1.2.1.3
169 + name: humiSensorErrorStatus
170 + tag: netbotz_humi_sensor_error_status
171 + mapping:
172 + 0: normal
173 + 1: info
174 + 2: warning
175 + 3: error
176 + 4: critical
177 + 5: failure
178 + - MIB: NETBOTZ410-MIB
179 + table:
180 + OID: 1.3.6.1.4.1.5528.100.4.1.3
181 + name: dewPointSensorTable
182 + symbols:
183 + - OID: 1.3.6.1.4.1.5528.100.4.1.3.1.8
184 + name: netbotz.dewPointSensorValueInt
185 + - OID: 1.3.6.1.4.1.5528.100.4.1.3.1.9
186 + name: netbotz.dewPointSensorValueIntF
187 + metric_tags:
188 + - symbol:
189 + OID: 1.3.6.1.4.1.5528.100.4.1.3.1.10
190 + name: dewPointSensorIndex
191 + tag: netbotz_dew_point_sensor_index
192 + - symbol:
193 + OID: 1.3.6.1.4.1.5528.100.4.1.3.1.1
194 + name: dewPointSensorId
195 + tag: netbotz_dew_point_sensor_id
196 + - symbol:
197 + OID: 1.3.6.1.4.1.5528.100.4.1.3.1.4
198 + name: dewPointSensorLabel
199 + tag: netbotz_dew_point_sensor_label
200 + - symbol:
201 + OID: 1.3.6.1.4.1.5528.100.4.1.3.1.5
202 + name: dewPointSensorEncId
203 + tag: netbotz_dew_point_sensor_enc_id
204 + - MIB: NETBOTZV2-MIB
205 + table:
206 + OID: 1.3.6.1.4.1.5528.100.4.1.10
207 + name: otherNumericSensorTable
208 + symbols:
209 + - OID: 1.3.6.1.4.1.5528.100.4.1.10.1.8
210 + name: netbotz.otherNumericSensorValueInt
211 + metric_tags:
212 + - symbol:
213 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.12
214 + name: otherNumericSensorIndex
215 + tag: netbotz_other_numeric_sensor_index
216 + - symbol:
217 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.1
218 + name: otherNumericSensorId
219 + tag: netbotz_other_numeric_sensor_id
220 + - symbol:
221 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.4
222 + name: otherNumericSensorLabel
223 + tag: netbotz_other_numeric_sensor_label
224 + - symbol:
225 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.5
226 + name: otherNumericSensorEncId
227 + tag: netbotz_other_numeric_sensor_enc_id
228 + - symbol:
229 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.9
230 + name: otherNumericSensorUnits
231 + tag: netbotz_other_numeric_sensor_units
232 + - symbol:
233 + OID: 1.3.6.1.4.1.5528.100.4.1.10.1.3
234 + name: otherNumericSensorErrorStatus
235 + tag: netbotz_other_numeric_sensor_error_status
236 + mapping:
237 + 0: normal
238 + 1: info
239 + 2: warning
240 + 3: error
241 + 4: critical
242 + 5: failure
243 + - MIB: NETBOTZV2-MIB
244 + table:
245 + OID: 1.3.6.1.4.1.5528.100.4.2.2
246 + name: doorSwitchSensorTable
247 + symbols:
248 + - name: netbotz.doorSwitchSensor
249 + constant_value_one: true
250 + metric_tags:
251 + - symbol:
252 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.8
253 + name: doorSwitchSensorIndex
254 + tag: netbotz_door_switch_sensor_index
255 + - symbol:
256 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.1
257 + name: doorSwitchSensorId
258 + tag: netbotz_door_switch_sensor_id
259 + - symbol:
260 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.4
261 + name: doorSwitchSensorLabel
262 + tag: netbotz_door_switch_sensor_label
263 + - symbol:
264 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.5
265 + name: doorSwitchSensorEncId
266 + tag: netbotz_door_switch_sensor_enc_id
267 + - symbol:
268 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.7
269 + name: doorSwitchSensorValueStr
270 + tag: netbotz_door_switch_sensor_value_str
271 + - symbol:
272 + OID: 1.3.6.1.4.1.5528.100.4.2.2.1.2
273 + name: doorSwitchSensorValue
274 + tag: netbotz_door_switch_sensor_value
275 + mapping:
276 + -1: 'null'
277 + 0: open
278 + 1: closed
279 + - MIB: NETBOTZV2-MIB
280 + table:
281 + OID: 1.3.6.1.4.1.5528.100.4.2.10
282 + name: otherStateSensorTable
283 + symbols:
284 + - name: netbotz.otherStateSensor
285 + constant_value_one: true
286 + metric_tags:
287 + - symbol:
288 + OID: 1.3.6.1.4.1.5528.100.4.2.10.1.4
289 + name: otherStateSensorLabel
290 + tag: netbotz_other_state_sensor_label
291 + - symbol:
292 + OID: 1.3.6.1.4.1.5528.100.4.2.10.1.5
293 + name: otherStateSensorEncId
294 + tag: netbotz_other_state_sensor_enc_id
295 + - symbol:
296 + OID: 1.3.6.1.4.1.5528.100.4.2.10.1.7
297 + name: otherStateSensorValueStr
298 + tag: netbotz_other_state_sensor_value_str
299 + - symbol:
300 + OID: 1.3.6.1.4.1.5528.100.4.2.10.1.1
301 + name: otherStateSensorId
302 + tag: netbotz_other_state_sensor_id
303 + - symbol:
304 + OID: 1.3.6.1.4.1.5528.100.4.2.10.1.3
305 + name: otherStateSensorErrorStatus
306 + tag: netbotz_other_state_sensor_error_status
307 + mapping:
308 + 0: normal
309 + 1: info
310 + 2: warning
311 + 3: error
312 + 4: critical
313 + 5: failure
314 + - MIB: NETBOTZV2-MIB
315 + table:
316 + OID: 1.3.6.1.4.1.5528.100.5.1
317 + name: errorCondTable
318 + symbols:
319 + - name: netbotz.errorCond
320 + constant_value_one: true
321 + metric_tags:
322 + - symbol:
323 + OID: 1.3.6.1.4.1.5528.100.5.1.1.12
324 + name: errorCondIndex
325 + tag: netbotz_error_cond_index
326 + - symbol:
327 + OID: 1.3.6.1.4.1.5528.100.5.1.1.1
328 + name: errorCondId
329 + tag: netbotz_error_cond_id
330 + - symbol:
331 + OID: 1.3.6.1.4.1.5528.100.5.1.1.3
332 + name: errorCondTypeId
333 + tag: netbotz_error_cond_type_id
334 + - symbol:
335 + OID: 1.3.6.1.4.1.5528.100.5.1.1.9
336 + name: errorCondEncId
337 + tag: netbotz_error_cond_enc_id
338 + - symbol:
339 + OID: 1.3.6.1.4.1.5528.100.5.1.1.11
340 + name: errorCondSensorId
341 + tag: netbotz_error_cond_sensor_id
342 + - symbol:
343 + OID: 1.3.6.1.4.1.5528.100.5.1.1.2
344 + name: errorCondSeverity
345 + tag: netbotz_error_cond_severity
346 + mapping:
347 + 0: normal
348 + 1: info
349 + 2: warning
350 + 3: error
351 + 4: critical
352 + 5: failure
353 + - symbol:
354 + OID: 1.3.6.1.4.1.5528.100.5.1.1.6
355 + name: errorCondResolved
356 + tag: netbotz_error_cond_resolved
357 + mapping:
358 + 0: no
359 + 1: yes
360 + 2: 'null'
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/apc-pdu.yaml new
+218
@@ -0,0 +1,218 @@
1 +extends:
2 + - apc.yaml
3 +
4 +sysobjectid: 1.3.6.1.4.1.318.1.3.4.*
5 +
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "PDU"
11 +
12 +metrics:
13 + - MIB: PowerNet-MIB
14 + table:
15 + OID: 1.3.6.1.4.1.318.1.1.12.2.3.1
16 + name: rPDULoadStatusTable
17 + symbols:
18 + - OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.2
19 + name: powernet.rPDULoadStatusLoad
20 + metric_tags:
21 + - tag: powernet_r_pdu_load_status_index
22 + symbol:
23 + OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.1
24 + name: rPDULoadStatusIndex
25 + - symbol:
26 + OID: 1.3.6.1.4.1.318.1.1.12.2.3.1.1.3
27 + name: rPDULoadStatusLoadState
28 + tag: powernet_r_pdu_load_status_load_state
29 + mapping:
30 + 1: phase_load_normal
31 + 2: phase_load_low
32 + 3: phase_load_near_overload
33 + 4: phase_load_overload
34 + - MIB: PowerNet-MIB
35 + table:
36 + OID: 1.3.6.1.4.1.318.1.1.12.3.5.1
37 + name: rPDUOutletStatusTable
38 + symbols:
39 + - OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.7
40 + name: powernet.rPDUOutletStatusLoad
41 + metric_tags:
42 + - tag: powernet_r_pdu_outlet_status_index
43 + symbol:
44 + OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.1
45 + name: rPDUOutletStatusIndex
46 + - tag: powernet_r_pdu_outlet_status_outlet_name
47 + symbol:
48 + OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.2
49 + name: rPDUOutletStatusOutletName
50 + - symbol:
51 + OID: 1.3.6.1.4.1.318.1.1.12.3.5.1.1.4
52 + name: rPDUOutletStatusOutletState
53 + tag: powernet_r_pdu_outlet_status_outlet_state
54 + mapping:
55 + 1: outlet_status_on
56 + 2: outlet_status_off
57 +# - MIB: PowerNet-MIB
58 +# symbol:
59 +# OID: 1.3.6.1.4.1.318.1.1.12.4.1.1.0
60 +# name: rPDUPowerSupply1Status
61 +# mapping:
62 +# 1: power_supply_one_ok
63 +# 2: power_supply_one_failed
64 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
65 +# comment in profile until it's fixed)
66 +# - MIB: PowerNet-MIB
67 +# symbol:
68 +# OID: 1.3.6.1.4.1.318.1.1.12.4.1.2.0
69 +# name: rPDUPowerSupply2Status
70 +# mapping:
71 +# 1: power_supply_two_ok
72 +# 2: power_supply_two_failed
73 +# 3: power_supply_two_not_present
74 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
75 +# comment in profile until it's fixed)
76 + - MIB: PowerNet-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.318.1.1.12.4.1.3.0
79 + name: powernet.rPDUPowerSupplyAlarm
80 + - MIB: PowerNet-MIB
81 + table:
82 + OID: 1.3.6.1.4.1.318.1.1.12.5.2
83 + name: rPDUStatusBankTable
84 + symbols:
85 + - name: powernet.rPDUStatusBank
86 + constant_value_one: true
87 + metric_tags:
88 + - tag: powernet_r_pdu_status_bank_index
89 + symbol:
90 + OID: 1.3.6.1.4.1.318.1.1.12.5.2.1.1
91 + name: rPDUStatusBankIndex
92 + - tag: powernet_r_pdu_status_bank_number
93 + symbol:
94 + OID: 1.3.6.1.4.1.318.1.1.12.5.2.1.2
95 + name: rPDUStatusBankNumber
96 + - symbol:
97 + OID: 1.3.6.1.4.1.318.1.1.12.5.2.1.3
98 + name: rPDUStatusBankState
99 + tag: powernet_r_pdu_status_bank_state
100 + mapping:
101 + 1: bank_load_normal
102 + 2: bank_load_low
103 + 3: bank_load_near_overload
104 + 4: bank_load_overload
105 + - MIB: PowerNet-MIB
106 + table:
107 + OID: 1.3.6.1.4.1.318.1.1.12.5.4
108 + name: rPDUStatusPhaseTable
109 + symbols:
110 + - name: powernet.rPDUStatusPhase
111 + constant_value_one: true
112 + metric_tags:
113 + - tag: powernet_r_pdu_status_phase_index
114 + symbol:
115 + OID: 1.3.6.1.4.1.318.1.1.12.5.4.1.1
116 + name: rPDUStatusPhaseIndex
117 + - tag: powernet_r_pdu_status_phase_number
118 + symbol:
119 + OID: 1.3.6.1.4.1.318.1.1.12.5.4.1.2
120 + name: rPDUStatusPhaseNumber
121 + - symbol:
122 + OID: 1.3.6.1.4.1.318.1.1.12.5.4.1.3
123 + name: rPDUStatusPhaseState
124 + tag: powernet_r_pdu_status_phase_state
125 + mapping:
126 + 1: phase_load_normal
127 + 2: phase_load_low
128 + 3: phase_load_near_overload
129 + 4: phase_load_overload
130 + - MIB: PowerNet-MIB
131 + table:
132 + OID: 1.3.6.1.4.1.318.1.1.12.5.6
133 + name: rPDUStatusOutletTable
134 + symbols:
135 + - name: powernet.rPDUStatusOutlet
136 + constant_value_one: true
137 + metric_tags:
138 + - tag: powernet_r_pdu_status_outlet_index
139 + symbol:
140 + OID: 1.3.6.1.4.1.318.1.1.12.5.6.1.1
141 + name: rPDUStatusOutletIndex
142 + - tag: powernet_r_pdu_status_outlet_number
143 + symbol:
144 + OID: 1.3.6.1.4.1.318.1.1.12.5.6.1.2
145 + name: rPDUStatusOutletNumber
146 + - symbol:
147 + OID: 1.3.6.1.4.1.318.1.1.12.5.6.1.3
148 + name: rPDUStatusOutletState
149 + tag: powernet_r_pdu_status_outlet_state
150 + mapping:
151 + 1: outlet_load_normal
152 + 2: outlet_load_low
153 + 3: outlet_load_near_overload
154 + 4: outlet_load_overload
155 + - MIB: PowerNet-MIB
156 + table:
157 + OID: 1.3.6.1.4.1.318.1.1.26.10.2.2
158 + name: rPDU2SensorTempHumidityStatusTable
159 + symbols:
160 + - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.7
161 + name: powernet.rPDU2SensorTempHumidityStatusTempF
162 + - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.8
163 + name: powernet.rPDU2SensorTempHumidityStatusTempC
164 + - OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.10
165 + name: powernet.rPDU2SensorTempHumidityStatusRelativeHumidity
166 + metric_tags:
167 + - tag: powernet_r_pdu2_sensor_temp_humidity_status_name
168 + symbol:
169 + OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.3
170 + name: rPDU2SensorTempHumidityStatusName
171 + - tag: powernet_r_pdu2_sensor_temp_humidity_status_type
172 + symbol:
173 + OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.5
174 + name: rPDU2SensorTempHumidityStatusType
175 + mapping:
176 + 1: temperature_only
177 + 2: temperature_humidity
178 + 3: comms_lost
179 + 4: not_installed
180 + - symbol:
181 + OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.9
182 + name: rPDU2SensorTempHumidityStatusTempStatus
183 + tag: powernet_r_pdu2_sensor_temp_humidity_status_temp_status
184 + mapping:
185 + 1: not_present
186 + 2: below_min
187 + 3: below_low
188 + 4: normal
189 + 5: above_high
190 + 6: above_max
191 + - symbol:
192 + OID: 1.3.6.1.4.1.318.1.1.26.10.2.2.1.11
193 + name: rPDU2SensorTempHumidityStatusHumidityStatus
194 + tag: powernet_r_pdu2_sensor_temp_humidity_status_humidity_status
195 + mapping:
196 + 1: not_present
197 + 2: below_min
198 + 3: below_low
199 + 4: normal
200 + 5: above_high
201 + 6: above_max
202 +
203 +metric_tags:
204 + - tag: powernet_r_pdu_ident_name
205 + OID: 1.3.6.1.4.1.318.1.1.12.1.1.0
206 + symbol: rPDUIdentName
207 + - tag: powernet_r_pdu_ident_hardware_rev
208 + OID: 1.3.6.1.4.1.318.1.1.12.1.2.0
209 + symbol: rPDUIdentHardwareRev
210 + - tag: powernet_r_pdu_ident_firmware_rev
211 + OID: 1.3.6.1.4.1.318.1.1.12.1.3.0
212 + symbol: rPDUIdentFirmwareRev
213 + - tag: powernet_r_pdu_ident_model_number
214 + OID: 1.3.6.1.4.1.318.1.1.12.1.5.0
215 + symbol: rPDUIdentModelNumber
216 + - tag: powernet_r_pdu_ident_serial_number
217 + OID: 1.3.6.1.4.1.318.1.1.12.1.6.0
218 + symbol: rPDUIdentSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/apc.yaml new
+8
@@ -0,0 +1,8 @@
1 +# Profile for APC devices
2 +
3 +extends:
4 + - _apc-metadata.yaml
5 + - _generic-tcp.yaml
6 + - _generic-udp.yaml
7 +
8 +sysobjectid: 1.3.6.1.4.1.318.*
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/apc_ups.yaml new
+211
@@ -0,0 +1,211 @@
1 +extends:
2 + - apc.yaml
3 +
4 +sysobjectid: 1.3.6.1.4.1.318.1.*
5 +
6 +device:
7 + vendor: "apc"
8 +
9 +metadata:
10 + device:
11 + fields:
12 + version:
13 + symbol:
14 + OID: 1.3.6.1.4.1.318.1.1.1.1.2.1.0
15 + name: upsAdvIdentFirmwareRevision
16 + product_name:
17 + symbol:
18 + OID: 1.3.6.1.4.1.318.1.1.1.1.1.1.0
19 + name: upsBasicIdentModel
20 + type:
21 + value: "UPS"
22 +
23 +metrics:
24 + - MIB: PowerNet-MIB
25 + symbol:
26 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.5.0
27 + name: upsAdvBatteryNumOfBattPacks
28 + - MIB: POWERNET-MIB
29 + symbol:
30 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.6.0
31 + name: upsAdvBatteryNumOfBadBattPacks
32 + - MIB: PowerNet-MIB
33 + symbol:
34 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.4.0
35 + name: upsAdvBatteryReplaceIndicator
36 + - MIB: PowerNet-MIB
37 + symbol:
38 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.3.0
39 + name: upsAdvBatteryRunTimeRemaining
40 + - MIB: PowerNet-MIB
41 + symbol:
42 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.2.0
43 + name: upsAdvBatteryTemperature
44 + - MIB: PowerNet-MIB
45 + symbol:
46 + OID: 1.3.6.1.4.1.318.1.1.1.2.2.1.0
47 + name: upsAdvBatteryCapacity
48 + - MIB: PowerNet-MIB
49 + symbol:
50 + OID: 1.3.6.1.4.1.318.1.1.1.2.3.2.0
51 + name: upsHighPrecExtdBatteryTemperature
52 + - MIB: PowerNet-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.318.1.1.1.3.2.1.0
55 + name: upsAdvInputLineVoltage
56 + - MIB: PowerNet-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.318.1.1.1.3.2.4.0
59 + name: upsAdvInputFrequency
60 + - MIB: PowerNet-MIB
61 + symbol:
62 + OID: 1.3.6.1.4.1.318.1.1.1.3.3.4.0
63 + name: upsHighPrecInputFrequency
64 + - MIB: PowerNet-MIB
65 + symbol:
66 + OID: 1.3.6.1.4.1.318.1.1.1.3.3.1.0
67 + name: upsHighPrecInputLineVoltage
68 + - MIB: PowerNet-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.318.1.1.1.4.3.4.0
71 + name: upsHighPrecOutputCurrent
72 + - MIB: PowerNet-MIB
73 + symbol:
74 + OID: 1.3.6.1.4.1.318.1.1.1.3.2.5.0
75 + name: upsAdvInputLineFailCause
76 + - MIB: PowerNet-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.1.0
79 + name: upsAdvOutputVoltage
80 + - MIB: PowerNet-MIB
81 + symbol:
82 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.2.0
83 + name: upsAdvOutputFrequency
84 + - MIB: PowerNet-MIB
85 + symbol:
86 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.3.0
87 + name: upsAdvOutputLoad
88 + - MIB: PowerNet-MIB
89 + symbol:
90 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.4.0
91 + name: upsAdvOutputCurrent
92 + - MIB: PowerNet-MIB
93 + symbol:
94 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.8.0
95 + name: upsAdvOutputActivePower
96 + - MIB: PowerNet-MIB
97 + symbol:
98 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.9.0
99 + name: upsAdvOutputApparentPower
100 + - MIB: PowerNet-MIB
101 + symbol:
102 + OID: 1.3.6.1.4.1.318.1.1.1.4.2.12.0
103 + name: upsAdvOutputEnergyUsage
104 + - MIB: PowerNet-MIB
105 + symbol:
106 + OID: 1.3.6.1.4.1.318.1.1.1.2.1.2.0
107 + name: upsBasicBatteryTimeOnBattery
108 + - MIB: PowerNet-MIB
109 + symbol:
110 + OID: 1.3.6.1.4.1.318.1.1.1.7.2.3.0
111 + name: upsAdvTestDiagnosticsResults
112 + - MIB: PowerNet-MIB
113 + symbol:
114 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
115 + name: upsBasicStateOutputState
116 + metric_type: flag_stream
117 + options:
118 + placement: 4
119 + metric_suffix: OnLine
120 + - MIB: PowerNet-MIB
121 + symbol:
122 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
123 + name: upsBasicStateOutputState
124 + metric_type: flag_stream
125 + options:
126 + placement: 5
127 + metric_suffix: ReplaceBattery
128 + - MIB: PowerNet-MIB
129 + symbol:
130 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
131 + name: upsBasicStateOutputState
132 + metric_type: flag_stream
133 + options:
134 + placement: 8
135 + metric_suffix: AVRTrimActive
136 + - MIB: PowerNet-MIB
137 + symbol:
138 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
139 + name: upsBasicStateOutputState
140 + metric_type: flag_stream
141 + options:
142 + placement: 11
143 + metric_suffix: BatteriesDischarged
144 + - MIB: PowerNet-MIB
145 + symbol:
146 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
147 + name: upsBasicStateOutputState
148 + metric_type: flag_stream
149 + options:
150 + placement: 19
151 + metric_suffix: "On"
152 + - MIB: PowerNet-MIB
153 + symbol:
154 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
155 + name: upsBasicStateOutputState
156 + metric_type: flag_stream
157 + options:
158 + placement: 30
159 + metric_suffix: LowBatteryOnBattery
160 + - MIB: PowerNet-MIB
161 + symbol:
162 + OID: 1.3.6.1.4.1.318.1.1.1.11.1.1.0
163 + name: upsBasicStateOutputState
164 + metric_type: flag_stream
165 + options:
166 + placement: 33
167 + metric_suffix: NoBatteriesAttached
168 + - MIB: PowerNet-MIB
169 + table:
170 + OID: 1.3.6.1.4.1.318.1.1.1.12.1.2
171 + name: upsOutletGroupStatusTable
172 + symbols:
173 + - name: upsOutletGroupStatus
174 + constant_value_one: true
175 + - OID: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3
176 + name: upsOutletGroupStatusGroupState
177 + metric_tags:
178 + - tag: outlet_group_name
179 + symbol:
180 + OID: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
181 + name: upsOutletGroupStatusName
182 + - tag: ups_outlet_group_status_group_state
183 + symbol:
184 + OID: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3
185 + name: upsOutletGroupStatusGroupState
186 + mapping:
187 + 1: ups_outlet_group_status_on
188 + 2: ups_outlet_group_status_off
189 + 3: ups_outlet_group_status_unknown
190 + - MIB: PowerNet-MIB
191 + symbol:
192 + OID: 1.3.6.1.4.1.318.1.1.25.1.2.1.6.0
193 + name: uioSensorStatusTemperatureDegC
194 +metric_tags:
195 + - tag: model
196 + 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').
197 + symbol: upsBasicIdentModel
198 + - tag: serial_num
199 + OID: 1.3.6.1.4.1.318.1.1.1.1.2.3.0
200 + symbol: upsAdvIdentSerialNumber # An 8-character string identifying the serial number of
201 + # the UPS internal microprocessor. This number is set at
202 + # the factory. NOTE: This number does NOT correspond to
203 + # the serial number on the rear of the UPS.
204 + - tag: firmware_version
205 + OID: 1.3.6.1.4.1.318.1.1.1.1.2.1.0
206 + symbol: upsAdvIdentFirmwareRevision # The firmware revision of the UPS system's microprocessor.
207 + # e.g. 452.17.W
208 + - 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.
209 + # e.g. UP001
210 + symbol: upsBasicIdentName
211 + tag: ups_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/arista-switch.yaml new
+265
@@ -0,0 +1,265 @@
1 +extends:
2 + - _arista.yaml
3 + - _arista-queue.yaml
4 + - _base.yaml
5 + - _generic-bgp4.yaml
6 + - _generic-entity-sensor.yaml
7 + - _generic-if.yaml
8 + - _generic-lldp.yaml
9 + - _generic-ospf.yaml
10 +
11 +metadata:
12 + device:
13 + fields:
14 + type:
15 + value: "switch"
16 +
17 +sysobjectid:
18 + - 1.3.6.1.4.1.30065.1.3011.7010.427.48
19 + - 1.3.6.1.4.1.30065.1.3011.7010.427.48.2957
20 + - 1.3.6.1.4.1.30065.1.3011.7020.1964.48
21 + - 1.3.6.1.4.1.30065.1.3011.7020.312.48
22 + - 1.3.6.1.4.1.30065.1.3011.7020.3735.24.2878.2
23 + - 1.3.6.1.4.1.30065.1.3011.7020.3735.32.2878.2
24 + - 1.3.6.1.4.1.30065.1.3011.7048.427.3648
25 + - 1.3.6.1.4.1.30065.1.3011.7048.427.4.3282
26 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.128
27 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.128.761
28 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.2.128
29 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.2.128.761
30 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.48
31 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.48.761
32 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.64
33 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.64.761
34 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.72
35 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.72.2512
36 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.72.2512.761
37 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.72.761
38 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.96
39 + - 1.3.6.1.4.1.30065.1.3011.7050.1958.96.761
40 + - 1.3.6.1.4.1.30065.1.3011.7050.2512.16
41 + - 1.3.6.1.4.1.30065.1.3011.7050.2512.16.761
42 + - 1.3.6.1.4.1.30065.1.3011.7050.2733.3.32.3282
43 + - 1.3.6.1.4.1.30065.1.3011.7050.2733.3.32.3282.761
44 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.2.32.3282
45 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.2.32.3282.761
46 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.32
47 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.32.2745.761
48 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.32.3282
49 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.32.3282.761
50 + - 1.3.6.1.4.1.30065.1.3011.7050.3095.32.761
51 + - 1.3.6.1.4.1.30065.1.3011.7050.3282.52
52 + - 1.3.6.1.4.1.30065.1.3011.7050.3282.52.761
53 + - 1.3.6.1.4.1.30065.1.3011.7050.3282.64
54 + - 1.3.6.1.4.1.30065.1.3011.7050.3282.64.761
55 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.128
56 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.128.761
57 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.2.128
58 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.2.128.761
59 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.2.72.2512
60 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.2.72.2512.761
61 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.3.48.1654.12
62 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.3.48.1654.12.761
63 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.3.48.1654.8
64 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.64
65 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.64.761
66 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.72
67 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.72.2512
68 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.72.2512.761
69 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.72.761
70 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.96
71 + - 1.3.6.1.4.1.30065.1.3011.7050.3741.96.761
72 + - 1.3.6.1.4.1.30065.1.3011.7050.427.36
73 + - 1.3.6.1.4.1.30065.1.3011.7050.427.52
74 + - 1.3.6.1.4.1.30065.1.3011.7050.427.52.761
75 + - 1.3.6.1.4.1.30065.1.3011.7050.427.64
76 + - 1.3.6.1.4.1.30065.1.3011.7050.427.64.761
77 + - 1.3.6.1.4.1.30065.1.3011.7060.2733.2.32.3282
78 + - 1.3.6.1.4.1.30065.1.3011.7060.2733.32.3282
79 + - 1.3.6.1.4.1.30065.1.3011.7060.2733.32.3282.3362
80 + - 1.3.6.1.4.1.30065.1.3011.7060.2733.32.3282.761
81 + - 1.3.6.1.4.1.30065.1.3011.7060.3741.2.48.1654.6
82 + - 1.3.6.1.4.1.30065.1.3011.7060.3741.2.48.1654.6.761
83 + - 1.3.6.1.4.1.30065.1.3011.7120.427.4.3282
84 + - 1.3.6.1.4.1.30065.1.3011.7124.2312
85 + - 1.3.6.1.4.1.30065.1.3011.7124.2312.2745
86 + - 1.3.6.1.4.1.30065.1.3011.7124.3282
87 + - 1.3.6.1.4.1.30065.1.3011.7124.3741
88 + - 1.3.6.1.4.1.30065.1.3011.7124.3741.761
89 + - 1.3.6.1.4.1.30065.1.3011.7140.427.8.3282
90 + - 1.3.6.1.4.1.30065.1.3011.7148.3282
91 + - 1.3.6.1.4.1.30065.1.3011.7148.3741
92 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.24
93 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.24.2745
94 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.24.2745.761
95 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.52.2745
96 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.52.2745.761
97 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.64.2745
98 + - 1.3.6.1.4.1.30065.1.3011.7150.3282.64.2745.761
99 + - 1.3.6.1.4.1.30065.1.3011.7150.3720.24.1208
100 + - 1.3.6.1.4.1.30065.1.3011.7150.3720.64.1208
101 + - 1.3.6.1.4.1.30065.1.3011.7160.32.2726
102 + - 1.3.6.1.4.1.30065.1.3011.7160.32.2726.761
103 + - 1.3.6.1.4.1.30065.1.3011.7160.48.1654.6
104 + - 1.3.6.1.4.1.30065.1.3011.7160.48.1654.6.761
105 + - 1.3.6.1.4.1.30065.1.3011.7160.48.1981.6
106 + - 1.3.6.1.4.1.30065.1.3011.7160.48.1981.6.761
107 + - 1.3.6.1.4.1.30065.1.3011.7160.64.1654.16
108 + - 1.3.6.1.4.1.30065.1.3011.7170.32.2737
109 + - 1.3.6.1.4.1.30065.1.3011.7170.32.2737.972
110 + - 1.3.6.1.4.1.30065.1.3011.7170.32.2878
111 + - 1.3.6.1.4.1.30065.1.3011.7170.32.2878.972
112 + - 1.3.6.1.4.1.30065.1.3011.7170.64.2878
113 + - 1.3.6.1.4.1.30065.1.3011.7170.64.2878.972
114 + - 1.3.6.1.4.1.30065.1.3011.7250.3095.64
115 + - 1.3.6.1.4.1.30065.1.3011.7250.3095.64.761
116 + - 1.3.6.1.4.1.30065.1.3011.7250.3095.64.972
117 + - 1.3.6.1.4.1.30065.1.3011.7260.2733.3.64
118 + - 1.3.6.1.4.1.30065.1.3011.7260.2733.3.64.761
119 + - 1.3.6.1.4.1.30065.1.3011.7260.2733.64
120 + - 1.3.6.1.4.1.30065.1.3011.7260.2733.64.761
121 + - 1.3.6.1.4.1.30065.1.3011.7260.3095.64
122 + - 1.3.6.1.4.1.30065.1.3011.7260.3095.64.761
123 + - 1.3.6.1.4.1.30065.1.3011.7280.1347.48.2878.6
124 + - 1.3.6.1.4.1.30065.1.3011.7280.1347.48.2878.6.972
125 + - 1.3.6.1.4.1.30065.1.3011.7280.1359.40.2733.2
126 + - 1.3.6.1.4.1.30065.1.3011.7280.1964.48.2878.6
127 + - 1.3.6.1.4.1.30065.1.3011.7280.1964.48.2878.6.972
128 + - 1.3.6.1.4.1.30065.1.3011.7280.2655.2878.36.3282
129 + - 1.3.6.1.4.1.30065.1.3011.7280.2655.2878.36.3282.972
130 + - 1.3.6.1.4.1.30065.1.3011.7280.2655.2878.72
131 + - 1.3.6.1.4.1.30065.1.3011.7280.2655.2878.72.972
132 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.202.30
133 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.202.60
134 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.202.60.761
135 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.3648.30
136 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.3648.60
137 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.3648.60.761
138 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.60
139 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.60.761
140 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.2.972.30
141 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.48
142 + - 1.3.6.1.4.1.30065.1.3011.7280.2727.48.761
143 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.36
144 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.36.3282
145 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.36.3282.972
146 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.36.972
147 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.72
148 + - 1.3.6.1.4.1.30065.1.3011.7280.3101.2878.72.972
149 + - 1.3.6.1.4.1.30065.1.3011.7280.312.48.2878.6
150 + - 1.3.6.1.4.1.30065.1.3011.7280.312.48.2878.6.972
151 + - 1.3.6.1.4.1.30065.1.3011.7280.3714.64
152 + - 1.3.6.1.4.1.30065.1.3011.7280.3714.68
153 + - 1.3.6.1.4.1.30065.1.3011.7280.3714.72
154 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.202.48.2878.6
155 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.3648.48.1654.6
156 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.3648.48.1654.6.972
157 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.48.1654.6
158 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.48.1654.6.972
159 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.2.589.48.2878.6
160 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.32.2878.2
161 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.48.2878.6
162 + - 1.3.6.1.4.1.30065.1.3011.7280.3735.48.2878.6.972
163 + - 1.3.6.1.4.1.30065.1.3011.7280.3977.48.2878.6
164 + - 1.3.6.1.4.1.30065.1.3011.7280.877.48
165 + - 1.3.6.1.4.1.30065.1.3011.7280.877.48.972
166 +
167 +metrics:
168 + - MIB: HOST-RESOURCES-MIB
169 + symbol:
170 + name: memory.total
171 + OID: 1.3.6.1.2.1.25.2.3.1.5.1
172 + - MIB: HOST-RESOURCES-MIB
173 + symbol:
174 + name: memory.used
175 + OID: 1.3.6.1.2.1.25.2.3.1.6.100
176 + - MIB: HOST-RESOURCES-MIB
177 + symbol:
178 + name: cpu.usage
179 + OID: 1.3.6.1.2.1.25.3.3.1.2.1
180 + - MIB: ARISTA-BGP4V2-MIB
181 + table:
182 + name: aristaBgp4V2PeerTable
183 + OID: 1.3.6.1.4.1.30065.4.1.1.2
184 + symbols:
185 + - name: aristaBgp4V2PeerLocalPort
186 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.6
187 + - name: aristaBgp4V2PeerLocalAs
188 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.7
189 + - name: aristaBgp4V2PeerRemotePort
190 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.9
191 + - name: aristaBgp4V2PeerRemoteAs
192 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.10
193 + metric_tags:
194 + - symbol:
195 + name: aristaBgp4V2PeerLocalAddr
196 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.3
197 + format: ip_address
198 + tag: arista_bgp4_v2_peer_local_addr
199 + - symbol:
200 + name: aristaBgp4V2PeerLocalIdentifier
201 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.8
202 + format: ip_address
203 + tag: arista_bgp4_v2_peer_local_identifier
204 + - symbol:
205 + name: aristaBgp4V2PeerRemoteIdentifier
206 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.11
207 + format: ip_address
208 + tag: arista_bgp4_v2_peer_remote_identifier
209 + - symbol:
210 + name: aristaBgp4V2PeerDescription
211 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.14
212 + tag: arista_bgp4_v2_peer_description
213 + - symbol:
214 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.2
215 + name: aristaBgp4V2PeerLocalAddrType
216 + tag: arista_bgp4_v2_peer_local_addr_type
217 + mapping:
218 + 0: unknown
219 + 1: ipv4
220 + 2: ipv6
221 + 3: ipv4z
222 + 4: ipv6z
223 + 16: dns
224 + - symbol:
225 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.12
226 + name: aristaBgp4V2PeerAdminStatus
227 + tag: arista_bgp4_v2_peer_admin_status
228 + mapping:
229 + 1: halted
230 + 2: running
231 + - symbol:
232 + OID: 1.3.6.1.4.1.30065.4.1.1.2.1.13
233 + name: aristaBgp4V2PeerState
234 + tag: arista_bgp4_v2_peer_state
235 + mapping:
236 + 1: idle
237 + 2: connect
238 + 3: active
239 + 4: opensent
240 + 5: openconfirm
241 + 6: established
242 + - MIB: ARISTA-IF-MIB
243 + table:
244 + name: aristaIfTable
245 + OID: 1.3.6.1.4.1.30065.3.15.1.1
246 + symbols:
247 + - name: aristaIfInPktRate
248 + OID: 1.3.6.1.4.1.30065.3.15.1.1.1.3
249 + - name: aristaIfOutPktRate
250 + OID: 1.3.6.1.4.1.30065.3.15.1.1.1.4
251 + - name: aristaIfInOctetRate
252 + OID: 1.3.6.1.4.1.30065.3.15.1.1.1.5
253 + - name: aristaIfOutOctetRate
254 + OID: 1.3.6.1.4.1.30065.3.15.1.1.1.6
255 + metric_tags:
256 + - symbol:
257 + name: aristaIfRateInterval
258 + OID: 1.3.6.1.4.1.30065.3.15.1.1.1.2
259 + tag: arista_if_rate_interval
260 + - MIB: IF-MIB
261 + symbol:
262 + OID: 1.3.6.1.2.1.31.1.1.1.1
263 + name: ifName
264 + table: ifXTable
265 + tag: if_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/arista.yaml new
+51
@@ -0,0 +1,51 @@
1 +# Profile for Arista devices
2 +#
3 +# Example sysDescr:
4 +# - Arista Networks EOS version 4.23.1F running on an Arista Networks CCS-720XP-48Y6
5 +# - Arista Networks EOS version 4.25.4M running on an Arista Networks DCS-7280SR-48C6
6 +# - Arista Networks EOS version 4.19.8M running on an Arista Networks DCS-7280SRA-48C6
7 +# - Arista Networks EOS version 4.24.4M running on an Arista Networks DCS-7060SX2-48YC6
8 +# - Arista Networks EOS version 4.23.0F running on an Arista Networks DCS-7020SR-24C2
9 +#
10 +# Arista product descriptions are available at: https://www.arista.com/assets/data/docs/MIBS/ARISTA-PRODUCTS-MIB.txt
11 +
12 +extends:
13 + - _arista.yaml
14 + - _arista-metadata.yaml
15 + - _arista-queue.yaml
16 + - _base.yaml
17 + - _generic-if.yaml
18 + - _generic-ip.yaml
19 + - _generic-host-resources.yaml
20 + - _generic-ospf.yaml
21 + - _generic-bgp4.yaml
22 + - _generic-tcp.yaml
23 + - _generic-udp.yaml
24 +
25 +# The OID `1.3.6.1.4.1.30065.1`/`aristaProducts` is the root object identifier from
26 +# which sysObjectID values are assigned. Values are defined in ARISTA-PRODUCTS-MIB.
27 +sysobjectid: 1.3.6.1.4.1.30065.1.*
28 +
29 +device:
30 + vendor: "arista"
31 +
32 +metrics:
33 + ### Sensor
34 +
35 + # This table contains one row per physical sensor.
36 + - MIB: ENTITY-SENSOR-MIB
37 + table:
38 + OID: 1.3.6.1.2.1.99.1.1.1
39 + name: entPhySensorTable
40 + symbols:
41 + - OID: 1.3.6.1.2.1.99.1.1.1.4
42 + name: entPhySensorValue
43 + - OID: 1.3.6.1.2.1.99.1.1.1.5
44 + name: entPhySensorOperStatus
45 + metric_tags:
46 + - tag: sensor_type
47 + symbol:
48 + OID: 1.3.6.1.2.1.99.1.1.1.1
49 + name: entPhySensorType
50 + - index: 1
51 + tag: sensor_id
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-access-point.yaml new
+57
@@ -0,0 +1,57 @@
1 +# Profile for Aruba Access Point devices (with limited support)
2 +#
3 +# Examples:
4 +# Access Point Products:
5 +# sysObjectID SysDescr
6 +# 1.3.6.1.4.1.14823.1.2.71 ArubaOS (MODEL: 205), Version 6.5.1.0-4.3.1.2
7 +# 1.3.6.1.4.1.14823.1.2.80 ArubaOS (MODEL: 335), Version 6.5.4.3-6.5.4.3
8 +# 1.3.6.1.4.1.14823.1.2.82 ArubaOS (MODEL: 315), Version 8.5.0.5-8.5.0.5
9 +
10 +extends:
11 + - _base.yaml
12 + - _aruba-base.yaml
13 + - _generic-if.yaml
14 + - _generic-ospf.yaml
15 +
16 +# All Access Point Products (apProducts/1.3.6.1.4.1.14823.1.2) from ARUBA-MIB
17 +sysobjectid: 1.3.6.1.4.1.14823.1.2.*
18 +
19 +device:
20 + vendor: "aruba"
21 +
22 +metadata:
23 + device:
24 + fields:
25 + # TODO: Add more fields (no suitable info found in OIDs)
26 + # - serial_number
27 + # - product_name
28 + version:
29 + symbol:
30 + OID: 1.3.6.1.2.1.1.1.0
31 + name: sysDescr
32 + match_pattern: '\bVersion\s+([\d.-]+)'
33 + match_value: '$1'
34 + # Example: Version 6.5.1.0-4.3.1.2
35 + model:
36 + symbol:
37 + OID: 1.3.6.1.2.1.1.1.0
38 + name: sysDescr
39 + match_pattern: '\bMODEL:\s+([\w-]+)'
40 + match_value: '$1'
41 + # Examples:
42 + # - ArubaOS (MODEL: 205), Version 6.5.1.0-4.3.1.2
43 + os_name:
44 + symbol:
45 + OID: 1.3.6.1.2.1.1.1.0
46 + name: sysDescr
47 + match_pattern: '\bArubaOS\b'
48 + match_value: 'ArubaOS'
49 + os_version:
50 + symbol:
51 + OID: 1.3.6.1.2.1.1.1.0
52 + name: sysDescr
53 + match_pattern: '\bVersion\s+([\d.]+)'
54 + match_value: '$1'
55 + # Example: `6.5.1.0` part of `Version 6.5.1.0-4.3.1.2`
56 + type:
57 + value: "access_point"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-clearpass.yaml new
+228
@@ -0,0 +1,228 @@
1 +extends:
2 + - aruba.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.14823.1.6.1
6 +metrics:
7 + - MIB: HOST-RESOURCES-MIB
8 + symbol:
9 + name: cpu.usage
10 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608
11 + - MIB: UCD-SNMP-MIB
12 + symbol:
13 + name: memory.total
14 + OID: 1.3.6.1.4.1.2021.4.5.0
15 + - MIB: UCD-SNMP-MIB
16 + symbol:
17 + name: memory.free
18 + OID: 1.3.6.1.4.1.2021.4.6.0
19 + - MIB: CPPM-MIB
20 + table:
21 + name: cppmSystemTable
22 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1
23 + symbols:
24 + - name: cppmSystemMemoryTotal
25 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.12
26 + - name: cppmSystemMemoryFree
27 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.13
28 + - name: cppmSystemDiskSpaceTotal
29 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.14
30 + - name: cppmSystemDiskSpaceFree
31 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.15
32 + metric_tags:
33 + - symbol:
34 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
35 + name: cppmSystemHostname
36 + tag: cppm_system_hostname
37 + - MIB: CPPM-MIB
38 + table:
39 + name: radiusServerTable
40 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1
41 + symbols:
42 + - name: radPolicyEvalTime
43 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.1
44 + - name: radAuthRequestTime
45 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.2
46 + - name: radServerCounterSuccess
47 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.3
48 + - name: radServerCounterFailure
49 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.4
50 + - name: radServerCounterCount
51 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.1.1.5
52 + metric_tags:
53 + - table: cppmSystemTable
54 + symbol:
55 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
56 + name: cppmSystemHostname
57 + tag: cppm_system_hostname
58 + - MIB: CPPM-MIB
59 + table:
60 + name: radiusServerAuthTable
61 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2
62 + symbols:
63 + - name: radAuthCounterSuccess
64 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.3
65 + - name: radAuthCounterFailure
66 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.4
67 + - name: radAuthCounterCount
68 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.5
69 + - name: radAuthCounterTime
70 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.6
71 + metric_tags:
72 + - symbol:
73 + name: radAuthSourceName
74 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.2.1.2
75 + tag: rad_auth_source_name
76 + - MIB: CPPM-MIB
77 + table:
78 + name: policyServerTable
79 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3
80 + symbols:
81 + - name: psServicePolicyEvalCount
82 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.1
83 + - name: psRolemappingPolicyEvalCount
84 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.2
85 + - name: psPosturePolicyEvalCount
86 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.3
87 + - name: psAuditPolicyEvalCount
88 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.4
89 + - name: psRestrictionPolicyEvalCount
90 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.5
91 + - name: psEnforcementPolicyEvalCount
92 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.6
93 + - name: psServicePolicyEvalTime
94 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.7
95 + - name: psRolemappingPolicyEvalTime
96 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.8
97 + - name: psPosturePolicyEvalTime
98 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.9
99 + - name: psAuditPolicyEvalTime
100 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.10
101 + - name: psRestrictionPolicyEvalTime
102 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.11
103 + - name: psEnforcementPolicyEvalTime
104 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.12
105 + - name: psSessionlogTime
106 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.13
107 + - name: psAuthCounterSuccess
108 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.14
109 + - name: psAuthCounterFailure
110 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.15
111 + - name: psAuthCounterTotal
112 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.16
113 + - name: dailySuccessAuthCount
114 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.17
115 + - name: dailyFailedAuthCount
116 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.18
117 + - name: dailyTotalAuthCount
118 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.3.1.19
119 + metric_tags:
120 + - table: cppmSystemTable
121 + symbol:
122 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
123 + name: cppmSystemHostname
124 + tag: cppm_system_hostname
125 + - MIB: CPPM-MIB
126 + table:
127 + name: policyServerAutzTable
128 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5
129 + symbols:
130 + - name: psAutzCounterSuccess
131 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.3
132 + - name: psAutzCounterFailure
133 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.4
134 + - name: psAutzCounterCount
135 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.5
136 + - name: psAutzCounterTime
137 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.6
138 + metric_tags:
139 + - symbol:
140 + name: psAutzSourceName
141 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.5.1.2
142 + tag: ps_autz_source_name
143 + - MIB: CPPM-MIB
144 + table:
145 + name: tacacsAuthTable
146 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7
147 + symbols:
148 + - name: tacAuthCounterSuccess
149 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.1
150 + - name: tacAuthCounterFailure
151 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.2
152 + - name: tacAuthCounterCount
153 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.3
154 + - name: tacAuthCounterTime
155 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.4
156 + - name: tacAuthCounterAuthTime
157 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.5
158 + - name: tacServicePolicyEvalTime
159 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.6
160 + - name: tacPolicyEvalTime
161 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.7.1.7
162 + metric_tags:
163 + - table: cppmSystemTable
164 + symbol:
165 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
166 + name: cppmSystemHostname
167 + tag: cppm_system_hostname
168 + - MIB: CPPM-MIB
169 + table:
170 + name: tacacsAutzTable
171 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8
172 + symbols:
173 + - name: tacAutzCounterSuccess
174 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.1
175 + - name: tacAutzCounterFailure
176 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.2
177 + - name: tacAutzCounterCount
178 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.3
179 + - name: tacAutzCounterTime
180 + OID: 1.3.6.1.4.1.14823.1.6.1.1.2.8.1.4
181 + metric_tags:
182 + - table: cppmSystemTable
183 + symbol:
184 + OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.4
185 + name: cppmSystemHostname
186 + tag: cppm_system_hostname
187 + - MIB: CPPM-MIB
188 + table:
189 + name: networkTrafficTable
190 + OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1
191 + symbols:
192 + - name: nwAppPort
193 + OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.3
194 + - name: nwTrafficTotal
195 + OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.4
196 + metric_tags:
197 + - symbol:
198 + name: nwAppName
199 + OID: 1.3.6.1.4.1.14823.1.6.1.1.3.1.1.2
200 + tag: nw_app_name
201 +metric_tags:
202 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.3.0
203 + symbol: cppmSystemVersion
204 + tag: cppm_system_version
205 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.5.0
206 + symbol: cppmClusterNodeType
207 + tag: cppm_cluster_node_type
208 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.6.0
209 + symbol: cppmZoneName
210 + tag: cppm_zone_name
211 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.7.0
212 + symbol: cppmNumClusterNodes
213 + tag: cppm_num_cluster_nodes
214 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.8.0
215 + symbol: cppmNwMgmtPortIPAddress
216 + tag: cppm_nw_mgmt_port_ip_address
217 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.9.0
218 + symbol: cppmNwMgmtPortMACAddress
219 + tag: cppm_nw_mgmt_port_mac_address
220 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.10.0
221 + symbol: cppmNwDataPortIPAddress
222 + tag: cppm_nw_data_port_ip_address
223 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.11.0
224 + symbol: cppmNwDataPortMACAddress
225 + tag: cppm_nw_data_port_mac_address
226 + - OID: 1.3.6.1.4.1.14823.1.6.1.1.1.1.1.16.0
227 + symbol: cppmSystemNumCPUs
228 + tag: cppm_system_num_cp_us
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-cx-switch.yaml new
+132
@@ -0,0 +1,132 @@
1 +extends:
2 + - aruba.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.47196.4.1.1.1.*
5 + - 1.3.6.1.4.1.47196.4.1.1.1.1
6 + - 1.3.6.1.4.1.47196.4.1.1.1.2
7 + - 1.3.6.1.4.1.47196.4.1.1.1.3
8 + - 1.3.6.1.4.1.47196.4.1.1.1.5
9 + - 1.3.6.1.4.1.47196.4.1.1.1.50
10 + - 1.3.6.1.4.1.47196.4.1.1.1.70
11 + - 1.3.6.1.4.1.47196.4.1.1.1.101
12 + - 1.3.6.1.4.1.47196.4.1.1.1.103
13 + - 1.3.6.1.4.1.47196.4.1.1.1.104
14 + - 1.3.6.1.4.1.47196.4.1.1.1.150
15 + - 1.3.6.1.4.1.47196.4.1.1.1.304
16 + - 1.3.6.1.4.1.47196.4.1.1.1.405
17 +metadata:
18 + device:
19 + fields:
20 + type:
21 + value: "switch"
22 +metrics:
23 + - MIB: HOST-RESOURCES-MIB
24 + symbol:
25 + name: memory.total
26 + OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1
27 + - MIB: HOST-RESOURCES-MIB
28 + symbol:
29 + name: memory.used
30 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1
31 + - MIB: HOST-RESOURCES-MIB
32 + symbol:
33 + name: cpu.usage
34 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
35 + - MIB: ARUBAWIRED-TEMPSENSOR-MIB
36 + table:
37 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1
38 + name: arubaWiredTempSensorTable
39 + symbols:
40 + - name: arubaWiredTempSensorTemperature
41 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.7
42 + metric_tags:
43 + - symbol:
44 + name: arubaWiredTempSensorName
45 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.5
46 + tag: aruba_wired_temp_sensor_name
47 + - symbol:
48 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.3.1.1.6
49 + name: arubaWiredTempSensorState
50 + tag: aruba_wired_temp_sensor_state
51 + - MIB: ARUBAWIRED-POWERSUPPLY-MIB
52 + table:
53 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1
54 + name: arubaWiredPowerSupplyTable
55 + symbols:
56 + - name: arubaWiredPSUInstantaneousPower
57 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.7
58 + - name: arubaWiredPSUNumberFailures
59 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.9
60 + metric_tags:
61 + - symbol:
62 + name: arubaWiredPSUName
63 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.3
64 + tag: aruba_wired_psu_name
65 + - symbol:
66 + name: arubaWiredPSUProductName
67 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.5
68 + tag: aruba_wired_psu_product_name
69 + - symbol:
70 + name: arubaWiredPSUSerialNumber
71 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.6
72 + tag: aruba_wired_psu_serial_number
73 + - symbol:
74 + name: arubaWiredPSUAirflowDirection
75 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.10
76 + tag: aruba_wired_psu_airflow_direction
77 + - symbol:
78 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.2.1.1.4
79 + name: arubaWiredPSUState
80 + tag: aruba_wired_psu_state
81 + - MIB: ARUBAWIRED-FANTRAY-MIB
82 + table:
83 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.4.1
84 + name: arubaWiredFanTrayTable
85 + symbols:
86 + - name: arubaWiredFanTray
87 + constant_value_one: true
88 + metric_tags:
89 + - symbol:
90 + name: arubaWiredFanTrayName
91 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.3
92 + tag: aruba_wired_fan_tray_name
93 + - symbol:
94 + name: arubaWiredFanTrayProductName
95 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.5
96 + tag: aruba_wired_fan_tray_product_name
97 + - symbol:
98 + name: arubaWiredFanTraySerialNumber
99 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.6
100 + tag: aruba_wired_fan_tray_serial_number
101 + - symbol:
102 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.4.1.1.4
103 + name: arubaWiredFanTrayState
104 + tag: aruba_wired_fan_tray_state
105 + - MIB: ARUBAWIRED-FAN-MIB
106 + table:
107 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1
108 + name: arubaWiredFanTable
109 + symbols:
110 + - name: arubaWiredFanRPM
111 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.8
112 + metric_tags:
113 + - symbol:
114 + name: arubaWiredFanName
115 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.4
116 + tag: aruba_wired_fan_name
117 + - symbol:
118 + name: arubaWiredFanProductName
119 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.6
120 + tag: aruba_wired_fan_product_name
121 + - symbol:
122 + name: arubaWiredFanSerialNumber
123 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.7
124 + tag: aruba_wired_fan_serial_number
125 + - symbol:
126 + name: arubaWiredFanAirflowDirection
127 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.9
128 + tag: aruba_wired_fan_airflow_direction
129 + - symbol:
130 + OID: 1.3.6.1.4.1.47196.4.1.1.3.11.5.1.1.5
131 + name: arubaWiredFanState
132 + tag: aruba_wired_fan_state
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-mobility-controller.yaml new
+16
@@ -0,0 +1,16 @@
1 +extends:
2 + - _aruba-base.yaml
3 + - _base.yaml
4 + - _generic-if.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.14823.1.1.50
8 + - 1.3.6.1.4.1.14823.1.1.53
9 + - 1.3.6.1.4.1.14823.1.1.54
10 + - 1.3.6.1.4.1.14823.1.1.55
11 +
12 +metadata:
13 + device:
14 + fields:
15 + type:
16 + value: "WLC"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-switch.yaml new
+171
@@ -0,0 +1,171 @@
1 +# Profile for Aruba Switch devices
2 +#
3 +# Examples:
4 +# Switch Products:
5 +# sysObjectID SysDescr
6 +# 1.3.6.1.4.1.14823.1.1.17 ArubaOS (MODEL: Aruba3600-US), Version 6.4.4.17 (63295)
7 +# 1.3.6.1.4.1.14823.1.1.19 ArubaOS (MODEL: Aruba650-US), Version 6.4.4.17 (63295)
8 +# 1.3.6.1.4.1.14823.1.1.32 ArubaOS (MODEL: Aruba7210), Version 6.5.4.9 (67129)
9 +# 1.3.6.1.4.1.14823.1.1.32 ArubaOS (MODEL: Aruba7210-US), Version 6.5.4.9 (67129)
10 +# 1.3.6.1.4.1.14823.1.1.32 ArubaOS (MODEL: Aruba7210-US), Version 6.4.4.17 (63295)
11 +# 1.3.6.1.4.1.14823.1.1.33 ArubaOS (MODEL: Aruba7220-US), Version 6.5.4.9 (67129)
12 +# 1.3.6.1.4.1.14823.1.1.36 Aruba S1500 Mobility Access Switch
13 +# 1.3.6.1.4.1.14823.1.1.39 ArubaOS (MODEL: Aruba7005-US), Version 6.5.4.8 (65873)
14 +# 1.3.6.1.4.1.14823.1.1.40 ArubaOS (MODEL: Aruba7010-US), Version 6.5.1.4 (58698)
15 +
16 +extends:
17 + - _base.yaml
18 + - _aruba-base.yaml
19 + - _generic-if.yaml
20 + - _generic-ospf.yaml
21 + - _aruba-switch-cpu-memory.yaml
22 +
23 +# All Switch Products (switchProducts/1.3.6.1.4.1.14823.1.1) from ARUBA-MIB
24 +sysobjectid: 1.3.6.1.4.1.14823.1.1.*
25 +
26 +device:
27 + vendor: "aruba"
28 +
29 +metadata:
30 + device:
31 + fields:
32 + serial_number:
33 + symbol:
34 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.29.0
35 + name: wlsxSysExtSerialNumber
36 + # Examples: `CV0009287`
37 + version:
38 + # wlsxSysExtSwVersion used for both version and os_version
39 + symbol:
40 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.28.0
41 + name: wlsxSysExtSwVersion
42 + # Examples: `8.6.0.4`
43 + product_name:
44 + symbol:
45 + OID: 1.3.6.1.2.1.1.1.0
46 + name: sysDescr
47 + match_pattern: '\bMODEL:\s+([\w-]+)'
48 + match_value: '$1'
49 + # Examples: ArubaOS (MODEL: Aruba7010-US), Version 6.5.1.4 (58698)
50 + model:
51 + symbol:
52 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
53 + name: wlsxModelName
54 + # Example: A7210
55 + os_name:
56 + symbol:
57 + OID: 1.3.6.1.2.1.1.1.0
58 + name: sysDescr
59 + match_pattern: '\bArubaOS\b'
60 + match_value: 'ArubaOS'
61 + os_version:
62 + # wlsxSysExtSwVersion used for both version and os_version
63 + symbol:
64 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.28.0
65 + name: wlsxSysExtSwVersion
66 + # Examples: `8.6.0.4`
67 + type:
68 + value: "switch"
69 +
70 +metrics:
71 + ### Sensor
72 +
73 + # The table of all supported fans in the controller.
74 + # Not supported in Aruba 200/800 and 2400 controllers.
75 + - MIB: WLSX-SYSTEMEXT-MIB
76 + table:
77 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17
78 + name: wlsxSysExtFanTable
79 + symbols:
80 + - # NOTE: active(1), inactive(2)
81 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17.1.2
82 + name: sysExtFanStatus
83 + metric_tags:
84 + - tag: fan_index
85 + symbol:
86 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17.1.1
87 + name: sysExtFanIndex
88 +
89 + - MIB: WLSX-SYSTEMEXT-MIB
90 + table:
91 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17
92 + name: wlsxSysExtFanTable
93 + symbols:
94 + - name: wlsxSysExtFan
95 + constant_value_one: true
96 + metric_tags:
97 + - tag: fan_index
98 + symbol:
99 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17.1.1
100 + name: sysExtFanIndex
101 + - tag: fan_status
102 + symbol:
103 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.17.1.2
104 + name: sysExtFanStatus
105 + mapping:
106 + 1: active
107 + 2: inactive
108 +
109 + ### Power
110 +
111 + # The table of Power supplies in the controller.
112 + # Not supported in Aruba 200, 800 and 2400 controllers.
113 + - MIB: WLSX-SYSTEMEXT-MIB
114 + table:
115 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.18
116 + name: wlsxSysExtPowerSupplyTable
117 + symbols:
118 + # NOTE: active(1), inactive(2)
119 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.18.1.2
120 + name: sysExtPowerSupplyStatus
121 + metric_tags:
122 + - tag: powersupply_index
123 + symbol:
124 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.18.1.1
125 + name: sysExtPowerSupplyIndex
126 +
127 + ### Processor
128 +
129 + - # The table of processors contained by the controller.
130 + MIB: WLSX-SYSTEMEXT-MIB
131 + table:
132 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13
133 + name: wlsxSysExtProcessorTable
134 + symbols:
135 + # The average, over the last minute, of the percentage of time that this processor was not idle.
136 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13.1.3
137 + name: sysExtProcessorLoad
138 + metric_tags:
139 + - tag: processor_index
140 + symbol:
141 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.13.1.1
142 + name: sysExtProcessorID
143 +
144 + ### Memory
145 +
146 + - # The memory status of the controller. All memory values measured in KB.
147 + MIB: WLSX-SYSTEMEXT-MIB
148 + table:
149 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1
150 + name: wlsxSysExtMemoryTable
151 + symbols:
152 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.2
153 + name: sysExtMemorySize
154 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.3
155 + name: sysExtMemoryUsed
156 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.4
157 + name: sysExtMemoryFree
158 + metric_tags:
159 + - tag: memory_index
160 + symbol:
161 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.15.1.1
162 + name: sysExtMemoryIndex
163 +
164 +
165 + ### Interface
166 +
167 + # The packet loss count of the switch.
168 + - MIB: WLSX-SYSTEMEXT-MIB
169 + symbol:
170 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.32.0
171 + name: wlsxSysExtPacketLossPercent
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba-wireless-controller.yaml new
+349
@@ -0,0 +1,349 @@
1 +extends:
2 + - _aruba-base.yaml
3 + - _base.yaml
4 + - _generic-if.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.14823.1.1.1
8 + - 1.3.6.1.4.1.14823.1.1.2
9 + - 1.3.6.1.4.1.14823.1.1.3
10 + - 1.3.6.1.4.1.14823.1.1.4
11 + - 1.3.6.1.4.1.14823.1.1.7
12 + - 1.3.6.1.4.1.14823.1.1.8
13 + - 1.3.6.1.4.1.14823.1.1.9
14 + - 1.3.6.1.4.1.14823.1.1.10
15 + - 1.3.6.1.4.1.14823.1.1.11
16 + - 1.3.6.1.4.1.14823.1.1.12
17 + - 1.3.6.1.4.1.14823.1.1.13
18 + - 1.3.6.1.4.1.14823.1.1.14
19 + - 1.3.6.1.4.1.14823.1.1.15
20 + - 1.3.6.1.4.1.14823.1.1.16
21 + - 1.3.6.1.4.1.14823.1.1.17
22 + - 1.3.6.1.4.1.14823.1.1.18
23 + - 1.3.6.1.4.1.14823.1.1.19
24 + - 1.3.6.1.4.1.14823.1.1.20
25 + - 1.3.6.1.4.1.14823.1.1.23
26 + - 1.3.6.1.4.1.14823.1.1.24
27 + - 1.3.6.1.4.1.14823.1.1.25
28 + - 1.3.6.1.4.1.14823.1.1.26
29 + - 1.3.6.1.4.1.14823.1.1.27
30 + - 1.3.6.1.4.1.14823.1.1.28
31 + - 1.3.6.1.4.1.14823.1.1.29
32 + - 1.3.6.1.4.1.14823.1.1.30
33 + - 1.3.6.1.4.1.14823.1.1.31
34 + - 1.3.6.1.4.1.14823.1.1.32
35 + - 1.3.6.1.4.1.14823.1.1.33
36 + - 1.3.6.1.4.1.14823.1.1.34
37 + - 1.3.6.1.4.1.14823.1.1.35
38 + - 1.3.6.1.4.1.14823.1.1.39
39 + - 1.3.6.1.4.1.14823.1.1.40
40 + - 1.3.6.1.4.1.14823.1.1.41
41 + - 1.3.6.1.4.1.14823.1.1.42
42 + - 1.3.6.1.4.1.14823.1.1.47
43 + - 1.3.6.1.4.1.14823.1.1.48
44 + - 1.3.6.1.4.1.14823.1.1.56
45 +
46 +metadata:
47 + device:
48 + fields:
49 + type:
50 + value: "WLC"
51 +
52 +metrics:
53 + - MIB: WLSX-SYSTEMEXT-MIB
54 + symbol:
55 + name: cpu.usage
56 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.30.0
57 + - MIB: WLSX-SYSTEMEXT-MIB
58 + symbol:
59 + name: memory.usage
60 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.31.0
61 + - MIB: WLSX-SYSTEMEXT-MIB
62 + symbol:
63 + name: wlsxSysExtPacketLossPercent
64 + OID: 1.3.6.1.4.1.14823.2.2.1.2.1.32.0
65 + - MIB: WLSX-SWITCH-MIB
66 + table:
67 + name: wlsxSysXStorageTable
68 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10
69 + symbols:
70 + - name: sysXStorageSize
71 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.3
72 + - name: sysXStorageUsed
73 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.4
74 + metric_tags:
75 + - symbol:
76 + name: sysXStorageType
77 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.2
78 + tag: sys_x_storage_type
79 + mapping:
80 + 1: ram
81 + 2: flash_memory
82 + - symbol:
83 + name: sysXStorageName
84 + OID: 1.3.6.1.4.1.14823.2.2.1.1.1.10.1.5
85 + tag: sys_x_storage_name
86 + - MIB: WLSX-SWITCH-MIB
87 + table:
88 + name: wlsxSwitchAccessPointTable
89 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3
90 + symbols:
91 + - name: apChannelNoise
92 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.13
93 + - name: apSignalToNoiseRatio
94 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.14
95 + metric_tags:
96 + - symbol:
97 + name: apESSID
98 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.2
99 + tag: ap_essid
100 + - symbol:
101 + name: apPhyType
102 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.6
103 + tag: ap_phy_type
104 + mapping:
105 + 1: dot11a
106 + 2: dot11b
107 + 3: dot11g
108 + - symbol:
109 + name: apType
110 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.7
111 + tag: ap_type
112 + mapping:
113 + 1: ap
114 + 2: am
115 + - symbol:
116 + name: apCurrentChannel
117 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.8
118 + tag: ap_current_channel
119 + - symbol:
120 + name: apLoadBalancing
121 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.3.1.12
122 + tag: ap_load_balancing
123 + mapping:
124 + 1: 'true'
125 + 2: 'false'
126 + - MIB: WLSX-SWITCH-MIB
127 + table:
128 + name: wlsxSwitchAccessPointStatsTable
129 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5
130 + symbols:
131 + - name: apChannelBwRate
132 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.2
133 + - name: apChannelFrameRetryRate
134 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.3
135 + - name: apChannelFrameLowSpeedRate
136 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.4
137 + - name: apChannelFrameNonUnicastRate
138 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.5
139 + - name: apChannelFrameFragmentationRate
140 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.6
141 + - name: apChannelFrameReceiveErrorRate
142 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.7
143 + - name: apBSSTxPackets
144 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.8
145 + metric_type: monotonic_count
146 + - name: apBSSTxBytes
147 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.9
148 + metric_type: monotonic_count
149 + - name: apBSSRxPackets
150 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.10
151 + metric_type: monotonic_count
152 + - name: apBSSRxBytes
153 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.11
154 + metric_type: monotonic_count
155 + - name: apBSSBwRate
156 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.12
157 + - name: apBSSFrameRetryRate
158 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.13
159 + - name: apBSSFrameLowSpeedRate
160 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.14
161 + - name: apBSSFrameNonUnicastRate
162 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.15
163 + - name: apBSSFrameFragmentationRate
164 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.16
165 + - name: apBSSFrameReceiveErrorRate
166 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.17
167 + metric_tags:
168 + - symbol:
169 + name: apStatsChannel
170 + OID: 1.3.6.1.4.1.14823.2.2.1.1.3.5.1.1
171 + tag: ap_stats_channel
172 + - MIB: WLSX-USER-MIB
173 + symbol:
174 + name: wlsxNumOfUsers8021x
175 + OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.1.0
176 + - MIB: WLSX-USER-MIB
177 + symbol:
178 + name: wlsxNumOfUsersVPN
179 + OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.2.0
180 + - MIB: WLSX-USER-MIB
181 + symbol:
182 + name: wlsxNumOfUsersCP
183 + OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.3.0
184 + - MIB: WLSX-USER-MIB
185 + symbol:
186 + name: wlsxNumOfUsersMAC
187 + OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.4.0
188 + - MIB: WLSX-USER-MIB
189 + symbol:
190 + name: wlsxNumOfUsersStateful8021x
191 + OID: 1.3.6.1.4.1.14823.2.2.1.4.1.4.5.0
192 + - MIB: WLSX-HA-MIB
193 + symbol:
194 + name: haActiveAPs
195 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.1.0
196 + - MIB: WLSX-HA-MIB
197 + symbol:
198 + name: haStandbyAPs
199 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.2.0
200 + - MIB: WLSX-HA-MIB
201 + symbol:
202 + name: haTotalAPs
203 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.2.1.3.0
204 + - MIB: WLSX-HA-MIB
205 + table:
206 + name: wlsxHighAvalabilityTunnelTable
207 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5
208 + symbols:
209 + - name: haActiveVapTunnels
210 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.1
211 + - name: haStandbyVapTunnels
212 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.2
213 + - name: haTotalVapTunnels
214 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.3
215 + - name: haAPHbtTunnels
216 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.5.1.4
217 + metric_tags:
218 + - symbol:
219 + OID: 1.3.6.1.4.1.14823.2.2.1.20.1.1.1.2
220 + name: haMembership
221 + table: wlsxHighAvalabilityConfigTable
222 + tag: ha_membership
223 + # The actual index of the table is haProfileName that is not accessible
224 +
225 + - MIB: WLSX-WLAN-MIB
226 + table:
227 + name: wlsxWlanStationTable
228 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1
229 + symbols:
230 + - name: wlanStaTransmitRate
231 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.10
232 + - name: wlanStaRSSI
233 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.14
234 + - name: wlanStaUpTime
235 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.15
236 + - name: wlanStaTransmitRateCode
237 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.17
238 + metric_tags:
239 + - symbol:
240 + name: wlanStaPhyType
241 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.3
242 + tag: wlan_sta_phy_type
243 + mapping:
244 + 1: dot11a
245 + 2: dot11b
246 + 3: dot11g
247 + 4: dot11ag
248 + 5: wired
249 + - symbol:
250 + name: wlanStaAccessPointESSID
251 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.12
252 + tag: wlan_sta_access_point_essid
253 + - symbol:
254 + name: wlanStaChannel
255 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.6
256 + tag: wlan_sta_channel
257 + - symbol:
258 + name: wlanStaVlanId
259 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.7
260 + tag: wlan_sta_vlan_id
261 + - symbol:
262 + name: wlanStaIsAuthenticated
263 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.4
264 + tag: wlan_sta_is_authenticated
265 + mapping:
266 + 1: 'true'
267 + 2: 'false'
268 + - symbol:
269 + name: wlanStaIsAssociated
270 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.5
271 + tag: wlan_sta_is_associated
272 + mapping:
273 + 1: 'true'
274 + 2: 'false'
275 + - symbol:
276 + name: wlanStaHTMode
277 + OID: 1.3.6.1.4.1.14823.2.2.1.5.2.2.1.1.16
278 + tag: wlan_sta_ht_mode
279 + mapping:
280 + 1: none
281 + 2: ht20
282 + 3: ht40
283 + 4: vht20
284 + 5: vht40
285 + 6: vht80
286 + 7: vht160
287 + 8: vht80plus80
288 + 9: he20
289 + 10: he40
290 + 11: he80
291 + 12: he160
292 + 13: he80plus80
293 + - MIB: WLSX-WLAN-MIB
294 + table:
295 + name: wlsxWlanStationStatsTable
296 + OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1
297 + symbols:
298 + - name: wlanStaTxBytes64
299 + OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.25
300 + - name: wlanStaRxBytes64
301 + OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.26
302 + metric_tags:
303 + - symbol:
304 + name: wlanStaChannelNum
305 + OID: 1.3.6.1.4.1.14823.2.2.1.5.3.2.1.1.1
306 + tag: wlan_sta_channel_num
307 + # - MIB: WLSX-WLAN-MIB
308 + # table:
309 + # name: wlsxWlanESSIDStatsTable
310 + # OID: 1.3.6.1.4.1.14823.2.2.1.5.3.3.1
311 + # symbols:
312 + # - name: wlanESSIDRxRate
313 + # OID: 1.3.6.1.4.1.14823.2.2.1.5.3.3.1.1.8
314 + # - name: wlanESSIDTxRate
315 + # OID: 1.3.6.1.4.1.14823.2.2.1.5.3.3.1.1.9
316 + # - name: wlanESSIDWiredRxBytes
317 + # OID: 1.3.6.1.4.1.14823.2.2.1.5.3.3.1.1.11
318 + # - name: wlanESSIDWiredTxBytes
319 + # OID: 1.3.6.1.4.1.14823.2.2.1.5.3.3.1.1.12
320 + # metric_tags:
321 + # - symbol:
322 + # OID:
323 + # name:
324 + # table:
325 + # tag:
326 + # The index wlanESSID is not accessible
327 + # TODO: Requires feature to convert full index into a metric tag
328 +metric_tags:
329 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.27.0
330 + symbol: wlsxSysExtHwVersion
331 + tag: wlsx_sys_ext_hw_version
332 + - OID: 1.3.6.1.4.1.14823.2.2.1.2.1.28.0
333 + symbol: wlsxSysExtSwVersion
334 + tag: wlsx_sys_ext_sw_version
335 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.2.0
336 + symbol: wlsxModelName
337 + tag: wlsx_model_name
338 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.4.0
339 + symbol: wlsxSwitchRole
340 + tag: wlsx_switch_role
341 + mapping:
342 + 1: master
343 + 2: local
344 + 3: standbymaster
345 + 4: branch
346 + 5: md
347 + - OID: 1.3.6.1.4.1.14823.2.2.1.1.1.12.0
348 + symbol: wlsxSwitchLicenseSerialNumber
349 + tag: wlsx_switch_license_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/aruba.yaml new
+14
@@ -0,0 +1,14 @@
1 +# Profile for Aruba devices
2 +# Legacy profile that match all Aruba devices
3 +# Newer profiles are: aruba-switch.yaml, aruba-access-point.yaml, etc
4 +
5 +sysobjectid: 1.3.6.1.4.1.14823.*
6 +
7 +device:
8 + vendor: "aruba"
9 +
10 +extends:
11 + - _base.yaml
12 + - _aruba-base.yaml
13 + - _generic-if.yaml
14 + - _generic-ospf.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/audiocodes-mediant-sbc.yaml new
+26
@@ -0,0 +1,26 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.5003.8.1.1.71
7 +
8 +metrics:
9 + - MIB: HOST-RESOURCES-MIB
10 + symbol:
11 + name: memory.total
12 + OID: 1.3.6.1.2.1.25.2.3.1.5.1
13 + - MIB: HOST-RESOURCES-MIB
14 + symbol:
15 + name: memory.used
16 + OID: 1.3.6.1.2.1.25.2.3.1.6.1
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 +
22 +metadata:
23 + device:
24 + fields:
25 + vendor:
26 + value: "audiocodes"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avaya-aura-media-server.yaml new
+27
@@ -0,0 +1,27 @@
1 +extends:
2 + - _generic-host-resources-base.yaml
3 + - _generic-if.yaml
4 + - avaya.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.6889.1.58
8 +
9 +metadata:
10 + device:
11 + fields:
12 + type:
13 + value: "server"
14 +
15 +metrics:
16 + - MIB: HOST-RESOURCES-MIB
17 + symbol:
18 + name: memory.total
19 + OID: 1.3.6.1.2.1.25.2.3.1.5.1
20 + - MIB: HOST-RESOURCES-MIB
21 + symbol:
22 + name: memory.used
23 + OID: 1.3.6.1.2.1.25.2.3.1.6.1
24 + - MIB: HOST-RESOURCES-MIB
25 + symbol:
26 + name: cpu.usage
27 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avaya-cajun-switch.yaml new
+489
@@ -0,0 +1,489 @@
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 +
15 +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 + - MIB: UTILIZATION-MANAGEMENT-MIB
21 + symbol:
22 + name: memory.usage
23 + OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.3.1 # genMemUtilizationPercentUsed.1
24 + - MIB: CONFIG-MIB
25 + table:
26 + name: genPortTable
27 + OID: 1.3.6.1.4.1.81.9.1
28 + symbols:
29 + - name: avaya.genPort
30 + constant_value_one: true
31 + metric_tags:
32 + - symbol:
33 + name: avaya.genPortId
34 + OID: 1.3.6.1.4.1.81.9.1.1.2
35 + tag: avaya_gen_port_id
36 + - symbol:
37 + name: avaya.genPortFunctionality
38 + OID: 1.3.6.1.4.1.81.9.1.1.3
39 + tag: avaya_gen_port_functionality
40 + mapping:
41 + 1: private
42 + 2: repeater_aui
43 + 3: repeater_thin
44 + 4: repeater10_base_t
45 + 5: ten_base_f_sync_act
46 + 6: foirl
47 + 7: xcvr
48 + 8: lobe
49 + 9: ri
50 + 10: ro
51 + 11: serial
52 + 12: local_talk
53 + 13: fddi
54 + 14: clock
55 + 15: gen_token_ring
56 + 16: dte
57 + 17: active_lobe
58 + 18: gen_active_token_ring
59 + 19: ten_base_fb
60 + 20: eth10_base_t
61 + 21: fiber
62 + 22: wan
63 + 23: star
64 + 24: active_ri
65 + 25: active_ro
66 + 26: fl
67 + 27: sonet-oc3
68 + 28: a100_base_tx
69 + 29: a100_base_fx
70 + 30: oc3
71 + 31: an_atm_main
72 + 32: an_atm_secondary
73 + 33: a1000_base_fx
74 + 40: sonet
75 + 41: fim_voice
76 + 42: sdh-stm1
77 + 43: eth1000_base_sx
78 + 44: eth1000_base_lx
79 + 45: eth10_base_fl
80 + 46: eth_lag
81 + 47: lag100
82 + 48: lag1000
83 + 49: eth1000_base_tx
84 + 50: eth1000_base_cx
85 + 51: g_bic_not_present
86 + 52: g_bic_not_supported
87 + 53: eth1000_base_x_proprietary
88 + 54: oc12
89 + 55: s_fp_not_present
90 + 56: s_fp_not_supported
91 + 57: eth10_base_tw_in_pwr
92 + 58: eth100_base_t_xw_in_pwr
93 + - symbol:
94 + name: avaya.genPortType
95 + OID: 1.3.6.1.4.1.81.9.1.1.4
96 + tag: avaya_gen_port_type
97 + mapping:
98 + 1: le10b_port
99 + 2: le10c_port
100 + 3: le15_port
101 + 4: le20_port
102 + 5: le30x_port
103 + 6: le30xd_port
104 + 7: le40x_port
105 + 8: le40xt_port
106 + 9: lobe_rj45
107 + 10: lobe_d9
108 + 11: lobe_d25
109 + 12: lobe_fo
110 + 13: ri104_d25
111 + 14: ro104_d25
112 + 15: ri_rj45
113 + 16: ri_d9
114 + 17: ri_d25
115 + 18: ri_fo
116 + 19: ri104_rj45
117 + 20: ri104_d9
118 + 21: ro_rj45
119 + 22: ro_d9
120 + 23: ro_d25
121 + 24: ro_fo
122 + 25: ro104_rj45
123 + 26: ro104_d9
124 + 27: le80xt_port
125 + 28: le140xt_port
126 + 29: ielb-aui_port
127 + 30: ielb-10bt_port
128 + 31: ltrf4_port
129 + 32: ltrf16_port
130 + 33: lts16_port
131 + 34: llt8_port
132 + 35: le20r_port
133 + 36: itlb_ro_port
134 + 37: itlb_ri_port
135 + 38: itlb_dte_port
136 + 39: star_fo
137 + 40: le10bn_port
138 + 41: le120r_port
139 + 42: le140xtf-fo_port
140 + 43: le140xtf-10bt_port
141 + 44: le140xtc_port
142 + 45: le110b_port
143 + 46: le110bq_port
144 + 47: le140xtq_port
145 + 48: lert40-aui_port
146 + 49: lert40-10bt_port
147 + 50: clock-int
148 + 51: clock-ext
149 + 52: ri104_rj45_s
150 + 53: ro104_rj45_s
151 + 54: lobe104_rj45_s
152 + 55: le20fb_port
153 + 56: le140xtf-fofb_port
154 + 57: fddi-mic_port1
155 + 58: fddi-mic_port2
156 + 59: fddi-mic_port3
157 + 60: fddi-stm_port1
158 + 61: fddi-stm_port2
159 + 62: fddi-stm_port3
160 + 63: fddi-stl_port1
161 + 64: fddi-stl_port2
162 + 65: fddi-stl_port3
163 + 66: fddi-stp_port1
164 + 67: fddi-stp_port2
165 + 68: fddi-stp_port3
166 + 69: fddi-utp_port1
167 + 70: fddi-utp_port2
168 + 71: fddi-utp_port3
169 + 72: fddi-sts_port1
170 + 73: fddi-sts_port2
171 + 74: fddi-sts_port3
172 + 75: le140xtn_port
173 + 76: ltr104a-lobe_port
174 + 77: ltr104a-ri_port
175 + 78: ltr104a-ro_port
176 + 79: le120q_port
177 + 80: le120sq2_port_s
178 + 81: le120sq2_port_m
179 + 82: le120sq5_port
180 + 83: le120q-fb_port
181 + 84: le120sq2-fb_port_s
182 + 85: le120sq2-fb_port_m
183 + 86: le120sq5-fb_port
184 + 87: ltr108t-lobe_port1
185 + 88: ltr108t-ri_port1
186 + 89: ltr108t-ro_port1
187 + 90: ltr108t-lobe_port
188 + 91: ltr108f-lobe_port
189 + 92: ltr108f-star_port_fo
190 + 93: ltr108f-ri_port_fo
191 + 94: ltr108f-ro_port_fo
192 + 95: lse808_port
193 + 96: lhs_port
194 + 98: iefn_port
195 + 99: itfn_port
196 + 100: itre_port
197 + 107: ierp_port
198 + 108: lse108_port
199 + 109: lse208_port
200 + 110: le110cq_port
201 + 111: ltr108t-star_port1
202 + 112: she-10bt_port
203 + 113: she-aui_port
204 + 114: she-fo_port
205 + 115: she-fo_sync_port
206 + 116: le115q_port
207 + 117: sht-lobe_port
208 + 118: sht-ri_rj45_port
209 + 119: sht-ri_d9_port
210 + 120: sht-ri_fo_port
211 + 121: sht-ro_rj45_port
212 + 122: sht-ro_d9_port
213 + 123: sht-ro_fo_port
214 + 124: lhb_port
215 + 126: le140xts_port
216 + 127: le40xtn_port
217 + 128: le80xtn_port
218 + 129: itrp_port
219 + 130: fddi-lcf_port1
220 + 131: fddi-lcf_port2
221 + 132: fddi-lcf_port3
222 + 133: ltr108f-lobe_rj45
223 + 134: lse404_port
224 + 135: star104_rj45_s
225 + 136: she-10bfb_port
226 + 137: sht-star_port
227 + 138: le240xtc_port
228 + 139: le280xt_port
229 + 140: iefr_mic_port
230 + 141: ri104_rj45_sn
231 + 142: iwr10_base_t_port
232 + 144: ro104_rj45_sn
233 + 145: sh-efn-aui_port
234 + 146: lobe104_rj45_sn
235 + 147: sh-efn_port
236 + 148: sh-tfn_port
237 + 152: iere_port
238 + 153: lse404s_port
239 + 154: lse404s-fb_port
240 + 155: le240xtcs_port
241 + 156: le280xts_port
242 + 157: atm_mmf_port
243 + 158: lsa_port
244 + 159: atm_utp_port
245 + 160: sh-elb_aui_port
246 + 161: sh-elb10bt_port
247 + 162: lse404srj_port
248 + 163: lfe100_port
249 + 164: lsf100_port
250 + 165: lst-lobe_rj45_port
251 + 166: lst-star_rj45_port
252 + 167: lst-ri_rj45_port
253 + 168: lst-ro_rj45_port
254 + 169: ten_base_t_port
255 + 170: fl_port
256 + 171: shes-10bt_port
257 + 172: shes-aui_port
258 + 173: shes-fo_port
259 + 174: shes-10bfb_port
260 + 175: le180xt_port
261 + 177: lfe1008_port
262 + 178: lse-pm_port
263 + 179: sh-40sf_port
264 + 180: sh-80rj_port
265 + 181: ls3ls-wan
266 + 183: leb200_port
267 + 184: fat-pipe-fddi_port
268 + 186: lfe4004_port
269 + 190: sonet_port
270 + 191: fim_voice_port
271 + 192: lfe4004_sf_port
272 + 193: lfe4004_st_port
273 + 194: lge-2000_sx_port
274 + 195: lge-2000_lx_port
275 + 196: lfe8008_sutp_port
276 + 255: unknown_port
277 + 1000: visage10_bt_port
278 + 1001: visage16200_f_port
279 + 1004: visage16200_t_port
280 + 1005: visage16200_fc_port
281 + 1006: visage800_t_port
282 + 1007: visage800_f_port
283 + 1008: visage16155_fr_port
284 + 1009: visage16155_f_port
285 + 1010: visage2500_port
286 + 1012: visage3_ls_port
287 + 1013: visage1600_t_port
288 + 1014: visage1000_base_sx_port
289 + 1015: visage1000_base_lx_port
290 + 1016: cajun_p117_s_port
291 + 1017: cajun_p117_sr_port
292 + 2000: m10or100_base_tx_port
293 + 2001: m100_base_fx_port
294 + 2002: m1000_base_sx_port
295 + 2003: m1000_base_lx_port
296 + 2004: m10_base_fl_port
297 + 2005: m10_base_t_port
298 + 2006: m10or100_base_t_xdot1_q_port
299 + 2007: m-acc155or622_mmf_port
300 + 2008: m-acc155or622_smf_port
301 + 2500: cajun_p120-10or100_t_port
302 + 2501: cajun_p120-100_f_port
303 + 2502: cajun_p120-1000_sx_port
304 + 2503: cajun_p120-1000_lx_port
305 + 2504: cajun_p330-10or100_t_port
306 + 2505: cajun_p330-100_f_port
307 + 2506: cajun_p330-1000_sx_port
308 + 2507: cajun_p330-1000_lx_port
309 + 2508: cajun_p330-lag
310 + 2509: cajun_p330-lag100
311 + 2510: cajun_p330-lag1000
312 + 2511: cajun_p110-lag100
313 + 2512: cajun_p110-lag1000
314 + 2513: cajun_p120-1000_base_cx-gbic
315 + 2514: cajun_p120-1000_base_sx-gbic
316 + 2515: cajun_p120-1000_base_lx-gbic
317 + 2516: cajun_p120-1000_base_t-gbic
318 + 2517: cajun_p120-gbic_not_present
319 + 2518: cajun_p120-gbic_unknown
320 + 2519: cajun_p120-gbic_other
321 + 2520: cajun_p120_fibre_channel-gbic
322 + 2521: cajun_p120-1000_base_tx
323 + 2522: cajun_p330-1000_tx_port
324 + 2523: cajun_p330-1000_sx-gbic
325 + 2524: cajun_p330-1000_lx-gbic
326 + 2525: cajun_p330-1000_t-gbic
327 + 2526: cajun_p330-1000_cx-gbic
328 + 2527: cajun_p330-gbic_not_present
329 + 2528: cajun_p330-gbic_not_supported
330 + 2530: cajun_p130-10or100_base_tx_port
331 + 2531: cajun_p130-100_base_fx_port
332 + 2532: cajun_p130-1000_base_sx-gbic_port
333 + 2533: cajun_p130-1000_base_lx-gbic_port
334 + 2534: cajun_p130-1000_base_x_proprietary-gbic_port
335 + 2535: cajun_p130-gbic_not_supported
336 + 2536: cajun_p130-gbic_not_present
337 + 2537: cajun_p130-lag100
338 + 2538: cajun_p130-lag1000
339 + 2539: cajun_p130-1000_base_t_port
340 + 2540: cajun_p330-ml-lag
341 + 2541: cajun_p330-ml-1000_sx-sfp
342 + 2542: cajun_p330-ml-1000_lx-sfp
343 + 2543: cajun_p330-ml-lag100
344 + 2544: cajun_p330-ml-lag1000
345 + 2545: cajun_p330-ml-100or1000_t_port
346 + 2546: cajun_p330-ml-10or100_t_port
347 + 2547: cajun_p330-ml-sfp_not_present
348 + 2548: cajun_p330-ml-sfp_not_supported
349 + 2549: cajun_p330-10or100_t_port_and_in_pwr
350 + 2550: cajun_p330-ml-1000_tx-sfp
351 + 2640: avaya_c360-lag
352 + 2641: avaya_c360-1000_sx-sfp
353 + 2642: avaya_c360-1000_lx-sfp
354 + 2643: avaya_c360-lag100
355 + 2644: avaya_c360-lag1000
356 + 2645: avaya_c360-100or1000_tport
357 + 2646: avaya_c360-10or100_tport
358 + 2647: avaya_c360-sfp_not_present
359 + 2648: avaya_c360-sfp_not_supported
360 + 2649: avaya_c360-10or100_t_port_and_in_pwr
361 + 2650: avaya_c360-1000_tx-sfp
362 + 2811: avaya_g250-10or100_t_port_and_in_pwr
363 + 2812: avaya_g250-10or100_t_port
364 + 2902: avaya_g350-lag
365 + 2903: avaya_g350-1000_sx-sfp
366 + 2904: avaya_g350-1000_lx-sfp
367 + 2905: avaya_g350-lag100
368 + 2906: avaya_g350-lag1000
369 + 2907: avaya_g350-100or1000_t_port
370 + 2908: avaya_g350-10or100_t_port
371 + 2909: avaya_g350-sfp_not_present
372 + 2910: avaya_g350-sfp_not_supported
373 + 2911: avaya_g350-10or100_t_port_and_in_pwr
374 + 2912: avaya_g350-1000_tx-sfp
375 + 2913: avaya_g350-10or100or1000_t_port
376 + 3000: m15-155_f_port
377 + 3001: m3-622_f_port
378 + 3002: m3-622_sf_port
379 + 3003: m15-155_sf_port
380 + 3004: m15-155_ms_port
381 + 3005: m2-2400_i_port
382 + 3009: m4-ds3_port
383 + 3010: m4-e3_port
384 + 3500: avaya_c460-100_fport
385 + 3501: avaya_c460-1000_sx-sfp
386 + 3502: avaya_c460-1000_lx-sfp
387 + 3503: avaya_c460-lag100
388 + 3504: avaya_c460-lag1000
389 + 3505: avaya_c460-1000_t_port
390 + 3506: avaya_c460-10or100_tport
391 + 3507: avaya_c460-sfp_not_present
392 + 3508: avaya_c460-sfp_not_supported
393 + 3509: avaya_c460-10or100_t_port_and_in_pwr
394 + 3640: avaya_w310-lag
395 + 3641: avaya_w310-1000_sx-sfp
396 + 3642: avaya_w310-1000_lx-sfp
397 + 3643: avaya_w310-lag100
398 + 3644: avaya_w310-lag1000
399 + 3647: avaya_w310-sfp_not_present
400 + 3648: avaya_w310-sfp_not_supported
401 + 3649: avaya_w310-10or100_t_port_and_in_pwr
402 + 3650: avaya_w310-1000_tx-sfp
403 + 4000: avaya_communication_manager_branch_editioni40-10or100_t_port_and_in_pwr
404 + 4001: avaya_communication_manager_branch_editioni40-10or100_t_port
405 + 4002: avaya_communication_manager_branch_editioni120-lag
406 + 4003: avaya_communication_manager_branch_editioni120-1000_sx-sfp
407 + 4004: avaya_communication_manager_branch_editioni120-1000_lx-sfp
408 + 4005: avaya_communication_manager_branch_editioni120-lag100
409 + 4006: avaya_communication_manager_branch_editioni120-lag1000
410 + 4007: avaya_communication_manager_branch_editioni120-100or1000_t_port
411 + 4008: avaya_communication_manager_branch_editioni120-10or100_t_port
412 + 4009: avaya_communication_manager_branch_editioni120-sfp_not_present
413 + 4010: avaya_communication_manager_branch_editioni120-sfp_not_supported
414 + 4011: avaya_communication_manager_branch_editioni120-10or100_t_port_and_in_pwr
415 + 4012: avaya_communication_manager_branch_editioni120-1000_tx-sfp
416 + 4013: avaya_communication_manager_branch_editioni120-10or100or1000_t_port
417 + 4014: avaya_communication_manager_branch_edition_g450-10or100or1000_t_port
418 + 4015: avaya_communication_manager_branch_edition_g450-10or100_t_port
419 + 4017: avaya_communication_manager_branch_edition_g430-10or100_tport
420 + 4019: avaya_communication_manager_branch_edition_g430-10or100_t_port_and_in_pwr
421 + 4020: avaya_g430-10or100_tport
422 + 4021: avaya_g430-10or100_t_port_and_in_pwr
423 + - symbol:
424 + name: avaya.genPortDescr
425 + OID: 1.3.6.1.4.1.81.9.1.1.5
426 + tag: avaya_gen_port_descr
427 + - symbol:
428 + name: avaya.genPortName
429 + OID: 1.3.6.1.4.1.81.9.1.1.21
430 + tag: avaya_gen_port_name
431 + - symbol:
432 + name: avaya.genPortClassification
433 + OID: 1.3.6.1.4.1.81.9.1.1.22
434 + tag: avaya_gen_port_classification
435 + mapping:
436 + 1: regular
437 + 2: valuable
438 + 255: not_supported
439 + - symbol:
440 + name: avaya.scEthPortMode
441 + OID: 1.3.6.1.4.1.81.28.2.1.1.1.28
442 + tag: avaya_sc_eth_port_mode
443 + mapping:
444 + 1: half_duplex
445 + 2: full_duplex_no_pause
446 + 3: full_duplex_proprietary_fc
447 + 4: full_duplex_isl
448 + 5: full_duplex_flow_control_isl
449 + 6: full_duplex_asym_tx_pause
450 + 7: full_duplex_sym_pause
451 + 8: full_duplex_asym_rx_pause
452 + 255: not_supported
453 + - symbol:
454 + name: avaya.scEthPortSpeed
455 + OID: 1.3.6.1.4.1.81.28.2.1.1.1.29
456 + tag: avaya_sc_eth_port_speed
457 + mapping:
458 + 1: ethernet
459 + 2: fast_ethernet
460 + 3: gigabit_ethernet
461 + 4: a155_mbps
462 + 5: a622_mbps
463 + 255: not_supported
464 + - symbol:
465 + OID: 1.3.6.1.4.1.81.9.1.1.10
466 + name: avaya.genPortAdminStatus
467 + tag: avaya_gen_port_admin_status
468 + mapping:
469 + 1: enabled
470 + 2: disabled
471 + - symbol:
472 + OID: 1.3.6.1.4.1.81.28.2.1.1.1.27
473 + name: avaya.scEthPortFunctionalStatus
474 + tag: avaya_sc_eth_port_functional_status
475 + mapping:
476 + 1: ok
477 + 2: rld
478 + 3: rx_jabber
479 + 8: partition
480 + 10: remote_fault
481 + 11: rsp_error
482 + 255: not_supported
483 +metric_tags:
484 + - tag: avaya_gen_cpu_utilization_enable_monitoring
485 + OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.2
486 + symbol: genCpuUtilizationEnableMonitoring
487 + mapping:
488 + 1: disabled
489 + 2: enabled
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avaya-media-gateway.yaml new
+226
@@ -0,0 +1,226 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-entity-sensor.yaml
4 + - _generic-if.yaml
5 + - _generic-ospf.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 +metrics:
13 + - MIB: UTILIZATION-MANAGEMENT-MIB
14 + symbol:
15 + name: cpu.usage
16 + OID: 1.3.6.1.4.1.6889.2.1.11.1.1.1.1.5.10 # genCpuAverageUtilization.10
17 + - MIB: UTILIZATION-MANAGEMENT-MIB
18 + symbol:
19 + name: memory.usage
20 + OID: 1.3.6.1.4.1.6889.2.1.11.1.2.6.1.3.10 # genMemUtilizationPercentUsed.10
21 + - MIB: AVAYA-ENTITY-MIB
22 + table:
23 + name: avEntPhyChFruTable
24 + OID: 1.3.6.1.4.1.6889.2.1.99.5.1
25 + symbols:
26 + - name: avaya.avEntPhyChFru
27 + constant_value_one: true
28 + metric_tags:
29 + - index: 1
30 + tag: avaya_ent_physical_index
31 + - symbol:
32 + OID: 1.3.6.1.4.1.6889.2.1.99.5.1.1.1
33 + name: avaya.avEntPhyChFruOperStat
34 + tag: avaya_av_ent_phy_ch_fru_oper_stat
35 + mapping:
36 + 1: ok
37 + 2: fault
38 + 3: not_present
39 + 255: unknown
40 + - symbol:
41 + OID: 1.3.6.1.4.1.6889.2.1.99.5.1.1.2
42 + name: avaya.avEntPhyChFruFault
43 + tag: avaya_av_ent_phy_ch_fru_fault
44 + mapping:
45 + 1: none
46 + 2: mulfunction
47 + 3: ac_fault
48 + 4: malfunction_and_ac_fault
49 + 5: single_fan_fault
50 + 6: multiple_fan_fault
51 + 7: bad_expansion_cable
52 + 255: unknown
53 +# - MIB: AVAYA-RTP-MIB
54 +# symbol:
55 +# name: avaya.avRtpEnable
56 +# OID: 1.3.6.1.4.1.6889.2.7.1.2.0
57 +# enum:
58 +# true: 1
59 +# false: 2
60 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
61 +# comment in profile until it's fixed)
62 +# - MIB: G700-MG-MIB
63 +# symbol:
64 +# name: avaya.cmgQosControl
65 +# OID: 1.3.6.1.4.1.6889.2.9.1.2.2.1.0
66 +# enum:
67 +# local: 1
68 +# remote: 2
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: G700-MG-MIB
72 + symbol:
73 + name: avaya.cmgRemoteSigDscp
74 + OID: 1.3.6.1.4.1.6889.2.9.1.2.2.2.0
75 + - MIB: G700-MG-MIB
76 + symbol:
77 + name: avaya.cmgRemoteSig802Priority
78 + OID: 1.3.6.1.4.1.6889.2.9.1.2.2.3.0
79 + - MIB: G700-MG-MIB
80 + symbol:
81 + name: avaya.cmgLocalSigDscp
82 + OID: 1.3.6.1.4.1.6889.2.9.1.2.2.4.0
83 + - MIB: G700-MG-MIB
84 + symbol:
85 + name: avaya.cmgLocalSig802Priority
86 + OID: 1.3.6.1.4.1.6889.2.9.1.2.2.5.0
87 + - MIB: G700-MG-MIB
88 + symbol:
89 + name: avaya.cmgCurrent802Vlan
90 + OID: 1.3.6.1.4.1.6889.2.9.1.2.2.7.0
91 +# - MIB: G700-MG-MIB
92 +# symbol:
93 +# name: avaya.cmgRegistrationState
94 +# OID: 1.3.6.1.4.1.6889.2.9.1.3.1.0
95 +# enum:
96 +# registered: 1
97 +# notRegistered: 2
98 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
99 +# comment in profile until it's fixed)
100 +# - MIB: G700-MG-MIB
101 +# symbol:
102 +# name: avaya.cmgH248LinkStatus
103 +# OID: 1.3.6.1.4.1.6889.2.9.1.3.3.0
104 +# enum:
105 +# up: 1
106 +# down: 2
107 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
108 +# comment in profile until it's fixed)
109 + - MIB: G700-MG-MIB
110 + symbol:
111 + name: avaya.cmgH248LinkErrorCode
112 + OID: 1.3.6.1.4.1.6889.2.9.1.3.4.0
113 + - MIB: G700-MG-MIB
114 + table:
115 + name: cmgVoipEngineTable
116 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5
117 + symbols:
118 + - name: avaya.cmgVoipTotalChannels
119 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.6
120 + - name: avaya.cmgVoipChannelsInUse
121 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.7
122 + - name: avaya.cmgVoipAverageOccupancy
123 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.8
124 + metric_tags:
125 + - symbol:
126 + name: avaya.cmgVoipCurrentIpAddress
127 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.4
128 + tag: avaya_cmg_voip_current_ip_address
129 + - symbol:
130 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.9
131 + name: avaya.cmgVoipHyperactivity
132 + tag: avaya_cmg_voip_hyperactivity
133 + mapping:
134 + 1: normal
135 + 2: hyperactive
136 + 255: unknown
137 + - symbol:
138 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.10
139 + name: avaya.cmgVoipAdminState
140 + tag: avaya_cmg_voip_admin_state
141 + mapping:
142 + 1: busy-out
143 + 2: release
144 + 3: camp-on
145 + 255: unknown
146 + - symbol:
147 + OID: 1.3.6.1.4.1.6889.2.9.1.4.5.1.12
148 + name: avaya.cmgVoipDspStatus
149 + tag: avaya_cmg_voip_dsp_status
150 + mapping:
151 + 1: idle
152 + 2: in_use
153 + 3: fault
154 + - MIB: G700-MG-MIB
155 + table:
156 + name: cmgVoipDSPCoreTable
157 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6
158 + symbols:
159 + - name: avaya.cmgDSPCoreTotalChannels
160 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.2
161 + - name: avaya.cmgDSPCoreChannelsInUse
162 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.3
163 + metric_tags:
164 + - symbol:
165 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.4
166 + name: avaya.cmgDSPCoreAdminState
167 + tag: avaya_cmg_dsp_core_admin_state
168 + mapping:
169 + 1: busy-out
170 + 2: release
171 + 3: camp-on
172 + 255: unknown
173 + - symbol:
174 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.5
175 + name: avaya.cmgDSPCoreStatus
176 + tag: avaya_cmg_dsp_core_status
177 + mapping:
178 + 1: idle
179 + 2: in_use
180 + 3: fault
181 + - symbol:
182 + OID: 1.3.6.1.4.1.6889.2.9.1.4.6.1.7
183 + name: avaya.cmgDSPCoreDemandTestResult
184 + tag: avaya_cmg_dsp_core_demand_test_result
185 + mapping:
186 + 1: error_code1
187 + 2: error_code2
188 + 3: error_code3
189 + 4: error_code4
190 + 5: error_code5
191 + 6: error_code6
192 + 7: not_responding
193 + 255: pass
194 +metric_tags:
195 + - OID: 1.3.6.1.4.1.6889.2.9.1.1.1.0
196 + symbol: cmgHWType
197 + tag: avaya_cmg_hw_type
198 + mapping:
199 + 1: media-gateway
200 + 2: g350
201 + 3: avaya_g250
202 + 4: avaya_g250-bri
203 + 5: avaya_g250-ds1
204 + 6: avaya_g250-dcp
205 + 7: avaya_g450
206 + 8: avaya_g250-a14
207 + 10: avaya_tgm550
208 + 28: avaya_communication_manager_branch_editioni120
209 + 29: avaya_communication_manager_branch_editioni40-analog
210 + 30: avaya_communication_manager_branch_editioni40-bri
211 + 31: avaya_communication_manager_branch_editioni40-ds1
212 + 32: avaya_communication_manager_branch_editioni40-dcp
213 + 33: avaya_trm480
214 + 34: avaya_communication_manager_branch_editioni40-a14
215 + 35: avaya_communication_manager_branch_edition_g450
216 + 37: avaya_communication_manager_branch_edition_g430
217 + 41: avaya_g430
218 + - OID: 1.3.6.1.4.1.6889.2.9.1.1.2.0
219 + symbol: cmgModelNumber
220 + tag: avaya_cmg_model_number
221 + - OID: 1.3.6.1.4.1.6889.2.9.1.1.4.0
222 + symbol: cmgSerialNumber
223 + tag: avaya_cmg_serial_number
224 + - OID: 1.3.6.1.4.1.6889.2.9.1.3.2.0
225 + symbol: cmgActiveControllerAddress
226 + tag: avaya_cmg_active_controller_address
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avaya-nortel-ethernet-routing-switch.yaml new
+79
@@ -0,0 +1,79 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.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 +
15 +metrics:
16 + - MIB: S5-CHASSIS-MIB
17 + symbol:
18 + name: cpu.usage
19 + OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.5.3.10.0 # s5ChasUtilCPUUsageLast1Minute.3.10.0
20 + - MIB: S5-CHASSIS-MIB
21 + symbol:
22 + name: memory.total
23 + OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.12.3.10.0 # s5ChasUtilMemoryTotalMB.3.10.0
24 + - MIB: S5-CHASSIS-MIB
25 + symbol:
26 + name: memory.free
27 + OID: 1.3.6.1.4.1.45.1.6.3.8.1.1.13.3.10.0 # s5ChasUtilMemoryAvailableMB.3.10.0
28 + - MIB: S5-CHASSIS-MIB
29 + symbol:
30 + name: avaya.s5ChasTmpSnrTmpValue
31 + OID: 1.3.6.1.4.1.45.1.6.3.7.1.1.5.5.10.0 # s5ChasTmpSnrTmpValue.5.10.0
32 + - MIB: S5-CHASSIS-MIB
33 + table:
34 + name: s5ChasComTable
35 + OID: 1.3.6.1.4.1.45.1.6.3.3.1
36 + symbols:
37 + - name: avaya.s5ChasCom
38 + constant_value_one: true
39 + metric_tags:
40 + - symbol:
41 + name: avaya.s5ChasComDescr
42 + OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.5
43 + tag: avaya_s5_chas_com_descr
44 + - symbol:
45 + OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.9
46 + name: avaya.s5ChasComAdminState
47 + tag: avaya_s5_chas_com_admin_state
48 + mapping:
49 + 1: other
50 + 2: not_avail
51 + 3: disable
52 + 4: enable
53 + 5: reset
54 + 6: test
55 + - symbol:
56 + OID: 1.3.6.1.4.1.45.1.6.3.3.1.1.10
57 + name: avaya.s5ChasComOperState
58 + tag: avaya_s5_chas_com_oper_state
59 + mapping:
60 + 1: other
61 + 2: not_avail
62 + 3: removed
63 + 4: disabled
64 + 5: normal
65 + 6: reset_in_prog
66 + 7: testing
67 + 8: warning
68 + 9: non_fatal_err
69 + 10: fatal_err
70 + 11: not_config
71 + 12: obsoleted
72 +
73 +metric_tags:
74 + - OID: 1.3.6.1.4.1.45.1.6.3.1.5.0
75 + symbol: s5ChasVer
76 + tag: avaya_s5_chas_ver
77 + - OID: 1.3.6.1.4.1.45.1.6.3.1.6.0
78 + symbol: s5ChasSerNum
79 + tag: avaya_s5_chas_ser_num
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avaya.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "avaya"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avocent-acs.yaml new
+70
@@ -0,0 +1,70 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.10418.26.1.* # Avocent Console Server
8 + - 1.3.6.1.4.1.10418.26.1.1 # Avocent acs8048
9 + - 1.3.6.1.4.1.10418.26.1.2 # Avocent acs8032
10 + - 1.3.6.1.4.1.10418.26.1.3 # Avocent acs8016
11 + - 1.3.6.1.4.1.10418.26.1.4 # Avocent acs8008
12 + - 1.3.6.1.4.1.10418.26.1.5 # Avocent acs808
13 + - 1.3.6.1.4.1.10418.26.1.6 # Avocent acs804
14 + - 1.3.6.1.4.1.10418.26.1.7 # Avocent acs802
15 +
16 +metadata:
17 + device:
18 + fields:
19 + vendor:
20 + value: "avocent"
21 +
22 +metrics:
23 +# - MIB: ACS8000-MIB
24 +# symbol:
25 +# name: avocent.acsPowerSupplyStatePw1
26 +# OID: 1.3.6.1.4.1.10418.26.2.1.8.2.0
27 +# enum:
28 +# statePowerOn: 1
29 +# statePowerOff: 2
30 +# powerNotInstaled: 9999
31 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
32 +# comment in profile until it's fixed)
33 +# - MIB: ACS8000-MIB
34 +# symbol:
35 +# name: avocent.acsPowerSupplyStatePw2
36 +# OID: 1.3.6.1.4.1.10418.26.2.1.8.3.0
37 +# enum:
38 +# statePowerOn: 1
39 +# statePowerOff: 2
40 +# powerNotInstaled: 9999
41 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
42 +# comment in profile until it's fixed)
43 + - MIB: ACS8000-MIB
44 + symbol:
45 + name: avocent.acsActiveSessionsNumberOfSession
46 + OID: 1.3.6.1.4.1.10418.26.2.2.1.0
47 + - MIB: ACS8000-MIB
48 + table:
49 + OID: 1.3.6.1.4.1.10418.26.2.3.2
50 + name: acsSerialPortTable
51 + symbols:
52 + - name: avocent.acsSerialPort
53 + constant_value_one: true
54 + metric_tags:
55 + - tag: avocent_acs_serial_port_table_device_name
56 + symbol:
57 + name: avocent.acsSerialPortTableDeviceName
58 + OID: 1.3.6.1.4.1.10418.26.2.3.2.1.2
59 + - tag: avocent_acs_serial_port_table_name
60 + symbol:
61 + name: avocent.acsSerialPortTableName
62 + OID: 1.3.6.1.4.1.10418.26.2.3.2.1.4
63 + - symbol:
64 + OID: 1.3.6.1.4.1.10418.26.2.3.2.1.3
65 + name: avocent.acsSerialPortTableStatus
66 + tag: avocent_acs_serial_port_table_status
67 + mapping:
68 + 1: disabled
69 + 2: idle
70 + 3: in_use
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avtech-roomalert-32s.yaml new
+431
@@ -0,0 +1,431 @@
1 +sysobjectid:
2 + - 1.3.6.1.4.1.20916.1.11
3 +metadata:
4 + device:
5 + fields:
6 + type:
7 + value: "sensor"
8 +extends:
9 + - avtech.yaml
10 +metrics:
11 + - MIB: ROOMALERT32S-MIB
12 + symbol:
13 + OID: 1.3.6.1.4.1.20916.1.11.1.1.1.1.0
14 + name: roomalert.32s.internal_tempf
15 + - MIB: ROOMALERT32S-MIB
16 + symbol:
17 + OID: 1.3.6.1.4.1.20916.1.11.1.1.1.2.0
18 + name: roomalert.32s.internal_tempc
19 + - MIB: ROOMALERT32S-MIB
20 + symbol:
21 + OID: 1.3.6.1.4.1.20916.1.11.1.1.2.1.0
22 + name: roomalert.32s.internal_humidity
23 +# - MIB: ROOMALERT32S-MIB
24 +# symbol:
25 +# OID: 1.3.6.1.4.1.20916.1.11.1.1.3.1.0
26 +# name: roomalert.32s.internal_power
27 +# enum:
28 +# battery: 0
29 +# ac: 1
30 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
31 +# comment in profile until it's fixed)
32 + - MIB: ROOMALERT32S-MIB
33 + symbol:
34 + OID: 1.3.6.1.4.1.20916.1.11.1.1.4.1.0
35 + name: roomalert.32s.internal_heat_index
36 + - MIB: ROOMALERT32S-MIB
37 + symbol:
38 + OID: 1.3.6.1.4.1.20916.1.11.1.1.4.2.0
39 + name: roomalert.32s.internal_heat_indexC
40 + - MIB: ROOMALERT32S-MIB
41 + symbol:
42 + OID: 1.3.6.1.4.1.20916.1.11.1.1.5.1.0
43 + name: roomalert.32s.internal_analog1
44 + - MIB: ROOMALERT32S-MIB
45 + symbol:
46 + OID: 1.3.6.1.4.1.20916.1.11.1.1.5.2.0
47 + name: roomalert.32s.internal_analog2
48 + - MIB: ROOMALERT32S-MIB
49 + symbol:
50 + OID: 1.3.6.1.4.1.20916.1.11.1.1.6.1.0
51 + name: roomalert.32s.internal_relay1
52 + - MIB: ROOMALERT32S-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.20916.1.11.1.1.6.2.0
55 + name: roomalert.32s.internal_relay2
56 + - MIB: ROOMALERT32S-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.20916.1.11.1.1.7.1.0
59 + name: roomalert.32s.internal_dew_point_c
60 + - MIB: ROOMALERT32S-MIB
61 + symbol:
62 + OID: 1.3.6.1.4.1.20916.1.11.1.1.7.2.0
63 + name: roomalert.32s.internal_dew_point_f
64 + - MIB: ROOMALERT32S-MIB
65 + symbol:
66 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.1.0
67 + name: roomalert.32s.digital_sen1_1
68 + - MIB: ROOMALERT32S-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.2.0
71 + name: roomalert.32s.digital_sen1_2
72 + - MIB: ROOMALERT32S-MIB
73 + symbol:
74 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.3.0
75 + name: roomalert.32s.digital_sen1_3
76 + - MIB: ROOMALERT32S-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.4.0
79 + name: roomalert.32s.digital_sen1_4
80 + - MIB: ROOMALERT32S-MIB
81 + symbol:
82 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.5.0
83 + name: roomalert.32s.digital_sen1_5
84 + - MIB: ROOMALERT32S-MIB
85 + symbol:
86 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.6.0
87 + name: roomalert.32s.digital_sen1_6
88 + - MIB: ROOMALERT32S-MIB
89 + symbol:
90 + OID: 1.3.6.1.4.1.20916.1.11.1.2.1.7.0
91 + name: roomalert.32s.digital_sen1_7
92 + - MIB: ROOMALERT32S-MIB
93 + symbol:
94 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.1.0
95 + name: roomalert.32s.digital_sen2_1
96 + - MIB: ROOMALERT32S-MIB
97 + symbol:
98 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.2.0
99 + name: roomalert.32s.digital_sen2_2
100 + - MIB: ROOMALERT32S-MIB
101 + symbol:
102 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.3.0
103 + name: roomalert.32s.digital_sen2_3
104 + - MIB: ROOMALERT32S-MIB
105 + symbol:
106 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.4.0
107 + name: roomalert.32s.digital_sen2_4
108 + - MIB: ROOMALERT32S-MIB
109 + symbol:
110 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.5.0
111 + name: roomalert.32s.digital_sen2_5
112 + - MIB: ROOMALERT32S-MIB
113 + symbol:
114 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.6.0
115 + name: roomalert.32s.digital_sen2_6
116 + - MIB: ROOMALERT32S-MIB
117 + symbol:
118 + OID: 1.3.6.1.4.1.20916.1.11.1.2.2.7.0
119 + name: roomalert.32s.digital_sen2_7
120 + - MIB: ROOMALERT32S-MIB
121 + symbol:
122 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.1.0
123 + name: roomalert.32s.digital_sen3_1
124 + - MIB: ROOMALERT32S-MIB
125 + symbol:
126 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.2.0
127 + name: roomalert.32s.digital_sen3_2
128 + - MIB: ROOMALERT32S-MIB
129 + symbol:
130 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.3.0
131 + name: roomalert.32s.digital_sen3_3
132 + - MIB: ROOMALERT32S-MIB
133 + symbol:
134 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.4.0
135 + name: roomalert.32s.digital_sen3_4
136 + - MIB: ROOMALERT32S-MIB
137 + symbol:
138 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.5.0
139 + name: roomalert.32s.digital_sen3_5
140 + - MIB: ROOMALERT32S-MIB
141 + symbol:
142 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.6.0
143 + name: roomalert.32s.digital_sen3_6
144 + - MIB: ROOMALERT32S-MIB
145 + symbol:
146 + OID: 1.3.6.1.4.1.20916.1.11.1.2.3.7.0
147 + name: roomalert.32s.digital_sen3_7
148 + - MIB: ROOMALERT32S-MIB
149 + symbol:
150 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.1.0
151 + name: roomalert.32s.digital_sen4_1
152 + - MIB: ROOMALERT32S-MIB
153 + symbol:
154 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.2.0
155 + name: roomalert.32s.digital_sen4_2
156 + - MIB: ROOMALERT32S-MIB
157 + symbol:
158 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.3.0
159 + name: roomalert.32s.digital_sen4_3
160 + - MIB: ROOMALERT32S-MIB
161 + symbol:
162 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.4.0
163 + name: roomalert.32s.digital_sen4_4
164 + - MIB: ROOMALERT32S-MIB
165 + symbol:
166 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.5.0
167 + name: roomalert.32s.digital_sen4_5
168 + - MIB: ROOMALERT32S-MIB
169 + symbol:
170 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.6.0
171 + name: roomalert.32s.digital_sen4_6
172 + - MIB: ROOMALERT32S-MIB
173 + symbol:
174 + OID: 1.3.6.1.4.1.20916.1.11.1.2.4.7.0
175 + name: roomalert.32s.digital_sen4_7
176 + - MIB: ROOMALERT32S-MIB
177 + symbol:
178 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.1.0
179 + name: roomalert.32s.digital_sen5_1
180 + - MIB: ROOMALERT32S-MIB
181 + symbol:
182 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.2.0
183 + name: roomalert.32s.digital_sen5_2
184 + - MIB: ROOMALERT32S-MIB
185 + symbol:
186 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.3.0
187 + name: roomalert.32s.digital_sen5_3
188 + - MIB: ROOMALERT32S-MIB
189 + symbol:
190 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.4.0
191 + name: roomalert.32s.digital_sen5_4
192 + - MIB: ROOMALERT32S-MIB
193 + symbol:
194 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.5.0
195 + name: roomalert.32s.digital_sen5_5
196 + - MIB: ROOMALERT32S-MIB
197 + symbol:
198 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.6.0
199 + name: roomalert.32s.digital_sen5_6
200 + - MIB: ROOMALERT32S-MIB
201 + symbol:
202 + OID: 1.3.6.1.4.1.20916.1.11.1.2.5.7.0
203 + name: roomalert.32s.digital_sen5_7
204 + - MIB: ROOMALERT32S-MIB
205 + symbol:
206 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.1.0
207 + name: roomalert.32s.digital_sen6_1
208 + - MIB: ROOMALERT32S-MIB
209 + symbol:
210 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.2.0
211 + name: roomalert.32s.digital_sen6_2
212 + - MIB: ROOMALERT32S-MIB
213 + symbol:
214 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.3.0
215 + name: roomalert.32s.digital_sen6_3
216 + - MIB: ROOMALERT32S-MIB
217 + symbol:
218 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.4.0
219 + name: roomalert.32s.digital_sen6_4
220 + - MIB: ROOMALERT32S-MIB
221 + symbol:
222 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.5.0
223 + name: roomalert.32s.digital_sen6_5
224 + - MIB: ROOMALERT32S-MIB
225 + symbol:
226 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.6.0
227 + name: roomalert.32s.digital_sen6_6
228 + - MIB: ROOMALERT32S-MIB
229 + symbol:
230 + OID: 1.3.6.1.4.1.20916.1.11.1.2.6.7.0
231 + name: roomalert.32s.digital_sen6_7
232 + - MIB: ROOMALERT32S-MIB
233 + symbol:
234 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.1.0
235 + name: roomalert.32s.digital_sen7_1
236 + - MIB: ROOMALERT32S-MIB
237 + symbol:
238 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.2.0
239 + name: roomalert.32s.digital_sen7_2
240 + - MIB: ROOMALERT32S-MIB
241 + symbol:
242 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.3.0
243 + name: roomalert.32s.digital_sen7_3
244 + - MIB: ROOMALERT32S-MIB
245 + symbol:
246 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.4.0
247 + name: roomalert.32s.digital_sen7_4
248 + - MIB: ROOMALERT32S-MIB
249 + symbol:
250 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.5.0
251 + name: roomalert.32s.digital_sen7_5
252 + - MIB: ROOMALERT32S-MIB
253 + symbol:
254 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.6.0
255 + name: roomalert.32s.digital_sen7_6
256 + - MIB: ROOMALERT32S-MIB
257 + symbol:
258 + OID: 1.3.6.1.4.1.20916.1.11.1.2.7.7.0
259 + name: roomalert.32s.digital_sen7_7
260 + - MIB: ROOMALERT32S-MIB
261 + symbol:
262 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.1.0
263 + name: roomalert.32s.digital_sen8_1
264 + - MIB: ROOMALERT32S-MIB
265 + symbol:
266 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.2.0
267 + name: roomalert.32s.digital_sen8_2
268 + - MIB: ROOMALERT32S-MIB
269 + symbol:
270 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.3.0
271 + name: roomalert.32s.digital_sen8_3
272 + - MIB: ROOMALERT32S-MIB
273 + symbol:
274 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.4.0
275 + name: roomalert.32s.digital_sen8_4
276 + - MIB: ROOMALERT32S-MIB
277 + symbol:
278 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.5.0
279 + name: roomalert.32s.digital_sen8_5
280 + - MIB: ROOMALERT32S-MIB
281 + symbol:
282 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.6.0
283 + name: roomalert.32s.digital_sen8_6
284 + - MIB: ROOMALERT32S-MIB
285 + symbol:
286 + OID: 1.3.6.1.4.1.20916.1.11.1.2.8.7.0
287 + name: roomalert.32s.digital_sen8_7
288 +# - MIB: ROOMALERT32S-MIB
289 +# symbol:
290 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.1.0
291 +# name: roomalert.32s.switch_sen1
292 +# enum:
293 +# open: 0
294 +# closed: 1
295 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
296 +# comment in profile until it's fixed)
297 +# - MIB: ROOMALERT32S-MIB
298 +# symbol:
299 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.2.0
300 +# name: roomalert.32s.switch_sen2
301 +# enum:
302 +# open: 0
303 +# closed: 1
304 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
305 +# comment in profile until it's fixed)
306 +# - MIB: ROOMALERT32S-MIB
307 +# symbol:
308 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.3.0
309 +# name: roomalert.32s.switch_sen3
310 +# enum:
311 +# open: 0
312 +# closed: 1
313 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
314 +# comment in profile until it's fixed)
315 +# - MIB: ROOMALERT32S-MIB
316 +# symbol:
317 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.4.0
318 +# name: roomalert.32s.switch_sen4
319 +# enum:
320 +# open: 0
321 +# closed: 1
322 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
323 +# comment in profile until it's fixed)
324 +# - MIB: ROOMALERT32S-MIB
325 +# symbol:
326 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.5.0
327 +# name: roomalert.32s.switch_sen5
328 +# enum:
329 +# open: 0
330 +# closed: 1
331 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
332 +# comment in profile until it's fixed)
333 +# - MIB: ROOMALERT32S-MIB
334 +# symbol:
335 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.6.0
336 +# name: roomalert.32s.switch_sen6
337 +# enum:
338 +# open: 0
339 +# closed: 1
340 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
341 +# comment in profile until it's fixed)
342 +# - MIB: ROOMALERT32S-MIB
343 +# symbol:
344 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.7.0
345 +# name: roomalert.32s.switch_sen7
346 +# enum:
347 +# open: 0
348 +# closed: 1
349 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
350 +# comment in profile until it's fixed)
351 +# - MIB: ROOMALERT32S-MIB
352 +# symbol:
353 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.8.0
354 +# name: roomalert.32s.switch_sen8
355 +# enum:
356 +# open: 0
357 +# closed: 1
358 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
359 +# comment in profile until it's fixed)
360 +# - MIB: ROOMALERT32S-MIB
361 +# symbol:
362 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.9.0
363 +# name: roomalert.32s.switch_sen9
364 +# enum:
365 +# open: 0
366 +# closed: 1
367 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
368 +# comment in profile until it's fixed)
369 +# - MIB: ROOMALERT32S-MIB
370 +# symbol:
371 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.10.0
372 +# name: roomalert.32s.switch_sen10
373 +# enum:
374 +# open: 0
375 +# closed: 1
376 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
377 +# comment in profile until it's fixed)
378 +# - MIB: ROOMALERT32S-MIB
379 +# symbol:
380 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.11.0
381 +# name: roomalert.32s.switch_sen11
382 +# enum:
383 +# open: 0
384 +# closed: 1
385 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
386 +# comment in profile until it's fixed)
387 +# - MIB: ROOMALERT32S-MIB
388 +# symbol:
389 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.12.0
390 +# name: roomalert.32s.switch_sen12
391 +# enum:
392 +# open: 0
393 +# closed: 1
394 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
395 +# comment in profile until it's fixed)
396 +# - MIB: ROOMALERT32S-MIB
397 +# symbol:
398 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.13.0
399 +# name: roomalert.32s.switch_sen13
400 +# enum:
401 +# open: 0
402 +# closed: 1
403 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
404 +# comment in profile until it's fixed)
405 +# - MIB: ROOMALERT32S-MIB
406 +# symbol:
407 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.14.0
408 +# name: roomalert.32s.switch_sen14
409 +# enum:
410 +# open: 0
411 +# closed: 1
412 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
413 +# comment in profile until it's fixed)
414 +# - MIB: ROOMALERT32S-MIB
415 +# symbol:
416 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.15.0
417 +# name: roomalert.32s.switch_sen15
418 +# enum:
419 +# open: 0
420 +# closed: 1
421 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
422 +# comment in profile until it's fixed)
423 +# - MIB: ROOMALERT32S-MIB
424 +# symbol:
425 +# OID: 1.3.6.1.4.1.20916.1.11.1.3.16.0
426 +# name: roomalert.32s.switch_sen16
427 +# enum:
428 +# open: 0
429 +# closed: 1
430 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
431 +# comment in profile until it's fixed)
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avtech-roomalert-3e.yaml new
+137
@@ -0,0 +1,137 @@
1 +sysobjectid:
2 + - 1.3.6.1.4.1.20916.1.9.*
3 +
4 +extends:
5 + - avtech.yaml
6 +
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "sensor"
12 +
13 +metrics:
14 + - MIB: ROOMALERT3E-MIB
15 + symbol:
16 + OID: 1.3.6.1.4.1.20916.1.9.1.1.1.1.0
17 + name: roomalert.3e.digital_sen1_1
18 + - MIB: ROOMALERT3E-MIB
19 + symbol:
20 + OID: 1.3.6.1.4.1.20916.1.9.1.1.1.2.0
21 + name: roomalert.3e.digital_sen1_2
22 +# - MIB: ROOMALERT3E-MIB
23 +# symbol:
24 +# OID: 1.3.6.1.4.1.20916.1.9.1.1.1.3.0
25 +# name: roomalert.3e.digital_sen1_label
26 +# format: TODO_handle_conversion_to_one
27 + - MIB: ROOMALERT3E-MIB
28 + symbol:
29 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.1.0
30 + name: roomalert.3e.digital_sen2_1
31 + - MIB: ROOMALERT3E-MIB
32 + symbol:
33 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.2.0
34 + name: roomalert.3e.digital_sen2_2
35 + - MIB: ROOMALERT3E-MIB
36 + symbol:
37 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.3.0
38 + name: roomalert.3e.digital_sen2_3
39 + - MIB: ROOMALERT3E-MIB
40 + symbol:
41 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.4.0
42 + name: roomalert.3e.digital_sen2_4
43 + - MIB: ROOMALERT3E-MIB
44 + symbol:
45 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.5.0
46 + name: roomalert.3e.digital_sen2_5
47 +# - MIB: ROOMALERT3E-MIB
48 +# symbol:
49 +# OID: 1.3.6.1.4.1.20916.1.9.1.1.2.6.0
50 +# name: roomalert.3e.digital_sen2_label
51 +# format: TODO_handle_conversion_to_one
52 + - MIB: ROOMALERT3E-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.20916.1.9.1.1.2.7.0
55 + name: roomalert.3e.digital_sen2_7
56 +# - MIB: ROOMALERT3E-MIB
57 +# symbol:
58 +# OID: 1.3.6.1.4.1.20916.1.9.1.1.2.8.0
59 +# name: roomalert.3e.digital_sen2_label
60 +# format: TODO_handle_conversion_to_one
61 + - MIB: ROOMALERT3E-MIB
62 + symbol:
63 + OID: 1.3.6.1.4.1.20916.1.9.1.2.1.0
64 + name: roomalert.3e.switch_sen1
65 +# - MIB: ROOMALERT3E-MIB
66 +# symbol:
67 +# OID: 1.3.6.1.4.1.20916.1.9.1.2.2.0
68 +# name: roomalert.3e.switch_label
69 +# format: TODO_handle_conversion_to_one
70 +# - MIB: ROOMALERT3E-MIB
71 +# symbol:
72 +# OID: 1.3.6.1.4.1.20916.1.9.2.1.0
73 +# name: roomalert.3e.red_led
74 +# enum:
75 +# off: 0
76 +# on: 1
77 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
78 +# comment in profile until it's fixed)
79 +# - MIB: ROOMALERT3E-MIB
80 +# symbol:
81 +# OID: 1.3.6.1.4.1.20916.1.9.2.2.0
82 +# name: roomalert.3e.amber_led
83 +# enum:
84 +# off: 0
85 +# on: 1
86 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
87 +# comment in profile until it's fixed)
88 +# - MIB: ROOMALERT3E-MIB
89 +# symbol:
90 +# OID: 1.3.6.1.4.1.20916.1.9.2.3.0
91 +# name: roomalert.3e.green_led
92 +# enum:
93 +# off: 0
94 +# on: 1
95 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
96 +# comment in profile until it's fixed)
97 +# - MIB: ROOMALERT3E-MIB
98 +# symbol:
99 +# OID: 1.3.6.1.4.1.20916.1.9.2.4.0
100 +# name: roomalert.3e.blue_led
101 +# enum:
102 +# off: 0
103 +# on: 1
104 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
105 +# comment in profile until it's fixed)
106 +# - MIB: ROOMALERT3E-MIB
107 +# symbol:
108 +# OID: 1.3.6.1.4.1.20916.1.9.2.5.0
109 +# name: roomalert.3e.white_led
110 +# enum:
111 +# off: 0
112 +# on: 1
113 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
114 +# comment in profile until it's fixed)
115 +# - MIB: ROOMALERT3E-MIB
116 +# symbol:
117 +# OID: 1.3.6.1.4.1.20916.1.9.2.6.0
118 +# name: roomalert.3e.alarm1
119 +# enum:
120 +# off: 0
121 +# on: 1
122 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
123 +# comment in profile until it's fixed)
124 +# - MIB: ROOMALERT3E-MIB
125 +# symbol:
126 +# OID: 1.3.6.1.4.1.20916.1.9.2.7.0
127 +# name: roomalert.3e.alarm2
128 +# enum:
129 +# off: 0
130 +# on: 1
131 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
132 +# comment in profile until it's fixed)
133 +# - MIB: ROOMALERT3E-MIB
134 +# symbol:
135 +# OID: 1.3.6.1.4.1.20916.1.9.3.1.0
136 +# name: roomalert.3e.alarmmessage
137 +# format: TODO_handle_conversion_to_one
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avtech-roomalert-3s.yaml new
+87
@@ -0,0 +1,87 @@
1 +extends:
2 + - avtech.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.20916.1.13.*
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "sensor"
10 +metrics:
11 + - MIB: ROOMALERT3S-MIB
12 + symbol:
13 + OID: 1.3.6.1.4.1.20916.1.13.1.1.1.1.0
14 + name: roomalert.3s.internal_tempf
15 + - MIB: ROOMALERT3S-MIB
16 + symbol:
17 + OID: 1.3.6.1.4.1.20916.1.13.1.1.1.2.0
18 + name: roomalert.3s.internal_tempc
19 + - MIB: ROOMALERT3S-MIB
20 + symbol:
21 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.1.0
22 + name: roomalert.3s.digital_sen1_1
23 + - MIB: ROOMALERT3S-MIB
24 + symbol:
25 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.2.0
26 + name: roomalert.3s.digital_sen1_2
27 + - MIB: ROOMALERT3S-MIB
28 + symbol:
29 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.3.0
30 + name: roomalert.3s.digital_sen1_3
31 + - MIB: ROOMALERT3S-MIB
32 + symbol:
33 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.4.0
34 + name: roomalert.3s.digital_sen1_4
35 + - MIB: ROOMALERT3S-MIB
36 + symbol:
37 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.5.0
38 + name: roomalert.3s.digital_sen1_5
39 + - MIB: ROOMALERT3S-MIB
40 + symbol:
41 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.6.0
42 + name: roomalert.3s.digital_sen1_6
43 + - MIB: ROOMALERT3S-MIB
44 + symbol:
45 + OID: 1.3.6.1.4.1.20916.1.13.1.2.1.7.0
46 + name: roomalert.3s.digital_sen1_7
47 +# - MIB: ROOMALERT3S-MIB
48 +# symbol:
49 +# OID: 1.3.6.1.4.1.20916.1.13.1.3.1.0
50 +# name: roomalert.3s.switch_sen1
51 +# enum:
52 +# open: 0
53 +# closed: 1
54 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
55 +# comment in profile until it's fixed)
56 + - MIB: ROOMALERT3S-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.20916.1.13.3.1.1.0
59 + name: roomalert.3s.externalrelay1_element_one
60 + - MIB: ROOMALERT3S-MIB
61 + symbol:
62 + OID: 1.3.6.1.4.1.20916.1.13.3.1.2.0
63 + name: roomalert.3s.externalrelay1_element_two
64 + - MIB: ROOMALERT3S-MIB
65 + symbol:
66 + OID: 1.3.6.1.4.1.20916.1.13.3.1.3.0
67 + name: roomalert.3s.externalrelay1_element_three
68 + - MIB: ROOMALERT3S-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.20916.1.13.3.1.4.0
71 + name: roomalert.3s.externalrelay1_element_four
72 + - MIB: ROOMALERT3S-MIB
73 + symbol:
74 + OID: 1.3.6.1.4.1.20916.1.13.3.1.5.0
75 + name: roomalert.3s.externalrelay1_element_five
76 + - MIB: ROOMALERT3S-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.20916.1.13.3.1.6.0
79 + name: roomalert.3s.externalrelay1_element_six
80 + - MIB: ROOMALERT3S-MIB
81 + symbol:
82 + OID: 1.3.6.1.4.1.20916.1.13.3.1.7.0
83 + name: roomalert.3s.externalrelay1_element_seven
84 + - MIB: ROOMALERT3S-MIB
85 + symbol:
86 + OID: 1.3.6.1.4.1.20916.1.13.3.1.8.0
87 + name: roomalert.3s.externalrelay1_element_eight
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/avtech.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "avtech"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.20916.1.* # avtech products
12 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/barracuda-cloudgen.yaml new
+213
@@ -0,0 +1,213 @@
1 +extends:
2 + - barracuda.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.10704.1.*
6 +
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "firewall"
12 +
13 +metrics:
14 + - MIB: PHION-MIB
15 + table:
16 + OID: 1.3.6.1.4.1.10704.1.0
17 + name: boxServices
18 + symbols:
19 + - name: phion.boxServices
20 + constant_value_one: true
21 + metric_tags:
22 + - symbol:
23 + OID: 1.3.6.1.4.1.10704.1.0.1.1
24 + name: boxServiceName
25 + tag: box_service_name
26 + - symbol:
27 + OID: 1.3.6.1.4.1.10704.1.0.1.2
28 + name: boxServiceState
29 + tag: box_service_state
30 + mapping:
31 + -1: unknown
32 + 0: stopped
33 + 1: started
34 + 2: blocked
35 + 4: removed
36 + - MIB: PHION-MIB
37 + symbol:
38 + OID: 1.3.6.1.4.1.10704.1.11.0
39 + name: phion.vpnUsers
40 + - MIB: PHION-MIB
41 + table:
42 + OID: 1.3.6.1.4.1.10704.1.12
43 + name: trafficShape
44 + symbols:
45 + - OID: 1.3.6.1.4.1.10704.1.12.1.2
46 + name: phion.trafficShape.rate
47 + metric_type: monotonic_count
48 + - OID: 1.3.6.1.4.1.10704.1.12.1.3
49 + name: phion.trafficShape.sessions
50 + metric_type: monotonic_count
51 + - OID: 1.3.6.1.4.1.10704.1.12.1.4
52 + name: phion.trafficShape.class1Total
53 + metric_type: monotonic_count
54 + - OID: 1.3.6.1.4.1.10704.1.12.1.5
55 + name: phion.trafficShape.class1Pakets
56 + metric_type: monotonic_count
57 + - OID: 1.3.6.1.4.1.10704.1.12.1.6
58 + name: phion.trafficShape.class1Drop
59 + metric_type: monotonic_count
60 + - OID: 1.3.6.1.4.1.10704.1.12.1.7
61 + name: phion.trafficShape.class2Total
62 + metric_type: monotonic_count
63 + - OID: 1.3.6.1.4.1.10704.1.12.1.8
64 + name: phion.trafficShape.class2Pakets
65 + metric_type: monotonic_count
66 + - OID: 1.3.6.1.4.1.10704.1.12.1.9
67 + name: phion.trafficShape.class2Drop
68 + metric_type: monotonic_count
69 + - OID: 1.3.6.1.4.1.10704.1.12.1.10
70 + name: phion.trafficShape.class3Total
71 + metric_type: monotonic_count
72 + - OID: 1.3.6.1.4.1.10704.1.12.1.11
73 + name: phion.trafficShape.class3Pakets
74 + metric_type: monotonic_count
75 + - OID: 1.3.6.1.4.1.10704.1.12.1.12
76 + name: phion.trafficShape.class3Drop
77 + metric_type: monotonic_count
78 + - OID: 1.3.6.1.4.1.10704.1.12.1.13
79 + name: phion.trafficShape.noDelayTotal
80 + metric_type: monotonic_count
81 + - OID: 1.3.6.1.4.1.10704.1.12.1.14
82 + name: phion.trafficShape.noDelayPakets
83 + metric_type: monotonic_count
84 + - OID: 1.3.6.1.4.1.10704.1.12.1.15
85 + name: phion.trafficShape.noDelayDrop
86 + metric_type: monotonic_count
87 + metric_tags:
88 + - symbol:
89 + OID: 1.3.6.1.4.1.10704.1.12.1.1
90 + name: connectorName
91 + tag: connector_name
92 + - MIB: PHION-MIB
93 + table:
94 + OID: 1.3.6.1.4.1.10704.1.4
95 + name: hwSensors
96 + symbols:
97 + - OID: 1.3.6.1.4.1.10704.1.4.1.3
98 + name: phion.hwSensorValue
99 + metric_tags:
100 + - symbol:
101 + OID: 1.3.6.1.4.1.10704.1.4.1.1
102 + name: hwSensorName
103 + tag: hw_sensor_name
104 + - symbol:
105 + OID: 1.3.6.1.4.1.10704.1.4.1.2
106 + name: hwSensorType
107 + tag: hw_sensor_type
108 + mapping:
109 + -1: unknown
110 + 0: voltage
111 + 1: fan
112 + 2: temperature
113 + 3: psu-status
114 + - MIB: PHION-MIB
115 + table:
116 + OID: 1.3.6.1.4.1.10704.1.6
117 + name: vpnTunnels
118 + symbols:
119 + - name: phion.vpnTunnels
120 + constant_value_one: true
121 + metric_tags:
122 + - symbol:
123 + OID: 1.3.6.1.4.1.10704.1.6.1.1
124 + name: vpnName
125 + tag: vpn_name
126 + - symbol:
127 + OID: 1.3.6.1.4.1.10704.1.6.1.2
128 + name: vpnState
129 + tag: vpn_state
130 + mapping:
131 + -1: down
132 + 0: down-disabled
133 + 1: active
134 + - MIB: PHION-MIB
135 + table:
136 + OID: 1.3.6.1.4.1.10704.1.7
137 + name: bgpNeighbors
138 + symbols:
139 + - name: phion.bgpNeighbors
140 + constant_value_one: true
141 + metric_tags:
142 + - symbol:
143 + OID: 1.3.6.1.4.1.10704.1.7.1.1
144 + name: bgpNeighborAddress
145 + tag: bgp_neighbor_address
146 + # - symbol:
147 + # OID: 1.3.6.1.4.1.10704.1.7.1.2
148 + # name: bgpNeighborState
149 + # tag: bgp_neighbor_state
150 + # mapping:
151 + # 1: idle
152 + # 2: connect
153 + # 3: active
154 + # 4: opensent
155 + # 5: openconfirm
156 + # 6: established
157 + # mappings not found in MIB
158 + - MIB: PHION-MIB
159 + table:
160 + OID: 1.3.6.1.4.1.10704.1.8
161 + name: ospfNeighbors
162 + symbols:
163 + - name: phion.ospfNeighbors
164 + constant_value_one: true
165 + metric_tags:
166 + - symbol:
167 + OID: 1.3.6.1.4.1.10704.1.8.1.1
168 + name: ospfNeighborId
169 + tag: ospf_neighbor_id
170 + - symbol:
171 + OID: 1.3.6.1.4.1.10704.1.8.1.2
172 + name: ospfNeighborAddress
173 + tag: ospf_neighbor_address
174 + - symbol:
175 + OID: 1.3.6.1.4.1.10704.1.8.1.3
176 + name: ospfNeighborInterface
177 + tag: ospf_neighbor_interface
178 + - symbol:
179 + OID: 1.3.6.1.4.1.10704.1.8.1.4
180 + name: ospfNeighborStatus
181 + tag: ospf_neighbor_status
182 + - MIB: PHION-MIB
183 + table:
184 + OID: 1.3.6.1.4.1.10704.1.9
185 + name: ripNeighbors
186 + symbols:
187 + - name: phion.ripNeighbors
188 + constant_value_one: true
189 + metric_tags:
190 + - symbol:
191 + OID: 1.3.6.1.4.1.10704.1.9.1.1
192 + name: ripNeighborAddress
193 + tag: rip_neighbor_address
194 + - symbol:
195 + OID: 1.3.6.1.4.1.10704.1.9.1.2
196 + name: ripNeighborState
197 + tag: rip_neighbor_state
198 + # - MIB: PHION-MIB # Removed for lack of clarity on how this table is indexed.
199 + # table:
200 + # OID: 1.3.6.1.4.1.10704.1.10
201 + # name: fwStats
202 + # symbols:
203 + # - OID: 1.3.6.1.4.1.10704.1.10.1.1
204 + # name: firewallSessions
205 + # - OID: 1.3.6.1.4.1.10704.1.10.1.2
206 + # name: packetThroughput
207 + # - OID: 1.3.6.1.4.1.10704.1.10.1.3
208 + # name: dataThroughput
209 + # metric_tags:
210 + # - symbol:
211 + # OID: 1.3.6.1.4.1.10704.1.10.1.1
212 + # name: firewallSessions
213 + # tag: firewall_sessions
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/barracuda.yaml new
+10
@@ -0,0 +1,10 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "barracuda"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/bluecat-server.yaml new
+79
@@ -0,0 +1,79 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-host-resources-base.yaml
5 + - _generic-ucd.yaml
6 +
7 +sysobjectid:
8 + - 1.3.6.1.4.1.13315.2.*
9 +
10 +metadata:
11 + device:
12 + fields:
13 + vendor:
14 + value: "bluecat"
15 +
16 +metrics:
17 + - MIB: BCN-DHCPV4-MIB
18 + table:
19 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2
20 + name: bcnDhcpv4SubnetTable
21 + symbols:
22 + - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.4
23 + name: bcnDhcpv4SubnetFreeAddresses
24 + metric_tags:
25 + - symbol:
26 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.1
27 + name: bcnDhcpv4SubnetIP
28 + tag: bcn_dhcpv4_subnet_ip
29 + - symbol:
30 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.2
31 + name: bcnDhcpv4SubnetMask
32 + tag: bcn_dhcpv4_subnet_mask
33 + - symbol:
34 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.3
35 + name: bcnDhcpv4SubnetSize
36 + tag: bcn_dhcpv4_subnet_size
37 + - symbol:
38 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.5
39 + name: bcnDhcpv4SubnetLowThreshold
40 + tag: bcn_dhcpv4_subnet_low_threshold
41 + - symbol:
42 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.2.1.6
43 + name: bcnDhcpv4SubnetHighThreshold
44 + tag: bcn_dhcpv4_subnet_high_threshold
45 + - MIB: BCN-DHCPV4-MIB
46 + table:
47 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3
48 + name: bcnDhcpv4PoolTable
49 + symbols:
50 + - OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.5
51 + name: bcnDhcpv4PoolFreeAddresses
52 + metric_tags:
53 + - symbol:
54 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.1
55 + name: bcnDhcpv4PoolStartIP
56 + tag: bcn_dhcpv4_pool_start_ip
57 + - symbol:
58 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.2
59 + name: bcnDhcpv4PoolEndIP
60 + tag: bcn_dhcpv4_pool_end_ip
61 + - symbol:
62 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.3
63 + name: bcnDhcpv4PoolSubnetIP
64 + tag: bcn_dhcpv4_pool_subnet_ip
65 + - symbol:
66 + OID: 1.3.6.1.4.1.13315.3.1.1.2.2.3.1.4
67 + name: bcnDhcpv4PoolSize
68 + tag: bcn_dhcpv4_pool_size
69 +
70 +metric_tags:
71 + - OID: 1.3.6.1.4.1.13315.3.2.2.1.1.0
72 + symbol: bcnSysIdProduct
73 + tag: bcn_sys_id_product
74 + - OID: 1.3.6.1.4.1.13315.3.2.2.1.2.0
75 + symbol: bcnSysIdOSRelease
76 + tag: bcn_sys_id_os_release
77 + - OID: 1.3.6.1.4.1.13315.3.2.2.1.5.0
78 + symbol: bcnSysIdPlatform
79 + tag: bcn_sys_id_platform
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/brocade-fc-switch.yaml new
+148
@@ -0,0 +1,148 @@
1 +extends:
2 + - brocade.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.1588.2.1.1.*
5 + - 1.3.6.1.4.1.1588.2.1.1.32
6 + - 1.3.6.1.4.1.1588.2.1.1.44
7 + - 1.3.6.1.4.1.1588.2.1.1.62
8 + - 1.3.6.1.4.1.1588.2.1.1.64
9 + - 1.3.6.1.4.1.1588.2.1.1.66
10 + - 1.3.6.1.4.1.1588.2.1.1.71
11 + - 1.3.6.1.4.1.1588.2.1.1.72
12 + - 1.3.6.1.4.1.1588.2.1.1.77
13 + - 1.3.6.1.4.1.1588.2.1.1.83
14 + - 1.3.6.1.4.1.1588.2.1.1.109
15 + - 1.3.6.1.4.1.1588.2.1.1.117
16 + - 1.3.6.1.4.1.1588.2.1.1.118
17 + - 1.3.6.1.4.1.1588.2.1.1.120
18 + - 1.3.6.1.4.1.1588.2.1.1.133
19 + - 1.3.6.1.4.1.1588.2.1.3
20 +metadata:
21 + device:
22 + fields:
23 + type:
24 + value: "switch"
25 +metrics:
26 + - MIB: RESOURCE-MIB
27 + symbol:
28 + OID: 1.3.6.1.4.1.1588.2.1.1.1.26.1.0
29 + name: cpu.usage
30 + - MIB: RESOURCE-MIB
31 + symbol:
32 + OID: 1.3.6.1.4.1.1588.2.1.1.1.26.6.0
33 + name: memory.usage
34 + - MIB: FIBRE-CHANNEL-FE-MIB
35 + table:
36 + OID: 1.3.6.1.2.1.75.1.2.1
37 + name: fcFxPortStatusTable # fcFxPortStatusEntry AUGMENTS { fcFxPortEntry }
38 + symbols:
39 + - name: fcFxPortStatus
40 + constant_value_one: true
41 + metric_tags:
42 + - index: 1 # fcFeModuleIndex is index #1 of fcFxPortEntry
43 + tag: fc_fe_module_index
44 + - index: 2 # fcFxPortIndex is index #2 of fcFxPortEntry
45 + tag: fc_fx_port_index
46 + - symbol:
47 + OID: 1.3.6.1.2.1.75.1.2.1.1.3
48 + name: fcFxPortOperMode
49 + tag: fc_fx_port_oper_mode
50 + mapping:
51 + 1: unknown
52 + 2: f_port
53 + 3: fl_port
54 + - symbol:
55 + OID: 1.3.6.1.2.1.75.1.2.1.1.4
56 + name: fcFxPortAdminMode
57 + tag: fc_fx_port_admin_mode
58 + mapping:
59 + 2: f_port
60 + 3: fl_port
61 + - MIB: FIBRE-CHANNEL-FE-MIB
62 + table:
63 + OID: 1.3.6.1.2.1.75.1.2.2
64 + name: fcFxPortPhysTable # fcFxPortStatusEntry AUGMENTS { fcFxPortEntry }
65 + symbols:
66 + - name: fcFxPortPhys
67 + constant_value_one: true
68 + metric_tags:
69 + - index: 1 # fcFeModuleIndex is index #1 of fcFxPortEntry
70 + tag: fc_fe_module_index
71 + - index: 2 # fcFxPortIndex is index #2 of fcFxPortEntry
72 + tag: fc_fx_port_index
73 + - symbol:
74 + OID: 1.3.6.1.2.1.75.1.2.2.1.1
75 + name: fcFxPortPhysAdminStatus
76 + tag: fc_fx_port_phys_admin_status
77 + mapping:
78 + 1: online
79 + 2: offline
80 + 3: testing
81 + - symbol:
82 + OID: 1.3.6.1.2.1.75.1.2.2.1.2
83 + name: fcFxPortPhysOperStatus
84 + tag: fc_fx_port_phys_oper_status
85 + mapping:
86 + 1: online
87 + 2: offline
88 + 3: testing
89 + 4: link_failure
90 + - MIB: SW-MIB
91 + table:
92 + name: swFCPortTable
93 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2
94 + symbols:
95 + - name: swFCPortTxFrames
96 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.13
97 + metric_type: monotonic_count
98 + - name: swFCPortRxFrames
99 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.14
100 + metric_type: monotonic_count
101 + - name: swFCPortRxC2Frames
102 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.15
103 + metric_type: monotonic_count
104 + - name: swFCPortRxC3Frames
105 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.16
106 + metric_type: monotonic_count
107 + - name: swFCPortRxLCs
108 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.17
109 + metric_type: monotonic_count
110 + - name: swFCPortTooManyRdys
111 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.19
112 + metric_type: monotonic_count
113 + - name: swFCPortNoTxCredits
114 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.20
115 + metric_type: monotonic_count
116 + - name: swFCPortRxEncInFrs
117 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.21
118 + metric_type: monotonic_count
119 + - name: swFCPortRxCrcs
120 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.22
121 + metric_type: monotonic_count
122 + - name: swFCPortRcTruncs
123 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.23
124 + metric_type: monotonic_count
125 + - name: swFCPortRxTooLongs
126 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.24
127 + metric_type: monotonic_count
128 + - name: swFCPortRxBadEofs
129 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.25
130 + metric_type: monotonic_count
131 + - name: swFCPortRxEncOutFrs
132 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.26
133 + metric_type: monotonic_count
134 + - name: swFCPortRxBadOs
135 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.27
136 + metric_type: monotonic_count
137 + - name: swFCPortC3Discards
138 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.28
139 + metric_type: monotonic_count
140 + metric_tags:
141 + - symbol:
142 + name: swFCPortName
143 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.36
144 + tag: sw_fc_port_name
145 + - symbol:
146 + name: swFCPortSpecifier
147 + OID: 1.3.6.1.4.1.1588.2.1.1.1.6.2.1.37
148 + tag: sw_fc_port_specifier
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/brocade.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "brocade"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/brother-net-printer.yaml new
+46
@@ -0,0 +1,46 @@
1 +extends:
2 + - brother.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.2435.2.3.9.1
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "printer"
10 +metrics:
11 + - MIB: BROTHER-MIB
12 + symbol:
13 + OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.9.0
14 + name: brJamPlace
15 + - MIB: BROTHER-MIB
16 + symbol:
17 + OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.1.0
18 + name: brToner1Low
19 + - MIB: BROTHER-MIB
20 + symbol:
21 + OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.2.0
22 + name: brToner2Low
23 + - MIB: BROTHER-MIB
24 + symbol:
25 + OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.3.0
26 + name: brToner3Low
27 + - MIB: BROTHER-MIB
28 + symbol:
29 + OID: 1.3.6.1.4.1.2435.2.3.9.1.1.2.10.4.0
30 + name: brToner4Low
31 + - MIB: BROTHER-MIB
32 + table:
33 + name: brErrorHistoryTable
34 + OID: 1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.51.2
35 + symbols:
36 + - name: brErrorHistory
37 + constant_value_one: true
38 + metric_tags:
39 + - symbol:
40 + OID: 1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.51.2.1.2
41 + name: brErrorHistoryDescription
42 + tag: br_error_history_description
43 +metric_tags:
44 + - OID: 1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.1.0
45 + symbol: brInfoSerialNumber
46 + tag: br_info_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/brother.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "brother"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/chatsworth_pdu.yaml new
+734
@@ -0,0 +1,734 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "chatsworth"
9 + type:
10 + value: "PDU"
11 +
12 +device:
13 + vendor: "chatsworth"
14 +
15 +sysobjectid: 1.3.6.1.4.1.30932.*
16 +
17 +# [legacy] Global tags
18 +metric_tags:
19 + - tag: legacy_pdu_name
20 + OID: 1.3.6.1.4.1.30932.1.1.2.40.0
21 + symbol: pduName
22 +
23 + - tag: legacy_pdu_version
24 + OID: 1.3.6.1.4.1.30932.1.1.1.1.0
25 + symbol: version
26 +
27 + - tag: legacy_pdu_model
28 + OID: 1.3.6.1.4.1.30932.1.1.1.2.0
29 + symbol: modelCode
30 +
31 + - tag: legacy_pdu_macaddress
32 + OID: 1.3.6.1.4.1.30932.1.1.1.3.0
33 + symbol: hwAddress
34 +
35 +metrics:
36 + ### [Legacy] PDU
37 + - # [legacy] This table contains a list of PDU entries that are being monitored by the PDU.
38 + MIB: CPI-UNITY-MIB
39 + symbol:
40 + OID: 1.3.6.1.4.1.30932.1.1.2.58.2.0
41 + name: pduRole
42 +
43 + - # [legacy] Get whether the PDU is in-service: inservice(0), outofservice(1)
44 + MIB: CPI-UNITY-MIB
45 + symbol:
46 + OID: 1.3.6.1.4.1.30932.1.1.2.58.12.0
47 + name: outOfService
48 +
49 + ### [Legacy] Sensors
50 + - MIB: CPI-UNITY-MIB
51 + symbol:
52 + OID: 1.3.6.1.4.1.30932.1.1.3.8.1.0
53 + name: temperatureProbe1
54 + - MIB: CPI-UNITY-MIB
55 + symbol:
56 + OID: 1.3.6.1.4.1.30932.1.1.3.8.2.0
57 + name: temperatureProbe2
58 + - MIB: CPI-UNITY-MIB
59 + symbol:
60 + OID: 1.3.6.1.4.1.30932.1.1.3.9.1.0
61 + name: humidityProbe1
62 + - MIB: CPI-UNITY-MIB
63 + symbol:
64 + OID: 1.3.6.1.4.1.30932.1.1.3.9.2.0
65 + name: humidityProbe2
66 +
67 + ### [Legacy] Sensors
68 + - MIB: CPI-UNITY-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.30932.1.1.3.13.1.0
71 + name: line1curr
72 + - MIB: CPI-UNITY-MIB
73 + symbol:
74 + OID: 1.3.6.1.4.1.30932.1.1.3.13.2.0
75 + name: line2curr
76 + - MIB: CPI-UNITY-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.30932.1.1.3.13.3.0
79 + name: line3curr
80 +
81 + ### [Legacy] Branch
82 + - MIB: CPI-UNITY-MIB
83 + symbol:
84 + OID: 1.3.6.1.4.1.30932.1.1.3.1.1.0
85 + name: currentxy1
86 + - MIB: CPI-UNITY-MIB
87 + symbol:
88 + OID: 1.3.6.1.4.1.30932.1.1.3.1.2.0
89 + name: currentyz1
90 + - MIB: CPI-UNITY-MIB
91 + symbol:
92 + OID: 1.3.6.1.4.1.30932.1.1.3.1.3.0
93 + name: currentzx1
94 + - MIB: CPI-UNITY-MIB
95 + symbol:
96 + OID: 1.3.6.1.4.1.30932.1.1.3.1.4.0
97 + name: currentxy2
98 + - MIB: CPI-UNITY-MIB
99 + symbol:
100 + OID: 1.3.6.1.4.1.30932.1.1.3.1.5.0
101 + name: currentyz2
102 + - MIB: CPI-UNITY-MIB
103 + symbol:
104 + OID: 1.3.6.1.4.1.30932.1.1.3.1.6.0
105 + name: currentzx2
106 +
107 + - MIB: CPI-UNITY-MIB
108 + symbol:
109 + OID: 1.3.6.1.4.1.30932.1.1.3.2.1.0
110 + name: voltagexy1
111 + - MIB: CPI-UNITY-MIB
112 + symbol:
113 + OID: 1.3.6.1.4.1.30932.1.1.3.2.2.0
114 + name: voltageyz1
115 + - MIB: CPI-UNITY-MIB
116 + symbol:
117 + OID: 1.3.6.1.4.1.30932.1.1.3.2.3.0
118 + name: voltagezx1
119 + - MIB: CPI-UNITY-MIB
120 + symbol:
121 + OID: 1.3.6.1.4.1.30932.1.1.3.2.4.0
122 + name: voltagexy2
123 + - MIB: CPI-UNITY-MIB
124 + symbol:
125 + OID: 1.3.6.1.4.1.30932.1.1.3.2.5.0
126 + name: voltageyz2
127 + - MIB: CPI-UNITY-MIB
128 + symbol:
129 + OID: 1.3.6.1.4.1.30932.1.1.3.2.6.0
130 + name: voltagezx2
131 +
132 + - MIB: CPI-UNITY-MIB
133 + symbol:
134 + OID: 1.3.6.1.4.1.30932.1.1.3.3.1.0
135 + name: powerxy1
136 + - MIB: CPI-UNITY-MIB
137 + symbol:
138 + OID: 1.3.6.1.4.1.30932.1.1.3.3.2.0
139 + name: poweryz1
140 + - MIB: CPI-UNITY-MIB
141 + symbol:
142 + OID: 1.3.6.1.4.1.30932.1.1.3.3.3.0
143 + name: powerzx1
144 + - MIB: CPI-UNITY-MIB
145 + symbol:
146 + OID: 1.3.6.1.4.1.30932.1.1.3.3.4.0
147 + name: powerxy2
148 + - MIB: CPI-UNITY-MIB
149 + symbol:
150 + OID: 1.3.6.1.4.1.30932.1.1.3.3.5.0
151 + name: poweryz2
152 + - MIB: CPI-UNITY-MIB
153 + symbol:
154 + OID: 1.3.6.1.4.1.30932.1.1.3.3.6.0
155 + name: powerzx2
156 +
157 + - MIB: CPI-UNITY-MIB
158 + symbol:
159 + OID: 1.3.6.1.4.1.30932.1.1.3.4.1.0
160 + name: powerFactxy1
161 + - MIB: CPI-UNITY-MIB
162 + symbol:
163 + OID: 1.3.6.1.4.1.30932.1.1.3.4.2.0
164 + name: powerFactyz1
165 + - MIB: CPI-UNITY-MIB
166 + symbol:
167 + OID: 1.3.6.1.4.1.30932.1.1.3.4.3.0
168 + name: powerFactzx1
169 + - MIB: CPI-UNITY-MIB
170 + symbol:
171 + OID: 1.3.6.1.4.1.30932.1.1.3.4.4.0
172 + name: powerFactxy2
173 + - MIB: CPI-UNITY-MIB
174 + symbol:
175 + OID: 1.3.6.1.4.1.30932.1.1.3.4.5.0
176 + name: powerFactyz2
177 + - MIB: CPI-UNITY-MIB
178 + symbol:
179 + OID: 1.3.6.1.4.1.30932.1.1.3.4.6.0
180 + name: powerFactzx2
181 +
182 + - MIB: CPI-UNITY-MIB
183 + symbol:
184 + OID: 1.3.6.1.4.1.30932.1.1.3.11.1.0
185 + name: energyxy1s
186 + metric_type: monotonic_count
187 + - MIB: CPI-UNITY-MIB
188 + symbol:
189 + OID: 1.3.6.1.4.1.30932.1.1.3.11.2.0
190 + name: energyyz1s
191 + metric_type: monotonic_count
192 + - MIB: CPI-UNITY-MIB
193 + symbol:
194 + OID: 1.3.6.1.4.1.30932.1.1.3.11.3.0
195 + name: energyzx1s
196 + metric_type: monotonic_count
197 + - MIB: CPI-UNITY-MIB
198 + symbol:
199 + OID: 1.3.6.1.4.1.30932.1.1.3.11.4.0
200 + name: energyxy2s
201 + metric_type: monotonic_count
202 + - MIB: CPI-UNITY-MIB
203 + symbol:
204 + OID: 1.3.6.1.4.1.30932.1.1.3.11.5.0
205 + name: energyyz2s
206 + metric_type: monotonic_count
207 + - MIB: CPI-UNITY-MIB
208 + symbol:
209 + OID: 1.3.6.1.4.1.30932.1.1.3.11.6.0
210 + name: energyzx2s
211 + metric_type: monotonic_count
212 +
213 +
214 + ### [Legacy] Outlets
215 + - MIB: CPI-UNITY-MIB
216 + symbol:
217 + OID: 1.3.6.1.4.1.30932.1.1.3.5.1.0
218 + name: outlet1Current
219 + - MIB: CPI-UNITY-MIB
220 + symbol:
221 + OID: 1.3.6.1.4.1.30932.1.1.3.5.2.0
222 + name: outlet2Current
223 + - MIB: CPI-UNITY-MIB
224 + symbol:
225 + OID: 1.3.6.1.4.1.30932.1.1.3.5.3.0
226 + name: outlet3Current
227 + - MIB: CPI-UNITY-MIB
228 + symbol:
229 + OID: 1.3.6.1.4.1.30932.1.1.3.5.4.0
230 + name: outlet4Current
231 + - MIB: CPI-UNITY-MIB
232 + symbol:
233 + OID: 1.3.6.1.4.1.30932.1.1.3.5.5.0
234 + name: outlet5Current
235 + - MIB: CPI-UNITY-MIB
236 + symbol:
237 + OID: 1.3.6.1.4.1.30932.1.1.3.5.6.0
238 + name: outlet6Current
239 + - MIB: CPI-UNITY-MIB
240 + symbol:
241 + OID: 1.3.6.1.4.1.30932.1.1.3.5.7.0
242 + name: outlet7Current
243 + - MIB: CPI-UNITY-MIB
244 + symbol:
245 + OID: 1.3.6.1.4.1.30932.1.1.3.5.8.0
246 + name: outlet8Current
247 + - MIB: CPI-UNITY-MIB
248 + symbol:
249 + OID: 1.3.6.1.4.1.30932.1.1.3.5.9.0
250 + name: outlet9Current
251 + - MIB: CPI-UNITY-MIB
252 + symbol:
253 + OID: 1.3.6.1.4.1.30932.1.1.3.5.10.0
254 + name: outlet10Current
255 + - MIB: CPI-UNITY-MIB
256 + symbol:
257 + OID: 1.3.6.1.4.1.30932.1.1.3.5.11.0
258 + name: outlet11Current
259 + - MIB: CPI-UNITY-MIB
260 + symbol:
261 + OID: 1.3.6.1.4.1.30932.1.1.3.5.12.0
262 + name: outlet12Current
263 + - MIB: CPI-UNITY-MIB
264 + symbol:
265 + OID: 1.3.6.1.4.1.30932.1.1.3.5.13.0
266 + name: outlet13Current
267 + - MIB: CPI-UNITY-MIB
268 + symbol:
269 + OID: 1.3.6.1.4.1.30932.1.1.3.5.14.0
270 + name: outlet14Current
271 + - MIB: CPI-UNITY-MIB
272 + symbol:
273 + OID: 1.3.6.1.4.1.30932.1.1.3.5.15.0
274 + name: outlet15Current
275 + - MIB: CPI-UNITY-MIB
276 + symbol:
277 + OID: 1.3.6.1.4.1.30932.1.1.3.5.16.0
278 + name: outlet16Current
279 + - MIB: CPI-UNITY-MIB
280 + symbol:
281 + OID: 1.3.6.1.4.1.30932.1.1.3.5.17.0
282 + name: outlet17Current
283 + - MIB: CPI-UNITY-MIB
284 + symbol:
285 + OID: 1.3.6.1.4.1.30932.1.1.3.5.18.0
286 + name: outlet18Current
287 + - MIB: CPI-UNITY-MIB
288 + symbol:
289 + OID: 1.3.6.1.4.1.30932.1.1.3.5.19.0
290 + name: outlet19Current
291 + - MIB: CPI-UNITY-MIB
292 + symbol:
293 + OID: 1.3.6.1.4.1.30932.1.1.3.5.20.0
294 + name: outlet20Current
295 + - MIB: CPI-UNITY-MIB
296 + symbol:
297 + OID: 1.3.6.1.4.1.30932.1.1.3.5.21.0
298 + name: outlet21Current
299 + - MIB: CPI-UNITY-MIB
300 + symbol:
301 + OID: 1.3.6.1.4.1.30932.1.1.3.5.22.0
302 + name: outlet22Current
303 + - MIB: CPI-UNITY-MIB
304 + symbol:
305 + OID: 1.3.6.1.4.1.30932.1.1.3.5.23.0
306 + name: outlet23Current
307 + - MIB: CPI-UNITY-MIB
308 + symbol:
309 + OID: 1.3.6.1.4.1.30932.1.1.3.5.24.0
310 + name: outlet24Current
311 +
312 + - MIB: CPI-UNITY-MIB
313 + symbol:
314 + OID: 1.3.6.1.4.1.30932.1.1.3.12.1.0
315 + name: receptacleEnergyoutlet1s
316 + metric_type: monotonic_count
317 + - MIB: CPI-UNITY-MIB
318 + symbol:
319 + OID: 1.3.6.1.4.1.30932.1.1.3.12.2.0
320 + name: receptacleEnergyoutlet2s
321 + metric_type: monotonic_count
322 + - MIB: CPI-UNITY-MIB
323 + symbol:
324 + OID: 1.3.6.1.4.1.30932.1.1.3.12.3.0
325 + name: receptacleEnergyoutlet3s
326 + metric_type: monotonic_count
327 + - MIB: CPI-UNITY-MIB
328 + symbol:
329 + OID: 1.3.6.1.4.1.30932.1.1.3.12.4.0
330 + name: receptacleEnergyoutlet4s
331 + metric_type: monotonic_count
332 + - MIB: CPI-UNITY-MIB
333 + symbol:
334 + OID: 1.3.6.1.4.1.30932.1.1.3.12.5.0
335 + name: receptacleEnergyoutlet5s
336 + metric_type: monotonic_count
337 + - MIB: CPI-UNITY-MIB
338 + symbol:
339 + OID: 1.3.6.1.4.1.30932.1.1.3.12.6.0
340 + name: receptacleEnergyoutlet6s
341 + metric_type: monotonic_count
342 + - MIB: CPI-UNITY-MIB
343 + symbol:
344 + OID: 1.3.6.1.4.1.30932.1.1.3.12.7.0
345 + name: receptacleEnergyoutlet7s
346 + metric_type: monotonic_count
347 + - MIB: CPI-UNITY-MIB
348 + symbol:
349 + OID: 1.3.6.1.4.1.30932.1.1.3.12.8.0
350 + name: receptacleEnergyoutlet8s
351 + metric_type: monotonic_count
352 + - MIB: CPI-UNITY-MIB
353 + symbol:
354 + OID: 1.3.6.1.4.1.30932.1.1.3.12.9.0
355 + name: receptacleEnergyoutlet9s
356 + metric_type: monotonic_count
357 + - MIB: CPI-UNITY-MIB
358 + symbol:
359 + OID: 1.3.6.1.4.1.30932.1.1.3.12.10.0
360 + name: receptacleEnergyoutlet10s
361 + metric_type: monotonic_count
362 + - MIB: CPI-UNITY-MIB
363 + symbol:
364 + OID: 1.3.6.1.4.1.30932.1.1.3.12.11.0
365 + name: receptacleEnergyoutlet11s
366 + metric_type: monotonic_count
367 + - MIB: CPI-UNITY-MIB
368 + symbol:
369 + OID: 1.3.6.1.4.1.30932.1.1.3.12.12.0
370 + name: receptacleEnergyoutlet12s
371 + metric_type: monotonic_count
372 + - MIB: CPI-UNITY-MIB
373 + symbol:
374 + OID: 1.3.6.1.4.1.30932.1.1.3.12.13.0
375 + name: receptacleEnergyoutlet13s
376 + metric_type: monotonic_count
377 + - MIB: CPI-UNITY-MIB
378 + symbol:
379 + OID: 1.3.6.1.4.1.30932.1.1.3.12.14.0
380 + name: receptacleEnergyoutlet14s
381 + metric_type: monotonic_count
382 + - MIB: CPI-UNITY-MIB
383 + symbol:
384 + OID: 1.3.6.1.4.1.30932.1.1.3.12.15.0
385 + name: receptacleEnergyoutlet15s
386 + metric_type: monotonic_count
387 + - MIB: CPI-UNITY-MIB
388 + symbol:
389 + OID: 1.3.6.1.4.1.30932.1.1.3.12.16.0
390 + name: receptacleEnergyoutlet16s
391 + metric_type: monotonic_count
392 + - MIB: CPI-UNITY-MIB
393 + symbol:
394 + OID: 1.3.6.1.4.1.30932.1.1.3.12.17.0
395 + name: receptacleEnergyoutlet17s
396 + metric_type: monotonic_count
397 + - MIB: CPI-UNITY-MIB
398 + symbol:
399 + OID: 1.3.6.1.4.1.30932.1.1.3.12.18.0
400 + name: receptacleEnergyoutlet18s
401 + metric_type: monotonic_count
402 + - MIB: CPI-UNITY-MIB
403 + symbol:
404 + OID: 1.3.6.1.4.1.30932.1.1.3.12.19.0
405 + name: receptacleEnergyoutlet19s
406 + metric_type: monotonic_count
407 + - MIB: CPI-UNITY-MIB
408 + symbol:
409 + OID: 1.3.6.1.4.1.30932.1.1.3.12.20.0
410 + name: receptacleEnergyoutlet20s
411 + metric_type: monotonic_count
412 + - MIB: CPI-UNITY-MIB
413 + symbol:
414 + OID: 1.3.6.1.4.1.30932.1.1.3.12.21.0
415 + name: receptacleEnergyoutlet21s
416 + metric_type: monotonic_count
417 + - MIB: CPI-UNITY-MIB
418 + symbol:
419 + OID: 1.3.6.1.4.1.30932.1.1.3.12.22.0
420 + name: receptacleEnergyoutlet22s
421 + metric_type: monotonic_count
422 + - MIB: CPI-UNITY-MIB
423 + symbol:
424 + OID: 1.3.6.1.4.1.30932.1.1.3.12.23.0
425 + name: receptacleEnergyoutlet23s
426 + metric_type: monotonic_count
427 + - MIB: CPI-UNITY-MIB
428 + symbol:
429 + OID: 1.3.6.1.4.1.30932.1.1.3.12.24.0
430 + name: receptacleEnergyoutlet24s
431 + metric_type: monotonic_count
432 +
433 + ### PDU
434 +
435 + - # This table contains a list of PDU entries that are being monitored by the PDU.
436 + MIB: CPI-UNITY-MIB
437 + table:
438 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10
439 + name: cpiPduTable
440 + symbols:
441 + # Get the number of branches (breakers) in the PDU.
442 + - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.8
443 + name: cpiPduNumberBranches
444 + # Get the number of outlets in the PDU.
445 + - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.9
446 + name: cpiPduNumberOutlets
447 + # Set or get whether the PDU is in-service: inservice(0), outofservice(1)
448 + - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.10
449 + name: cpiPduOutOfService
450 + # An indicator if the PDU firmware is being upgraded: no(0), yes(1)
451 + - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.12
452 + name: cpiPduUpgrade
453 + # Get the role of the PDU in a daisy chain: secondary(0), primary(1), alternate(2)
454 + - OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.13
455 + name: cpiPduChainRole
456 + - # Get the power in volt-amps for the entire PDU.
457 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.16
458 + name: cpiPduTotalPower
459 + metric_tags:
460 + - tag: pdu_macaddress
461 + symbol:
462 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.1
463 + name: cpiPduMac
464 + - tag: pdu_model
465 + symbol:
466 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.2
467 + name: cpiPduModel
468 + - tag: pdu_name
469 + symbol:
470 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.3
471 + name: cpiPduName
472 + # Get the firmware version number of the PDU.
473 + - tag: pdu_version
474 + symbol:
475 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.11
476 + name: cpiPduVersion
477 + - tag: pdu_ipaddress
478 + symbol:
479 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.14
480 + name: cpiPduIp
481 + - tag: pdu_cabinetid
482 + symbol:
483 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.17
484 + name: cpiPduCabinetId
485 +
486 + ### Locks
487 +
488 + - # This table contains a list of electronic locks that are connected to the PDU
489 + MIB: CPI-UNITY-MIB
490 + table:
491 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100
492 + name: cpiPduOutletTable
493 + symbols:
494 + # Indicates if the Electronic Access Control system is ready, inactive, or in an error state: inactive(0), ready(1), error(2)
495 + - OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.3
496 + name: cpiPduEasStatus
497 + - # Indicates if the door sensor is closed or open: closed(0), open(1)
498 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.4
499 + name: cpiPduDoorStatus
500 + - # Indicates if the lock is closed or open: closed(0), open(1)
501 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.5
502 + name: cpiPduLockStatus
503 + metric_tags:
504 + - tag: lock_id
505 + symbol:
506 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.2
507 + name: cpiPduLockId
508 + - MIB: CPI-UNITY-MIB
509 + table:
510 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100
511 + name: cpiEasTable
512 + symbols:
513 + - name: cpiEas
514 + constant_value_one: true
515 + metric_tags:
516 + - tag: lock_id
517 + symbol:
518 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.2
519 + name: cpiPduLockId
520 + mapping:
521 + 1: front
522 + 2: rear
523 + - tag: eas_status
524 + symbol:
525 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.3
526 + name: cpiPduEasStatus
527 + mapping:
528 + 0: inactive
529 + 1: ready
530 + 2: error
531 + - tag: door_status
532 + symbol:
533 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.4
534 + name: cpiPduDoorStatus
535 + mapping:
536 + 0: closed
537 + 1: open
538 + - tag: lock_status
539 + symbol:
540 + OID: 1.3.6.1.4.1.30932.1.10.1.7.100.1.5
541 + name: cpiPduLockStatus
542 + mapping:
543 + 0: closed
544 + 1: open
545 +
546 + ### Sensor
547 +
548 + - # This table contains a list of PDU sensor entries that are being monitored by the PDU.
549 + MIB: CPI-UNITY-MIB
550 + table:
551 + OID: 1.3.6.1.4.1.30932.1.10.1.5.10
552 + name: cpiPduSensorTable
553 + symbols:
554 + - # Get the value of the sensor. For temperature the value is in degrees Fahrenheit and for humidity the value is percent humidity.
555 + OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.5
556 + name: cpiPduSensorValue
557 + metric_tags:
558 + - tag: sensor_index
559 + symbol:
560 + OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.2
561 + name: cpiPduSensorId
562 + - tag: sensor_name
563 + symbol:
564 + OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.3
565 + name: cpiPduSensorName
566 + - # Get the type of sensor for the entry: temperature(1), humidity(2)
567 + tag: sensor_type
568 + symbol:
569 + OID: 1.3.6.1.4.1.30932.1.10.1.5.10.1.4
570 + name: cpiPduSensorType
571 +
572 + ### Line
573 +
574 + - # This table contains a list of PDU line entries that are being monitored by the PDU.
575 + MIB: CPI-UNITY-MIB
576 + table:
577 + OID: 1.3.6.1.4.1.30932.1.10.1.3.10
578 + name: cpiPduLineTable
579 + symbols:
580 + - # Get current draw in 1/100 amp of the line on the PDU. Convert the value by dividing by 100.
581 + OID: 1.3.6.1.4.1.30932.1.10.1.3.10.1.3
582 + name: cpiPduLineCurrent
583 + metric_tags:
584 + - # Get the ID of the input line on the PDU.
585 + tag: line_id
586 + symbol:
587 + OID: 1.3.6.1.4.1.30932.1.10.1.3.10.1.2
588 + name: cpiPduLineId
589 +
590 + ### Branch
591 +
592 + - # This table contains a list of PDU branch entries that are being monitored by the PDU.
593 + MIB: CPI-UNITY-MIB
594 + table:
595 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110
596 + name: cpiPduBranchTable
597 + symbols:
598 + - # Get the current draw in 1/100 amp of the branch on the PDU. Convert the value by dividing by 100.
599 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.3
600 + name: cpiPduBranchCurrent
601 + - # Get the maximum current draw in 1/100 amp of the branch on the PDU. Convert the value by dividing by 100.
602 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.4
603 + name: cpiPduBranchMaxCurrent
604 + - # Get the voltage in 1/10 volts of the branch on the PDU. Convert the value by dividing by 10.
605 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.5
606 + name: cpiPduBranchVoltage
607 + - # Get the power in volt-amps for the branch.
608 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.6
609 + name: cpiPduBranchPower
610 + - # Get the power factor for the branch.
611 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.7
612 + name: cpiPduBranchPowerFactor
613 + - # Get the alarm status of the branch: noalarm(0), warning(1), alarm(2)
614 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.8
615 + name: cpiPduBranchStatus
616 + metric_tags:
617 + - tag: branch_id
618 + symbol:
619 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.2
620 + name: cpiPduBranchId
621 + # Since MacAddress index might have 2 index format and length
622 + # we use 2 rules to match the pdu_name tag
623 + # more info here: https://github.com/DataDog/integrations-core/pull/7688
624 + - symbol:
625 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.3
626 + name: cpiPduName
627 + table: cpiPduTable
628 + index_transform:
629 + - start: 1
630 + end: 13
631 + tag: pdu_name
632 + - symbol:
633 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.3
634 + name: cpiPduName
635 + table: cpiPduTable
636 + index_transform:
637 + - start: 1
638 + end: 7
639 + tag: pdu_name
640 +
641 + - # Redefine the table to force the type on cpiPduBranchEnergy
642 + MIB: CPI-UNITY-MIB
643 + table:
644 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110
645 + name: cpiPduBranchTable
646 + metric_type: monotonic_count
647 + symbols:
648 + - # Get the branch energy accumulated in decaVA-secs, divide by 360 to obtain VA-hr.
649 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.9
650 + name: cpiPduBranchEnergy
651 + metric_tags:
652 + - tag: branch_id
653 + symbol:
654 + OID: 1.3.6.1.4.1.30932.1.10.1.3.110.1.2
655 + name: cpiPduBranchId
656 + # Since MacAddress index might have 2 index format and length
657 + # we use 2 rules to match the pdu_name tag
658 + # more info here: https://github.com/DataDog/integrations-core/pull/7688
659 + - symbol:
660 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.3
661 + name: cpiPduName
662 + table: cpiPduTable
663 + index_transform:
664 + - start: 1
665 + end: 13
666 + tag: pdu_name
667 + - symbol:
668 + OID: 1.3.6.1.4.1.30932.1.10.1.2.10.1.3
669 + name: cpiPduName
670 + table: cpiPduTable
671 + index_transform:
672 + - start: 1
673 + end: 7
674 + tag: pdu_name
675 +
676 + ### Outlet
677 +
678 + - # This table contains a list of PDU outlet entries that are being monitored by the PDU.
679 + MIB: CPI-UNITY-MIB
680 + table:
681 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10
682 + name: cpiPduOutletTable
683 + symbols:
684 + - # Get the current draw in 1/100 amp of the outlet on the PDU. Convert the value by dividing by 100.
685 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.6
686 + name: cpiPduOutletCurrent
687 + - # Get the voltage in 1/10 volts of the outlet on the PDU. Convert the value by dividing by 10.
688 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.7
689 + name: cpiPduOutletVoltage
690 + - # The power in Volt-Amps of the outlet on the PDU.
691 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.8
692 + name: cpiPduOutletPower
693 + - # Get the alarm status of the outlet: noalarm(0), warning(1), alarm(2)
694 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.9
695 + name: cpiPduOutletStatus
696 + metric_tags:
697 + - tag: outlet_id
698 + symbol:
699 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.2
700 + name: cpiPduOutletId
701 + - tag: outlet_name
702 + symbol:
703 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.4
704 + name: cpiPduOutletName
705 + - # Get the ID of the branch the outlet is associated with on the PDU.
706 + tag: outlet_branchid
707 + symbol:
708 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.3
709 + name: cpiPduOutletBranchId
710 +
711 + - # Redefine the table to force the type on cpiPduOutletEnergy
712 + MIB: CPI-UNITY-MIB
713 + table:
714 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10
715 + name: cpiPduOutletTable
716 + metric_type: monotonic_count
717 + symbols:
718 + - # Get the outlet energy accumulated in decaWatt-secs, divide by 360 to obtain Watt-hr.
719 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.10
720 + name: cpiPduOutletEnergy
721 + metric_tags:
722 + - tag: outlet_id
723 + symbol:
724 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.2
725 + name: cpiPduOutletId
726 + - tag: outlet_name
727 + symbol:
728 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.4
729 + name: cpiPduOutletName
730 + - # Get the ID of the branch the outlet is associated with on the PDU.
731 + tag: outlet_branchid
732 + symbol:
733 + OID: 1.3.6.1.4.1.30932.1.10.1.4.10.1.3
734 + name: cpiPduOutletBranchId
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/checkpoint-firewall.yaml new
+8
@@ -0,0 +1,8 @@
1 +# Profile for Checkpoint devices kept for backward compatibility
2 +# Check the profile chatsworth.yaml
3 +
4 +extends:
5 + - checkpoint.yaml
6 +
7 +device:
8 + vendor: "checkpoint"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/checkpoint.yaml new
+231
@@ -0,0 +1,231 @@
1 +# Profile for Checkpoint devices
2 +#
3 +# Example sysDescr:
4 +# - 1.3.6.1.4.1.2620.1.6.123.1.49 Linux host1 3.10.0-957.21.3cpx86_64 #1 SMP Tue Jan 28 17:26:12 IST 2020 x86_64
5 +# - 1.3.6.1.4.1.2620.1.6.123.1.56 Linux host2 2.6.18-92cpx86_64 #1 SMP Tue May 16 12:09:46 IDT 2017 x86_64"
6 +# - 1.3.6.1.4.1.2620.1.6.123.1.56 Linux host3 2.6.18-92cpx86_64 #1 SMP Tue May 16 12:09:46 IDT 2017 x86_64"
7 +
8 +extends:
9 + - _base.yaml
10 + - _generic-if.yaml
11 + - _generic-tcp.yaml
12 + - _generic-udp.yaml
13 + - _generic-ip.yaml
14 + - _checkpoint-firewall-cpu-memory.yaml
15 +
16 +device:
17 + vendor: "checkpoint"
18 +
19 +sysobjectid: 1.3.6.1.4.1.2620.1.*
20 +
21 +metadata:
22 + device:
23 + fields:
24 + vendor:
25 + value: "checkpoint"
26 + serial_number:
27 + symbol:
28 + MIB: CHECKPOINT-MIB
29 + OID: 1.3.6.1.4.1.2620.1.6.16.3.0
30 + name: svnApplianceSerialNumber # Appliance Serial Number
31 + # Example: 1711BA4008
32 + version:
33 + symbol:
34 + OID: 1.3.6.1.4.1.2620.1.6.4.1.0
35 + name: svnVersion # SVN version
36 + # Example: R80.10
37 + # Reference to R80.10 here https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&solutionid=sk111841
38 + product_name:
39 + symbol:
40 + OID: 1.3.6.1.4.1.2620.1.6.1.0
41 + name: svnProdName # Product name
42 + # Example: SVN Foundation
43 + model:
44 + symbol:
45 + OID: 1.3.6.1.4.1.2620.1.6.16.7.0
46 + name: svnApplianceProductName # Appliance Product Name
47 + # Example: Check Point 3200
48 + os_name:
49 + symbol:
50 + OID: 1.3.6.1.4.1.2620.1.6.5.1.0
51 + name: osName # OS name
52 + os_version:
53 + symbol:
54 + OID: 1.3.6.1.2.1.1.1.0
55 + name: sysDescr
56 + extract_value: 'Linux\s+\S+\s+(\d+(?:\.\d+)*)'
57 + # Example: `3.10.0` in `Linux host1 3.10.0-957.21.3cpx86_64`
58 + #
59 + # Note: The os version is also stored in two separate OIDs for major and minor. Example:
60 + # .1.3.6.1.4.1.2620.1.6.5.2.0 (osMajorVer) = 2
61 + # .1.3.6.1.4.1.2620.1.6.5.3.0 (osMinorVer) = 6
62 + # In this example, the OS Version is 2.6, at the moment it's not possible to add metadata based on 2 OIDs
63 + type:
64 + value: "firewall"
65 +
66 +
67 +metrics:
68 + # CPU
69 + - MIB: CHECKPOINT-MIB
70 + metric_tags:
71 + - symbol:
72 + OID: 1.3.6.1.4.1.2620.1.6.7.5.1.1
73 + name: multiProcIndex
74 + tag: cpu_core
75 + symbols:
76 + - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.2
77 + name: multiProcUserTime
78 + - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.3
79 + name: multiProcSystemTime
80 + - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.4
81 + name: multiProcIdleTime
82 + - OID: 1.3.6.1.4.1.2620.1.6.7.5.1.5
83 + name: multiProcUsage
84 + table:
85 + OID: 1.3.6.1.4.1.2620.1.6.7.5
86 + name: multiProcTable
87 + - MIB: CHECKPOINT-MIB
88 + symbol:
89 + OID: 1.3.6.1.4.1.2620.1.6.7.2.7.0
90 + name: procNum
91 + # Memory
92 + - MIB: CHECKPOINT-MIB
93 + metric_type: gauge
94 + symbol:
95 + OID: 1.3.6.1.4.1.2620.1.6.7.4.3.0
96 + name: memTotalReal64
97 + - MIB: CHECKPOINT-MIB
98 + metric_type: gauge
99 + symbol:
100 + OID: 1.3.6.1.4.1.2620.1.6.7.4.4.0
101 + name: memActiveReal64
102 + - MIB: CHECKPOINT-MIB
103 + metric_type: gauge
104 + symbol:
105 + OID: 1.3.6.1.4.1.2620.1.6.7.4.5.0
106 + name: memFreeReal64
107 + - MIB: CHECKPOINT-MIB
108 + metric_type: gauge
109 + symbol:
110 + OID: 1.3.6.1.4.1.2620.1.6.7.4.1.0
111 + name: memTotalVirtual64
112 + - MIB: CHECKPOINT-MIB
113 + metric_type: gauge
114 + symbol:
115 + OID: 1.3.6.1.4.1.2620.1.6.7.4.2.0
116 + name: memActiveVirtual64
117 + # Disk
118 + - MIB: CHECKPOINT-MIB
119 + metric_type: gauge
120 + metric_tags:
121 + - symbol:
122 + OID: 1.3.6.1.4.1.2620.1.6.7.6.1.1
123 + name: multiDiskIndex
124 + tag: disk_index
125 + - symbol:
126 + OID: 1.3.6.1.4.1.2620.1.6.7.6.1.2
127 + name: multiDiskName
128 + tag: disk_name
129 + symbols:
130 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.3
131 + name: multiDiskSize
132 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.4
133 + name: multiDiskUsed
134 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.5
135 + name: multiDiskFreeTotalBytes
136 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.7
137 + name: multiDiskFreeAvailableBytes
138 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.6
139 + name: multiDiskFreeTotalPercent
140 + - OID: 1.3.6.1.4.1.2620.1.6.7.6.1.8
141 + name: multiDiskFreeAvailablePercent
142 + table:
143 + OID: 1.3.6.1.4.1.2620.1.6.7.6
144 + name: multiDiskTable
145 + # Appliances
146 + - MIB: CHECKPOINT-MIB
147 + metric_tags:
148 + - symbol:
149 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.1
150 + name: fanSpeedSensorIndex
151 + tag: sensor_index
152 + - symbol:
153 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.2
154 + name: fanSpeedSensorName
155 + tag: sensor_name
156 + symbols:
157 + - OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.3
158 + name: fanSpeedSensorValue
159 + - OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.6
160 + name: fanSpeedSensorStatus
161 + table:
162 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2
163 + name: fanSpeedSensorTable
164 + - MIB: CHECKPOINT-MIB
165 + table:
166 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2
167 + name: fanSpeedSensorTable
168 + symbols:
169 + - name: fanSpeedSensor
170 + constant_value_one: true
171 + metric_tags:
172 + - symbol:
173 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.6
174 + name: fanSpeedSensorStatus
175 + tag: fan_speed_sensor_status
176 + # mapping from description:
177 + # Sensor is out of range TRUE(1), FALSE(0), READING ERROR(2)
178 + mapping:
179 + 0: false
180 + 1: true
181 + 2: reading_error
182 + - symbol:
183 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.1
184 + name: fanSpeedSensorIndex
185 + tag: sensor_index
186 + - symbol:
187 + OID: 1.3.6.1.4.1.2620.1.6.7.8.2.1.2
188 + name: fanSpeedSensorName
189 + tag: sensor_name
190 + - MIB: CHECKPOINT-MIB
191 + metric_tags:
192 + - symbol:
193 + OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.1
194 + name: tempertureSensorIndex
195 + tag: sensor_index
196 + - symbol:
197 + OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.2
198 + name: tempertureSensorName
199 + tag: sensor_name
200 + symbols:
201 + - OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.3
202 + name: tempertureSensorValue
203 + - OID: 1.3.6.1.4.1.2620.1.6.7.8.1.1.6
204 + name: tempertureSensorStatus
205 + table:
206 + OID: 1.3.6.1.4.1.2620.1.6.7.8.1
207 + name: tempertureSensorTable
208 + # Network
209 + - MIB: CHECKPOINT-MIB
210 + metric_type: monotonic_count
211 + symbol:
212 + OID: 1.3.6.1.4.1.2620.1.1.4.0
213 + name: fwAccepted
214 + - MIB: CHECKPOINT-MIB
215 + metric_type: monotonic_count
216 + symbol:
217 + OID: 1.3.6.1.4.1.2620.1.1.6.0
218 + name: fwDropped
219 + - MIB: CHECKPOINT-MIB
220 + metric_type: monotonic_count
221 + symbol:
222 + OID: 1.3.6.1.4.1.2620.1.1.5.0
223 + name: fwRejected
224 + - MIB: CHECKPOINT-MIB
225 + symbol:
226 + OID: 1.3.6.1.4.1.2620.1.1.25.3.0
227 + name: fwNumConn
228 + - MIB: CHECKPOINT-MIB
229 + symbol:
230 + OID: 1.3.6.1.4.1.2620.1.1.25.4.0
231 + name: fwPeakNumConn
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/chrysalis-luna-hsm.yaml new
+54
@@ -0,0 +1,54 @@
1 +extends:
2 + - chrysalis.yaml
3 + - _generic-tcp.yaml
4 + - _generic-ucd.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.12383.3.1.1
7 +metrics:
8 + - MIB: CHRYSALIS-UTSP-MIB
9 + symbol:
10 + OID: 1.3.6.1.4.1.12383.3.1.1.1.0
11 + name: hsmOperationRequests
12 + - MIB: CHRYSALIS-UTSP-MIB
13 + symbol:
14 + OID: 1.3.6.1.4.1.12383.3.1.1.2.0
15 + name: hsmOperationErrors
16 + - MIB: CHRYSALIS-UTSP-MIB
17 + symbol:
18 + OID: 1.3.6.1.4.1.12383.3.1.1.3.0
19 + name: hsmCriticalEvents
20 + - MIB: CHRYSALIS-UTSP-MIB
21 + symbol:
22 + OID: 1.3.6.1.4.1.12383.3.1.1.4.0
23 + name: hsmNonCriticalEvents
24 +# TODO: enum in scalar metric is not supported yet (keep this metric and this comment in profile until it's fixed)
25 +# - MIB: CHRYSALIS-UTSP-MIB
26 +# symbol:
27 +# OID: 1.3.6.1.4.1.12383.3.1.2.1.0
28 +# name: ntlsOperStatus
29 +# enum:
30 +# up: 1
31 +# down: 2
32 +# unknown: 3
33 + - MIB: CHRYSALIS-UTSP-MIB
34 + symbol:
35 + OID: 1.3.6.1.4.1.12383.3.1.2.2.0
36 + name: ntlsConnectedClients
37 + - MIB: CHRYSALIS-UTSP-MIB
38 + symbol:
39 + OID: 1.3.6.1.4.1.12383.3.1.2.3.0
40 + name: ntlsLinks
41 + - MIB: CHRYSALIS-UTSP-MIB
42 + symbol:
43 + OID: 1.3.6.1.4.1.12383.3.1.2.4.0
44 + name: ntlsSuccessfulClientConnections
45 + - MIB: CHRYSALIS-UTSP-MIB
46 + symbol:
47 + OID: 1.3.6.1.4.1.12383.3.1.2.5.0
48 + name: ntlsFailedClientConnections
49 +# TODO: sending tags for scalar metric is not supported yet (keep this metric and this)
50 +# - MIB: CHRYSALIS-UTSP-MIB
51 +# OID: 1.3.6.1.4.1.12383.3.1.2.6.0
52 +# symbol: ntlsCertExpireDay
53 +# tag: ntls_cert_expire_day
54 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/chrysalis.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "chrysalis"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-3850.yaml new
+26
@@ -0,0 +1,26 @@
1 +# Backward compatibility shim. Prefer the Cisco Catalyst profile directly
2 +# Profile for Cisco 3850 devices
3 +
4 +extends:
5 + - _base.yaml
6 + - _cisco-generic.yaml
7 + - _cisco-catalyst.yaml
8 +
9 +sysobjectid: 1.3.6.1.4.1.9.1.1745 # cat38xxstack
10 +
11 +device:
12 + vendor: "cisco"
13 +
14 +# Example sysDescr:
15 +# Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.06E RELEASE SOFTWARE (fc1) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2016 by Cisco Systems, Inc. Compiled Sat 17-Dec-
16 +
17 +metadata:
18 + device:
19 + fields:
20 + serial_number:
21 + symbol:
22 + MIB: OLD-CISCO-CHASSIS-MIB
23 + OID: 1.3.6.1.4.1.9.3.6.3.0
24 + name: chassisId
25 + type:
26 + value: "switch"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-access-point.yaml new
+57
@@ -0,0 +1,57 @@
1 +extends:
2 + - cisco.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.9.1.525 # Cisco AIR AP 1210
5 + - 1.3.6.1.4.1.9.1.618 # Cisco AIR AP 1130
6 + - 1.3.6.1.4.1.9.1.1660 # AIR-SAP1602E-C-K9
7 + - 1.3.6.1.4.1.9.1.2371 # Cisco Aironet 1830
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "access_point"
13 +metrics:
14 + - MIB: CISCO-DOT11-ASSOCIATION-MIB
15 + table:
16 + name: cDot11ActiveDevicesTable
17 + OID: 1.3.6.1.4.1.9.9.273.1.1.2
18 + symbols:
19 + - name: cDot11ActiveWirelessClients
20 + OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.1
21 + - name: cDot11ActiveBridges
22 + OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.2
23 + - name: cDot11ActiveRepeaters
24 + OID: 1.3.6.1.4.1.9.9.273.1.1.2.1.3
25 + metric_tags:
26 + - tag: if_name
27 + symbol:
28 + name: ifName
29 + OID: 1.3.6.1.2.1.31.1.1.1.1
30 + - MIB: CISCO-DOT11-ASSOCIATION-MIB
31 + table:
32 + name: cDot11AssociationStatsTable
33 + OID: 1.3.6.1.4.1.9.9.273.1.1.3
34 + symbols:
35 + - name: cDot11AssStatsAssociated
36 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.1
37 + metric_type: monotonic_count
38 + - name: cDot11AssStatsAuthenticated
39 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.2
40 + metric_type: monotonic_count
41 + - name: cDot11AssStatsRoamedIn
42 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.3
43 + metric_type: monotonic_count
44 + - name: cDot11AssStatsRoamedAway
45 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.4
46 + metric_type: monotonic_count
47 + - name: cDot11AssStatsDeauthenticated
48 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.5
49 + metric_type: monotonic_count
50 + - name: cDot11AssStatsDisassociated
51 + OID: 1.3.6.1.4.1.9.9.273.1.1.3.1.6
52 + metric_type: monotonic_count
53 + metric_tags:
54 + - tag: if_name
55 + symbol:
56 + name: ifName
57 + OID: 1.3.6.1.2.1.31.1.1.1.1
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-asa-5525.yaml new
+21
@@ -0,0 +1,21 @@
1 +# Profile for Cisco ASA 5525 devices
2 +# We need to keep cisco-asa-5525.yaml separated to keep backward compatibility,
3 +# moving ciscoASA5525 to cisco-asa.yaml will trigger duplicate sysObjectID error.
4 +#
5 +# Example sysDescr for device `1.3.6.1.4.1.9.1.1408`
6 +# "Cisco Adaptive Security Appliance Version 9.12(3)12"
7 +
8 +extends:
9 + - _base.yaml
10 + - _cisco-asa.yaml
11 +
12 +device:
13 + vendor: "cisco"
14 +
15 +sysobjectid: 1.3.6.1.4.1.9.1.1408 # ciscoASA5525
16 +
17 +metadata:
18 + device:
19 + fields:
20 + type:
21 + value: "firewall"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-asa.yaml new
+141
@@ -0,0 +1,141 @@
1 +# Profile for Cisco ASA devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _cisco-asa.yaml
6 +
7 +device:
8 + vendor: "cisco"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.9.1.669 # ciscoASA5510
12 + - 1.3.6.1.4.1.9.1.670 # ciscoASA5520
13 + - 1.3.6.1.4.1.9.1.671 # ciscoASA5520sc
14 + - 1.3.6.1.4.1.9.1.672 # ciscoASA5540
15 + - 1.3.6.1.4.1.9.1.673 # ciscoASA5540sc
16 + - 1.3.6.1.4.1.9.1.745 # ciscoASA5505
17 + - 1.3.6.1.4.1.9.1.753 # ciscoASA5550
18 + - 1.3.6.1.4.1.9.1.763 # ciscoASA5550sc
19 + - 1.3.6.1.4.1.9.1.764 # ciscoASA5520sy
20 + - 1.3.6.1.4.1.9.1.765 # ciscoASA5540sy
21 + - 1.3.6.1.4.1.9.1.766 # ciscoASA5550sy
22 + - 1.3.6.1.4.1.9.1.773 # ciscoASA5510sc
23 + - 1.3.6.1.4.1.9.1.774 # ciscoASA5510sy
24 + - 1.3.6.1.4.1.9.1.914 # ciscoASA5580
25 + - 1.3.6.1.4.1.9.1.915 # ciscoASA5580sc
26 + - 1.3.6.1.4.1.9.1.916 # ciscoASA5580sy
27 + - 1.3.6.1.4.1.9.1.1101 # ciscoASA5505W
28 + - 1.3.6.1.4.1.9.1.1194 # ciscoASA5585Ssp10
29 + - 1.3.6.1.4.1.9.1.1195 # ciscoASA5585Ssp20
30 + - 1.3.6.1.4.1.9.1.1196 # ciscoASA5585Ssp40
31 + - 1.3.6.1.4.1.9.1.1197 # ciscoASA5585Ssp60
32 + - 1.3.6.1.4.1.9.1.1198 # ciscoASA5585Ssp10sc
33 + - 1.3.6.1.4.1.9.1.1199 # ciscoASA5585Ssp20sc
34 + - 1.3.6.1.4.1.9.1.1200 # ciscoASA5585Ssp40sc
35 + - 1.3.6.1.4.1.9.1.1201 # ciscoASA5585Ssp60sc
36 + - 1.3.6.1.4.1.9.1.1202 # ciscoASA5585Ssp10sy
37 + - 1.3.6.1.4.1.9.1.1203 # ciscoASA5585Ssp20sy
38 + - 1.3.6.1.4.1.9.1.1204 # ciscoASA5585Ssp40sy
39 + - 1.3.6.1.4.1.9.1.1205 # ciscoASA5585Ssp60sy
40 + - 1.3.6.1.4.1.9.1.1232 # ciscoASA5585SspIps10
41 + - 1.3.6.1.4.1.9.1.1233 # ciscoASA5585SspIps20
42 + - 1.3.6.1.4.1.9.1.1234 # ciscoASA5585SspIps40
43 + - 1.3.6.1.4.1.9.1.1235 # ciscoASA5585SspIps60
44 + - 1.3.6.1.4.1.9.1.1275 # ciscoASASm1sc
45 + - 1.3.6.1.4.1.9.1.1276 # ciscoASASm1sy
46 + - 1.3.6.1.4.1.9.1.1277 # ciscoASASm1
47 + - 1.3.6.1.4.1.9.1.1302 # ciscoASA5585Ssp10K7
48 + - 1.3.6.1.4.1.9.1.1303 # ciscoASA5585Ssp20K7
49 + - 1.3.6.1.4.1.9.1.1304 # ciscoASA5585Ssp40K7
50 + - 1.3.6.1.4.1.9.1.1305 # ciscoASA5585Ssp60K7
51 + - 1.3.6.1.4.1.9.1.1306 # ciscoASA5585Ssp10K7sc
52 + - 1.3.6.1.4.1.9.1.1307 # ciscoASA5585Ssp20K7sc
53 + - 1.3.6.1.4.1.9.1.1308 # ciscoASA5585Ssp40K7sc
54 + - 1.3.6.1.4.1.9.1.1309 # ciscoASA5585Ssp60K7sc
55 + - 1.3.6.1.4.1.9.1.1310 # ciscoASA5585Ssp10K7sy
56 + - 1.3.6.1.4.1.9.1.1311 # ciscoASA5585Ssp20K7sy
57 + - 1.3.6.1.4.1.9.1.1312 # ciscoASA5585Ssp40K7sy
58 + - 1.3.6.1.4.1.9.1.1313 # ciscoASA5585Ssp60K7sy
59 + - 1.3.6.1.4.1.9.1.1323 # ciscoASA5585SspIps10K7
60 + - 1.3.6.1.4.1.9.1.1324 # ciscoASA5585SspIps20K7
61 + - 1.3.6.1.4.1.9.1.1325 # ciscoASA5585SspIps40K7
62 + - 1.3.6.1.4.1.9.1.1326 # ciscoASA5585SspIps60K7
63 + - 1.3.6.1.4.1.9.1.1334 # ciscoASASm1K7sc
64 + - 1.3.6.1.4.1.9.1.1335 # ciscoASASm1K7sy
65 + - 1.3.6.1.4.1.9.1.1336 # ciscoASASm1K7
66 + - 1.3.6.1.4.1.9.1.1407 # ciscoASA5512
67 + - 1.3.6.1.4.1.9.1.1409 # ciscoASA5545
68 + - 1.3.6.1.4.1.9.1.1410 # ciscoASA5555
69 + - 1.3.6.1.4.1.9.1.1411 # ciscoASA5512sc
70 + - 1.3.6.1.4.1.9.1.1412 # ciscoASA5525sc
71 + - 1.3.6.1.4.1.9.1.1413 # ciscoASA5545sc
72 + - 1.3.6.1.4.1.9.1.1414 # ciscoASA5555sc
73 + - 1.3.6.1.4.1.9.1.1415 # ciscoASA5512sy
74 + - 1.3.6.1.4.1.9.1.1416 # ciscoASA5515sy
75 + - 1.3.6.1.4.1.9.1.1417 # ciscoASA5525sy
76 + - 1.3.6.1.4.1.9.1.1418 # ciscoASA5545sy
77 + - 1.3.6.1.4.1.9.1.1419 # ciscoASA5555sy
78 + - 1.3.6.1.4.1.9.1.1420 # ciscoASA5515sc
79 + - 1.3.6.1.4.1.9.1.1421 # ciscoASA5515
80 + - 1.3.6.1.4.1.9.1.1437 # ciscoASA5585SspIps10Virtual
81 + - 1.3.6.1.4.1.9.1.1438 # ciscoASA5585SspIps20Virtual
82 + - 1.3.6.1.4.1.9.1.1439 # ciscoASA5585SspIps40Virtual
83 + - 1.3.6.1.4.1.9.1.1440 # ciscoASA5585SspIps60Virtual
84 + - 1.3.6.1.4.1.9.1.1442 # ciscoASA5512K7
85 + - 1.3.6.1.4.1.9.1.1443 # ciscoASA5515K7
86 + - 1.3.6.1.4.1.9.1.1444 # ciscoASA5525K7
87 + - 1.3.6.1.4.1.9.1.1445 # ciscoASA5545K7
88 + - 1.3.6.1.4.1.9.1.1446 # ciscoASA5555K7
89 + - 1.3.6.1.4.1.9.1.1447 # ciscoASA5512K7sc
90 + - 1.3.6.1.4.1.9.1.1448 # ciscoASA5515K7sc
91 + - 1.3.6.1.4.1.9.1.1449 # ciscoASA5525K7sc
92 + - 1.3.6.1.4.1.9.1.1450 # ciscoASA5545K7sc
93 + - 1.3.6.1.4.1.9.1.1451 # ciscoASA5555K7sc
94 + - 1.3.6.1.4.1.9.1.1452 # ciscoASA5512K7sy
95 + - 1.3.6.1.4.1.9.1.1453 # ciscoASA5515K7sy
96 + - 1.3.6.1.4.1.9.1.1454 # ciscoASA5525K7sy
97 + - 1.3.6.1.4.1.9.1.1455 # ciscoASA5545K7sy
98 + - 1.3.6.1.4.1.9.1.1456 # ciscoASA5555K7sy
99 + - 1.3.6.1.4.1.9.1.1610 # ciscoASA5585Nm20x1GE
100 + - 1.3.6.1.4.1.9.1.1612 # ciscoASA1000Vsy
101 + - 1.3.6.1.4.1.9.1.1613 # ciscoASA1000Vsc
102 + - 1.3.6.1.4.1.9.1.1614 # ciscoASA1000V
103 + - 1.3.6.1.4.1.9.1.1617 # ciscoASA5585Nm8x10GE
104 + - 1.3.6.1.4.1.9.1.1618 # ciscoASA5585Nm4x10GE
105 + - 1.3.6.1.4.1.9.1.2114 # ciscoASA5506
106 + - 1.3.6.1.4.1.9.1.2115 # ciscoASA5506sc
107 + - 1.3.6.1.4.1.9.1.2116 # ciscoASA5506sy
108 + - 1.3.6.1.4.1.9.1.2117 # ciscoASA5506W
109 + - 1.3.6.1.4.1.9.1.2118 # ciscoASA5506Wsc
110 + - 1.3.6.1.4.1.9.1.2119 # ciscoASA5506Wsy
111 + - 1.3.6.1.4.1.9.1.2120 # ciscoASA5508
112 + - 1.3.6.1.4.1.9.1.2121 # ciscoASA5508sc
113 + - 1.3.6.1.4.1.9.1.2122 # ciscoASA5508sy
114 + - 1.3.6.1.4.1.9.1.2123 # ciscoASA5506K7
115 + - 1.3.6.1.4.1.9.1.2124 # ciscoASA5506K7sc
116 + - 1.3.6.1.4.1.9.1.2125 # ciscoASA5506K7sy
117 + - 1.3.6.1.4.1.9.1.2126 # ciscoASA5508K7
118 + - 1.3.6.1.4.1.9.1.2127 # ciscoASA5508K7sc
119 + - 1.3.6.1.4.1.9.1.2128 # ciscoASA5508K7sy
120 + - 1.3.6.1.4.1.9.1.2241 # ciscoASA5506H
121 + - 1.3.6.1.4.1.9.1.2242 # ciscoASA5516
122 + - 1.3.6.1.4.1.9.1.2243 # ciscoASA5506Hsc
123 + - 1.3.6.1.4.1.9.1.2244 # ciscoASA5516sc
124 + - 1.3.6.1.4.1.9.1.2245 # ciscoASA5506Hsy
125 + - 1.3.6.1.4.1.9.1.2246 # ciscoASA5516sy
126 + - 1.3.6.1.4.1.9.1.2297 # ciscoASA5512td
127 + - 1.3.6.1.4.1.9.1.2298 # ciscoASA5515td
128 + - 1.3.6.1.4.1.9.1.2299 # ciscoASA5525td
129 + - 1.3.6.1.4.1.9.1.2300 # ciscoASA5545td
130 + - 1.3.6.1.4.1.9.1.2301 # ciscoASA5555td
131 + - 1.3.6.1.4.1.9.1.2302 # ciscoASA5506td
132 + - 1.3.6.1.4.1.9.1.2303 # ciscoASA5506Wtd
133 + - 1.3.6.1.4.1.9.1.2304 # ciscoASA5506Htd
134 + - 1.3.6.1.4.1.9.1.2305 # ciscoASA5508td
135 + - 1.3.6.1.4.1.9.1.2306 # ciscoASA5516td
136 +
137 +metadata:
138 + device:
139 + fields:
140 + type:
141 + value: "firewall"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-asr.yaml new
+92
@@ -0,0 +1,92 @@
1 +# Profile for Cisco ASR devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _cisco-generic.yaml
6 +
7 +device:
8 + vendor: "cisco"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.9.1.403 # ciscoASR7401
12 + - 1.3.6.1.4.1.9.1.923 # ciscoASR1002
13 + - 1.3.6.1.4.1.9.1.924 # ciscoASR1004
14 + - 1.3.6.1.4.1.9.1.925 # ciscoASR1006
15 + - 1.3.6.1.4.1.9.1.1017 # ciscoASR9010
16 + - 1.3.6.1.4.1.9.1.1018 # ciscoASR9006
17 + - 1.3.6.1.4.1.9.1.1036 # ciscoASR14K4S
18 + - 1.3.6.1.4.1.9.1.1037 # ciscoASR14K8S
19 + - 1.3.6.1.4.1.9.1.1116 # ciscoASR1002F
20 + - 1.3.6.1.4.1.9.1.1165 # ciscoASR1001
21 + - 1.3.6.1.4.1.9.1.1166 # ciscoASR1013
22 + - 1.3.6.1.4.1.9.1.1441 # ciscoASR903
23 + - 1.3.6.1.4.1.9.1.1457 # ciscoASR5500
24 + - 1.3.6.1.4.1.9.1.1498 # ciscoASR9KMOD80SE
25 + - 1.3.6.1.4.1.9.1.1499 # ciscoASR9KMOD80TR
26 + - 1.3.6.1.4.1.9.1.1500 # ciscoASR9KMOD160SE
27 + - 1.3.6.1.4.1.9.1.1501 # ciscoASR9KMOD160TR
28 + - 1.3.6.1.4.1.9.1.1502 # ciscoASR9KMPA2X10GE
29 + - 1.3.6.1.4.1.9.1.1503 # ciscoASR9KMPA4X10GE
30 + - 1.3.6.1.4.1.9.1.1504 # ciscoASR9KMPA20X1GE
31 + - 1.3.6.1.4.1.9.1.1505 # ciscoASR9KMPA1X40GE
32 + - 1.3.6.1.4.1.9.1.1506 # ciscoASR9KMPA2X40GE
33 + - 1.3.6.1.4.1.9.1.1521 # ciscoASR901
34 + - 1.3.6.1.4.1.9.1.1522 # ciscoASR901E
35 + - 1.3.6.1.4.1.9.1.1525 # ciscoASR1002X
36 + - 1.3.6.1.4.1.9.1.1538 # ciscoASR5000
37 + - 1.3.6.1.4.1.9.1.1639 # ciscoASR9001
38 + - 1.3.6.1.4.1.9.1.1640 # ciscoASR9922
39 + - 1.3.6.1.4.1.9.1.1688 # ciscoASR1002XC
40 + - 1.3.6.1.4.1.9.1.1709 # ciscoASR9912
41 + - 1.3.6.1.4.1.9.1.1724 # ciscoASR901TenGigDCE
42 + - 1.3.6.1.4.1.9.1.1725 # ciscoASR901TenGigACE
43 + - 1.3.6.1.4.1.9.1.1726 # ciscoASR901TenGigDC
44 + - 1.3.6.1.4.1.9.1.1727 # ciscoASR901TenGigAC
45 + - 1.3.6.1.4.1.9.1.1762 # ciscoASR9904
46 + - 1.3.6.1.4.1.9.1.1818 # ciscoASR901S4SGFD
47 + - 1.3.6.1.4.1.9.1.1819 # ciscoASR901S3SGFD
48 + - 1.3.6.1.4.1.9.1.1820 # ciscoASR901S2SGFD
49 + - 1.3.6.1.4.1.9.1.1821 # ciscoASR901S3SGFAH
50 + - 1.3.6.1.4.1.9.1.1822 # ciscoASR901S2SGFAH
51 + - 1.3.6.1.4.1.9.1.1861 # ciscoASR1001X
52 + - 1.3.6.1.4.1.9.1.1897 # ciscoASR902
53 + - 1.3.6.1.4.1.9.1.2098 # ciscoASR901AC10GS
54 + - 1.3.6.1.4.1.9.1.2099 # ciscoASR901DC10GS
55 + - 1.3.6.1.4.1.9.1.2100 # ciscoASR92024SZIM
56 + - 1.3.6.1.4.1.9.1.2101 # ciscoASR92024TZM
57 + - 1.3.6.1.4.1.9.1.2102 # ciscoASR92024SZM
58 + - 1.3.6.1.4.1.9.1.2143 # ciscoASR1006X
59 + - 1.3.6.1.4.1.9.1.2144 # ciscoASR1009X
60 + - 1.3.6.1.4.1.9.1.2155 # ciscoASR9204SZD
61 + - 1.3.6.1.4.1.9.1.2156 # ciscoASR9208SZ0A
62 + - 1.3.6.1.4.1.9.1.2157 # ciscoASR92012CZA
63 + - 1.3.6.1.4.1.9.1.2158 # ciscoASR92012CZD
64 + - 1.3.6.1.4.1.9.1.2159 # ciscoASR9204SZA
65 + - 1.3.6.1.4.1.9.1.2160 # ciscoASR92010SZ0D
66 + - 1.3.6.1.4.1.9.1.2247 # ciscoASR92016SZIM
67 + - 1.3.6.1.4.1.9.1.2252 # ciscoASR1002HX
68 + - 1.3.6.1.4.1.9.1.2320 # ciscoASR901CC
69 + - 1.3.6.1.4.1.9.1.2321 # ciscoASR901ECC
70 + - 1.3.6.1.4.1.9.1.2322 # ciscoASR901DC10GCC
71 + - 1.3.6.1.4.1.9.1.2323 # ciscoASR901EDC10GCC
72 + - 1.3.6.1.4.1.9.1.2324 # ciscoASR901DC0GSCC
73 + - 1.3.6.1.4.1.9.1.2325 # ciscoASR92012SZIMCC
74 + - 1.3.6.1.4.1.9.1.2348 # ciscoASR1001HX
75 + - 1.3.6.1.4.1.9.1.2390 # ciscoASR9910
76 + - 1.3.6.1.4.1.9.1.2480 # ciscoASR914
77 + - 1.3.6.1.4.1.9.1.2502 # ciscoASR903U
78 + - 1.3.6.1.4.1.9.1.2503 # ciscoASR902U
79 + - 1.3.6.1.4.1.9.1.2504 # ciscoASR920U16SZIM
80 + - 1.3.6.1.4.1.9.1.2572 # ciscoASR9906
81 + - 1.3.6.1.4.1.9.1.2658 # ciscoASR9901
82 + - 1.3.6.1.4.1.9.1.2678 # ciscoASR92012SZD
83 + - 1.3.6.1.4.1.9.1.2679 # ciscoASR92012SZA
84 + - 1.3.6.1.4.1.9.1.2705 # ciscoASR92020SZM
85 + - 1.3.6.1.4.1.9.1.3075 # ciscoASR9903
86 + - 1.3.6.1.4.1.9.1.3090 # ciscoASR9902
87 +
88 +metadata:
89 + device:
90 + fields:
91 + type:
92 + value: "router"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-catalyst-wlc.yaml new
+28
@@ -0,0 +1,28 @@
1 +# Profile for Cisco catalyst WLC
2 +# This profile is only compatible with the core SNMP integration
3 +
4 +extends:
5 + - _base.yaml
6 + - _cisco-generic.yaml
7 + - _cisco-catalyst.yaml
8 + - _cisco-wlc.yaml
9 +
10 +device:
11 + vendor: "cisco"
12 +
13 +sysobjectid:
14 + - 1.3.6.1.4.1.9.1.2025 # cisco5700WLC
15 + - 1.3.6.1.4.1.9.1.2067 # cisco5760WLC
16 + - 1.3.6.1.4.1.9.1.2391 # ciscoC9800CLK9
17 + - 1.3.6.1.4.1.9.1.2530 # ciscoC980040K9
18 + - 1.3.6.1.4.1.9.1.2531 # ciscoAIRCT9880K9
19 + - 1.3.6.1.4.1.9.1.2669 # ciscoC980080K9
20 + - 1.3.6.1.4.1.9.1.2825 # ciscoCMeWlc
21 + - 1.3.6.1.4.1.9.1.2860 # ciscoC9800LCK9
22 + - 1.3.6.1.4.1.9.1.2861 # ciscoC9800LFK9
23 +
24 +metadata:
25 + device:
26 + fields:
27 + type:
28 + value: "WLC"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-catalyst.yaml new
+465
@@ -0,0 +1,465 @@
1 +# Profile for Cisco Catalyst devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _cisco-generic.yaml
6 + - _cisco-catalyst.yaml
7 +
8 +device:
9 + vendor: "cisco"
10 +
11 +metadata:
12 + device:
13 + fields:
14 + type:
15 + value: "switch"
16 +
17 +sysobjectid:
18 + - 1.3.6.1.4.1.9.1.111 # ciscoCatalyst3500
19 + - 1.3.6.1.4.1.9.1.150 # catalyst116T
20 + - 1.3.6.1.4.1.9.1.151 # catalyst116C
21 + - 1.3.6.1.4.1.9.1.152 # catalyst1116
22 + - 1.3.6.1.4.1.9.1.170 # catalyst2908xl
23 + - 1.3.6.1.4.1.9.1.171 # catalyst2916mxl
24 + - 1.3.6.1.4.1.9.1.175 # catalyst1912C
25 + - 1.3.6.1.4.1.9.1.183 # catalyst2924XL
26 + - 1.3.6.1.4.1.9.1.184 # catalyst2924CXL
27 + - 1.3.6.1.4.1.9.1.190 # cisco8510
28 + - 1.3.6.1.4.1.9.1.196 # cisco8515
29 + - 1.3.6.1.4.1.9.1.197 # catalyst9006
30 + - 1.3.6.1.4.1.9.1.198 # catalyst9009
31 + - 1.3.6.1.4.1.9.1.202 # catalyst8540msr
32 + - 1.3.6.1.4.1.9.1.203 # catalyst8540csr
33 + - 1.3.6.1.4.1.9.1.217 # catalyst2924XLv
34 + - 1.3.6.1.4.1.9.1.218 # catalyst2924CXLv
35 + - 1.3.6.1.4.1.9.1.219 # catalyst2912XL
36 + - 1.3.6.1.4.1.9.1.220 # catalyst2924MXL
37 + - 1.3.6.1.4.1.9.1.221 # catalyst2912MfXL
38 + - 1.3.6.1.4.1.9.1.230 # catalyst8510msr
39 + - 1.3.6.1.4.1.9.1.231 # catalyst8515msr
40 + - 1.3.6.1.4.1.9.1.241 # ciscoCat6000
41 + - 1.3.6.1.4.1.9.1.246 # catalyst3508GXL
42 + - 1.3.6.1.4.1.9.1.247 # catalyst3512XL
43 + - 1.3.6.1.4.1.9.1.248 # catalyst3524XL
44 + - 1.3.6.1.4.1.9.1.256 # ciscoWSX6302Msm
45 + - 1.3.6.1.4.1.9.1.257 # catalyst5kRsfc
46 + - 1.3.6.1.4.1.9.1.258 # catalyst6kMsfc
47 + - 1.3.6.1.4.1.9.1.275 # cat2948gL3
48 + - 1.3.6.1.4.1.9.1.278 # cat3548XL
49 + - 1.3.6.1.4.1.9.1.280 # cat6006
50 + - 1.3.6.1.4.1.9.1.281 # cat6009
51 + - 1.3.6.1.4.1.9.1.282 # cat6506
52 + - 1.3.6.1.4.1.9.1.283 # cat6509
53 + - 1.3.6.1.4.1.9.1.287 # cat3524tXLEn
54 + - 1.3.6.1.4.1.9.1.298 # cat4908gL3
55 + - 1.3.6.1.4.1.9.1.300 # cat4232L3
56 + - 1.3.6.1.4.1.9.1.301 # catalyst6kMsfc2
57 + - 1.3.6.1.4.1.9.1.310 # cat6509Sp
58 + - 1.3.6.1.4.1.9.1.312 # cat4840gL3
59 + - 1.3.6.1.4.1.9.1.318 # catalyst4kGateway
60 + - 1.3.6.1.4.1.9.1.323 # catalyst295012
61 + - 1.3.6.1.4.1.9.1.324 # catalyst295024
62 + - 1.3.6.1.4.1.9.1.325 # catalyst295024C
63 + - 1.3.6.1.4.1.9.1.359 # catalyst2950t24
64 + - 1.3.6.1.4.1.9.1.366 # catalyst355024
65 + - 1.3.6.1.4.1.9.1.367 # catalyst355048
66 + - 1.3.6.1.4.1.9.1.368 # catalyst355012T
67 + - 1.3.6.1.4.1.9.1.369 # catalyst2924LREXL
68 + - 1.3.6.1.4.1.9.1.370 # catalyst2912LREXL
69 + - 1.3.6.1.4.1.9.1.386 # cat2948gL3Dc
70 + - 1.3.6.1.4.1.9.1.387 # cat4908gL3Dc
71 + - 1.3.6.1.4.1.9.1.400 # ciscoWSC6513
72 + - 1.3.6.1.4.1.9.1.427 # catalyst295012G
73 + - 1.3.6.1.4.1.9.1.428 # catalyst295024G
74 + - 1.3.6.1.4.1.9.1.429 # catalyst295048G
75 + - 1.3.6.1.4.1.9.1.430 # catalyst295024S
76 + - 1.3.6.1.4.1.9.1.431 # catalyst355012G
77 + - 1.3.6.1.4.1.9.1.445 # cat4000Sup3
78 + - 1.3.6.1.4.1.9.1.448 # cat4006
79 + - 1.3.6.1.4.1.9.1.449 # ciscoWSC6503
80 + - 1.3.6.1.4.1.9.1.452 # cat355024Dc
81 + - 1.3.6.1.4.1.9.1.453 # cat355024Mmf
82 + - 1.3.6.1.4.1.9.1.472 # catalyst295024GDC
83 + - 1.3.6.1.4.1.9.1.480 # catalyst295024SX
84 + - 1.3.6.1.4.1.9.1.482 # catalyst295024LRESt
85 + - 1.3.6.1.4.1.9.1.483 # catalyst29508LRESt
86 + - 1.3.6.1.4.1.9.1.484 # catalyst295024LREG
87 + - 1.3.6.1.4.1.9.1.485 # catalyst355024PWR
88 + - 1.3.6.1.4.1.9.1.488 # catalyst2955T12
89 + - 1.3.6.1.4.1.9.1.489 # catalyst2955C12
90 + - 1.3.6.1.4.1.9.1.501 # cat4507
91 + - 1.3.6.1.4.1.9.1.502 # cat4506
92 + - 1.3.6.1.4.1.9.1.503 # cat4503
93 + - 1.3.6.1.4.1.9.1.508 # catalyst2955S12
94 + - 1.3.6.1.4.1.9.1.510 # ciscoWSC65509
95 + - 1.3.6.1.4.1.9.1.511 # catalyst375024
96 + - 1.3.6.1.4.1.9.1.512 # catalyst375048
97 + - 1.3.6.1.4.1.9.1.513 # catalyst375024TS
98 + - 1.3.6.1.4.1.9.1.514 # catalyst375024T
99 + - 1.3.6.1.4.1.9.1.516 # catalyst37xxStack
100 + - 1.3.6.1.4.1.9.1.522 # cat6500FirewallSm
101 + - 1.3.6.1.4.1.9.1.527 # catalyst297024
102 + - 1.3.6.1.4.1.9.1.530 # catalyst3750Ge12Sfp
103 + - 1.3.6.1.4.1.9.1.534 # ciscoWSC6509neba
104 + - 1.3.6.1.4.1.9.1.535 # catalyst375048PS
105 + - 1.3.6.1.4.1.9.1.536 # catalyst375024PS
106 + - 1.3.6.1.4.1.9.1.537 # catalyst4510
107 + - 1.3.6.1.4.1.9.1.540 # catalyst29408TT
108 + - 1.3.6.1.4.1.9.1.542 # catalyst29408TF
109 + - 1.3.6.1.4.1.9.1.551 # catalyst2950St24LRE997
110 + - 1.3.6.1.4.1.9.1.554 # cat6500SslSm
111 + - 1.3.6.1.4.1.9.1.557 # catalyst6kSup720
112 + - 1.3.6.1.4.1.9.1.559 # catalyst295048T
113 + - 1.3.6.1.4.1.9.1.560 # catalyst295048SX
114 + - 1.3.6.1.4.1.9.1.561 # catalyst297024TS
115 + - 1.3.6.1.4.1.9.1.563 # catalyst356024PS
116 + - 1.3.6.1.4.1.9.1.564 # catalyst356048PS
117 + - 1.3.6.1.4.1.9.1.573 # catalyst6kGateway
118 + - 1.3.6.1.4.1.9.1.574 # catalyst375024ME
119 + - 1.3.6.1.4.1.9.1.575 # catalyst4000NAM
120 + - 1.3.6.1.4.1.9.1.591 # catalyst3750G16TD
121 + - 1.3.6.1.4.1.9.1.602 # catalyst3750G24PS
122 + - 1.3.6.1.4.1.9.1.603 # catalyst3750G48PS
123 + - 1.3.6.1.4.1.9.1.604 # catalyst3750G48TS
124 + - 1.3.6.1.4.1.9.1.614 # catalyst3560G24PS
125 + - 1.3.6.1.4.1.9.1.615 # catalyst3560G24TS
126 + - 1.3.6.1.4.1.9.1.616 # catalyst3560G48PS
127 + - 1.3.6.1.4.1.9.1.617 # catalyst3560G48TS
128 + - 1.3.6.1.4.1.9.1.624 # catalyst3750G24TS1U
129 + - 1.3.6.1.4.1.9.1.626 # catalyst4948
130 + - 1.3.6.1.4.1.9.1.633 # catalyst356024TS
131 + - 1.3.6.1.4.1.9.1.634 # catalyst356048TS
132 + - 1.3.6.1.4.1.9.1.656 # catalyst375024FS
133 + - 1.3.6.1.4.1.9.1.657 # ciscoWSC6504E
134 + - 1.3.6.1.4.1.9.1.659 # catalyst494810GE
135 + - 1.3.6.1.4.1.9.1.674 # ciscoWsSvcFwm1sc
136 + - 1.3.6.1.4.1.9.1.688 # catalyst3750Ge12SfpDc
137 + - 1.3.6.1.4.1.9.1.694 # catalyst296024
138 + - 1.3.6.1.4.1.9.1.695 # catalyst296048
139 + - 1.3.6.1.4.1.9.1.696 # catalyst2960G24
140 + - 1.3.6.1.4.1.9.1.697 # catalyst2960G48
141 + - 1.3.6.1.4.1.9.1.698 # catalyst45503
142 + - 1.3.6.1.4.1.9.1.699 # catalyst45506
143 + - 1.3.6.1.4.1.9.1.700 # catalyst45507
144 + - 1.3.6.1.4.1.9.1.701 # catalyst455010
145 + - 1.3.6.1.4.1.9.1.706 # catalyst6kMsfc2a
146 + - 1.3.6.1.4.1.9.1.716 # catalyst296024TT
147 + - 1.3.6.1.4.1.9.1.717 # catalyst296048TT
148 + - 1.3.6.1.4.1.9.1.724 # catalystsExpress50024TT
149 + - 1.3.6.1.4.1.9.1.725 # catalystsExpress50024LC
150 + - 1.3.6.1.4.1.9.1.726 # catalystsExpress50024PC
151 + - 1.3.6.1.4.1.9.1.727 # catalystsExpress50012TC
152 + - 1.3.6.1.4.1.9.1.748 # ciscoWs3020Hpq
153 + - 1.3.6.1.4.1.9.1.749 # ciscoWs3030Del
154 + - 1.3.6.1.4.1.9.1.751 # catalyst6kEnhancedGateway
155 + - 1.3.6.1.4.1.9.1.755 # ciscoNMAONWS
156 + - 1.3.6.1.4.1.9.1.767 # ciscoWsSvcFwm1sy
157 + - 1.3.6.1.4.1.9.1.778 # catalyst3750G24WS25
158 + - 1.3.6.1.4.1.9.1.779 # catalyst3750G24WS50
159 + - 1.3.6.1.4.1.9.1.784 # catalystWsCBS3040FSC
160 + - 1.3.6.1.4.1.9.1.789 # catalyst3750E24TD
161 + - 1.3.6.1.4.1.9.1.790 # catalyst3750E48TD
162 + - 1.3.6.1.4.1.9.1.791 # catalyst3750E48PD
163 + - 1.3.6.1.4.1.9.1.792 # catalyst3750E24PD
164 + - 1.3.6.1.4.1.9.1.793 # catalyst3560E24TD
165 + - 1.3.6.1.4.1.9.1.794 # catalyst3560E48TD
166 + - 1.3.6.1.4.1.9.1.795 # catalyst3560E24PD
167 + - 1.3.6.1.4.1.9.1.796 # catalyst3560E48PD
168 + - 1.3.6.1.4.1.9.1.797 # catalyst35608PC
169 + - 1.3.6.1.4.1.9.1.798 # catalyst29608TC
170 + - 1.3.6.1.4.1.9.1.799 # catalyst2960G8TC
171 + - 1.3.6.1.4.1.9.1.832 # ciscoWSC6509ve
172 + - 1.3.6.1.4.1.9.1.868 # ciscoUC500
173 + - 1.3.6.1.4.1.9.1.874 # catalyst4503e
174 + - 1.3.6.1.4.1.9.1.875 # catalyst4506e
175 + - 1.3.6.1.4.1.9.1.876 # catalyst4507re
176 + - 1.3.6.1.4.1.9.1.877 # catalyst4510re
177 + - 1.3.6.1.4.1.9.1.896 # catalyst65xxVirtualSwitch
178 + - 1.3.6.1.4.1.9.1.897 # catalystExpress5208PC
179 + - 1.3.6.1.4.1.9.1.909 # ciscoWsCbs3110gS
180 + - 1.3.6.1.4.1.9.1.910 # ciscoWsCbs3110gSt
181 + - 1.3.6.1.4.1.9.1.911 # ciscoWsCbs3110xS
182 + - 1.3.6.1.4.1.9.1.912 # ciscoWsCbs3110xSt
183 + - 1.3.6.1.4.1.9.1.917 # cat4900M
184 + - 1.3.6.1.4.1.9.1.918 # catWsCbs3120gS
185 + - 1.3.6.1.4.1.9.1.919 # catWsCbs3120xS
186 + - 1.3.6.1.4.1.9.1.920 # catWsCbs3032Del
187 + - 1.3.6.1.4.1.9.1.921 # catWsCbs3130gS
188 + - 1.3.6.1.4.1.9.1.922 # catWsCbs3130xS
189 + - 1.3.6.1.4.1.9.1.927 # cat296048TCS
190 + - 1.3.6.1.4.1.9.1.928 # cat296024TCS
191 + - 1.3.6.1.4.1.9.1.929 # cat296024S
192 + - 1.3.6.1.4.1.9.1.930 # cat3560e12d
193 + - 1.3.6.1.4.1.9.1.932 # catExpress52024TT
194 + - 1.3.6.1.4.1.9.1.933 # catExpress52024LC
195 + - 1.3.6.1.4.1.9.1.934 # catExpress52024PC
196 + - 1.3.6.1.4.1.9.1.935 # catExpress520G24TC
197 + - 1.3.6.1.4.1.9.1.946 # ciscoCBS3100
198 + - 1.3.6.1.4.1.9.1.947 # ciscoCBS3110
199 + - 1.3.6.1.4.1.9.1.948 # ciscoCBS3120
200 + - 1.3.6.1.4.1.9.1.949 # ciscoCBS3130
201 + - 1.3.6.1.4.1.9.1.950 # catalyst296024PC
202 + - 1.3.6.1.4.1.9.1.951 # catalyst296024LT
203 + - 1.3.6.1.4.1.9.1.952 # catalyst2960PD8TT
204 + - 1.3.6.1.4.1.9.1.956 # catalyst3560E12SD
205 + - 1.3.6.1.4.1.9.1.965 # catalyst291824TT
206 + - 1.3.6.1.4.1.9.1.966 # catalyst291824TC
207 + - 1.3.6.1.4.1.9.1.967 # catalyst291848TT
208 + - 1.3.6.1.4.1.9.1.968 # catalyst291848TC
209 + - 1.3.6.1.4.1.9.1.999 # ciscoWsCbs3012Ibm
210 + - 1.3.6.1.4.1.9.1.1000 # ciscoWsCbs3012IbmI
211 + - 1.3.6.1.4.1.9.1.1001 # ciscoWsCbs3125gS
212 + - 1.3.6.1.4.1.9.1.1002 # ciscoWsCbs3125xS
213 + - 1.3.6.1.4.1.9.1.1004 # catalyst492810GE
214 + - 1.3.6.1.4.1.9.1.1005 # catalyst296048TTS
215 + - 1.3.6.1.4.1.9.1.1006 # catalyst29608TCS
216 + - 1.3.6.1.4.1.9.1.1015 # catalyst356012PCS
217 + - 1.3.6.1.4.1.9.1.1016 # catalyst296048PSTL
218 + - 1.3.6.1.4.1.9.1.1019 # catalyst3560v224tsD
219 + - 1.3.6.1.4.1.9.1.1020 # catalyst3560v224ts
220 + - 1.3.6.1.4.1.9.1.1021 # catalyst3560v224ps
221 + - 1.3.6.1.4.1.9.1.1022 # catalyst3750v224ts
222 + - 1.3.6.1.4.1.9.1.1023 # catalyst3750v224ps
223 + - 1.3.6.1.4.1.9.1.1024 # catalyst3560v248ts
224 + - 1.3.6.1.4.1.9.1.1025 # catalyst3560v248ps
225 + - 1.3.6.1.4.1.9.1.1026 # catalyst3750v248ts
226 + - 1.3.6.1.4.1.9.1.1027 # catalyst3750v248ps
227 + - 1.3.6.1.4.1.9.1.1067 # catalystWSC2975GS48PSL
228 + - 1.3.6.1.4.1.9.1.1068 # catalystC2975Stack
229 + - 1.3.6.1.4.1.9.1.1087 # catalystWSCBS3140XS
230 + - 1.3.6.1.4.1.9.1.1088 # catalystWSCBS3140GS
231 + - 1.3.6.1.4.1.9.1.1089 # catalystWSCBS3042FSC
232 + - 1.3.6.1.4.1.9.1.1090 # catalystWSCBS3150XS
233 + - 1.3.6.1.4.1.9.1.1091 # catalystWSCBS3150GS
234 + - 1.3.6.1.4.1.9.1.1092 # catalystWSCBS3052NEC
235 + - 1.3.6.1.4.1.9.1.1104 # catalystWSC235048TD
236 + - 1.3.6.1.4.1.9.1.1146 # catalyst296024LCS
237 + - 1.3.6.1.4.1.9.1.1147 # catalyst296024PCS
238 + - 1.3.6.1.4.1.9.1.1148 # catalyst296048PSTS
239 + - 1.3.6.1.4.1.9.1.1178 # catalyst4948e10GE
240 + - 1.3.6.1.4.1.9.1.1179 # cat2960x48tsS
241 + - 1.3.6.1.4.1.9.1.1180 # cat2960x24tsS
242 + - 1.3.6.1.4.1.9.1.1181 # cat2960xs48fpdL
243 + - 1.3.6.1.4.1.9.1.1182 # cat2960xs48lpdL
244 + - 1.3.6.1.4.1.9.1.1183 # cat2960xs48ltdL
245 + - 1.3.6.1.4.1.9.1.1184 # cat2960xs24pdL
246 + - 1.3.6.1.4.1.9.1.1185 # cat2960xs24tdL
247 + - 1.3.6.1.4.1.9.1.1186 # cat2960xs48fpsL
248 + - 1.3.6.1.4.1.9.1.1187 # cat2960xs48lpsL
249 + - 1.3.6.1.4.1.9.1.1188 # cat2960xs24psL
250 + - 1.3.6.1.4.1.9.1.1189 # cat2960xs48tsL
251 + - 1.3.6.1.4.1.9.1.1190 # cat2960xs24tsL
252 + - 1.3.6.1.4.1.9.1.1208 # cat29xxStack
253 + - 1.3.6.1.4.1.9.1.1222 # cat3750x24
254 + - 1.3.6.1.4.1.9.1.1223 # cat3750x48
255 + - 1.3.6.1.4.1.9.1.1224 # cat3750x24P
256 + - 1.3.6.1.4.1.9.1.1225 # cat3750x48P
257 + - 1.3.6.1.4.1.9.1.1226 # cat3560x24
258 + - 1.3.6.1.4.1.9.1.1227 # cat3560x48
259 + - 1.3.6.1.4.1.9.1.1228 # cat3560x24P
260 + - 1.3.6.1.4.1.9.1.1229 # cat3560x48P
261 + - 1.3.6.1.4.1.9.1.1256 # catWsC2960s48tsS
262 + - 1.3.6.1.4.1.9.1.1257 # catWsC2960s24tsS
263 + - 1.3.6.1.4.1.9.1.1258 # catWsC2960s48fpdL
264 + - 1.3.6.1.4.1.9.1.1259 # catWsC2960s48ldpL
265 + - 1.3.6.1.4.1.9.1.1260 # catWsC2960s48tdL
266 + - 1.3.6.1.4.1.9.1.1261 # catWsC2960s24pdL
267 + - 1.3.6.1.4.1.9.1.1262 # catWsC2960s24tdL
268 + - 1.3.6.1.4.1.9.1.1263 # catWsC2960s48fpsL
269 + - 1.3.6.1.4.1.9.1.1264 # catWsC2960s48lpsL
270 + - 1.3.6.1.4.1.9.1.1265 # catWsC2960s24psL
271 + - 1.3.6.1.4.1.9.1.1266 # catWsC2960s48tsL
272 + - 1.3.6.1.4.1.9.1.1267 # catWsC2960s24tsL
273 + - 1.3.6.1.4.1.9.1.1278 # cat2960cPD8TT
274 + - 1.3.6.1.4.1.9.1.1286 # cat4507rpluse
275 + - 1.3.6.1.4.1.9.1.1287 # cat4510rpluse
276 + - 1.3.6.1.4.1.9.1.1292 # ciscoWsC236048tdS
277 + - 1.3.6.1.4.1.9.1.1300 # catWsC3750v224fsS
278 + - 1.3.6.1.4.1.9.1.1315 # cat2960cPD8PT
279 + - 1.3.6.1.4.1.9.1.1316 # cat2960cG8TC
280 + - 1.3.6.1.4.1.9.1.1317 # cat3560cG8PC
281 + - 1.3.6.1.4.1.9.1.1318 # cat3560cG8TC
282 + - 1.3.6.1.4.1.9.1.1327 # catalyst4948ef10GE
283 + - 1.3.6.1.4.1.9.1.1328 # cat292824TCC
284 + - 1.3.6.1.4.1.9.1.1329 # cat292848TCC
285 + - 1.3.6.1.4.1.9.1.1330 # cat292824LTC
286 + - 1.3.6.1.4.1.9.1.1364 # catwsC2960C8tcS
287 + - 1.3.6.1.4.1.9.1.1365 # catwsC2960C8tcL
288 + - 1.3.6.1.4.1.9.1.1366 # catwsC2960C8pcL
289 + - 1.3.6.1.4.1.9.1.1367 # catwsC2960C12pcL
290 + - 1.3.6.1.4.1.9.1.1368 # catwsC3560CPD8ptS
291 + - 1.3.6.1.4.1.9.1.1404 # cat3750x24s
292 + - 1.3.6.1.4.1.9.1.1405 # cat3750x12s
293 + - 1.3.6.1.4.1.9.1.1465 # catwsC3560C12pcS
294 + - 1.3.6.1.4.1.9.1.1466 # catwsC3560C8pcS
295 + - 1.3.6.1.4.1.9.1.1529 # ciscoNam3
296 + - 1.3.6.1.4.1.9.1.1605 # cat4500X16
297 + - 1.3.6.1.4.1.9.1.1606 # cat4500X32
298 + - 1.3.6.1.4.1.9.1.1641 # cat385048P
299 + - 1.3.6.1.4.1.9.1.1642 # cat385024P
300 + - 1.3.6.1.4.1.9.1.1643 # cat385048
301 + - 1.3.6.1.4.1.9.1.1644 # cat385024
302 + - 1.3.6.1.4.1.9.1.1690 # catWsC2960x48fpdL
303 + - 1.3.6.1.4.1.9.1.1691 # catWsC2960x48lpdL
304 + - 1.3.6.1.4.1.9.1.1692 # catWsC2960x48tdL
305 + - 1.3.6.1.4.1.9.1.1693 # catWsC2960x24pdL
306 + - 1.3.6.1.4.1.9.1.1694 # catWsC2960x24tdL
307 + - 1.3.6.1.4.1.9.1.1695 # catWsC2960x48fpsL
308 + - 1.3.6.1.4.1.9.1.1696 # catWsC2960x48lpsL
309 + - 1.3.6.1.4.1.9.1.1697 # catWsC2960x24psL
310 + - 1.3.6.1.4.1.9.1.1698 # catWsC2960x48tsL
311 + - 1.3.6.1.4.1.9.1.1699 # catWsC2960x24tsL
312 + - 1.3.6.1.4.1.9.1.1700 # catWsC2960x24psqL
313 + - 1.3.6.1.4.1.9.1.1701 # catWsC2960x48lpsS
314 + - 1.3.6.1.4.1.9.1.1702 # catWsC2960x24psS
315 + - 1.3.6.1.4.1.9.1.1703 # catWsC2960x48tsLL
316 + - 1.3.6.1.4.1.9.1.1704 # catWsC2960x24tsLL
317 + - 1.3.6.1.4.1.9.1.1710 # cat3560x48U
318 + - 1.3.6.1.4.1.9.1.1711 # cat3560x24U
319 + - 1.3.6.1.4.1.9.1.1712 # cat3750x48U
320 + - 1.3.6.1.4.1.9.1.1713 # cat3750x24U
321 + - 1.3.6.1.4.1.9.1.1732 # cat4xxxVirtualSwitch
322 + # Is in a separate profile cisco-3850.yaml for backward compatibility
323 + # - 1.3.6.1.4.1.9.1.1745
324 + - 1.3.6.1.4.1.9.1.1765 # ciscoC6807xl
325 + - 1.3.6.1.4.1.9.1.1767 # cat385024U
326 + - 1.3.6.1.4.1.9.1.1768 # cat385048U
327 + - 1.3.6.1.4.1.9.1.1784 # ciscoC6880xle
328 + - 1.3.6.1.4.1.9.1.1796 # cat45Sup8e
329 + - 1.3.6.1.4.1.9.1.1797 # ciscoWsC2960XR48FpdI
330 + - 1.3.6.1.4.1.9.1.1798 # ciscoWsC2960XR48LpdI
331 + - 1.3.6.1.4.1.9.1.1799 # ciscoWsC2960XR48TdI
332 + - 1.3.6.1.4.1.9.1.1800 # ciscoWsC2960XR24PdI
333 + - 1.3.6.1.4.1.9.1.1801 # ciscoWsC2960XR24TdI
334 + - 1.3.6.1.4.1.9.1.1802 # ciscoWsC2960XR48FpsI
335 + - 1.3.6.1.4.1.9.1.1803 # ciscoWsC2960XR48LpsI
336 + - 1.3.6.1.4.1.9.1.1804 # ciscoWsC2960XR48TsI
337 + - 1.3.6.1.4.1.9.1.1805 # ciscoWsC2960XR24PsI
338 + - 1.3.6.1.4.1.9.1.1806 # ciscoWsC2960XR24TsI
339 + - 1.3.6.1.4.1.9.1.1823 # ciscoC365024TS
340 + - 1.3.6.1.4.1.9.1.1824 # ciscoC365048TS
341 + - 1.3.6.1.4.1.9.1.1825 # ciscoC365024PS
342 + - 1.3.6.1.4.1.9.1.1826 # ciscoC365048PS
343 + - 1.3.6.1.4.1.9.1.1827 # ciscoC365024TD
344 + - 1.3.6.1.4.1.9.1.1828 # ciscoC365048TD
345 + - 1.3.6.1.4.1.9.1.1829 # ciscoC365024PD
346 + - 1.3.6.1.4.1.9.1.1830 # ciscoC365048PD
347 + - 1.3.6.1.4.1.9.1.1866 # ciscoC6800ia48fpdL
348 + - 1.3.6.1.4.1.9.1.1867 # ciscoC6800ia48tdL
349 + - 1.3.6.1.4.1.9.1.1879 # ciscoC385024S
350 + - 1.3.6.1.4.1.9.1.1880 # ciscoC385012S
351 + - 1.3.6.1.4.1.9.1.1881 # ciscoC365048PQ
352 + - 1.3.6.1.4.1.9.1.1882 # ciscoC365048TQ
353 + - 1.3.6.1.4.1.9.1.1936 # ciscoC6880x
354 + - 1.3.6.1.4.1.9.1.2026 # catAIRCT57006
355 + - 1.3.6.1.4.1.9.1.2066 # cat36xxstack
356 + - 1.3.6.1.4.1.9.1.2130 # catwsC3560CX8ptS
357 + - 1.3.6.1.4.1.9.1.2131 # catwsC3560CX8XpdS
358 + - 1.3.6.1.4.1.9.1.2132 # catwsC3560CX12pdS
359 + - 1.3.6.1.4.1.9.1.2133 # catwsC3560CX12tcS
360 + - 1.3.6.1.4.1.9.1.2134 # catwsC3560CX12pcS
361 + - 1.3.6.1.4.1.9.1.2135 # catwsC3560CX8tcS
362 + - 1.3.6.1.4.1.9.1.2136 # catwsC3560CX8pcS
363 + - 1.3.6.1.4.1.9.1.2137 # catwsC2960CX8tcL
364 + - 1.3.6.1.4.1.9.1.2162 # ciscoC385012XS
365 + - 1.3.6.1.4.1.9.1.2163 # ciscoC385024XS
366 + - 1.3.6.1.4.1.9.1.2164 # ciscoC385048XS
367 + - 1.3.6.1.4.1.9.1.2165 # ciscoC385012X48U
368 + - 1.3.6.1.4.1.9.1.2166 # ciscoC385024XU
369 + - 1.3.6.1.4.1.9.1.2191 # ciscoWSC2960CX8PCL
370 + - 1.3.6.1.4.1.9.1.2273 # ciscoC6816xle
371 + - 1.3.6.1.4.1.9.1.2274 # ciscoC6832xle
372 + - 1.3.6.1.4.1.9.1.2275 # ciscoC6824xle
373 + - 1.3.6.1.4.1.9.1.2276 # ciscoC6840xle
374 + - 1.3.6.1.4.1.9.1.2277 # cat35xxStack
375 + - 1.3.6.1.4.1.9.1.2278 # catWsC365012X48UR
376 + - 1.3.6.1.4.1.9.1.2279 # catWsC36508X24UQ
377 + - 1.3.6.1.4.1.9.1.2280 # catWsC365012X48UZ
378 + - 1.3.6.1.4.1.9.1.2281 # catWsC365012X48UQ
379 + - 1.3.6.1.4.1.9.1.2290 # catWsC365048FQM
380 + - 1.3.6.1.4.1.9.1.2291 # catWsC365024PDM
381 + - 1.3.6.1.4.1.9.1.2360 # ciscoCatWSC2960L8TSLL
382 + - 1.3.6.1.4.1.9.1.2361 # ciscoCatWSC2960L8PSLL
383 + - 1.3.6.1.4.1.9.1.2362 # ciscoCatWSC2960L16TSLL
384 + - 1.3.6.1.4.1.9.1.2363 # ciscoCatWSC2960L16PSLL
385 + - 1.3.6.1.4.1.9.1.2364 # ciscoCatWSC2960L24TSLL
386 + - 1.3.6.1.4.1.9.1.2365 # ciscoCatWSC2960L24PSLL
387 + - 1.3.6.1.4.1.9.1.2366 # ciscoCatWSC2960L48TSLL
388 + - 1.3.6.1.4.1.9.1.2367 # ciscoCatWSC2960L48PSLL
389 + - 1.3.6.1.4.1.9.1.2398 # ciscoCDB8U
390 + - 1.3.6.1.4.1.9.1.2399 # ciscoCDB8P
391 + - 1.3.6.1.4.1.9.1.2418 # ciscoCat950012Q
392 + - 1.3.6.1.4.1.9.1.2435 # catC930024T
393 + - 1.3.6.1.4.1.9.1.2436 # catC930024P
394 + - 1.3.6.1.4.1.9.1.2440 # ciscoCat930048P
395 + - 1.3.6.1.4.1.9.1.2441 # ciscoCat930048U
396 + - 1.3.6.1.4.1.9.1.2491 # ciscoWSC365048TSE
397 + - 1.3.6.1.4.1.9.1.2494 # ciscoCat9300FixedSwitchStack
398 + - 1.3.6.1.4.1.9.1.2495 # ciscoCatWSC2960L24TQLL
399 + - 1.3.6.1.4.1.9.1.2496 # ciscoCatWSC2960L48TQLL
400 + - 1.3.6.1.4.1.9.1.2497 # ciscoCatWSC2960L24PQLL
401 + - 1.3.6.1.4.1.9.1.2498 # ciscoCatWSC2960L48PQLL
402 + - 1.3.6.1.4.1.9.1.2499 # ciscoCat9404R
403 + - 1.3.6.1.4.1.9.1.2500 # ciscoCat9407R
404 + - 1.3.6.1.4.1.9.1.2501 # ciscoC9410R
405 + - 1.3.6.1.4.1.9.1.2564 # ciscoCat930048UN
406 + - 1.3.6.1.4.1.9.1.2566 # ciscoCat950032C
407 + - 1.3.6.1.4.1.9.1.2567 # ciscoCat950032QC
408 + - 1.3.6.1.4.1.9.1.2568 # ciscoCat950048Y4C
409 + - 1.3.6.1.4.1.9.1.2573 # ciscoCat950024Y4C
410 + - 1.3.6.1.4.1.9.1.2574 # ciscoCat9200L24P4X
411 + - 1.3.6.1.4.1.9.1.2575 # ciscoCat9200L48P4X
412 + - 1.3.6.1.4.1.9.1.2576 # ciscoCat9200L24PXG4X
413 + - 1.3.6.1.4.1.9.1.2577 # ciscoCat9200L24PXG2Y
414 + - 1.3.6.1.4.1.9.1.2578 # ciscoCat9200L48PXG4X
415 + - 1.3.6.1.4.1.9.1.2579 # ciscoCat9200L48PXG2Y
416 + - 1.3.6.1.4.1.9.1.2580 # ciscoCat920024T
417 + - 1.3.6.1.4.1.9.1.2581 # ciscoCat9200L24T4G
418 + - 1.3.6.1.4.1.9.1.2582 # ciscoCat9200L48T4G
419 + - 1.3.6.1.4.1.9.1.2583 # ciscoCat9200L24T4X
420 + - 1.3.6.1.4.1.9.1.2584 # ciscoCat9200L48T4X
421 + - 1.3.6.1.4.1.9.1.2585 # ciscoCat9200L24P4G
422 + - 1.3.6.1.4.1.9.1.2586 # ciscoCat9200L48P4G
423 + - 1.3.6.1.4.1.9.1.2587 # ciscoCat920048T
424 + - 1.3.6.1.4.1.9.1.2588 # ciscoCat920024P
425 + - 1.3.6.1.4.1.9.1.2589 # ciscoCat920048P
426 + - 1.3.6.1.4.1.9.1.2590 # ciscoCat920024PXG
427 + - 1.3.6.1.4.1.9.1.2591 # ciscoCat920048PXG
428 + - 1.3.6.1.4.1.9.1.2592 # ciscoCat950016X
429 + - 1.3.6.1.4.1.9.1.2593 # ciscoCat9500FixedSwitchStack
430 + - 1.3.6.1.4.1.9.1.2648 # ciscoC9606R
431 + - 1.3.6.1.4.1.9.1.2664 # ciscoCat9400VirtualStack
432 + - 1.3.6.1.4.1.9.1.2688 # ciscoCat9500VirtualStack
433 + - 1.3.6.1.4.1.9.1.2694 # cisco9200FixedSwitchStack
434 + - 1.3.6.1.4.1.9.1.2695 # cisco9200RFixedSwitchStack
435 + - 1.3.6.1.4.1.9.1.2780 # ciscoCat930024S
436 + - 1.3.6.1.4.1.9.1.2781 # ciscoCat930048S
437 + - 1.3.6.1.4.1.9.1.2792 # ciscoCat9300L24T4G
438 + - 1.3.6.1.4.1.9.1.2793 # ciscoCat9300L48T4G
439 + - 1.3.6.1.4.1.9.1.2794 # ciscoCat9300L24T4X
440 + - 1.3.6.1.4.1.9.1.2795 # ciscoCat9300L48T4X
441 + - 1.3.6.1.4.1.9.1.2796 # ciscoCat9300L24P4G
442 + - 1.3.6.1.4.1.9.1.2797 # ciscoCat9300L48P4G
443 + - 1.3.6.1.4.1.9.1.2798 # ciscoCat9300L24P4X
444 + - 1.3.6.1.4.1.9.1.2799 # ciscoCat9300L48P4X
445 + - 1.3.6.1.4.1.9.1.2800 # ciscoCat9300L24UXG4X
446 + - 1.3.6.1.4.1.9.1.2801 # ciscoCat9300L48UXG4X
447 + - 1.3.6.1.4.1.9.1.2802 # ciscoCat9300L24UXG2Q
448 + - 1.3.6.1.4.1.9.1.2803 # ciscoCat9300L48UXG2Q
449 + - 1.3.6.1.4.1.9.1.2804 # ciscocat9300Lstack
450 + - 1.3.6.1.4.1.9.1.2819 # ciscoC850012X
451 + - 1.3.6.1.4.1.9.1.2850 # ciscoC9120AXME
452 + - 1.3.6.1.4.1.9.1.2871 # ciscoC9606RVirtualStack
453 + - 1.3.6.1.4.1.9.1.2959 # ciscoCat10001GbpsStack
454 + - 1.3.6.1.4.1.9.1.2961 # ciscoC82001N4T
455 + - 1.3.6.1.4.1.9.1.2963 # ciscoC83002N2S4T2X
456 + - 1.3.6.1.4.1.9.1.2989 # ciscoC83001N1S6T
457 + - 1.3.6.1.4.1.9.1.2990 # ciscoC83001N1S4T2X
458 + - 1.3.6.1.4.1.9.1.2992 # ciscoCat9300L48PF4X
459 + - 1.3.6.1.4.1.9.1.2993 # ciscoCat9300L48PF4G
460 + - 1.3.6.1.4.1.9.1.3004 # ciscoC8000V
461 + - 1.3.6.1.4.1.9.1.3021 # ciscoC1000FE24T4GL
462 + - 1.3.6.1.4.1.9.1.3022 # ciscoC1000FE24P4GL
463 + - 1.3.6.1.4.1.9.1.3023 # ciscoC1000FE48T4GL
464 + - 1.3.6.1.4.1.9.1.3024 # ciscoC1000FE48P4GL
465 + - 1.3.6.1.4.1.9.1.3069 # ciscoC8500L8S4X
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-csr1000v.yaml new
+14
@@ -0,0 +1,14 @@
1 +extends:
2 + - _base.yaml
3 + - _cisco-generic.yaml
4 +
5 +sysobjectid: 1.3.6.1.4.1.9.1.1537
6 +
7 +device:
8 + vendor: "cisco"
9 +
10 +metadata:
11 + device:
12 + fields:
13 + type:
14 + value: "router"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-firepower-asa.yaml new
+72
@@ -0,0 +1,72 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _cisco-metadata.yaml
5 + # This profile does not import cisco.yaml on purpose
6 +sysobjectid:
7 + - 1.3.6.1.4.1.9.1.1902 # Cisco VASA (Cisco Firepower Threat Defense, Version 6.7.0.2)
8 + - 1.3.6.1.4.1.9.1.1903 # Cisco VASA System Context
9 + - 1.3.6.1.4.1.9.1.1904 # Cisco VASA Security Context
10 + - 1.3.6.1.4.1.9.1.2286 # Cisco FPR 9000 SM24
11 + - 1.3.6.1.4.1.9.1.2288 # Cisco FPR 9000 SM36
12 + - 1.3.6.1.4.1.9.1.2313 # Cisco FPR 4110 SM12
13 + - 1.3.6.1.4.1.9.1.2314 # Cisco FPR 4120 SM24
14 + - 1.3.6.1.4.1.9.1.2315 # Cisco FPR 4140 SM36
15 + - 1.3.6.1.4.1.9.1.2316 # Cisco FPR 4150 SM44
16 + - 1.3.6.1.4.1.9.1.2409 # Cisco FPR 9000 SM44
17 + - 1.3.6.1.4.1.9.1.2663 # Cisco FPR 1120 NGFW
18 + - 1.3.6.1.4.1.9.1.2757 # Cisco FPR 9000 SM56
19 + - 1.3.6.1.4.1.9.1.2772 # Cisco FPR 9000 SM40
20 + - 1.3.6.1.4.1.9.1.2773 # Cisco FPR 9000 SM48
21 + - 1.3.6.1.4.1.9.1.2774 # Cisco FPR 4115 SM24
22 + - 1.3.6.1.4.1.9.1.2775 # Cisco FPR 4125 SM32
23 + - 1.3.6.1.4.1.9.1.2776 # Cisco FPR 4145 SM44
24 +metadata:
25 + device:
26 + fields:
27 + type:
28 + value: "firewall"
29 +metrics:
30 + - MIB: CISCO-PROCESS-MIB
31 + table:
32 + OID: 1.3.6.1.4.1.9.9.109.1.1.1
33 + name: cpmCPUTotalTable
34 + symbols:
35 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7 # cpmCPUTotal1minRev
36 + name: cpu.usage
37 + metric_tags:
38 + - index: 1 # cpmCPUTotalIndex
39 + tag: cpu
40 + - MIB: CISCO-ENHANCED-MEMPOOL-MIB
41 + symbol:
42 + name: memory.used
43 + OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7.1.1 # cempMemPoolUsed.1.1
44 + - MIB: CISCO-ENHANCED-MEMPOOL-MIB
45 + symbol:
46 + name: memory.free
47 + OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8.1.1 # cempMemPoolFree.1.1
48 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
49 + symbol:
50 + OID: 1.3.6.1.4.1.9.9.392.1.4.1.2.0
51 + name: crasNumDeclinedSessions
52 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.9.9.392.1.3.1.0
55 + name: crasNumSessions
56 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.9.9.392.1.1.1.0
59 + name: crasMaxSessionsSupportable
60 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
61 + symbol:
62 + OID: 1.3.6.1.4.1.9.9.392.1.3.3.0
63 + name: crasNumUsers
64 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
65 + symbol:
66 + OID: 1.3.6.1.4.1.9.9.392.1.1.2.0
67 + name: crasMaxUsersSupportable
68 + - MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.9.9.392.1.4.1.3.0
71 + name: crasNumSetupFailInsufResources
72 + metric_type: monotonic_count
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-firepower.yaml new
+135
@@ -0,0 +1,135 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _cisco-metadata.yaml
5 + # This profile does not import cisco.yaml on purpose
6 +sysobjectid:
7 + - 1.3.6.1.4.1.9.1.2404 # Cisco FPR 2110td
8 + - 1.3.6.1.4.1.9.1.2405 # Cisco FPR 2120td
9 + - 1.3.6.1.4.1.9.1.2406 # Cisco FPR 2130td
10 + - 1.3.6.1.4.1.9.1.2407 # Cisco FPR 2140td
11 + - 1.3.6.1.4.1.9.1.2778 # Cisco FPR 4125 K9
12 + - 1.3.6.1.4.1.9.1.2292 # Cisco FPR 4150 K9
13 + # Following sysObjectID requires more investigation to be certain if we should include it:
14 + # - 1.3.6.1.4.1.9.12.3.1.3.1788 # Cisco FPR 4120
15 +metadata:
16 + device:
17 + fields:
18 + type:
19 + value: "firewall"
20 +metrics:
21 + - MIB: CISCO-PROCESS-MIB
22 + table:
23 + OID: 1.3.6.1.4.1.9.9.109.1.1.1
24 + name: cpmCPUTotalTable
25 + symbols:
26 + - OID: 1.3.6.1.4.1.9.9.109.1.1.1.1.7 # cpmCPUTotal1minRev
27 + name: cpu.usage
28 + metric_tags:
29 + - index: 1 # cpmCPUTotalIndex
30 + tag: cpu
31 + - MIB: CISCO-FIREPOWER-SM-MIB
32 + table:
33 + OID: 1.3.6.1.4.1.9.9.826.1.71.20
34 + name: cfprSmMonitorTable
35 + symbols:
36 + - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.21 # cfprSmMonitorMemFree
37 + name: memory.free
38 + - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.23 # cfprSmMonitorMemUsed
39 + name: memory.used
40 + metric_tags:
41 + - index: 1 # cfprSmMonitorInstanceId
42 + tag: mem
43 + - MIB: CISCO-FIREPOWER-SM-MIB
44 + table:
45 + OID: 1.3.6.1.4.1.9.9.826.1.71.20
46 + name: cfprSmMonitorTable
47 + symbols:
48 + - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.17
49 + name: cfprSmMonitorDataDiskAvailable
50 + - OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.18
51 + name: cfprSmMonitorDataDiskTotal
52 + metric_tags:
53 + - tag: cfpr_sm_monitor_dn
54 + symbol:
55 + OID: 1.3.6.1.4.1.9.9.826.1.71.20.1.2
56 + name: cfprSmMonitorDn
57 + - MIB: CISCO-FIREPOWER-EQUIPMENT-MIB
58 + table:
59 + OID: 1.3.6.1.4.1.9.9.826.1.20.34
60 + name: cfprEquipmentFanTable
61 + symbols:
62 + - name: cfprEquipmentFan
63 + constant_value_one: true
64 + metric_tags:
65 + - tag: cfpr_equipment_fan_dn
66 + symbol:
67 + OID: 1.3.6.1.4.1.9.9.826.1.20.34.1.2
68 + name: cfprEquipmentFanDn
69 + - symbol:
70 + OID: 1.3.6.1.4.1.9.9.826.1.20.34.1.10
71 + name: cfprEquipmentFanOperState
72 + tag: cfpr_equipment_fan_oper_state
73 + mapping:
74 + 0: unknown
75 + 1: operable
76 + 2: inoperable
77 + 3: degraded
78 + 4: powered_off
79 + 5: power_problem
80 + 6: removed
81 + 7: voltage_problem
82 + 8: thermal_problem
83 + 9: performance_problem
84 + 10: accessibility_problem
85 + 11: identity_unestablishable
86 + 12: bios_post_timeout
87 + 13: disabled
88 + 14: malformed_fru
89 + 51: fabric_conn_problem
90 + 52: fabric_unsupported_conn
91 + 81: config
92 + 82: equipment_problem
93 + 83: decomissioning
94 + 84: chassis_limit_exceeded
95 + 100: not_supported
96 + 101: discovery
97 + 102: discovery_failed
98 + 103: identify
99 + 104: post_failure
100 + 105: upgrade_problem
101 + 106: peer_comm_problem
102 + 107: auto_upgrade
103 + 108: link_activate_blocked
104 + - MIB: CISCO-FIREPOWER-EQUIPMENT-MIB
105 + table:
106 + OID: 1.3.6.1.4.1.9.9.826.1.20.109
107 + name: cfprEquipmentPsuTable
108 + symbols:
109 + - name: cfprEquipmentPsu
110 + constant_value_one: true
111 + metric_tags:
112 + - tag: cfpr_equipment_psu_dn
113 + symbol:
114 + OID: 1.3.6.1.4.1.9.9.826.1.20.109.1.2
115 + name: cfprEquipmentPsuDn
116 + - symbol:
117 + OID: 1.3.6.1.4.1.9.9.826.1.20.109.1.13
118 + name: cfprEquipmentPsuPower
119 + tag: cfpr_equipment_psu_power
120 + mapping:
121 + 0: unknown
122 + 1: on
123 + 2: test
124 + 3: off
125 + 4: online
126 + 5: offline
127 + 6: offduty
128 + 7: degraded
129 + 8: power_save
130 + 9: error
131 + 10: ok
132 + 11: failed
133 + 12: oir_failed
134 + 13: oir_invalid
135 + 100: not_supported
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-ironport-email.yaml new
+370
@@ -0,0 +1,370 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _cisco-metadata.yaml
5 + # This profile does not import cisco.yaml on purpose
6 +sysobjectid:
7 + - 1.3.6.1.4.1.15497.1.* # IronPort Email Security Appliance
8 + - 1.3.6.1.4.1.15497.1.2 # IronPort S300V
9 +metrics:
10 + - MIB: ASYNCOS-MAIL-MIB
11 + symbol:
12 + name: memory.usage
13 + OID: 1.3.6.1.4.1.15497.1.1.1.1.0
14 + - MIB: ASYNCOS-MAIL-MIB
15 + symbol:
16 + name: cpu.usage
17 + OID: 1.3.6.1.4.1.15497.1.1.1.2.0
18 + - MIB: ASYNCOS-MAIL-MIB
19 + symbol:
20 + name: ironport.oldestMessageAge
21 + OID: 1.3.6.1.4.1.15497.1.1.1.14.0
22 + - MIB: ASYNCOS-MAIL-MIB
23 + symbol:
24 + name: ironport.perCentDiskIOUtilization
25 + OID: 1.3.6.1.4.1.15497.1.1.1.3.0
26 + - MIB: ASYNCOS-MAIL-MIB
27 + symbol:
28 + name: ironport.perCentQueueUtilization
29 + OID: 1.3.6.1.4.1.15497.1.1.1.4.0
30 +# - MIB: ASYNCOS-MAIL-MIB
31 +# symbol:
32 +# name: ironport.queueAvailabilityStatus
33 +# OID: 1.3.6.1.4.1.15497.1.1.1.5.0
34 +# enum:
35 +# queueSpaceAvailable: 1
36 +# queueSpaceShortage: 2
37 +# queueFull: 3
38 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
39 +# comment in profile until it's fixed)
40 +# - MIB: ASYNCOS-MAIL-MIB
41 +# symbol:
42 +# name: ironport.resourceConservationReason
43 +# OID: 1.3.6.1.4.1.15497.1.1.1.6.0
44 +# enum:
45 +# noResourceConservation: 1
46 +# memoryShortage: 2
47 +# queueSpaceShortage: 3
48 +# queueFull: 4
49 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
50 +# comment in profile until it's fixed)
51 +# - MIB: ASYNCOS-MAIL-MIB
52 +# symbol:
53 +# name: ironport.memoryAvailabilityStatus
54 +# OID: 1.3.6.1.4.1.15497.1.1.1.7.0
55 +# enum:
56 +# memoryAvailable: 1
57 +# memoryShortage: 2
58 +# memoryFull: 3
59 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
60 +# comment in profile until it's fixed)
61 + - MIB: ASYNCOS-MAIL-MIB
62 + table:
63 + name: powerSupplyTable
64 + OID: 1.3.6.1.4.1.15497.1.1.1.8
65 + symbols:
66 + - name: ironport.powerSupply
67 + constant_value_one: true
68 + metric_tags:
69 + - symbol:
70 + name: ironport.powerSupplyName
71 + OID: 1.3.6.1.4.1.15497.1.1.1.8.1.4
72 + tag: ironport_power_supply_name
73 + - symbol:
74 + OID: 1.3.6.1.4.1.15497.1.1.1.8.1.2
75 + name: ironport.powerSupplyStatus
76 + tag: ironport_power_supply_status
77 + mapping:
78 + 1: power_supply_not_installed
79 + 2: power_supply_healthy
80 + 3: power_supply_no_ac
81 + 4: power_supply_faulty
82 + - symbol:
83 + OID: 1.3.6.1.4.1.15497.1.1.1.8.1.3
84 + name: ironport.powerSupplyRedundancy
85 + tag: ironport_power_supply_redundancy
86 + mapping:
87 + 1: power_supply_redundancy_ok
88 + 2: power_supply_redundancy_lost
89 + - MIB: ASYNCOS-MAIL-MIB
90 + table:
91 + name: temperatureTable
92 + OID: 1.3.6.1.4.1.15497.1.1.1.9
93 + symbols:
94 + - name: ironport.degreesCelsius
95 + OID: 1.3.6.1.4.1.15497.1.1.1.9.1.2
96 + metric_tags:
97 + - symbol:
98 + name: ironport.temperatureName
99 + OID: 1.3.6.1.4.1.15497.1.1.1.9.1.3
100 + tag: ironport_temperature_name
101 + - MIB: ASYNCOS-MAIL-MIB
102 + table:
103 + name: fanTable
104 + OID: 1.3.6.1.4.1.15497.1.1.1.10
105 + symbols:
106 + - name: ironport.fanRPMs
107 + OID: 1.3.6.1.4.1.15497.1.1.1.10.1.2
108 + metric_tags:
109 + - symbol:
110 + name: ironport.fanName
111 + OID: 1.3.6.1.4.1.15497.1.1.1.10.1.3
112 + tag: ironport_fan_name
113 + - MIB: ASYNCOS-MAIL-MIB
114 + symbol:
115 + name: ironport.workQueueMessages
116 + OID: 1.3.6.1.4.1.15497.1.1.1.11.0
117 + - MIB: ASYNCOS-MAIL-MIB
118 + table:
119 + name: keyExpirationTable
120 + OID: 1.3.6.1.4.1.15497.1.1.1.12
121 + symbols:
122 + - name: ironport.keySecondsUntilExpire
123 + OID: 1.3.6.1.4.1.15497.1.1.1.12.1.4
124 + metric_tags:
125 + - symbol:
126 + name: ironport.keyDescription
127 + OID: 1.3.6.1.4.1.15497.1.1.1.12.1.2
128 + tag: ironport_key_description
129 + - symbol:
130 + OID: 1.3.6.1.4.1.15497.1.1.1.12.1.3
131 + name: ironport.keyIsPerpetual
132 + tag: ironport_key_is_perpetual
133 + mapping:
134 + 1: 'true'
135 + 2: 'false'
136 + - MIB: ASYNCOS-MAIL-MIB
137 + table:
138 + name: updateTable
139 + OID: 1.3.6.1.4.1.15497.1.1.1.13
140 + symbols:
141 + - name: ironport.updates
142 + OID: 1.3.6.1.4.1.15497.1.1.1.13.1.3
143 + - name: ironport.updateFailures
144 + OID: 1.3.6.1.4.1.15497.1.1.1.13.1.4
145 + metric_tags:
146 + - symbol:
147 + name: ironport.updateServiceName
148 + OID: 1.3.6.1.4.1.15497.1.1.1.13.1.2
149 + tag: ironport_update_service_name
150 + - MIB: ASYNCOS-MAIL-MIB
151 + symbol:
152 + name: ironport.outstandingDNSRequests
153 + OID: 1.3.6.1.4.1.15497.1.1.1.15.0
154 + - MIB: ASYNCOS-MAIL-MIB
155 + symbol:
156 + name: ironport.pendingDNSRequests
157 + OID: 1.3.6.1.4.1.15497.1.1.1.16.0
158 + - MIB: ASYNCOS-MAIL-MIB
159 + symbol:
160 + name: ironport.raidEvents
161 + OID: 1.3.6.1.4.1.15497.1.1.1.17.0
162 + - MIB: ASYNCOS-MAIL-MIB
163 + table:
164 + name: raidTable
165 + OID: 1.3.6.1.4.1.15497.1.1.1.18
166 + symbols:
167 + - name: ironport.raid
168 + constant_value_one: true
169 + metric_tags:
170 + - symbol:
171 + name: ironport.raidID
172 + OID: 1.3.6.1.4.1.15497.1.1.1.18.1.3
173 + tag: ironport_raid_id
174 + - symbol:
175 + OID: 1.3.6.1.4.1.15497.1.1.1.18.1.2
176 + name: ironport.raidStatus
177 + tag: ironport_raid_status
178 + mapping:
179 + 1: drive_healthy
180 + 2: drive_failure
181 + 3: drive_rebuild
182 + - symbol:
183 + OID: 1.3.6.1.4.1.15497.1.1.1.18.1.4
184 + name: ironport.raidLastError
185 + tag: ironport_raid_last_error
186 + - MIB: ASYNCOS-MAIL-MIB
187 + symbol:
188 + name: ironport.openFilesOrSockets
189 + OID: 1.3.6.1.4.1.15497.1.1.1.19.0
190 + - MIB: ASYNCOS-MAIL-MIB
191 + symbol:
192 + name: ironport.mailTransferThreads
193 + OID: 1.3.6.1.4.1.15497.1.1.1.20.0
194 +# - MIB: ASYNCOS-MAIL-MIB
195 +# symbol:
196 +# name: ironport.fipsMode
197 +# OID: 1.3.6.1.4.1.15497.1.1.1.23.0
198 +# enum:
199 +# enabled: 1
200 +# disabled: 2
201 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
202 +# comment in profile until it's fixed)
203 + - MIB: ASYNCOS-MAIL-MIB
204 + symbol:
205 + name: ironport.perCentCPULoad
206 + OID: 1.3.6.1.4.1.15497.1.1.1.26.0
207 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
208 + symbol:
209 + name: ironport.cacheClientRequests
210 + OID: 1.3.6.1.4.1.15497.1.2.3.2.2.0
211 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
212 + symbol:
213 + name: ironport.cacheClientErrors
214 + OID: 1.3.6.1.4.1.15497.1.2.3.2.4.0
215 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
216 + symbol:
217 + name: ironport.cacheClientIdleConns
218 + OID: 1.3.6.1.4.1.15497.1.2.3.2.7.0
219 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
220 + symbol:
221 + name: ironport.cacheClientTotalConns
222 + OID: 1.3.6.1.4.1.15497.1.2.3.2.8.0
223 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
224 + symbol:
225 + name: ironport.cacheClientMaxConns
226 + OID: 1.3.6.1.4.1.15497.1.2.3.2.9.0
227 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
228 + symbol:
229 + name: ironport.cacheClientAccepts
230 + OID: 1.3.6.1.4.1.15497.1.2.3.2.10.0
231 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
232 + symbol:
233 + name: ironport.cacheClientReqDenials
234 + OID: 1.3.6.1.4.1.15497.1.2.3.2.17.0
235 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
236 + symbol:
237 + name: ironport.cacheServerRequests
238 + OID: 1.3.6.1.4.1.15497.1.2.3.3.2.0
239 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
240 + symbol:
241 + name: ironport.cacheServerSockets
242 + OID: 1.3.6.1.4.1.15497.1.2.3.3.3.0
243 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
244 + symbol:
245 + name: ironport.cacheServerErrors
246 + OID: 1.3.6.1.4.1.15497.1.2.3.3.4.0
247 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
248 + symbol:
249 + name: ironport.cacheServerIdleConns
250 + OID: 1.3.6.1.4.1.15497.1.2.3.3.7.0
251 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
252 + symbol:
253 + name: ironport.cacheServerTotalConns
254 + OID: 1.3.6.1.4.1.15497.1.2.3.3.8.0
255 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
256 + symbol:
257 + name: ironport.cacheServerCloseIdleConns
258 + OID: 1.3.6.1.4.1.15497.1.2.3.3.9.0
259 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
260 + symbol:
261 + name: ironport.cacheServerLimitIdleConns
262 + OID: 1.3.6.1.4.1.15497.1.2.3.3.10.0
263 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
264 + symbol:
265 + name: ironport.cacheServerConnsThresh
266 + OID: 1.3.6.1.4.1.15497.1.2.3.3.11.0
267 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
268 + symbol:
269 + name: ironport.cacheTotalHttpReqs
270 + OID: 1.3.6.1.4.1.15497.1.2.3.6.1.0
271 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
272 + symbol:
273 + name: ironport.cacheMeanRespTime
274 + OID: 1.3.6.1.4.1.15497.1.2.3.6.2.0
275 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
276 + symbol:
277 + name: ironport.cacheMeanMissRespTime
278 + OID: 1.3.6.1.4.1.15497.1.2.3.6.3.0
279 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
280 + symbol:
281 + name: ironport.cacheMeanHitRespTime
282 + OID: 1.3.6.1.4.1.15497.1.2.3.6.4.0
283 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
284 + symbol:
285 + name: ironport.cacheMeanHitRatio
286 + OID: 1.3.6.1.4.1.15497.1.2.3.6.5.0
287 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
288 + symbol:
289 + name: ironport.cacheMeanByteHitRatio
290 + OID: 1.3.6.1.4.1.15497.1.2.3.6.6.0
291 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
292 + symbol:
293 + name: ironport.cacheTotalBandwidthSaving
294 + OID: 1.3.6.1.4.1.15497.1.2.3.6.7.0
295 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
296 + symbol:
297 + name: ironport.cacheDuration
298 + OID: 1.3.6.1.4.1.15497.1.2.3.6.8.0
299 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
300 + symbol:
301 + name: ironport.cacheCltReplyErrPct
302 + OID: 1.3.6.1.4.1.15497.1.2.3.6.9.0
303 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
304 + symbol:
305 + name: ironport.cacheThruputNow
306 + OID: 1.3.6.1.4.1.15497.1.2.3.7.1.1.0
307 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
308 + symbol:
309 + name: ironport.cacheBwidthSavingNow
310 + OID: 1.3.6.1.4.1.15497.1.2.3.7.2.1.0
311 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
312 + symbol:
313 + name: ironport.cacheBwidthSpentNow
314 + OID: 1.3.6.1.4.1.15497.1.2.3.7.3.1.0
315 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
316 + symbol:
317 + name: ironport.cacheBwidthTotalNow
318 + OID: 1.3.6.1.4.1.15497.1.2.3.7.4.1.0
319 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
320 + symbol:
321 + name: ironport.cacheHitsNow
322 + OID: 1.3.6.1.4.1.15497.1.2.3.7.5.1.0
323 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
324 + symbol:
325 + name: ironport.cacheMissesNow
326 + OID: 1.3.6.1.4.1.15497.1.2.3.7.6.1.0
327 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
328 + symbol:
329 + name: ironport.cacheHitRespTimeNow
330 + OID: 1.3.6.1.4.1.15497.1.2.3.7.7.1.0
331 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
332 + symbol:
333 + name: ironport.cacheMissRespTimeNow
334 + OID: 1.3.6.1.4.1.15497.1.2.3.7.8.1.0
335 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
336 + symbol:
337 + name: ironport.cacheTotalRespTimeNow
338 + OID: 1.3.6.1.4.1.15497.1.2.3.7.9.1.0
339 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
340 + symbol:
341 + name: ironport.cacheErrsNow
342 + OID: 1.3.6.1.4.1.15497.1.2.3.7.10.1.0
343 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
344 + symbol:
345 + name: ironport.cacheDeniedNow
346 + OID: 1.3.6.1.4.1.15497.1.2.3.7.11.1.0
347 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
348 + symbol:
349 + name: ironport.cacheErrRespTimeNow
350 + OID: 1.3.6.1.4.1.15497.1.2.3.7.12.1.0
351 + - MIB: ASYNCOSWEBSECURITYAPPLIANCE-MIB
352 + symbol:
353 + name: ironport.cacheDeniedRespTimeNow
354 + OID: 1.3.6.1.4.1.15497.1.2.3.7.13.1.0
355 +metric_tags:
356 + - OID: 1.3.6.1.4.1.15497.1.2.2.1.0
357 + symbol: cacheAdmin
358 + tag: ironport_cache_admin
359 + - OID: 1.3.6.1.4.1.15497.1.2.2.2.0
360 + symbol: cacheSoftware
361 + tag: ironport_cache_software
362 + - OID: 1.3.6.1.4.1.15497.1.2.2.3.0
363 + symbol: cacheVersion
364 + tag: ironport_cache_version
365 + - OID: 1.3.6.1.4.1.15497.1.2.2.4.0
366 + symbol: licenseExpiration
367 + tag: ironport_license_expiration
368 + - OID: 1.3.6.1.4.1.15497.1.2.2.5.0
369 + symbol: httpPorts
370 + tag: ironport_http_ports
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-ise.yaml new
+16
@@ -0,0 +1,16 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources.yaml
4 + - _generic-if.yaml
5 + - _generic-ucd.yaml
6 + # This profile does not import cisco.yaml on purpose
7 +sysobjectid:
8 + - 1.3.6.1.4.1.9.1.2785
9 + - 1.3.6.1.4.1.9.1.1426
10 +metadata:
11 + device:
12 + fields:
13 + vendor:
14 + value: "cisco"
15 + type:
16 + value: "server"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-isr.yaml new
+93
@@ -0,0 +1,93 @@
1 +# Profile for Cisco ISR devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _cisco-generic.yaml
6 +
7 +device:
8 + vendor: "cisco"
9 +
10 +metadata:
11 + device:
12 + fields:
13 + type:
14 + value: "router"
15 +
16 +sysobjectid:
17 + - 1.3.6.1.4.1.9.1.543 # cisco3825
18 + - 1.3.6.1.4.1.9.1.544 # cisco3845
19 + - 1.3.6.1.4.1.9.1.576 # cisco2811
20 + - 1.3.6.1.4.1.9.1.577 # cisco2821
21 + - 1.3.6.1.4.1.9.1.578 # cisco2851
22 + - 1.3.6.1.4.1.9.1.619 # cisco2801
23 + - 1.3.6.1.4.1.9.1.620 # cisco1841
24 + - 1.3.6.1.4.1.9.1.805 # ciscoISRWireless
25 + - 1.3.6.1.4.1.9.1.837 # cisco881
26 + - 1.3.6.1.4.1.9.1.1041 # cisco3945
27 + - 1.3.6.1.4.1.9.1.1042 # cisco3925
28 + - 1.3.6.1.4.1.9.1.1043 # cisco2951
29 + - 1.3.6.1.4.1.9.1.1044 # cisco2921
30 + - 1.3.6.1.4.1.9.1.1045 # cisco2911
31 + - 1.3.6.1.4.1.9.1.1046 # cisco2901
32 + - 1.3.6.1.4.1.9.1.1047 # cisco1941
33 + - 1.3.6.1.4.1.9.1.1144 # cisco3925SPE200
34 + - 1.3.6.1.4.1.9.1.1145 # cisco3945SPE250
35 + - 1.3.6.1.4.1.9.1.1191 # cisco1921k9
36 + - 1.3.6.1.4.1.9.1.1192 # cisco1905k9
37 + - 1.3.6.1.4.1.9.1.1542 # cisco888EA
38 + - 1.3.6.1.4.1.9.1.1619 # ciscoISR4400
39 + - 1.3.6.1.4.1.9.1.1620 # cisco892FSP
40 + - 1.3.6.1.4.1.9.1.1621 # cisco898EA
41 + - 1.3.6.1.4.1.9.1.1622 # cisco897VAMK9
42 + - 1.3.6.1.4.1.9.1.1624 # cisco897VAWEK9
43 + - 1.3.6.1.4.1.9.1.1625 # cisco897VAWAK9
44 + - 1.3.6.1.4.1.9.1.1626 # cisco897VAK9
45 + - 1.3.6.1.4.1.9.1.1627 # cisco896VAK9
46 + - 1.3.6.1.4.1.9.1.1705 # ciscoISR4441
47 + - 1.3.6.1.4.1.9.1.1706 # ciscoISR4442
48 + - 1.3.6.1.4.1.9.1.1707 # ciscoISR4451
49 + - 1.3.6.1.4.1.9.1.1708 # ciscoISR4452
50 + - 1.3.6.1.4.1.9.1.1858 # ciscoC891FK9
51 + - 1.3.6.1.4.1.9.1.1859 # ciscoC891FWAK9
52 + - 1.3.6.1.4.1.9.1.1860 # ciscoC891FWEK9
53 + - 1.3.6.1.4.1.9.1.1999 # ciscoISR4351
54 + - 1.3.6.1.4.1.9.1.2068 # ciscoISR4331
55 + - 1.3.6.1.4.1.9.1.2093 # ciscoISR4321
56 + - 1.3.6.1.4.1.9.1.2335 # ciscoISR4451B
57 + - 1.3.6.1.4.1.9.1.2336 # ciscoISR4431B
58 + - 1.3.6.1.4.1.9.1.2337 # ciscoISR4351B
59 + - 1.3.6.1.4.1.9.1.2338 # ciscoISR4331B
60 + - 1.3.6.1.4.1.9.1.2339 # ciscoISR4321B
61 + - 1.3.6.1.4.1.9.1.2395 # ciscoISR4221
62 + - 1.3.6.1.4.1.9.1.2396 # ciscoISR4221B
63 + - 1.3.6.1.4.1.9.1.2443 # ciscoC11118P
64 + - 1.3.6.1.4.1.9.1.2444 # ciscoC11118PLTEEA
65 + - 1.3.6.1.4.1.9.1.2445 # ciscoC11118PLTELA
66 + - 1.3.6.1.4.1.9.1.2446 # ciscoC11118PWE
67 + - 1.3.6.1.4.1.9.1.2447 # ciscoC11118PWB
68 + - 1.3.6.1.4.1.9.1.2448 # ciscoC11118PWA
69 + - 1.3.6.1.4.1.9.1.2449 # ciscoC11118PWZ
70 + - 1.3.6.1.4.1.9.1.2450 # ciscoC11118PWN
71 + - 1.3.6.1.4.1.9.1.2451 # ciscoC11118PWQ
72 + - 1.3.6.1.4.1.9.1.2452 # ciscoC11118PWH
73 + - 1.3.6.1.4.1.9.1.2453 # ciscoC11118PWR
74 + - 1.3.6.1.4.1.9.1.2454 # ciscoC11118PWF
75 + - 1.3.6.1.4.1.9.1.2455 # ciscoC11118PLTEEAWE
76 + - 1.3.6.1.4.1.9.1.2456 # ciscoC11118PLTEEAWB
77 + - 1.3.6.1.4.1.9.1.2457 # ciscoC11118PLTEEAWA
78 + - 1.3.6.1.4.1.9.1.2458 # ciscoC11118PLTEEAWR
79 + - 1.3.6.1.4.1.9.1.2459 # ciscoC11118PLTELAWZ
80 + - 1.3.6.1.4.1.9.1.2460 # ciscoC11118PLTELAWN
81 + - 1.3.6.1.4.1.9.1.2461 # ciscoC11118PLTELAWQ
82 + - 1.3.6.1.4.1.9.1.2462 # ciscoC11118PLTELAWH
83 + - 1.3.6.1.4.1.9.1.2463 # ciscoC11118PLTELAWF
84 + - 1.3.6.1.4.1.9.1.2464 # ciscoC11118PLTELAWD
85 + - 1.3.6.1.4.1.9.1.2665 # ciscoISRAP1100ACME
86 + - 1.3.6.1.4.1.9.1.2666 # ciscoISR4221X
87 + - 1.3.6.1.4.1.9.1.2680 # ciscoISR4461
88 + - 1.3.6.1.4.1.9.1.3016 # ciscoISR11004G
89 + - 1.3.6.1.4.1.9.1.3017 # ciscoISR11006G
90 + - 1.3.6.1.4.1.9.1.3018 # ciscoISR11004GLTEGB
91 + - 1.3.6.1.4.1.9.1.3019 # ciscoISR11004GLTENA
92 + - 1.3.6.1.4.1.9.1.3045 # ciscoISR1100X4G
93 + - 1.3.6.1.4.1.9.1.3046 # ciscoISR1100X6G
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-legacy-wlc.yaml new
+55
@@ -0,0 +1,55 @@
1 +# Profile for Cisco WLC
2 +# This profile is only compatible with the core SNMP integration
3 +
4 +extends:
5 + - _base.yaml
6 + - _generic-if.yaml
7 + - _generic-tcp.yaml
8 + - _generic-udp.yaml
9 + - _cisco-wlc.yaml
10 + - _cisco-metadata.yaml
11 +
12 +device:
13 + vendor: "cisco"
14 +
15 +sysobjectid:
16 + - 1.3.6.1.4.1.9.1.818 # ciscoNMWLCE
17 + - 1.3.6.1.4.1.9.1.828 # ciscoAirWlc2106K9
18 + - 1.3.6.1.4.1.9.1.926 # cisco520WLC
19 + - 1.3.6.1.4.1.9.1.1069 # cisco5500Wlc
20 + - 1.3.6.1.4.1.9.1.1279 # ciscoAirCt2504K9
21 + - 1.3.6.1.4.1.9.1.1295 # cisco7500Wlc
22 + - 1.3.6.1.4.1.9.1.1615 # cisco8500WLC
23 + - 1.3.6.1.4.1.9.1.1631 # ciscoVirtualWlc
24 + - 1.3.6.1.4.1.9.1.1645 # cisco5760wlc
25 + - 1.3.6.1.4.1.9.1.1926 # ciscoWlcCt5508K9
26 + - 1.3.6.1.4.1.9.1.1927 # ciscoWlcCt2504K9
27 + - 1.3.6.1.4.1.9.1.2170 # cisco5520WLC
28 + - 1.3.6.1.4.1.9.1.2171 # cisco8540Wlc
29 + - 1.3.6.1.4.1.9.1.2427 # cisco3504WLC
30 +
31 +metadata:
32 + device:
33 + fields:
34 + serial_number:
35 + symbol:
36 + OID: 1.3.6.1.4.1.14179.1.1.1.4
37 + name: agentInventorySerialNumber
38 + type:
39 + value: "WLC"
40 +
41 +metrics:
42 + - MIB: AIRESPACE-SWITCHING-MIB
43 + symbol:
44 + OID: 1.3.6.1.4.1.14179.1.1.5.1 # agentCurrentCPUUtilization
45 + name: cpu.usage
46 + - MIB: AIRESPACE-SWITCHING-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.14179.1.1.5.3 # agentFreeMemory
49 + scale_factor: 1000
50 + name: memory.free
51 + - MIB: AIRESPACE-SWITCHING-MIB
52 + symbol:
53 + OID: 1.3.6.1.4.1.14179.1.1.5.2 # agentTotalMemory
54 + scale_factor: 1000
55 + name: memory.total
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-load-balancer.yaml new
+137
@@ -0,0 +1,137 @@
1 +extends:
2 + - cisco.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.9.1.824 # Cisco ACE 4710
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "load_balancer"
10 +metrics:
11 + - MIB: CISCO-SLB-MIB
12 + table:
13 + OID: 1.3.6.1.4.1.9.9.161.1.1.1
14 + name: slbStatsTable
15 + symbols:
16 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.6
17 + name: slbStatsCreatedConnections
18 + metric_type: monotonic_count
19 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.7
20 + name: slbStatsCreatedHCConnections
21 + metric_type: monotonic_count
22 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.8
23 + name: slbStatsEstablishedConnections
24 + metric_type: monotonic_count
25 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.9
26 + name: slbStatsEstablishedHCConnections
27 + metric_type: monotonic_count
28 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.10
29 + name: slbStatsDestroyedConnections
30 + metric_type: monotonic_count
31 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.11
32 + name: slbStatsDestroyedHCConnections
33 + metric_type: monotonic_count
34 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.12
35 + name: slbStatsReassignedConnections
36 + metric_type: monotonic_count
37 + - OID: 1.3.6.1.4.1.9.9.161.1.1.1.1.13
38 + name: slbStatsReassignedHCConnections
39 + metric_type: monotonic_count
40 + metric_tags:
41 + - index: 1 # index `slbEntity`
42 + tag: slb_entity
43 +
44 + - MIB: CISCO-SLB-EXT-MIB
45 + table:
46 + OID: 1.3.6.1.4.1.9.9.254.1.1.1
47 + name: cslbxStatsTable
48 + symbols:
49 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.3
50 + name: cslbxStatsCurrConnections
51 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.5
52 + name: cslbxStatsFailedConns
53 + metric_type: monotonic_count
54 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.7
55 + name: cslbxStatsL4PolicyConns
56 + metric_type: monotonic_count
57 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.8
58 + name: cslbxStatsL7PolicyConns
59 + metric_type: monotonic_count
60 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.9
61 + name: cslbxStatsDroppedL4PolicyConns
62 + metric_type: monotonic_count
63 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.10
64 + name: cslbxStatsDroppedL7PolicyConns
65 + metric_type: monotonic_count
66 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.11
67 + name: cslbxStatsFtpConns
68 + metric_type: monotonic_count
69 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.12
70 + name: cslbxStatsHttpRedirectConns
71 + metric_type: monotonic_count
72 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.13
73 + name: cslbxStatsDroppedRedirectConns
74 + metric_type: monotonic_count
75 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.14
76 + name: cslbxStatsNoMatchPolicyRejects
77 + metric_type: monotonic_count
78 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.15
79 + name: cslbxStatsNoCfgPolicyRejects
80 + metric_type: monotonic_count
81 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.16
82 + name: cslbxStatsNoActiveServerRejects
83 + metric_type: monotonic_count
84 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.17
85 + name: cslbxStatsAclDenyRejects
86 + metric_type: monotonic_count
87 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.18
88 + name: cslbxStatsMaxParseLenRejects
89 + metric_type: monotonic_count
90 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.19
91 + name: cslbxStatsBadSslFormatRejects
92 + metric_type: monotonic_count
93 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.20
94 + name: cslbxStatsL7ParserErrorRejects
95 + metric_type: monotonic_count
96 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.21
97 + name: cslbxStatsVerMismatchRejects
98 + metric_type: monotonic_count
99 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.22
100 + name: cslbxStatsOutOfMemoryRejects
101 + metric_type: monotonic_count
102 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.23
103 + name: cslbxStatsTimedOutConnections
104 + metric_type: monotonic_count
105 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.24
106 + name: cslbxStatsTcpChecksumErrorPkts
107 + metric_type: monotonic_count
108 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.25
109 + name: cslbxStatsIpChecksumErrorPkts
110 + metric_type: monotonic_count
111 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.26
112 + name: cslbxStatsL4PolicyHCConns
113 + metric_type: monotonic_count
114 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.27
115 + name: cslbxStatsL7PolicyHCConns
116 + metric_type: monotonic_count
117 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.28
118 + name: cslbxStatsDroppedL4PolicyHCConns
119 + metric_type: monotonic_count
120 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.29
121 + name: cslbxStatsDroppedL7PolicyHCConns
122 + metric_type: monotonic_count
123 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.30
124 + name: cslbxStatsNoMatchPolicyHCRejects
125 + metric_type: monotonic_count
126 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.31
127 + name: cslbxStatsNoCfgPolicyHCRejects
128 + metric_type: monotonic_count
129 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.32
130 + name: cslbxStatsAclDenyHCRejects
131 + metric_type: monotonic_count
132 + - OID: 1.3.6.1.4.1.9.9.254.1.1.1.1.33
133 + name: cslbxStatsVerMismatchHCRejects
134 + metric_type: monotonic_count
135 + metric_tags:
136 + - index: 1 # index `slbEntity` of `slbStatsTable`
137 + tag: slb_entity
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-nexus.yaml new
+69
@@ -0,0 +1,69 @@
1 +# Profile for Cisco Nexus devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _cisco-generic.yaml
6 +
7 +device:
8 + vendor: "cisco"
9 +
10 +metadata:
11 + device:
12 + fields:
13 + type:
14 + value: "switch"
15 +
16 +sysobjectid:
17 + - 1.3.6.1.4.1.9.1.1216 # ciscoN7KC7018IOS
18 + - 1.3.6.1.4.1.9.1.1217 # ciscoN7KC7010IOS
19 + - 1.3.6.1.4.1.9.1.1915 # ciscoN9KC9508
20 + - 1.3.6.1.4.1.9.1.1923 # ciscoN9KC93128TX
21 + - 1.3.6.1.4.1.9.1.1924 # ciscoN9KC9396TX
22 + - 1.3.6.1.4.1.9.1.1925 # ciscoN9KC9396PX
23 + - 1.3.6.1.4.1.9.12.3.1.3.*
24 +
25 +metrics:
26 + - MIB: CISCO-ENTITY-SENSOR-MIB
27 + table:
28 + OID: 1.3.6.1.4.1.9.9.91.1.1.1
29 + name: entSensorValueTable
30 + symbols:
31 + - OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.4
32 + name: entSensorValue
33 + metric_tags:
34 + - symbol:
35 + OID: 1.3.6.1.4.1.9.9.91.1.1.1.1.1
36 + name: entSensorType
37 + tag: sensor_type
38 + mapping:
39 + 1: other
40 + 2: unknown
41 + 3: volts_ac
42 + 4: volts_dc
43 + 5: amperes
44 + 6: watts
45 + 7: hertz
46 + 8: celsius
47 + 9: percent_rh
48 + 10: rpm
49 + 11: cmm
50 + 12: truthvalue
51 + 13: special_enum
52 + 14: dbm
53 + 15: db
54 + - index: 1
55 + tag: sensor_id
56 + - MIB: CISCO-ENHANCED-MEMPOOL-MIB # Overrides generic cisco defaults from _cisco-cpu-memory.yaml
57 + table:
58 + OID: 1.3.6.1.4.1.9.9.221.1.1.1
59 + name: cempMemPoolTable
60 + symbols:
61 + - OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.7
62 + # core check only
63 + name: memory.used
64 + - OID: 1.3.6.1.4.1.9.9.221.1.1.1.1.8
65 + # core check only
66 + name: memory.free
67 + metric_tags:
68 + - tag: mem
69 + index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-sb.yaml new
+17
@@ -0,0 +1,17 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + # This profile does not import cisco.yaml on purpose
5 +sysobjectid:
6 + - 1.3.6.1.4.1.9.6.1.* # Cisco Small Business
7 + - 1.3.6.1.4.1.9.6.1.88.26.1 # Cisco SG200-26
8 +metadata:
9 + device:
10 + fields:
11 + vendor:
12 + value: "cisco"
13 +metrics:
14 + - MIB: CISCOSB-rndMng
15 + symbol:
16 + name: cpu.usage
17 + OID: 1.3.6.1.4.1.9.6.1.101.1.8
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-ucs.yaml new
+1749
@@ -0,0 +1,1749 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + # This profile does not import cisco.yaml on purpose
5 +sysobjectid:
6 + - 1.3.6.1.4.1.9.1.1683 # UCS C240
7 + - 1.3.6.1.4.1.9.1.2178 # UCS C220 M4
8 + - 1.3.6.1.4.1.9.1.2492 # UCS C220 M5
9 + - 1.3.6.1.4.1.9.12.3.1.3.1062 # UCS 6248UP
10 +metadata:
11 + device:
12 + fields:
13 + vendor:
14 + value: "cisco"
15 +metrics:
16 + - MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
17 + table:
18 + name: cucsComputeBoardTable
19 + OID: 1.3.6.1.4.1.9.9.719.1.9.6
20 + symbols:
21 + - name: cucsComputeBoard
22 + constant_value_one: true
23 + metric_tags:
24 + - symbol:
25 + name: cucsComputeBoardDn
26 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.2
27 + tag: cucs_compute_board_dn
28 + - symbol:
29 + name: cucsComputeBoardModel
30 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.6
31 + tag: cucs_compute_board_model
32 + - symbol:
33 + name: cucsComputeBoardSerial
34 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.14
35 + tag: cucs_compute_board_serial
36 + - symbol:
37 + name: cucsComputeBoardVendor
38 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.16
39 + tag: cucs_compute_board_vendor
40 + - symbol:
41 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.7
42 + name: cucsComputeBoardOperPower
43 + tag: cucs_compute_board_oper_power
44 + mapping:
45 + 0: unknown
46 + 1: on
47 + 2: test
48 + 3: off
49 + 4: online
50 + 5: offline
51 + 6: offduty
52 + 7: degraded
53 + 8: power_save
54 + 9: error
55 + 10: ok
56 + 11: failed
57 + 100: not_supported
58 + - symbol:
59 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.8
60 + name: cucsComputeBoardOperState
61 + tag: cucs_compute_board_oper_state
62 + mapping:
63 + 0: unknown
64 + 1: operable
65 + 2: inoperable
66 + 3: degraded
67 + 4: powered_off
68 + 5: power_problem
69 + 6: removed
70 + 7: voltage_problem
71 + 8: thermal_problem
72 + 9: performance_problem
73 + 10: accessibility_problem
74 + 11: identity_unestablishable
75 + 12: bios_post_timeout
76 + 13: disabled
77 + 14: malformed_fru
78 + 15: backplane_port_problem
79 + 16: chassis_intrusion
80 + 51: fabric_conn_problem
81 + 52: fabric_unsupported_conn
82 + 81: config
83 + 82: equipment_problem
84 + 83: decomissioning
85 + 84: chassis_limit_exceeded
86 + 100: not_supported
87 + 101: discovery
88 + 102: discovery_failed
89 + 103: identify
90 + 104: post_failure
91 + 105: upgrade_problem
92 + 106: peer_comm_problem
93 + 107: auto_upgrade
94 + 108: link_activate_blocked
95 + - symbol:
96 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.9
97 + name: cucsComputeBoardOperability
98 + tag: cucs_compute_board_operability
99 + mapping:
100 + 0: unknown
101 + 1: operable
102 + 2: inoperable
103 + 3: degraded
104 + 4: powered_off
105 + 5: power_problem
106 + 6: removed
107 + 7: voltage_problem
108 + 8: thermal_problem
109 + 9: performance_problem
110 + 10: accessibility_problem
111 + 11: identity_unestablishable
112 + 12: bios_post_timeout
113 + 13: disabled
114 + 14: malformed_fru
115 + 15: backplane_port_problem
116 + 16: chassis_intrusion
117 + 51: fabric_conn_problem
118 + 52: fabric_unsupported_conn
119 + 81: config
120 + 82: equipment_problem
121 + 83: decomissioning
122 + 84: chassis_limit_exceeded
123 + 100: not_supported
124 + 101: discovery
125 + 102: discovery_failed
126 + 103: identify
127 + 104: post_failure
128 + 105: upgrade_problem
129 + 106: peer_comm_problem
130 + 107: auto_upgrade
131 + 108: link_activate_blocked
132 + - symbol:
133 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.10
134 + name: cucsComputeBoardPerf
135 + tag: cucs_compute_board_perf
136 + mapping:
137 + 0: unknown
138 + 1: ok
139 + 2: upper_non_recoverable
140 + 3: upper_critical
141 + 4: upper_non_critical
142 + 5: lower_non_critical
143 + 6: lower_critical
144 + 7: lower_non_recoverable
145 + 100: not_supported
146 + - symbol:
147 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.11
148 + name: cucsComputeBoardPower
149 + tag: cucs_compute_board_power
150 + mapping:
151 + 0: unknown
152 + 1: on
153 + 2: test
154 + 3: off
155 + 4: online
156 + 5: offline
157 + 6: offduty
158 + 7: degraded
159 + 8: power_save
160 + 9: error
161 + 10: ok
162 + 11: failed
163 + 100: not_supported
164 + - symbol:
165 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.12
166 + name: cucsComputeBoardPresence
167 + tag: cucs_compute_board_presence
168 + mapping:
169 + 0: unknown
170 + 1: empty
171 + 10: equipped
172 + 11: missing
173 + 12: mismatch
174 + 13: equipped_not_primary
175 + 14: equipped_slave
176 + 15: mismatch_slave
177 + 16: missing_slave
178 + 20: equipped_identity_unestablishable
179 + 21: mismatch_identity_unestablishable
180 + 22: equipped_with_malformed_fru
181 + 30: inaccessible
182 + 40: unauthorized
183 + 100: not_supported
184 + 101: equipped_unsupported
185 + 102: equipped_disc_not_started
186 + 103: equipped_disc_in_progress
187 + 104: equipped_disc_error
188 + 105: equipped_disc_unknown
189 + - symbol:
190 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.15
191 + name: cucsComputeBoardThermal
192 + tag: cucs_compute_board_thermal
193 + mapping:
194 + 0: unknown
195 + 1: ok
196 + 2: upper_non_recoverable
197 + 3: upper_critical
198 + 4: upper_non_critical
199 + 5: lower_non_critical
200 + 6: lower_critical
201 + 7: lower_non_recoverable
202 + 100: not_supported
203 + - symbol:
204 + OID: 1.3.6.1.4.1.9.9.719.1.9.6.1.17
205 + name: cucsComputeBoardVoltage
206 + tag: cucs_compute_board_voltage
207 + mapping:
208 + 0: unknown
209 + 1: ok
210 + 2: upper_non_recoverable
211 + 3: upper_critical
212 + 4: upper_non_critical
213 + 5: lower_non_critical
214 + 6: lower_critical
215 + 7: lower_non_recoverable
216 + 100: not_supported
217 + - MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
218 + table:
219 + name: cucsComputeMbPowerStatsTable
220 + OID: 1.3.6.1.4.1.9.9.719.1.9.14
221 + symbols:
222 + - name: cucsComputeMbPowerStatsConsumedPower
223 + OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.4
224 + - name: cucsComputeMbPowerStatsInputCurrent
225 + OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.8
226 + - name: cucsComputeMbPowerStatsInputVoltage
227 + OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.12
228 + metric_tags:
229 + - symbol:
230 + name: cucsComputeMbPowerStatsDn
231 + OID: 1.3.6.1.4.1.9.9.719.1.9.14.1.2
232 + tag: cucs_compute_mb_power_stats_dn
233 + - MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
234 + table:
235 + name: cucsComputeRackUnitTable
236 + OID: 1.3.6.1.4.1.9.9.719.1.9.35
237 + symbols:
238 + - name: memory.free
239 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.9 # cucsComputeRackUnitAvailableMemory
240 + - name: memory.total
241 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.49 # cucsComputeRackUnitTotalMemory
242 + metric_tags:
243 + - index: 1
244 + tag: mem
245 + - MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
246 + table:
247 + name: cucsComputeRackUnitTable
248 + OID: 1.3.6.1.4.1.9.9.719.1.9.35
249 + symbols:
250 + - name: cucsComputeRackUnitAvailableMemory
251 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.9
252 + - name: cucsComputeRackUnitTotalMemory
253 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.49
254 + metric_tags:
255 + - symbol:
256 + name: cucsComputeRackUnitDn
257 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.2
258 + tag: cucs_compute_rack_unit_dn
259 + - symbol:
260 + name: cucsComputeRackUnitModel
261 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.32
262 + tag: cucs_compute_rack_unit_model
263 + - symbol:
264 + name: cucsComputeRackUnitName
265 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.33
266 + tag: cucs_compute_rack_unit_name
267 + - symbol:
268 + name: cucsComputeRackUnitNumOfCores
269 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.35
270 + tag: cucs_compute_rack_unit_num_of_cores
271 + - symbol:
272 + name: cucsComputeRackUnitNumOfCpus
273 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.36
274 + tag: cucs_compute_rack_unit_num_of_cpus
275 + - symbol:
276 + name: cucsComputeRackUnitNumOfThreads
277 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.39
278 + tag: cucs_compute_rack_unit_num_of_threads
279 + - symbol:
280 + name: cucsComputeRackUnitSerial
281 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.47
282 + tag: cucs_compute_rack_unit_serial
283 + - symbol:
284 + name: cucsComputeRackUnitUuid
285 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.50
286 + tag: cucs_compute_rack_unit_uuid
287 + - symbol:
288 + name: cucsComputeRackUnitVendor
289 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.51
290 + tag: cucs_compute_rack_unit_vendor
291 + - symbol:
292 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.4
293 + name: cucsComputeRackUnitAdminPower
294 + tag: cucs_compute_rack_unit_admin_power
295 + mapping:
296 + 2: cycle_immediate
297 + 3: cycle_wait
298 + 4: hard_reset_immediate
299 + 5: hard_reset_wait
300 + 12: cmos_reset_immediate
301 + 13: bmc_reset_immediate
302 + 14: bmc_reset_wait
303 + 15: diagnostic_interrupt
304 + 16: kvm_reset
305 + 30: policy
306 + 31: admin_up
307 + 32: admin_down
308 + 33: ipmi_reset
309 + - symbol:
310 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.5
311 + name: cucsComputeRackUnitAdminState
312 + tag: cucs_compute_rack_unit_admin_state
313 + mapping:
314 + 1: in_service
315 + 2: out_of_service
316 + 3: in_maintenance
317 + - symbol:
318 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.7
319 + name: cucsComputeRackUnitAssociation
320 + tag: cucs_compute_rack_unit_association
321 + mapping:
322 + 0: none
323 + 1: establishing
324 + 2: associated
325 + 3: removing
326 + 4: failed
327 + 5: throttled
328 + - symbol:
329 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.8
330 + name: cucsComputeRackUnitAvailability
331 + tag: cucs_compute_rack_unit_availability
332 + mapping:
333 + 0: unavailable
334 + 1: available
335 + - symbol:
336 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.10
337 + name: cucsComputeRackUnitCheckPoint
338 + tag: cucs_compute_rack_unit_check_point
339 + mapping:
340 + 0: unknown
341 + 1: removing
342 + 2: shallow_checkpoint
343 + 3: deep_checkpoint
344 + 4: discovered
345 + - symbol:
346 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.40
347 + name: cucsComputeRackUnitOperPower
348 + tag: cucs_compute_rack_unit_oper_power
349 + mapping:
350 + 0: unknown
351 + 1: on
352 + 2: test
353 + 3: off
354 + 4: online
355 + 5: offline
356 + 6: offduty
357 + 7: degraded
358 + 8: power_save
359 + 9: error
360 + 10: ok
361 + 11: failed
362 + 100: not_supported
363 + - symbol:
364 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.42
365 + name: cucsComputeRackUnitOperState
366 + tag: cucs_compute_rack_unit_oper_state
367 + mapping:
368 + 0: indeterminate
369 + 1: unassociated
370 + 10: ok
371 + 11: discovery
372 + 12: config
373 + 13: unconfig
374 + 14: power_off
375 + 15: restart
376 + 20: maintenance
377 + 21: test
378 + 29: compute_mismatch
379 + 30: compute_failed
380 + 31: degraded
381 + 32: discovery_failed
382 + 33: config_failure
383 + 34: unconfig_failed
384 + 35: test_failed
385 + 36: maintenance_failed
386 + 40: removed
387 + 41: disabled
388 + 50: inaccessible
389 + 60: thermal_problem
390 + 61: power_problem
391 + 62: voltage_problem
392 + 63: inoperable
393 + 101: decomissioning
394 + 201: bios_restore
395 + 202: cmos_reset
396 + 203: diagnostics
397 + 204: diagnostics_failed
398 + 210: pending_reboot
399 + 211: pending_reassociation
400 + 212: svnic_not_present
401 + - symbol:
402 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.43
403 + name: cucsComputeRackUnitOperability
404 + tag: cucs_compute_rack_unit_operability
405 + mapping:
406 + 0: unknown
407 + 1: operable
408 + 2: inoperable
409 + 3: degraded
410 + 4: powered_off
411 + 5: power_problem
412 + 6: removed
413 + 7: voltage_problem
414 + 8: thermal_problem
415 + 9: performance_problem
416 + 10: accessibility_problem
417 + 11: identity_unestablishable
418 + 12: bios_post_timeout
419 + 13: disabled
420 + 14: malformed_fru
421 + 15: backplane_port_problem
422 + 16: chassis_intrusion
423 + 51: fabric_conn_problem
424 + 52: fabric_unsupported_conn
425 + 81: config
426 + 82: equipment_problem
427 + 83: decomissioning
428 + 84: chassis_limit_exceeded
429 + 100: not_supported
430 + 101: discovery
431 + 102: discovery_failed
432 + 103: identify
433 + 104: post_failure
434 + 105: upgrade_problem
435 + 106: peer_comm_problem
436 + 107: auto_upgrade
437 + 108: link_activate_blocked
438 + - symbol:
439 + OID: 1.3.6.1.4.1.9.9.719.1.9.35.1.45
440 + name: cucsComputeRackUnitPresence
441 + tag: cucs_compute_rack_unit_presence
442 + mapping:
443 + 0: unknown
444 + 1: empty
445 + 10: equipped
446 + 11: missing
447 + 12: mismatch
448 + 13: equipped_not_primary
449 + 14: equipped_slave
450 + 15: mismatch_slave
451 + 16: missing_slave
452 + 20: equipped_identity_unestablishable
453 + 21: mismatch_identity_unestablishable
454 + 22: equipped_with_malformed_fru
455 + 30: inaccessible
456 + 40: unauthorized
457 + 101: equipped_unsupported
458 + 102: equipped_deprecated
459 + - MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
460 + table:
461 + name: cucsComputeRackUnitMbTempStatsTable
462 + OID: 1.3.6.1.4.1.9.9.719.1.9.44
463 + symbols:
464 + - name: cucsComputeRackUnitMbTempStatsAmbientTemp
465 + OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.4
466 + - name: cucsComputeRackUnitMbTempStatsFrontTemp
467 + OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.8
468 + - name: cucsComputeRackUnitMbTempStatsIoh1Temp
469 + OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.13
470 + - name: cucsComputeRackUnitMbTempStatsRearTemp
471 + OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.21
472 + metric_tags:
473 + - symbol:
474 + name: cucsComputeRackUnitMbTempStatsDn
475 + OID: 1.3.6.1.4.1.9.9.719.1.9.44.1.2
476 + tag: cucs_compute_rack_unit_mb_temp_stats_dn
477 + - MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
478 + table:
479 + name: cucsEquipmentFanTable
480 + OID: 1.3.6.1.4.1.9.9.719.1.15.12
481 + symbols:
482 + - name: cucsEquipmentFan
483 + constant_value_one: true
484 + metric_tags:
485 + - symbol:
486 + name: cucsEquipmentFanDn
487 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.2
488 + tag: cucs_equipment_fan_dn
489 + - symbol:
490 + name: cucsEquipmentFanIntType
491 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.6
492 + tag: cucs_equipment_fan_int_type
493 + mapping:
494 + 0: chassis
495 + 1: switch
496 + 2: fex
497 + - symbol:
498 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.9
499 + name: cucsEquipmentFanOperState
500 + tag: cucs_equipment_fan_oper_state
501 + mapping:
502 + 0: unknown
503 + 1: operable
504 + 2: inoperable
505 + 3: degraded
506 + 4: powered_off
507 + 5: power_problem
508 + 6: removed
509 + 7: voltage_problem
510 + 8: thermal_problem
511 + 9: performance_problem
512 + 10: accessibility_problem
513 + 11: identity_unestablishable
514 + 12: bios_post_timeout
515 + 13: disabled
516 + 14: malformed_fru
517 + 15: backplane_port_problem
518 + 16: chassis_intrusion
519 + 51: fabric_conn_problem
520 + 52: fabric_unsupported_conn
521 + 81: config
522 + 82: equipment_problem
523 + 83: decomissioning
524 + 84: chassis_limit_exceeded
525 + 100: not_supported
526 + 101: discovery
527 + 102: discovery_failed
528 + 103: identify
529 + 104: post_failure
530 + 105: upgrade_problem
531 + 106: peer_comm_problem
532 + 107: auto_upgrade
533 + 108: link_activate_blocked
534 + - symbol:
535 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.10
536 + name: cucsEquipmentFanOperability
537 + tag: cucs_equipment_fan_operability
538 + mapping:
539 + 0: unknown
540 + 1: operable
541 + 2: inoperable
542 + 3: degraded
543 + 4: powered_off
544 + 5: power_problem
545 + 6: removed
546 + 7: voltage_problem
547 + 8: thermal_problem
548 + 9: performance_problem
549 + 10: accessibility_problem
550 + 11: identity_unestablishable
551 + 12: bios_post_timeout
552 + 13: disabled
553 + 14: malformed_fru
554 + 15: backplane_port_problem
555 + 16: chassis_intrusion
556 + 51: fabric_conn_problem
557 + 52: fabric_unsupported_conn
558 + 81: config
559 + 82: equipment_problem
560 + 83: decomissioning
561 + 84: chassis_limit_exceeded
562 + 100: not_supported
563 + 101: discovery
564 + 102: discovery_failed
565 + 103: identify
566 + 104: post_failure
567 + 105: upgrade_problem
568 + 106: peer_comm_problem
569 + 107: auto_upgrade
570 + 108: link_activate_blocked
571 + - symbol:
572 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.11
573 + name: cucsEquipmentFanPerf
574 + tag: cucs_equipment_fan_perf
575 + mapping:
576 + 0: unknown
577 + 1: ok
578 + 2: upper_non_recoverable
579 + 3: upper_critical
580 + 4: upper_non_critical
581 + 5: lower_non_critical
582 + 6: lower_critical
583 + 7: lower_non_recoverable
584 + 100: not_supported
585 + - symbol:
586 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.12
587 + name: cucsEquipmentFanPower
588 + tag: cucs_equipment_fan_power
589 + mapping:
590 + 0: unknown
591 + 1: on
592 + 2: test
593 + 3: off
594 + 4: online
595 + 5: offline
596 + 6: offduty
597 + 7: degraded
598 + 8: power_save
599 + 9: error
600 + 10: ok
601 + 11: failed
602 + 100: not_supported
603 + - symbol:
604 + OID: 1.3.6.1.4.1.9.9.719.1.15.12.1.13
605 + name: cucsEquipmentFanPresence
606 + tag: cucs_equipment_fan_presence
607 + mapping:
608 + 0: unknown
609 + 1: empty
610 + 10: equipped
611 + 11: missing
612 + 12: mismatch
613 + 13: equipped_not_primary
614 + 14: equipped_slave
615 + 15: mismatch_slave
616 + 16: missing_slave
617 + 20: equipped_identity_unestablishable
618 + 21: mismatch_identity_unestablishable
619 + 22: equipped_with_malformed_fru
620 + 30: inaccessible
621 + 40: unauthorized
622 + 100: not_supported
623 + 101: equipped_unsupported
624 + 102: equipped_disc_not_started
625 + 103: equipped_disc_in_progress
626 + 104: equipped_disc_error
627 + 105: equipped_disc_unknown
628 + - MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
629 + table:
630 + name: cucsEquipmentPsuTable
631 + OID: 1.3.6.1.4.1.9.9.719.1.15.56
632 + symbols:
633 + - name: cucsEquipmentPsu
634 + constant_value_one: true
635 + metric_tags:
636 + - symbol:
637 + name: cucsEquipmentPsuDn
638 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.2
639 + tag: cucs_equipment_psu_dn
640 + - symbol:
641 + name: cucsEquipmentPsuModel
642 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.6
643 + tag: cucs_equipment_psu_model
644 + - symbol:
645 + name: cucsEquipmentPsuRevision
646 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.12
647 + tag: cucs_equipment_psu_revision
648 + - symbol:
649 + name: cucsEquipmentPsuSerial
650 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.13
651 + tag: cucs_equipment_psu_serial
652 + - symbol:
653 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.7
654 + name: cucsEquipmentPsuOperState
655 + tag: cucs_equipment_psu_oper_state
656 + mapping:
657 + 0: unknown
658 + 1: operable
659 + 2: inoperable
660 + 3: degraded
661 + 4: powered_off
662 + 5: power_problem
663 + 6: removed
664 + 7: voltage_problem
665 + 8: thermal_problem
666 + 9: performance_problem
667 + 10: accessibility_problem
668 + 11: identity_unestablishable
669 + 12: bios_post_timeout
670 + 13: disabled
671 + 14: malformed_fru
672 + 15: backplane_port_problem
673 + 16: chassis_intrusion
674 + 51: fabric_conn_problem
675 + 52: fabric_unsupported_conn
676 + 81: config
677 + 82: equipment_problem
678 + 83: decomissioning
679 + 84: chassis_limit_exceeded
680 + 100: not_supported
681 + 101: discovery
682 + 102: discovery_failed
683 + 103: identify
684 + 104: post_failure
685 + 105: upgrade_problem
686 + 106: peer_comm_problem
687 + 107: auto_upgrade
688 + 108: link_activate_blocked
689 + - symbol:
690 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.8
691 + name: cucsEquipmentPsuOperability
692 + tag: cucs_equipment_psu_operability
693 + mapping:
694 + 0: unknown
695 + 1: operable
696 + 2: inoperable
697 + 3: degraded
698 + 4: powered_off
699 + 5: power_problem
700 + 6: removed
701 + 7: voltage_problem
702 + 8: thermal_problem
703 + 9: performance_problem
704 + 10: accessibility_problem
705 + 11: identity_unestablishable
706 + 12: bios_post_timeout
707 + 13: disabled
708 + 14: malformed_fru
709 + 15: backplane_port_problem
710 + 16: chassis_intrusion
711 + 51: fabric_conn_problem
712 + 52: fabric_unsupported_conn
713 + 81: config
714 + 82: equipment_problem
715 + 83: decomissioning
716 + 84: chassis_limit_exceeded
717 + 100: not_supported
718 + 101: discovery
719 + 102: discovery_failed
720 + 103: identify
721 + 104: post_failure
722 + 105: upgrade_problem
723 + 106: peer_comm_problem
724 + 107: auto_upgrade
725 + 108: link_activate_blocked
726 + - symbol:
727 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.9
728 + name: cucsEquipmentPsuPerf
729 + tag: cucs_equipment_psu_perf
730 + mapping:
731 + 0: unknown
732 + 1: ok
733 + 2: upper_non_recoverable
734 + 3: upper_critical
735 + 4: upper_non_critical
736 + 5: lower_non_critical
737 + 6: lower_critical
738 + 7: lower_non_recoverable
739 + 100: not_supported
740 + - symbol:
741 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.10
742 + name: cucsEquipmentPsuPower
743 + tag: cucs_equipment_psu_power
744 + mapping:
745 + 0: unknown
746 + 1: on
747 + 2: test
748 + 3: off
749 + 4: online
750 + 5: offline
751 + 6: offduty
752 + 7: degraded
753 + 8: power_save
754 + 9: error
755 + 10: ok
756 + 11: failed
757 + 100: not_supported
758 + - symbol:
759 + OID: 1.3.6.1.4.1.9.9.719.1.15.56.1.11
760 + name: cucsEquipmentPsuPresence
761 + tag: cucs_equipment_psu_presence
762 + mapping:
763 + 0: unknown
764 + 1: empty
765 + 10: equipped
766 + 11: missing
767 + 12: mismatch
768 + 13: equipped_not_primary
769 + 14: equipped_slave
770 + 15: mismatch_slave
771 + 16: missing_slave
772 + 20: equipped_identity_unestablishable
773 + 21: mismatch_identity_unestablishable
774 + 22: equipped_with_malformed_fru
775 + 30: inaccessible
776 + 40: unauthorized
777 + 100: not_supported
778 + 101: equipped_unsupported
779 + 102: equipped_disc_not_started
780 + 103: equipped_disc_in_progress
781 + 104: equipped_disc_error
782 + 105: equipped_disc_unknown
783 + - MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
784 + table:
785 + name: cucsEquipmentHealthLedTable
786 + OID: 1.3.6.1.4.1.9.9.719.1.15.114
787 + symbols:
788 + - name: cucsEquipmentHealthLed
789 + constant_value_one: true
790 + metric_tags:
791 + - symbol:
792 + name: cucsEquipmentHealthLedDn
793 + OID: 1.3.6.1.4.1.9.9.719.1.15.114.1.2
794 + tag: cucs_equipment_health_led_dn
795 + - symbol:
796 + OID: 1.3.6.1.4.1.9.9.719.1.15.114.1.4
797 + name: cucsEquipmentHealthLedColor
798 + tag: cucs_equipment_health_led_color
799 + mapping:
800 + 0: unknown
801 + 1: green
802 + 2: amber
803 + 3: red
804 + 4: blue
805 + - symbol:
806 + OID: 1.3.6.1.4.1.9.9.719.1.15.114.1.5
807 + name: cucsEquipmentHealthLedHealthLedState
808 + tag: cucs_equipment_health_led_state
809 + mapping:
810 + 0: normal
811 + 1: minor
812 + 2: critical
813 + - symbol:
814 + OID: 1.3.6.1.4.1.9.9.719.1.15.114.1.9
815 + name: cucsEquipmentHealthLedOperState
816 + tag: cucs_equipment_health_led_oper_state
817 + mapping:
818 + 0: unknown
819 + 1: on
820 + 2: off
821 + 3: blinking
822 + 4: eth
823 + 5: fc
824 + 6: unsupported
825 + - MIB: CISCO-UNIFIED-COMPUTING-MEMORY-MIB
826 + table:
827 + name: cucsMemoryUnitTable
828 + OID: 1.3.6.1.4.1.9.9.719.1.30.11
829 + symbols:
830 + - name: cucsMemoryUnitCapacity
831 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.6
832 + metric_tags:
833 + - symbol:
834 + name: cucsMemoryUnitDn
835 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.2
836 + tag: cucs_memory_unit_dn
837 + - symbol:
838 + name: cucsMemoryUnitLocation
839 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.11
840 + tag: cucs_memory_unit_location
841 + - symbol:
842 + name: cucsMemoryUnitType
843 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.23
844 + tag: cucs_memory_unit_type
845 + mapping:
846 + 0: undiscovered
847 + 1: other
848 + 2: unknown
849 + 3: dram
850 + 4: edram
851 + 5: vram
852 + 6: sram
853 + 7: ram
854 + 8: rom
855 + 9: flash
856 + 10: eeprom
857 + 11: feprom
858 + 12: eprom
859 + 13: cdram
860 + 14: n3dram
861 + 15: sdram
862 + 16: sgram
863 + 17: rdram
864 + 18: ddr
865 + 19: ddr2
866 + 20: ddr2_fb_dimm
867 + 24: ddr3
868 + 25: fbd2
869 + 26: ddr4
870 + - symbol:
871 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.13
872 + name: cucsMemoryUnitOperState
873 + tag: cucs_memory_unit_oper_state
874 + mapping:
875 + 0: unknown
876 + 1: operable
877 + 2: inoperable
878 + 3: degraded
879 + 4: powered_off
880 + 5: power_problem
881 + 6: removed
882 + 7: voltage_problem
883 + 8: thermal_problem
884 + 9: performance_problem
885 + 10: accessibility_problem
886 + 11: identity_unestablishable
887 + 12: bios_post_timeout
888 + 13: disabled
889 + 14: malformed_fru
890 + 15: backplane_port_problem
891 + 16: chassis_intrusion
892 + 51: fabric_conn_problem
893 + 52: fabric_unsupported_conn
894 + 81: config
895 + 82: equipment_problem
896 + 83: decomissioning
897 + 84: chassis_limit_exceeded
898 + 100: not_supported
899 + 101: discovery
900 + 102: discovery_failed
901 + 103: identify
902 + 104: post_failure
903 + 105: upgrade_problem
904 + 106: peer_comm_problem
905 + 107: auto_upgrade
906 + 108: link_activate_blocked
907 + - symbol:
908 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.14
909 + name: cucsMemoryUnitOperability
910 + tag: cucs_memory_unit_operability
911 + mapping:
912 + 0: unknown
913 + 1: operable
914 + 2: inoperable
915 + 3: degraded
916 + 4: powered_off
917 + 5: power_problem
918 + 6: removed
919 + 7: voltage_problem
920 + 8: thermal_problem
921 + 9: performance_problem
922 + 10: accessibility_problem
923 + 11: identity_unestablishable
924 + 12: bios_post_timeout
925 + 13: disabled
926 + 14: malformed_fru
927 + 15: backplane_port_problem
928 + 16: chassis_intrusion
929 + 51: fabric_conn_problem
930 + 52: fabric_unsupported_conn
931 + 81: config
932 + 82: equipment_problem
933 + 83: decomissioning
934 + 84: chassis_limit_exceeded
935 + 100: not_supported
936 + 101: discovery
937 + 102: discovery_failed
938 + 103: identify
939 + 104: post_failure
940 + 105: upgrade_problem
941 + 106: peer_comm_problem
942 + 107: auto_upgrade
943 + 108: link_activate_blocked
944 + - symbol:
945 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.15
946 + name: cucsMemoryUnitPerf
947 + tag: cucs_memory_unit_perf
948 + mapping:
949 + 0: unknown
950 + 1: ok
951 + 2: upper_non_recoverable
952 + 3: upper_critical
953 + 4: upper_non_critical
954 + 5: lower_non_critical
955 + 6: lower_critical
956 + 7: lower_non_recoverable
957 + 100: not_supported
958 + - symbol:
959 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.16
960 + name: cucsMemoryUnitPower
961 + tag: cucs_memory_unit_power
962 + mapping:
963 + 0: unknown
964 + 1: on
965 + 2: test
966 + 3: off
967 + 4: online
968 + 5: offline
969 + 6: offduty
970 + 7: degraded
971 + 8: power_save
972 + 9: error
973 + 10: ok
974 + 11: failed
975 + 100: not_supported
976 + - symbol:
977 + OID: 1.3.6.1.4.1.9.9.719.1.30.11.1.17
978 + name: cucsMemoryUnitPresence
979 + tag: cucs_memory_unit_presence
980 + mapping:
981 + 0: unknown
982 + 1: empty
983 + 10: equipped
984 + 11: missing
985 + 12: mismatch
986 + 13: equipped_not_primary
987 + 14: equipped_slave
988 + 15: mismatch_slave
989 + 16: missing_slave
990 + 20: equipped_identity_unestablishable
991 + 21: mismatch_identity_unestablishable
992 + 22: equipped_with_malformed_fru
993 + 30: inaccessible
994 + 40: unauthorized
995 + 100: not_supported
996 + 101: equipped_unsupported
997 + 102: equipped_disc_not_started
998 + 103: equipped_disc_in_progress
999 + 104: equipped_disc_error
1000 + 105: equipped_disc_unknown
1001 + - MIB: CISCO-UNIFIED-COMPUTING-MEMORY-MIB
1002 + table:
1003 + name: cucsMemoryUnitEnvStatsTable
1004 + OID: 1.3.6.1.4.1.9.9.719.1.30.12
1005 + symbols:
1006 + - name: cucsMemoryUnitEnvStatsTemperature
1007 + OID: 1.3.6.1.4.1.9.9.719.1.30.12.1.6
1008 + metric_tags:
1009 + - symbol:
1010 + name: cucsMemoryUnitEnvStatsDn
1011 + OID: 1.3.6.1.4.1.9.9.719.1.30.12.1.2
1012 + tag: cucs_memory_unit_env_stats_dn
1013 + - MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB
1014 + table:
1015 + name: cucsProcessorEnvStatsTable
1016 + OID: 1.3.6.1.4.1.9.9.719.1.41.2
1017 + symbols:
1018 + - name: cucsProcessorEnvStatsTemperature
1019 + OID: 1.3.6.1.4.1.9.9.719.1.41.2.1.10
1020 + metric_tags:
1021 + - symbol:
1022 + name: cucsProcessorEnvStatsDn
1023 + OID: 1.3.6.1.4.1.9.9.719.1.41.2.1.2
1024 + tag: cucs_processor_env_stats_dn
1025 + - MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB
1026 + table:
1027 + name: cucsProcessorUnitTable
1028 + OID: 1.3.6.1.4.1.9.9.719.1.41.9
1029 + symbols:
1030 + - name: cucsProcessorUnit
1031 + constant_value_one: true
1032 + metric_tags:
1033 + - symbol:
1034 + name: cucsProcessorUnitDn
1035 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.2
1036 + tag: cucs_processor_unit_dn
1037 + - symbol:
1038 + name: cucsProcessorUnitArch
1039 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.4
1040 + tag: cucs_processor_unit_arch
1041 + mapping:
1042 + 0: any
1043 + 1: intel_p4c
1044 + 132: opteron
1045 + 134: turion64
1046 + 135: dual_core_opteron
1047 + 178: pentium4
1048 + 179: xeon
1049 + 181: xeon_mp
1050 + - symbol:
1051 + name: cucsProcessorUnitCores
1052 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.5
1053 + tag: cucs_processor_unit_cores
1054 + - symbol:
1055 + name: cucsProcessorUnitCoresEnabled
1056 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.6
1057 + tag: cucs_processor_unit_cores_enabled
1058 + - symbol:
1059 + name: cucsProcessorUnitModel
1060 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.8
1061 + tag: cucs_processor_unit_model
1062 + - symbol:
1063 + name: cucsProcessorUnitThreads
1064 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.20
1065 + tag: cucs_processor_unit_threads
1066 + - symbol:
1067 + name: cucsProcessorUnitVendor
1068 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.21
1069 + tag: cucs_processor_unit_vendor
1070 + - symbol:
1071 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.9
1072 + name: cucsProcessorUnitOperState
1073 + tag: cucs_processor_unit_oper_state
1074 + mapping:
1075 + 0: unknown
1076 + 1: operable
1077 + 2: inoperable
1078 + 3: degraded
1079 + 4: powered_off
1080 + 5: power_problem
1081 + 6: removed
1082 + 7: voltage_problem
1083 + 8: thermal_problem
1084 + 9: performance_problem
1085 + 10: accessibility_problem
1086 + 11: identity_unestablishable
1087 + 12: bios_post_timeout
1088 + 13: disabled
1089 + 14: malformed_fru
1090 + 15: backplane_port_problem
1091 + 16: chassis_intrusion
1092 + 51: fabric_conn_problem
1093 + 52: fabric_unsupported_conn
1094 + 81: config
1095 + 82: equipment_problem
1096 + 83: decomissioning
1097 + 84: chassis_limit_exceeded
1098 + 100: not_supported
1099 + 101: discovery
1100 + 102: discovery_failed
1101 + 103: identify
1102 + 104: post_failure
1103 + 105: upgrade_problem
1104 + 106: peer_comm_problem
1105 + 107: auto_upgrade
1106 + 108: link_activate_blocked
1107 + - symbol:
1108 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.10
1109 + name: cucsProcessorUnitOperability
1110 + tag: cucs_processor_unit_operability
1111 + mapping:
1112 + 0: unknown
1113 + 1: operable
1114 + 2: inoperable
1115 + 3: degraded
1116 + 4: powered_off
1117 + 5: power_problem
1118 + 6: removed
1119 + 7: voltage_problem
1120 + 8: thermal_problem
1121 + 9: performance_problem
1122 + 10: accessibility_problem
1123 + 11: identity_unestablishable
1124 + 12: bios_post_timeout
1125 + 13: disabled
1126 + 14: malformed_fru
1127 + 15: backplane_port_problem
1128 + 16: chassis_intrusion
1129 + 51: fabric_conn_problem
1130 + 52: fabric_unsupported_conn
1131 + 81: config
1132 + 82: equipment_problem
1133 + 83: decomissioning
1134 + 84: chassis_limit_exceeded
1135 + 100: not_supported
1136 + 101: discovery
1137 + 102: discovery_failed
1138 + 103: identify
1139 + 104: post_failure
1140 + 105: upgrade_problem
1141 + 106: peer_comm_problem
1142 + 107: auto_upgrade
1143 + 108: link_activate_blocked
1144 + - symbol:
1145 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.11
1146 + name: cucsProcessorUnitPerf
1147 + tag: cucs_processor_unit_perf
1148 + mapping:
1149 + 0: unknown
1150 + 1: ok
1151 + 2: upper_non_recoverable
1152 + 3: upper_critical
1153 + 4: upper_non_critical
1154 + 5: lower_non_critical
1155 + 6: lower_critical
1156 + 7: lower_non_recoverable
1157 + 100: not_supported
1158 + - symbol:
1159 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.12
1160 + name: cucsProcessorUnitPower
1161 + tag: cucs_processor_unit_power
1162 + mapping:
1163 + 0: unknown
1164 + 1: on
1165 + 2: test
1166 + 3: off
1167 + 4: online
1168 + 5: offline
1169 + 6: offduty
1170 + 7: degraded
1171 + 8: power_save
1172 + 9: error
1173 + 10: ok
1174 + 11: failed
1175 + 100: not_supported
1176 + - symbol:
1177 + OID: 1.3.6.1.4.1.9.9.719.1.41.9.1.13
1178 + name: cucsProcessorUnitPresence
1179 + tag: cucs_processor_unit_presence
1180 + mapping:
1181 + 0: unknown
1182 + 1: empty
1183 + 10: equipped
1184 + 11: missing
1185 + 12: mismatch
1186 + 13: equipped_not_primary
1187 + 14: equipped_slave
1188 + 15: mismatch_slave
1189 + 16: missing_slave
1190 + 20: equipped_identity_unestablishable
1191 + 21: mismatch_identity_unestablishable
1192 + 22: equipped_with_malformed_fru
1193 + 30: inaccessible
1194 + 40: unauthorized
1195 + 100: not_supported
1196 + 101: equipped_unsupported
1197 + 102: equipped_disc_not_started
1198 + 103: equipped_disc_in_progress
1199 + 104: equipped_disc_error
1200 + 105: equipped_disc_unknown
1201 + - MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
1202 + table:
1203 + name: cucsStorageFlexFlashCardTable
1204 + OID: 1.3.6.1.4.1.9.9.719.1.45.34
1205 + symbols:
1206 + - name: cucsStorageFlexFlashCardReadIOErrorCount
1207 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.19
1208 + - name: cucsStorageFlexFlashCardSize
1209 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.22
1210 + - name: cucsStorageFlexFlashCardWriteIOErrorCount
1211 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.26
1212 + metric_tags:
1213 + - symbol:
1214 + name: cucsStorageFlexFlashCardDn
1215 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.2
1216 + tag: cucs_storage_flex_flash_card_dn
1217 + - symbol:
1218 + name: cucsStorageFlexFlashCardCardMode
1219 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.6
1220 + tag: cucs_storage_flex_flash_card_mode
1221 + mapping:
1222 + 0: ff_phy_drive_unpaired_primary
1223 + 1: ff_phy_drive_primary
1224 + 2: ff_phy_drive_secondary_act
1225 + 3: ff_phy_drive_secondary_unhealthy
1226 + - symbol:
1227 + name: cucsStorageFlexFlashCardCardType
1228 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.7
1229 + tag: cucs_storage_flex_flash_card_card_type
1230 + - symbol:
1231 + name: cucsStorageFlexFlashCardConnectionProtocol
1232 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.8
1233 + tag: cucs_storage_flex_flash_card_connection_protocol
1234 + mapping:
1235 + 0: unspecified
1236 + 1: sas
1237 + 2: sata
1238 + 3: nvme
1239 + - symbol:
1240 + name: cucsStorageFlexFlashCardRevision
1241 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.20
1242 + tag: cucs_storage_flex_flash_card_revision
1243 + - symbol:
1244 + name: cucsStorageFlexFlashCardSerial
1245 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.21
1246 + tag: cucs_storage_flex_flash_card_serial
1247 + - symbol:
1248 + name: cucsStorageFlexFlashCardDrivesEnabled
1249 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.29
1250 + tag: cucs_storage_flex_flash_card_drives_enabled
1251 + - symbol:
1252 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.5
1253 + name: cucsStorageFlexFlashCardCardHealth
1254 + tag: cucs_storage_flex_flash_card_card_health
1255 + mapping:
1256 + 0: ff_phy_health_na
1257 + 1: ff_phy_health_ok
1258 + 2: ff_phy_unhealthy_raid
1259 + 3: ff_phy_unhealthy_other
1260 + 4: ff_phy_raid_sync_in_progress
1261 + 5: ff_phy_raid_out_of_sync
1262 + - symbol:
1263 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.17
1264 + name: cucsStorageFlexFlashCardOperability
1265 + tag: cucs_storage_flex_flash_card_operability
1266 + mapping:
1267 + 0: unknown
1268 + 1: operable
1269 + 2: inoperable
1270 + 3: degraded
1271 + 4: powered_off
1272 + 5: power_problem
1273 + 6: removed
1274 + 7: voltage_problem
1275 + 8: thermal_problem
1276 + 9: performance_problem
1277 + 10: accessibility_problem
1278 + 11: identity_unestablishable
1279 + 12: bios_post_timeout
1280 + 13: disabled
1281 + 14: malformed_fru
1282 + 15: backplane_port_problem
1283 + 16: chassis_intrusion
1284 + 51: fabric_conn_problem
1285 + 52: fabric_unsupported_conn
1286 + 81: config
1287 + 82: equipment_problem
1288 + 83: decomissioning
1289 + 84: chassis_limit_exceeded
1290 + 100: not_supported
1291 + 101: discovery
1292 + 102: discovery_failed
1293 + 103: identify
1294 + 104: post_failure
1295 + 105: upgrade_problem
1296 + 106: peer_comm_problem
1297 + 107: auto_upgrade
1298 + 108: link_activate_blocked
1299 + - symbol:
1300 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.18
1301 + name: cucsStorageFlexFlashCardPresence
1302 + tag: cucs_storage_flex_flash_card_presence
1303 + mapping:
1304 + 0: unknown
1305 + 1: empty
1306 + 10: equipped
1307 + 11: missing
1308 + 12: mismatch
1309 + 13: equipped_not_primary
1310 + 14: equipped_slave
1311 + 15: mismatch_slave
1312 + 16: missing_slave
1313 + 20: equipped_identity_unestablishable
1314 + 21: mismatch_identity_unestablishable
1315 + 22: equipped_with_malformed_fru
1316 + 30: inaccessible
1317 + 40: unauthorized
1318 + 100: not_supported
1319 + 101: equipped_unsupported
1320 + 102: equipped_disc_not_started
1321 + 103: equipped_disc_in_progress
1322 + 104: equipped_disc_error
1323 + 105: equipped_disc_unknown
1324 + - symbol:
1325 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.27
1326 + name: cucsStorageFlexFlashCardCardState
1327 + tag: cucs_storage_flex_flash_card_card_state
1328 + mapping:
1329 + 0: undefined
1330 + 1: configured
1331 + 2: initializing
1332 + 3: active
1333 + 4: ignored
1334 + 5: failed
1335 + 6: unknown
1336 + - symbol:
1337 + OID: 1.3.6.1.4.1.9.9.719.1.45.34.1.28
1338 + name: cucsStorageFlexFlashCardCardSync
1339 + tag: cucs_storage_flex_flash_card_card_sync
1340 + mapping:
1341 + 0: na
1342 + 1: manual
1343 + 2: auto
1344 + 3: unknown
1345 + - MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
1346 + table:
1347 + name: cucsStorageFlexFlashControllerTable
1348 + OID: 1.3.6.1.4.1.9.9.719.1.45.35
1349 + symbols:
1350 + - name: cucsStorageFlexFlashController
1351 + constant_value_one: true
1352 + metric_tags:
1353 + - symbol:
1354 + name: cucsStorageFlexFlashControllerDn
1355 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.2
1356 + tag: cucs_storage_flex_flash_controller_dn
1357 + - symbol:
1358 + name: cucsStorageFlexFlashControllerFlexFlashType
1359 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.6
1360 + tag: cucs_storage_flex_flash_controller_flex_flash_type
1361 + mapping:
1362 + 0: unknown
1363 + 1: astoria
1364 + 2: fx3s
1365 + - symbol:
1366 + name: cucsStorageFlexFlashControllerModel
1367 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.8
1368 + tag: cucs_storage_flex_flash_controller_model
1369 + - symbol:
1370 + name: cucsStorageFlexFlashControllerPhysicalDriveCount
1371 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.15
1372 + tag: cucs_storage_flex_flash_controller_physical_drive_count
1373 + - symbol:
1374 + name: cucsStorageFlexFlashControllerType
1375 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.24
1376 + tag: cucs_storage_flex_flash_controller_type
1377 + mapping:
1378 + 0: unknown
1379 + 1: sas
1380 + 2: sata
1381 + 3: flash
1382 + 4: sd
1383 + 5: pt
1384 + 6: pch
1385 + 7: external
1386 + 8: nvme
1387 + 9: hba
1388 + 10: m2
1389 + - symbol:
1390 + name: cucsStorageFlexFlashControllerVendor
1391 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.25
1392 + tag: cucs_storage_flex_flash_controller_vendor
1393 + - symbol:
1394 + name: cucsStorageFlexFlashControllerVirtualDriveCount
1395 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.26
1396 + tag: cucs_storage_flex_flash_controller_virtual_drive_count
1397 + - symbol:
1398 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.4
1399 + name: cucsStorageFlexFlashControllerControllerHealth
1400 + tag: cucs_storage_flex_flash_controller_controller_health
1401 + mapping:
1402 + 0: ffch_ok
1403 + 1: ffch_metadata_failure
1404 + 2: ffch_error_cards_access_error
1405 + 3: ffch_error_old_firmware_running
1406 + 4: ffch_error_media_write_protected
1407 + 5: ffch_error_invalid_size
1408 + 6: ffch_error_card_size_mismatch
1409 + 7: ffch_inconsistent_metadata
1410 + 8: ffch_error_secondary_unhealthy_card
1411 + 9: ffch_error_sd_card_not_configured
1412 + 10: ffch_error_inconsistant_metadata_ignored
1413 + 11: ffch_error_sd253_with_un_or_sd247
1414 + 12: ffch_error_rebooted_during_rebuild
1415 + 13: ffch_error_sd247_card_detected
1416 + 14: ffch_flexd_error_sd_card_op_mode_mismatch
1417 + 15: ffch_flexd_error_sd_op_mode_mismatch_with_un
1418 + 16: ffch_flexd_error_im_sd_unhealthy_sd_un_ignored
1419 + 17: ffch_flexd_error_im_sd_healthy_sd_un_ignored
1420 + 18: ffch_flexd_error_im_sd_cards_op_mode_mismatch
1421 + 19: ffch_flexd_error_sd_card0_unhealthy_op_mode_mismatch
1422 + 20: ffch_flexd_error_sd_card0_healthy_op_mode_mismatch
1423 + 21: ffch_flexd_error_sd_card1_unhealthy_op_mode_mismatch
1424 + 22: ffch_flexd_error_sd_card1_healthy_op_mode_mismatch
1425 + 23: ffch_flexd_error_im_sd0_ignored_sd1
1426 + 24: ffch_flexd_error_im_sd0_sd1_ignored
1427 + - symbol:
1428 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.5
1429 + name: cucsStorageFlexFlashControllerControllerState
1430 + tag: cucs_storage_flex_flash_controller_controller_state
1431 + mapping:
1432 + 0: ffc_uninitalized
1433 + 1: ffc_software_err
1434 + 2: ffc_init
1435 + 3: ffc_config
1436 + 4: ffc_wait_user
1437 + 5: ffc_usb_disconnecting
1438 + 6: ffc_usb_disconnected
1439 + 7: ffc_usb_connecting
1440 + 8: ffc_usb_connected
1441 + 9: ffc_rebuilding
1442 + 10: ffc_failed
1443 + - symbol:
1444 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.10
1445 + name: cucsStorageFlexFlashControllerOperState
1446 + tag: cucs_storage_flex_flash_controller_oper_state
1447 + mapping:
1448 + 0: unknown
1449 + 1: operable
1450 + 2: inoperable
1451 + 3: degraded
1452 + 4: powered_off
1453 + 5: power_problem
1454 + 6: removed
1455 + 7: voltage_problem
1456 + 8: thermal_problem
1457 + 9: performance_problem
1458 + 10: accessibility_problem
1459 + 11: identity_unestablishable
1460 + 12: bios_post_timeout
1461 + 13: disabled
1462 + 14: malformed_fru
1463 + 15: backplane_port_problem
1464 + 16: chassis_intrusion
1465 + 51: fabric_conn_problem
1466 + 52: fabric_unsupported_conn
1467 + 81: config
1468 + 82: equipment_problem
1469 + 83: decomissioning
1470 + 84: chassis_limit_exceeded
1471 + 100: not_supported
1472 + 101: discovery
1473 + 102: discovery_failed
1474 + 103: identify
1475 + 104: post_failure
1476 + 105: upgrade_problem
1477 + 106: peer_comm_problem
1478 + 107: auto_upgrade
1479 + 108: link_activate_blocked
1480 + - symbol:
1481 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.11
1482 + name: cucsStorageFlexFlashControllerOperability
1483 + tag: cucs_storage_flex_flash_controller_operability
1484 + mapping:
1485 + 0: unknown
1486 + 1: operable
1487 + 2: inoperable
1488 + 3: degraded
1489 + 4: powered_off
1490 + 5: power_problem
1491 + 6: removed
1492 + 7: voltage_problem
1493 + 8: thermal_problem
1494 + 9: performance_problem
1495 + 10: accessibility_problem
1496 + 11: identity_unestablishable
1497 + 12: bios_post_timeout
1498 + 13: disabled
1499 + 14: malformed_fru
1500 + 15: backplane_port_problem
1501 + 16: chassis_intrusion
1502 + 51: fabric_conn_problem
1503 + 52: fabric_unsupported_conn
1504 + 81: config
1505 + 82: equipment_problem
1506 + 83: decomissioning
1507 + 84: chassis_limit_exceeded
1508 + 100: not_supported
1509 + 101: discovery
1510 + 102: discovery_failed
1511 + 103: identify
1512 + 104: post_failure
1513 + 105: upgrade_problem
1514 + 106: peer_comm_problem
1515 + 107: auto_upgrade
1516 + 108: link_activate_blocked
1517 + - symbol:
1518 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.14
1519 + name: cucsStorageFlexFlashControllerPerf
1520 + tag: cucs_storage_flex_flash_controller_perf
1521 + mapping:
1522 + 0: unknown
1523 + 1: ok
1524 + 2: upper_non_recoverable
1525 + 3: upper_critical
1526 + 4: upper_non_critical
1527 + 5: lower_non_critical
1528 + 6: lower_critical
1529 + 7: lower_non_recoverable
1530 + 100: not_supported
1531 + - symbol:
1532 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.16
1533 + name: cucsStorageFlexFlashControllerPower
1534 + tag: cucs_storage_flex_flash_controller_power
1535 + mapping:
1536 + 0: unknown
1537 + 1: on
1538 + 2: test
1539 + 3: off
1540 + 4: online
1541 + 5: offline
1542 + 6: offduty
1543 + 7: degraded
1544 + 8: power_save
1545 + 9: error
1546 + 10: ok
1547 + 11: failed
1548 + 100: not_supported
1549 + - symbol:
1550 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.17
1551 + name: cucsStorageFlexFlashControllerPresence
1552 + tag: cucs_storage_flex_flash_controller_presence
1553 + mapping:
1554 + 0: unknown
1555 + 1: empty
1556 + 10: equipped
1557 + 11: missing
1558 + 12: mismatch
1559 + 13: equipped_not_primary
1560 + 14: equipped_slave
1561 + 15: mismatch_slave
1562 + 16: missing_slave
1563 + 20: equipped_identity_unestablishable
1564 + 21: mismatch_identity_unestablishable
1565 + 22: equipped_with_malformed_fru
1566 + 30: inaccessible
1567 + 40: unauthorized
1568 + 100: not_supported
1569 + 101: equipped_unsupported
1570 + 102: equipped_disc_not_started
1571 + 103: equipped_disc_in_progress
1572 + 104: equipped_disc_error
1573 + 105: equipped_disc_unknown
1574 + - symbol:
1575 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.43
1576 + name: cucsStorageFlexFlashControllerHasError
1577 + tag: cucs_storage_flex_flash_controller_has_error
1578 + mapping:
1579 + 0: error
1580 + 1: no_error
1581 + - symbol:
1582 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.45
1583 + name: cucsStorageFlexFlashControllerIsFormatFSMRunning
1584 + tag: cucs_storage_flex_flash_controller_is_format_fsm_running
1585 + mapping:
1586 + 0: na
1587 + 1: yes
1588 + 2: no
1589 + - symbol:
1590 + OID: 1.3.6.1.4.1.9.9.719.1.45.35.1.46
1591 + name: cucsStorageFlexFlashControllerOperatingMode
1592 + tag: cucs_storage_flex_flash_controller_operating_mode
1593 + mapping:
1594 + 0: unknown
1595 + 1: mirror
1596 + 2: util
1597 + - MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
1598 + table:
1599 + name: cucsStorageFlexFlashDriveTable
1600 + OID: 1.3.6.1.4.1.9.9.719.1.45.36
1601 + symbols:
1602 + - name: cucsStorageFlexFlashDriveSize
1603 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.18
1604 + metric_tags:
1605 + - symbol:
1606 + name: cucsStorageFlexFlashDriveDn
1607 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.2
1608 + tag: cucs_storage_flex_flash_drive_dn
1609 + - symbol:
1610 + name: cucsStorageFlexFlashDriveConnectionProtocol
1611 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.5
1612 + tag: cucs_storage_flex_flash_drive_connection_protocol
1613 + mapping:
1614 + 0: unspecified
1615 + 1: sas
1616 + 2: sata
1617 + 3: nvme
1618 + - symbol:
1619 + name: cucsStorageFlexFlashDriveDriveType
1620 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.8
1621 + tag: cucs_storage_flex_flash_drive_drive_type
1622 + mapping:
1623 + 0: unknown
1624 + 1: scu
1625 + 2: huu
1626 + 3: hv
1627 + 4: drivers
1628 + - symbol:
1629 + name: cucsStorageFlexFlashDriveModel
1630 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.10
1631 + tag: cucs_storage_flex_flash_drive_model
1632 + - symbol:
1633 + name: cucsStorageFlexFlashDriveName
1634 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.11
1635 + tag: cucs_storage_flex_flash_drive_name
1636 + - symbol:
1637 + name: cucsStorageFlexFlashDriveVisible
1638 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.21
1639 + tag: cucs_storage_flex_flash_drive_visible
1640 + mapping:
1641 + 0: no
1642 + 1: yes
1643 + - symbol:
1644 + name: cucsStorageFlexFlashDriveRemovable
1645 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.22
1646 + tag: cucs_storage_flex_flash_drive_removable
1647 + mapping:
1648 + 0: na
1649 + 1: yes
1650 + 2: no
1651 + - symbol:
1652 + name: cucsStorageFlexFlashDriveRWType
1653 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.23
1654 + tag: cucs_storage_flex_flash_drive_rw_type
1655 + mapping:
1656 + 0: read_write
1657 + 1: read_only
1658 + - symbol:
1659 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.7
1660 + name: cucsStorageFlexFlashDriveDriveState
1661 + tag: cucs_storage_flex_flash_drive_state
1662 + mapping:
1663 + 0: nonraid
1664 + 1: raid
1665 + - symbol:
1666 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.14
1667 + name: cucsStorageFlexFlashDriveOperability
1668 + tag: cucs_storage_flex_flash_drive_operability
1669 + mapping:
1670 + 0: unknown
1671 + 1: operable
1672 + 2: inoperable
1673 + 3: degraded
1674 + 4: powered_off
1675 + 5: power_problem
1676 + 6: removed
1677 + 7: voltage_problem
1678 + 8: thermal_problem
1679 + 9: performance_problem
1680 + 10: accessibility_problem
1681 + 11: identity_unestablishable
1682 + 12: bios_post_timeout
1683 + 13: disabled
1684 + 14: malformed_fru
1685 + 15: backplane_port_problem
1686 + 16: chassis_intrusion
1687 + 51: fabric_conn_problem
1688 + 52: fabric_unsupported_conn
1689 + 81: config
1690 + 82: equipment_problem
1691 + 83: decomissioning
1692 + 84: chassis_limit_exceeded
1693 + 100: not_supported
1694 + 101: discovery
1695 + 102: discovery_failed
1696 + 103: identify
1697 + 104: post_failure
1698 + 105: upgrade_problem
1699 + 106: peer_comm_problem
1700 + 107: auto_upgrade
1701 + 108: link_activate_blocked
1702 + - symbol:
1703 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.15
1704 + name: cucsStorageFlexFlashDrivePresence
1705 + tag: cucs_storage_flex_flash_drive_presence
1706 + mapping:
1707 + 0: unknown
1708 + 1: empty
1709 + 10: equipped
1710 + 11: missing
1711 + 12: mismatch
1712 + 13: equipped_not_primary
1713 + 14: equipped_slave
1714 + 15: mismatch_slave
1715 + 16: missing_slave
1716 + 20: equipped_identity_unestablishable
1717 + 21: mismatch_identity_unestablishable
1718 + 22: equipped_with_malformed_fru
1719 + 30: inaccessible
1720 + 40: unauthorized
1721 + 100: not_supported
1722 + 101: equipped_unsupported
1723 + 102: equipped_disc_not_started
1724 + 103: equipped_disc_in_progress
1725 + 104: equipped_disc_error
1726 + 105: equipped_disc_unknown
1727 + - symbol:
1728 + OID: 1.3.6.1.4.1.9.9.719.1.45.36.1.25
1729 + name: cucsStorageFlexFlashDriveOperationState
1730 + tag: cucs_storage_flex_flash_drive_operation_state
1731 + mapping:
1732 + 0: partition_non_mirrored
1733 + 1: partition_mirrored
1734 + 2: partition_mirrored_syncing
1735 + 3: partition_mirrored_erasing
1736 + 4: partition_mirrored_updating
1737 + 5: partition_non_mirrored_updating
1738 + 6: partition_non_mirrored_erasing
1739 + 7: partition_mirrored_syncing_fail
1740 + 8: partition_mirrored_erasing_fail
1741 + 9: partition_mirrored_updating_fail
1742 + 10: partition_non_mirrored_updating_fail
1743 + 11: partition_non_mirrored_erasing_fail
1744 + 12: partition_mirrored_syncing_success
1745 + 13: partition_mirrored_erasing_success
1746 + 14: partition_mirrored_updating_success
1747 + 15: partition_non_mirrored_updating_success
1748 + 16: partition_non_mirrored_erasing_success
1749 + 17: unknown
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco-wan-optimizer.yaml new
+78
@@ -0,0 +1,78 @@
1 +extends:
2 + - _generic-host-resources-base.yaml
3 + - cisco.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.9.1.957 # Cisco WAVE 674
6 + - 1.3.6.1.4.1.9.1.985 # Cisco WAVE 574
7 + - 1.3.6.1.4.1.9.1.986 # Cisco WAVE 474
8 + - 1.3.6.1.4.1.9.1.987 # Cisco WAVE 274
9 + - 1.3.6.1.4.1.9.1.1349 # Cisco WAVE 8541
10 + - 1.3.6.1.4.1.9.1.1350 # Cisco WAVE 7571
11 + - 1.3.6.1.4.1.9.1.1351 # Cisco WAVE 7541
12 + - 1.3.6.1.4.1.9.1.1352 # Cisco WAVE 694
13 + - 1.3.6.1.4.1.9.1.1353 # Cisco WAVE 594
14 + - 1.3.6.1.4.1.9.1.1354 # Cisco WAVE 294
15 +metrics:
16 + - MIB: CISCO-CONTENT-ENGINE-MIB
17 + symbol:
18 + OID: 1.3.6.1.4.1.9.9.178.1.6.2.1.0
19 + name: cceAlarmCriticalCount
20 + - MIB: CISCO-CONTENT-ENGINE-MIB
21 + symbol:
22 + OID: 1.3.6.1.4.1.9.9.178.1.6.2.2.0
23 + name: cceAlarmMajorCount
24 + - MIB: CISCO-CONTENT-ENGINE-MIB
25 + symbol:
26 + OID: 1.3.6.1.4.1.9.9.178.1.6.2.3.0
27 + name: cceAlarmMinorCount
28 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
29 + symbol:
30 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.1.0
31 + name: cwoTfoStatsTotalOptConn
32 + metric_type: monotonic_count
33 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
34 + symbol:
35 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.2.0
36 + name: cwoTfoStatsActiveOptConn
37 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
38 + symbol:
39 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.4.0
40 + name: cwoTfoStatsActiveOptTCPPlusConn
41 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
42 + symbol:
43 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.5.0
44 + name: cwoTfoStatsActiveOptTCPOnlyConn
45 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
46 + symbol:
47 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.6.0
48 + name: cwoTfoStatsActiveOptTCPPrepConn
49 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
50 + symbol:
51 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.7.0
52 + name: cwoTfoStatsActiveADConn
53 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
54 + symbol:
55 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.8.0
56 + name: cwoTfoStatsReservedConn
57 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
58 + symbol:
59 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.9.0
60 + name: cwoTfoStatsPendingConn
61 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
62 + symbol:
63 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.10.0
64 + name: cwoTfoStatsActivePTConn
65 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
66 + symbol:
67 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.11.0
68 + name: cwoTfoStatsTotalNormalClosedConn
69 + metric_type: monotonic_count
70 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
71 + symbol:
72 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.12.0
73 + name: cwoTfoStatsResetConn
74 + metric_type: monotonic_count
75 + - MIB: CISCO-WAN-OPTIMIZATION-MIB
76 + symbol:
77 + OID: 1.3.6.1.4.1.9.9.762.1.2.1.13.0
78 + name: cwoTfoStatsLoadStatus
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco.yaml new
+5
@@ -0,0 +1,5 @@
1 +# Profile for Cisco devices
2 +
3 +extends:
4 + - _base_cisco.yaml
5 +sysobjectid: 1.3.6.1.4.1.9.1.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco_icm.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - _base.yaml
3 + - _cisco-generic.yaml
4 + - _cisco-voice.yaml
5 +
6 +sysobjectid: 1.3.6.1.4.1.9.1.693
7 +
8 +device:
9 + vendor: "cisco"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco_isr_4431.yaml new
+15
@@ -0,0 +1,15 @@
1 +extends:
2 + - _base.yaml
3 + - _cisco-generic.yaml
4 + - _cisco-voice.yaml
5 +
6 +device:
7 + vendor: "cisco"
8 +
9 +metadata:
10 + device:
11 + fields:
12 + type:
13 + value: "router"
14 +
15 +sysobjectid: 1.3.6.1.4.1.9.1.1935
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cisco_uc_virtual_machine.yaml new
+15
@@ -0,0 +1,15 @@
1 +extends:
2 + - _base.yaml
3 + - _cisco-generic.yaml
4 + - _cisco-voice.yaml
5 +
6 +device:
7 + vendor: "cisco"
8 +
9 +metadata:
10 + device:
11 + fields:
12 + type:
13 + value: "server"
14 +
15 +sysobjectid: 1.3.6.1.4.1.9.1.1348
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/citrix-netscaler-sdx.yaml new
+374
@@ -0,0 +1,374 @@
1 +extends:
2 + - citrix.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.5951.6
5 +metadata:
6 + device:
7 + fields:
8 + serial_number:
9 + symbol:
10 + MIB: SDX-ROOT-MIB
11 + OID: 1.3.6.1.4.1.5951.6.2.16.0
12 + name: netscaler.sdx.systemSerial
13 + version:
14 + symbol:
15 + MIB: SDX-ROOT-MIB
16 + OID: 1.3.6.1.4.1.5951.6.2.3.0
17 + name: netscaler.sdx.systemBuildNumber
18 + type:
19 + value: "load_balancer"
20 +metrics:
21 + - MIB: SDX-ROOT-MIB
22 + table:
23 + name: hardwareResourceTable
24 + OID: 1.3.6.1.4.1.5951.6.2.1000.1
25 + symbols:
26 + - name: netscaler.sdx.hardwareResource
27 + constant_value_one: true
28 + metric_tags:
29 + - symbol:
30 + name: netscaler.sdx.hardwareResourceName
31 + OID: 1.3.6.1.4.1.5951.6.2.1000.1.1.1
32 + tag: netscaler_sdx_hardware_resource_name
33 + - symbol:
34 + OID: 1.3.6.1.4.1.5951.6.2.1000.1.1.7
35 + name: netscaler.sdx.hardwareResourceStatus
36 + tag: netscaler_sdx_hardware_resource_status
37 + - MIB: SDX-ROOT-MIB
38 + table:
39 + name: softwareResourceTable
40 + OID: 1.3.6.1.4.1.5951.6.2.1000.2
41 + symbols:
42 + - name: netscaler.sdx.softwareResource
43 + constant_value_one: true
44 + metric_tags:
45 + - symbol:
46 + name: netscaler.sdx.softwareResourceName
47 + OID: 1.3.6.1.4.1.5951.6.2.1000.2.1.1
48 + tag: netscaler_sdx_software_resource_name
49 + - symbol:
50 + OID: 1.3.6.1.4.1.5951.6.2.1000.2.1.7
51 + name: netscaler.sdx.softwareResourceStatus
52 + tag: netscaler_sdx_software_resource_status
53 + - MIB: SDX-ROOT-MIB
54 + table:
55 + name: srTable
56 + OID: 1.3.6.1.4.1.5951.6.2.1000.4
57 + symbols:
58 + - name: netscaler.sdx.srUtilized
59 + OID: 1.3.6.1.4.1.5951.6.2.1000.4.1.5
60 + - name: netscaler.sdx.srSize
61 + OID: 1.3.6.1.4.1.5951.6.2.1000.4.1.6
62 + metric_tags:
63 + - symbol:
64 + name: netscaler.sdx.srName
65 + OID: 1.3.6.1.4.1.5951.6.2.1000.4.1.1
66 + tag: netscaler_sdx_sr_name
67 + - symbol:
68 + name: netscaler.sdx.srBayNumber
69 + OID: 1.3.6.1.4.1.5951.6.2.1000.4.1.2
70 + tag: netscaler_sdx_sr_bay_number
71 + - symbol:
72 + OID: 1.3.6.1.4.1.5951.6.2.1000.4.1.7
73 + name: netscaler.sdx.srStatus
74 + tag: netscaler_sdx_sr_status
75 + - MIB: SDX-ROOT-MIB
76 + table:
77 + name: interfaceTable
78 + OID: 1.3.6.1.4.1.5951.6.2.1000.5
79 + symbols:
80 + - name: netscaler.sdx.interfaceRxPackets
81 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.5
82 + - name: netscaler.sdx.interfaceTxPackets
83 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.6
84 + - name: netscaler.sdx.interfaceRxBytes
85 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.7
86 + - name: netscaler.sdx.interfaceTxBytes
87 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.8
88 + - name: netscaler.sdx.interfaceRxErrors
89 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.9
90 + - name: netscaler.sdx.interfaceTxErrors
91 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.10
92 + metric_tags:
93 + - symbol:
94 + name: netscaler.sdx.interfacePort
95 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.1
96 + tag: netscaler_sdx_interface_port
97 + - symbol:
98 + name: netscaler.sdx.interfaceMappedPort
99 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.13
100 + tag: netscaler_sdx_interface_mapped_port
101 + - symbol:
102 + OID: 1.3.6.1.4.1.5951.6.2.1000.5.1.4
103 + name: netscaler.sdx.interfaceState
104 + tag: netscaler_sdx_interface_state
105 + - MIB: SDX-ROOT-MIB
106 + table:
107 + name: healthMonitoringTable
108 + OID: 1.3.6.1.4.1.5951.6.2.1000.6
109 + symbols:
110 + - name: netscaler.sdx.hmCurrentValue
111 + OID: 1.3.6.1.4.1.5951.6.2.1000.6.1.7
112 + metric_tags:
113 + - symbol:
114 + name: netscaler.sdx.hmName
115 + OID: 1.3.6.1.4.1.5951.6.2.1000.6.1.1
116 + tag: netscaler_sdx_hm_name
117 + - symbol:
118 + name: netscaler.sdx.hmUnit
119 + OID: 1.3.6.1.4.1.5951.6.2.1000.6.1.6
120 + tag: netscaler_sdx_hm_unit
121 + - symbol:
122 + OID: 1.3.6.1.4.1.5951.6.2.1000.6.1.4
123 + name: netscaler.sdx.hmStatus
124 + tag: netscaler_sdx_hm_status
125 + - MIB: SDX-ROOT-MIB
126 + table:
127 + name: xenTable
128 + OID: 1.3.6.1.4.1.5951.6.3.1
129 + symbols:
130 + - name: cpu.usage
131 + OID: 1.3.6.1.4.1.5951.6.3.1.1.8
132 + - name: memory.usage
133 + OID: 1.3.6.1.4.1.5951.6.3.1.1.11
134 + metric_tags:
135 + - symbol:
136 + OID: 1.3.6.1.4.1.5951.6.3.1.1.1
137 + name: netscaler.sdx.xenIpAddressType
138 + tag: netscaler_sdx_xen_ip_address_type
139 + mapping:
140 + 0: unknown
141 + 1: ipv4
142 + 2: ipv6
143 + 3: ipv4z
144 + 4: ipv6z
145 + 16: dns
146 + 25: l2vpn
147 + - symbol:
148 + OID: 1.3.6.1.4.1.5951.6.3.1.1.2
149 + name: netscaler.sdx.xenIpAddress
150 + format: ip_address
151 + tag: netscaler_sdx_xen_ip_address
152 + - symbol:
153 + OID: 1.3.6.1.4.1.5951.6.3.1.1.6
154 + name: netscaler.sdx.xenUuid
155 + tag: netscaler_sdx_xen_uuid
156 + - MIB: SDX-ROOT-MIB
157 + table:
158 + name: netscalerTable
159 + OID: 1.3.6.1.4.1.5951.6.3.2
160 + symbols:
161 + - name: netscaler.sdx.nsNsCPUUsage
162 + OID: 1.3.6.1.4.1.5951.6.3.2.1.33
163 + - name: netscaler.sdx.nsNsMemoryUsage
164 + OID: 1.3.6.1.4.1.5951.6.3.2.1.35
165 + - name: netscaler.sdx.nsNsTx
166 + OID: 1.3.6.1.4.1.5951.6.3.2.1.36
167 + - name: netscaler.sdx.nsNsRx
168 + OID: 1.3.6.1.4.1.5951.6.3.2.1.37
169 + - name: netscaler.sdx.nsHttpReq
170 + OID: 1.3.6.1.4.1.5951.6.3.2.1.38
171 + metric_tags:
172 + - symbol:
173 + name: netscaler.sdx.nsIpAddressType
174 + OID: 1.3.6.1.4.1.5951.6.3.2.1.1
175 + tag: netscaler_sdx_ns_ip_address_type
176 + mapping:
177 + 0: unknown
178 + 1: ipv4
179 + 2: ipv6
180 + 3: ipv4z
181 + 4: ipv6z
182 + 16: dns
183 + 25: l2vpn
184 + - symbol:
185 + name: netscaler.sdx.nsIpAddress
186 + OID: 1.3.6.1.4.1.5951.6.3.2.1.2
187 + format: ip_address
188 + tag: netscaler_sdx_ns_ip_address
189 + - symbol:
190 + name: netscaler.sdx.nsProfileName
191 + OID: 1.3.6.1.4.1.5951.6.3.2.1.5
192 + tag: netscaler_sdx_ns_profile_name
193 + - symbol:
194 + name: netscaler.sdx.nsName
195 + OID: 1.3.6.1.4.1.5951.6.3.2.1.6
196 + tag: netscaler_sdx_ns_name
197 + - symbol:
198 + name: netscaler.sdx.nsNetmaskType
199 + OID: 1.3.6.1.4.1.5951.6.3.2.1.7
200 + tag: netscaler_sdx_ns_netmask_type
201 + mapping:
202 + 0: unknown
203 + 1: ipv4
204 + 2: ipv6
205 + 3: ipv4z
206 + 4: ipv6z
207 + 16: dns
208 + 25: l2vpn
209 + - symbol:
210 + name: netscaler.sdx.nsNetmask
211 + OID: 1.3.6.1.4.1.5951.6.3.2.1.8
212 + format: ip_address
213 + tag: netscaler_sdx_ns_netmask
214 + - symbol:
215 + name: netscaler.sdx.nsGatewayType
216 + OID: 1.3.6.1.4.1.5951.6.3.2.1.9
217 + tag: netscaler_sdx_ns_gateway_type
218 + mapping:
219 + 0: unknown
220 + 1: ipv4
221 + 2: ipv6
222 + 3: ipv4z
223 + 4: ipv6z
224 + 16: dns
225 + 25: l2vpn
226 + - symbol:
227 + name: netscaler.sdx.nsGateway
228 + OID: 1.3.6.1.4.1.5951.6.3.2.1.10
229 + format: ip_address
230 + tag: netscaler_sdx_ns_gateway
231 + - symbol:
232 + name: netscaler.sdx.nsHostname
233 + OID: 1.3.6.1.4.1.5951.6.3.2.1.11
234 + tag: netscaler_sdx_ns_hostname
235 + - symbol:
236 + name: netscaler.sdx.nsDescription
237 + OID: 1.3.6.1.4.1.5951.6.3.2.1.12
238 + tag: netscaler_sdx_ns_description
239 + - symbol:
240 + name: netscaler.sdx.nsVersion
241 + OID: 1.3.6.1.4.1.5951.6.3.2.1.13
242 + tag: netscaler_sdx_ns_version
243 + - symbol:
244 + name: netscaler.sdx.nsVmDescription
245 + OID: 1.3.6.1.4.1.5951.6.3.2.1.30
246 + tag: netscaler_sdx_ns_vm_description
247 + - symbol:
248 + name: netscaler.sdx.nsThroughput
249 + OID: 1.3.6.1.4.1.5951.6.3.2.1.31
250 + tag: netscaler_sdx_ns_throughput
251 + - symbol:
252 + name: netscaler.sdx.nsHaIPAddressType
253 + OID: 1.3.6.1.4.1.5951.6.3.2.1.42
254 + tag: netscaler_sdx_ns_ha_ip_address_type
255 + mapping:
256 + 0: unknown
257 + 1: ipv4
258 + 2: ipv6
259 + 3: ipv4z
260 + 4: ipv6z
261 + 16: dns
262 + 25: l2vpn
263 + - symbol:
264 + name: netscaler.sdx.nsHaIPAddress
265 + OID: 1.3.6.1.4.1.5951.6.3.2.1.43
266 + format: ip_address
267 + tag: netscaler_sdx_ns_ha_ip_address
268 + - symbol:
269 + OID: 1.3.6.1.4.1.5951.6.3.2.1.15
270 + name: netscaler.sdx.nsInstanceState
271 + tag: netscaler_sdx_ns_instance_state
272 + - symbol:
273 + OID: 1.3.6.1.4.1.5951.6.3.2.1.18
274 + name: netscaler.sdx.nsVmState
275 + tag: netscaler_sdx_ns_vm_state
276 + - symbol:
277 + OID: 1.3.6.1.4.1.5951.6.3.2.1.41
278 + name: netscaler.sdx.nsHaMasterState
279 + tag: netscaler_sdx_ns_ha_master_state
280 + - symbol:
281 + OID: 1.3.6.1.4.1.5951.6.3.2.1.44
282 + name: netscaler.sdx.nsNodeState
283 + tag: netscaler_sdx_ns_node_state
284 + - symbol:
285 + OID: 1.3.6.1.4.1.5951.6.3.2.1.45
286 + name: netscaler.sdx.nsHaSync
287 + tag: netscaler_sdx_ns_ha_sync
288 +metric_tags:
289 + - OID: 1.3.6.1.4.1.5951.6.2.2.0
290 + symbol: systemProduct
291 + tag: netscaler_sdx_system_product
292 + - OID: 1.3.6.1.4.1.5951.6.2.4.0
293 + symbol: systemSvmIPAddressType
294 + tag: netscaler_sdx_system_svm_ip_address_type
295 + mapping:
296 + 0: unknown
297 + 1: ipv4
298 + 2: ipv6
299 + 3: ipv4z
300 + 4: ipv6z
301 + 16: dns
302 + 25: l2vpn
303 + - OID: 1.3.6.1.4.1.5951.6.2.5.0
304 + symbol: systemSvmIPAddress
305 + # TODO update this to the modern syntax that supports format
306 + # format: ip_address
307 + tag: netscaler_sdx_system_svm_ip_address
308 + - OID: 1.3.6.1.4.1.5951.6.2.6.0
309 + symbol: systemXenIPAddressType
310 + tag: netscaler_sdx_system_xen_ip_address_type
311 + mapping:
312 + 0: unknown
313 + 1: ipv4
314 + 2: ipv6
315 + 3: ipv4z
316 + 4: ipv6z
317 + 16: dns
318 + 25: l2vpn
319 + - OID: 1.3.6.1.4.1.5951.6.2.7.0
320 + symbol: systemXenIPAddress
321 + # format: ip_address
322 + tag: netscaler_sdx_system_xen_ip_address
323 + - OID: 1.3.6.1.4.1.5951.6.2.8.0
324 + symbol: systemNetmaskType
325 + tag: netscaler_sdx_system_netmask_type
326 + mapping:
327 + 0: unknown
328 + 1: ipv4
329 + 2: ipv6
330 + 3: ipv4z
331 + 4: ipv6z
332 + 16: dns
333 + 25: l2vpn
334 + - OID: 1.3.6.1.4.1.5951.6.2.9.0
335 + symbol: systemNetmask
336 + # format: ip_address
337 + tag: netscaler_sdx_system_netmask
338 + - OID: 1.3.6.1.4.1.5951.6.2.10.0
339 + symbol: systemGatewayType
340 + tag: netscaler_sdx_system_gateway_type
341 + mapping:
342 + 0: unknown
343 + 1: ipv4
344 + 2: ipv6
345 + 3: ipv4z
346 + 4: ipv6z
347 + 16: dns
348 + 25: l2vpn
349 + - OID: 1.3.6.1.4.1.5951.6.2.11.0
350 + symbol: systemGateway
351 + # format: ip_address
352 + tag: netscaler_sdx_system_gateway
353 + - OID: 1.3.6.1.4.1.5951.6.2.12.0
354 + symbol: systemNetworkInterface
355 + tag: netscaler_sdx_system_network_interface
356 + # different versions of MIBs have different definitions for these metrics. Keep this comment until investigated further.
357 + # - OID: 1.3.6.1.4.1.5951.6.2.13.0
358 + # symbol: systemDnsType
359 + # tag: netscaler_sdx_system_dns_type
360 + # mapping:
361 + # 0: unknown
362 + # 1: ipv4
363 + # 2: ipv6
364 + # 3: ipv4z
365 + # 4: ipv6z
366 + # 16: dns
367 + # 25: l2vpn
368 + # - OID: 1.3.6.1.4.1.5951.6.2.14.0
369 + # symbol: systemDns
370 + # format: ip_address
371 + # tag: netscaler_sdx_system_dns
372 + - OID: 1.3.6.1.4.1.5951.6.2.19.0
373 + symbol: systemBiosVersion
374 + tag: netscaler_sdx_system_bios_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/citrix-netscaler.yaml new
+830
@@ -0,0 +1,830 @@
1 +extends:
2 + - _generic-if.yaml
3 + - citrix.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.5951.1
6 +metadata:
7 + device:
8 + fields:
9 + serial_number:
10 + symbol:
11 + MIB: NS-ROOT-MIB
12 + OID: 1.3.6.1.4.1.5951.4.1.1.14.0
13 + name: sysHardwareSerialNumber
14 + version:
15 + symbol:
16 + MIB: NS-ROOT-MIB
17 + OID: 1.3.6.1.4.1.5951.4.1.1.1.0
18 + name: sysBuildVersion
19 + type:
20 + value: "load_balancer"
21 +metrics:
22 + - MIB: NS-ROOT-MIB
23 + symbol:
24 + name: cpu.usage
25 + OID: 1.3.6.1.4.1.5951.4.1.1.41.1.0
26 + - MIB: NS-ROOT-MIB
27 + symbol:
28 + name: memory.usage
29 + OID: 1.3.6.1.4.1.5951.4.1.1.41.2.0
30 + # - MIB: NS-ROOT-MIB
31 + # symbol:
32 + # name: netscaler.sysHighAvailabilityMode
33 + # OID: 1.3.6.1.4.1.5951.4.1.1.6.0
34 + # enum:
35 + # standalone: 0
36 + # primary: 1
37 + # secondary: 2
38 + # unknown: 3
39 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
40 + # comment in profile until it's fixed)
41 + # - MIB: NS-ROOT-MIB
42 + # symbol:
43 + # name: netscaler.haPeerState
44 + # OID: 1.3.6.1.4.1.5951.4.1.1.23.3.0
45 + # enum:
46 + # standalone: 0
47 + # primary: 1
48 + # secondary: 2
49 + # unknown: 3
50 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
51 + # comment in profile until it's fixed)
52 + - MIB: NS-ROOT-MIB
53 + symbol:
54 + name: netscaler.haTotStateTransitions
55 + OID: 1.3.6.1.4.1.5951.4.1.1.23.4.0
56 + metric_type: monotonic_count
57 + - MIB: NS-ROOT-MIB
58 + symbol:
59 + name: netscaler.haTimeofLastStateTransition
60 + OID: 1.3.6.1.4.1.5951.4.1.1.23.5.0
61 + # - MIB: NS-ROOT-MIB
62 + # symbol:
63 + # name: netscaler.haCurStatus
64 + # OID: 1.3.6.1.4.1.5951.4.1.1.23.23.0
65 + # enum:
66 + # no: 0
67 + # yes: 1
68 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
69 + # comment in profile until it's fixed)
70 + # - MIB: NS-ROOT-MIB
71 + # symbol:
72 + # name: netscaler.haCurState
73 + # OID: 1.3.6.1.4.1.5951.4.1.1.23.24.0
74 + # enum:
75 + # unknown: 0
76 + # init: 1
77 + # down: 2
78 + # up: 3
79 + # partialFail: 4
80 + # monitorFail: 5
81 + # monitorOk: 6
82 + # completeFail: 7
83 + # dumb: 8
84 + # disabled: 9
85 + # partialFailSsl: 10
86 + # routemonitorFail: 11
87 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
88 + # comment in profile until it's fixed)
89 + - MIB: NS-ROOT-MIB
90 + symbol:
91 + name: netscaler.svcCount
92 + OID: 1.3.6.1.4.1.5951.4.1.2.6.1.0
93 + - MIB: NS-ROOT-MIB
94 + symbol:
95 + name: netscaler.serverCount
96 + OID: 1.3.6.1.4.1.5951.4.1.2.6.2.0
97 + - MIB: NS-ROOT-MIB
98 + symbol:
99 + name: netscaler.svcgroupCount
100 + OID: 1.3.6.1.4.1.5951.4.1.2.6.3.0
101 + - MIB: NS-ROOT-MIB
102 + symbol:
103 + name: netscaler.svcgroupmemCount
104 + OID: 1.3.6.1.4.1.5951.4.1.2.6.4.0
105 + - MIB: NS-ROOT-MIB
106 + symbol:
107 + name: netscaler.syssvcCount
108 + OID: 1.3.6.1.4.1.5951.4.1.2.6.5.0
109 + - MIB: NS-ROOT-MIB
110 + symbol:
111 + name: netscaler.sysupsvcCount
112 + OID: 1.3.6.1.4.1.5951.4.1.2.6.6.0
113 + - MIB: NS-ROOT-MIB
114 + symbol:
115 + name: netscaler.sysupsvcitmCount
116 + OID: 1.3.6.1.4.1.5951.4.1.2.6.7.0
117 + - MIB: NS-ROOT-MIB
118 + symbol:
119 + name: netscaler.curConfigVservers
120 + OID: 1.3.6.1.4.1.5951.4.1.3.5.1.0
121 + - MIB: NS-ROOT-MIB
122 + symbol:
123 + name: netscaler.vsvrBindCount
124 + OID: 1.3.6.1.4.1.5951.4.1.3.5.2.0
125 + - MIB: NS-ROOT-MIB
126 + symbol:
127 + name: netscaler.vsvrSvcGrpBindCount
128 + OID: 1.3.6.1.4.1.5951.4.1.3.5.3.0
129 + - MIB: NS-ROOT-MIB
130 + symbol:
131 + name: netscaler.curConfigLbVservers
132 + OID: 1.3.6.1.4.1.5951.4.1.3.5.4.0
133 + - MIB: NS-ROOT-MIB
134 + symbol:
135 + name: netscaler.curConfigGslbVservers
136 + OID: 1.3.6.1.4.1.5951.4.1.3.5.5.0
137 + - MIB: NS-ROOT-MIB
138 + symbol:
139 + name: netscaler.totSpilloverCount
140 + OID: 1.3.6.1.4.1.5951.4.1.3.5.6.0
141 + metric_type: monotonic_count
142 + - MIB: NS-ROOT-MIB
143 + symbol:
144 + name: netscaler.sslCurSessions
145 + OID: 1.3.6.1.4.1.5951.4.1.1.47.296.0
146 + - MIB: NS-ROOT-MIB
147 + symbol:
148 + name: netscaler.sslSessionsPerSec
149 + OID: 1.3.6.1.4.1.5951.4.1.1.47.3.0
150 + - MIB: NS-ROOT-MIB
151 + symbol:
152 + name: netscaler.tcpCurClientConnEstablished
153 + OID: 1.3.6.1.4.1.5951.4.1.1.46.12.0
154 + - MIB: NS-ROOT-MIB
155 + symbol:
156 + name: netscaler.tcpErrAnyPortFail
157 + OID: 1.3.6.1.4.1.5951.4.1.1.46.69.0
158 + metric_type: monotonic_count
159 + - MIB: NS-ROOT-MIB
160 + symbol:
161 + name: netscaler.tcpErrIpPortFail
162 + OID: 1.3.6.1.4.1.5951.4.1.1.46.70.0
163 + metric_type: monotonic_count
164 + - MIB: NS-ROOT-MIB
165 + symbol:
166 + name: netscaler.tcpErrRetransmit
167 + OID: 1.3.6.1.4.1.5951.4.1.1.46.59.0
168 + metric_type: monotonic_count
169 + - MIB: NS-ROOT-MIB
170 + symbol:
171 + name: netscaler.tcpTotRxPkts
172 + OID: 1.3.6.1.4.1.5951.4.1.1.46.61.0
173 + metric_type: monotonic_count
174 + - MIB: NS-ROOT-MIB
175 + symbol:
176 + name: netscaler.tcpTotTxPkts
177 + OID: 1.3.6.1.4.1.5951.4.1.1.46.63.0
178 + metric_type: monotonic_count
179 + - MIB: NS-ROOT-MIB
180 + symbol:
181 + name: netscaler.httpTotGets
182 + OID: 1.3.6.1.4.1.5951.4.1.1.48.45.0
183 + metric_type: monotonic_count
184 + - MIB: NS-ROOT-MIB
185 + symbol:
186 + name: netscaler.httpTotPosts
187 + OID: 1.3.6.1.4.1.5951.4.1.1.48.46.0
188 + metric_type: monotonic_count
189 + - MIB: NS-ROOT-MIB
190 + symbol:
191 + name: netscaler.httpTotOthers
192 + OID: 1.3.6.1.4.1.5951.4.1.1.48.47.0
193 + metric_type: monotonic_count
194 + - MIB: NS-ROOT-MIB
195 + symbol:
196 + name: netscaler.httpTotRxRequestBytes
197 + OID: 1.3.6.1.4.1.5951.4.1.1.48.48.0
198 + metric_type: monotonic_count
199 + - MIB: NS-ROOT-MIB
200 + symbol:
201 + name: netscaler.httpTotRxResponseBytes
202 + OID: 1.3.6.1.4.1.5951.4.1.1.48.49.0
203 + metric_type: monotonic_count
204 + - MIB: NS-ROOT-MIB
205 + symbol:
206 + name: netscaler.httpTotTxRequestBytes
207 + OID: 1.3.6.1.4.1.5951.4.1.1.48.50.0
208 + metric_type: monotonic_count
209 + - MIB: NS-ROOT-MIB
210 + symbol:
211 + name: netscaler.httpTotTxResponseBytes
212 + OID: 1.3.6.1.4.1.5951.4.1.1.48.51.0
213 + metric_type: monotonic_count
214 + - MIB: NS-ROOT-MIB
215 + symbol:
216 + name: netscaler.httpTot10Requests
217 + OID: 1.3.6.1.4.1.5951.4.1.1.48.52.0
218 + metric_type: monotonic_count
219 + - MIB: NS-ROOT-MIB
220 + symbol:
221 + name: netscaler.httpTotResponses
222 + OID: 1.3.6.1.4.1.5951.4.1.1.48.53.0
223 + metric_type: monotonic_count
224 + - MIB: NS-ROOT-MIB
225 + symbol:
226 + name: netscaler.httpTot10Responses
227 + OID: 1.3.6.1.4.1.5951.4.1.1.48.54.0
228 + metric_type: monotonic_count
229 + - MIB: NS-ROOT-MIB
230 + symbol:
231 + name: netscaler.httpErrIncompleteRequests
232 + OID: 1.3.6.1.4.1.5951.4.1.1.48.57.0
233 + metric_type: monotonic_count
234 + - MIB: NS-ROOT-MIB
235 + symbol:
236 + name: netscaler.httpErrIncompleteResponses
237 + OID: 1.3.6.1.4.1.5951.4.1.1.48.58.0
238 + metric_type: monotonic_count
239 + - MIB: NS-ROOT-MIB
240 + symbol:
241 + name: netscaler.httpErrIncompleteHeaders
242 + OID: 1.3.6.1.4.1.5951.4.1.1.48.60.0
243 + metric_type: monotonic_count
244 + - MIB: NS-ROOT-MIB
245 + symbol:
246 + name: netscaler.httpErrServerBusy
247 + OID: 1.3.6.1.4.1.5951.4.1.1.48.61.0
248 + metric_type: monotonic_count
249 + - MIB: NS-ROOT-MIB
250 + symbol:
251 + name: netscaler.svcTotalClients
252 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.48.0
253 + metric_type: monotonic_count
254 + - MIB: NS-ROOT-MIB
255 + symbol:
256 + name: netscaler.svcTotalServers
257 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.49.0
258 + metric_type: monotonic_count
259 + - MIB: NS-ROOT-MIB
260 + table:
261 + name: vserverTable
262 + OID: 1.3.6.1.4.1.5951.4.1.3.1
263 + symbols:
264 + - name: netscaler.vsvrCurClntConnections
265 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.7
266 + metric_tags:
267 + - symbol:
268 + name: netscaler.vsvrName
269 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.1
270 + tag: netscaler_vsvr_name
271 + - symbol:
272 + name: netscaler.vsvrIpAddress
273 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.2
274 + tag: netscaler_vsvr_ip_address
275 + - symbol:
276 + name: netscaler.vsvrPort
277 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.3
278 + tag: netscaler_vsvr_port
279 + - symbol:
280 + name: netscaler.vsvrType
281 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.4
282 + tag: netscaler_vsvr_type
283 + mapping:
284 + 0: http
285 + 1: ftp
286 + 2: tcp
287 + 3: udp
288 + 4: ssl_bridge
289 + 5: monitor
290 + 6: monitor_udp
291 + 7: nntp
292 + 8: httpserver
293 + 9: httpclient
294 + 10: rpcserver
295 + 11: rpcclient
296 + 12: nat
297 + 13: any
298 + 14: ssl
299 + 16: dns
300 + 17: adns
301 + 18: snmp
302 + 19: ha
303 + 20: monitor_ping
304 + 21: ssl_other_tcp
305 + 22: aaa
306 + 23: secure_monitor
307 + 24: sslvpn_udp
308 + 25: rip
309 + 26: dns_client
310 + 27: rpc_server
311 + 28: rpc_client
312 + 36: dhcrpa
313 + 39: sipudp
314 + 40: siptcp
315 + 41: siptls
316 + 48: dnstcp
317 + 49: adnstcp
318 + 50: rtsp
319 + 52: push
320 + 53: ssl_push
321 + 54: dhcp_client
322 + 55: radius
323 + 61: rdp
324 + 62: mysql
325 + 63: mssql
326 + 73: diameter
327 + 74: ssl_diameter
328 + 75: tftp
329 + 90: tftp
330 + 91: pptp
331 + 92: gre
332 + 95: fix
333 + 96: ssl_fix
334 + 104: user_tcp
335 + 105: user_ssl_tcp
336 + 113: mongo
337 + 114: mongo_tls
338 + 116: mqtt
339 + 117: mqtt_tls
340 + 118: quic_bridge
341 + 120: service_unknown
342 + - symbol:
343 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.5
344 + name: netscaler.vsvrState
345 + tag: netscaler_vsvr_state
346 + mapping:
347 + 1: down
348 + 2: unknown
349 + 3: busy
350 + 4: out_of_service
351 + 5: transition_to_out_of_service
352 + 7: up
353 + 8: transition_to_out_of_service_down
354 + - MIB: NS-ROOT-MIB
355 + table:
356 + name: nsSysHealthDiskTable
357 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8
358 + symbols:
359 + - name: netscaler.sysHealthDiskSize
360 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8.1.2
361 + - name: netscaler.sysHealthDiskAvail
362 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8.1.3
363 + - name: netscaler.sysHealthDiskUsed
364 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8.1.4
365 + - name: netscaler.sysHealthDiskPerusage
366 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8.1.5
367 + metric_tags:
368 + - symbol:
369 + name: netscaler.sysHealthDiskName
370 + OID: 1.3.6.1.4.1.5951.4.1.1.41.8.1.1
371 + tag: netscaler_sys_health_disk_name
372 + - MIB: NS-ROOT-MIB
373 + table:
374 + name: nsIfStatsTable
375 + OID: 1.3.6.1.4.1.5951.4.1.1.54
376 + symbols:
377 + - name: netscaler.ifTotRxBytes
378 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.3
379 + metric_type: monotonic_count
380 + - name: netscaler.ifRxAvgBandwidthUsage
381 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.4
382 + - name: netscaler.ifTotTxBytes
383 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.7
384 + metric_type: monotonic_count
385 + - name: netscaler.ifTxAvgBandwidthUsage
386 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.8
387 + - name: netscaler.ifThroughput
388 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.48
389 + - name: netscaler.ifTotRxMbits
390 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.19
391 + metric_type: monotonic_count
392 + - name: netscaler.ifTotTxMbits
393 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.20
394 + metric_type: monotonic_count
395 + metric_tags:
396 + - symbol:
397 + name: netscaler.ifName
398 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.1
399 + tag: netscaler_if_name
400 + - symbol:
401 + name: netscaler.ifMedia
402 + OID: 1.3.6.1.4.1.5951.4.1.1.54.1.2
403 + tag: netscaler_if_media
404 + - MIB: NS-ROOT-MIB
405 + table:
406 + name: vserverServiceTable
407 + OID: 1.3.6.1.4.1.5951.4.1.3.2
408 + symbols:
409 + - name: netscaler.vsvrServiceHits
410 + OID: 1.3.6.1.4.1.5951.4.1.3.2.1.5
411 + metric_type: monotonic_count
412 + - name: netscaler.servicePersistentHits
413 + OID: 1.3.6.1.4.1.5951.4.1.3.2.1.6
414 + metric_type: monotonic_count
415 + metric_tags:
416 + - symbol:
417 + name: netscaler.vsvrServiceName
418 + OID: 1.3.6.1.4.1.5951.4.1.3.2.1.8
419 + tag: netscaler_vsvr_service_name
420 + - symbol:
421 + name: netscaler.vsvrServiceFullName
422 + OID: 1.3.6.1.4.1.5951.4.1.3.2.1.9
423 + tag: netscaler_vsvr_service_full_name
424 + - symbol:
425 + name: netscaler.vserverFullName
426 + OID: 1.3.6.1.4.1.5951.4.1.3.2.1.10
427 + tag: netscaler_vserver_full_name
428 + - MIB: NS-ROOT-MIB
429 + table:
430 + name: nsCPUTable
431 + OID: 1.3.6.1.4.1.5951.4.1.1.41.6
432 + symbols:
433 + - name: netscaler.nsCPUusage
434 + OID: 1.3.6.1.4.1.5951.4.1.1.41.6.1.2
435 + metric_tags:
436 + - symbol:
437 + name: netscaler.nsCPUname
438 + OID: 1.3.6.1.4.1.5951.4.1.1.41.6.1.1
439 + tag: netscaler_ns_cp_uname
440 + - MIB: NS-ROOT-MIB
441 + symbol:
442 + name: netscaler.tcpCurClientConn
443 + OID: 1.3.6.1.4.1.5951.4.1.1.46.2.0
444 + - MIB: NS-ROOT-MIB
445 + symbol:
446 + name: netscaler.tcpCurServerConnEstablished
447 + OID: 1.3.6.1.4.1.5951.4.1.1.46.10.0
448 + - MIB: NS-ROOT-MIB
449 + symbol:
450 + name: netscaler.sslTotSessions
451 + OID: 1.3.6.1.4.1.5951.4.1.1.47.204.0
452 + metric_type: monotonic_count
453 + - MIB: NS-ROOT-MIB
454 + table:
455 + name: lbvserverTable
456 + OID: 1.3.6.1.4.1.5951.4.1.3.6
457 + symbols:
458 + - name: netscaler.lbvsvrPersistenceTimeOut
459 + OID: 1.3.6.1.4.1.5951.4.1.3.6.1.3
460 + - name: netscaler.lbvsvrActiveConn
461 + OID: 1.3.6.1.4.1.5951.4.1.3.6.1.4
462 + - name: netscaler.lbvsvrAvgSvrTTFB
463 + OID: 1.3.6.1.4.1.5951.4.1.3.6.1.5
464 + metric_tags:
465 + - symbol:
466 + OID: 1.3.6.1.4.1.5951.4.1.3.6.1.1
467 + name: netscaler.lbvsvrLBMethod
468 + tag: netscaler_lbvsvr_lb_method
469 + mapping:
470 + 1: weighted_round_robin
471 + 2: least_connections
472 + 3: least_response
473 + 4: asynchronous_mac
474 + 5: url_hashed
475 + 6: domain_hashed
476 + 7: destination_ip_hashed
477 + 8: source_ip_hashed
478 + 9: least_bandwidth
479 + 10: least_packets
480 + 11: custom_load
481 + 12: token
482 + 13: static_proximity
483 + 14: rdp
484 + 15: leastreq
485 + 16: rtt
486 + 17: source_ip_destination_ip_hashed
487 + 18: source_ip_source_port
488 + 19: lrtm
489 + 20: call_id_hashed
490 + 21: api
491 + - symbol:
492 + OID: 1.3.6.1.4.1.5951.4.1.3.6.1.2
493 + name: netscaler.lbvsvrPersistanceType
494 + tag: netscaler_lbvsvr_persistance_type
495 + mapping:
496 + 0: none
497 + 1: source_ip
498 + 2: cookie_insert
499 + 3: cookie_delete
500 + 4: cookie_read
501 + 5: cookie_hash
502 + 6: session_id
503 + 7: server
504 + 8: rule
505 + 9: url_passive
506 + 10: custom_server_id
507 + 11: group_source_id
508 + 12: group_cookie_insert
509 + 13: group_rule
510 + 14: destination_ip
511 + 15: spill_over
512 + 16: source_i_pdestination_ip
513 + 17: caller_id
514 + 18: gslb_backup
515 + 19: rtsp_session_id
516 + 20: diameter
517 + 21: fix_session
518 + 22: user_session
519 + - MIB: NS-ROOT-MIB
520 + table:
521 + name: serviceGroupTable
522 + OID: 1.3.6.1.4.1.5951.4.1.2.11
523 + symbols:
524 + - name: netscaler.serviceGroup
525 + constant_value_one: true
526 + metric_tags:
527 + - symbol:
528 + name: netscaler.svcgrpSvcGroupName
529 + OID: 1.3.6.1.4.1.5951.4.1.2.11.1.1
530 + tag: netscaler_svcgrp_svc_group_name
531 + - symbol:
532 + name: netscaler.svcgrpSvcGroupType
533 + OID: 1.3.6.1.4.1.5951.4.1.2.11.1.2
534 + tag: netscaler_svcgrp_svc_group_type
535 + mapping:
536 + 0: http
537 + 1: ftp
538 + 2: tcp
539 + 3: udp
540 + 4: ssl_bridge
541 + 5: monitor
542 + 6: monitor_udp
543 + 7: nntp
544 + 8: httpserver
545 + 9: httpclient
546 + 10: rpcserver
547 + 11: rpcclient
548 + 12: nat
549 + 13: any
550 + 14: ssl
551 + 16: dns
552 + 17: adns
553 + 18: snmp
554 + 19: ha
555 + 20: monitor_ping
556 + 21: ssl_other_tcp
557 + 22: aaa
558 + 23: secure_monitor
559 + 24: sslvpn_udp
560 + 25: rip
561 + 26: dns_client
562 + 27: rpc_server
563 + 28: rpc_client
564 + 36: dhcrpa
565 + 39: sipudp
566 + 40: siptcp
567 + 41: siptls
568 + 48: dnstcp
569 + 49: adnstcp
570 + 50: rtsp
571 + 52: push
572 + 53: ssl_push
573 + 54: dhcp_client
574 + 55: radius
575 + 61: rdp
576 + 62: mysql
577 + 63: mssql
578 + 73: diameter
579 + 74: ssl_diameter
580 + 75: tftp
581 + 90: tftp
582 + 91: pptp
583 + 92: gre
584 + 95: fix
585 + 96: ssl_fix
586 + 104: user_tcp
587 + 105: user_ssl_tcp
588 + 113: mongo
589 + 114: mongo_tls
590 + 116: mqtt
591 + 117: mqtt_tls
592 + 118: quic_bridge
593 + 120: service_unknown
594 + - symbol:
595 + name: netscaler.svcgrpSvcGroupFullName
596 + OID: 1.3.6.1.4.1.5951.4.1.2.11.1.4
597 + tag: netscaler_svcgrp_svc_group_full_name
598 + - symbol:
599 + OID: 1.3.6.1.4.1.5951.4.1.2.11.1.3
600 + name: netscaler.svcgrpSvcGroupState
601 + tag: netscaler_svcgrp_svc_group_state
602 + mapping:
603 + 0: disabled
604 + 1: enabled
605 + - MIB: NS-ROOT-MIB
606 + table:
607 + name: sslCertKeyTable
608 + OID: 1.3.6.1.4.1.5951.4.1.1.56.1
609 + symbols:
610 + - name: netscaler.sslDaysToExpire
611 + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.5
612 + metric_tags:
613 + - symbol:
614 + name: netscaler.sslCertKeyName
615 + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.1
616 + tag: netscaler_ssl_cert_key_name
617 + - MIB: NS-ROOT-MIB
618 + table:
619 + name: vserverTable
620 + OID: 1.3.6.1.4.1.5951.4.1.3.1
621 + symbols:
622 + - name: netscaler.vsvrCurSrvrConnections
623 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.8
624 + - name: netscaler.vsvrTotalRequests
625 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.30
626 + metric_type: monotonic_count
627 + - name: netscaler.vsvrTotalRequestBytes
628 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.31
629 + metric_type: monotonic_count
630 + - name: netscaler.vsvrTotalResponses
631 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.32
632 + metric_type: monotonic_count
633 + - name: netscaler.vsvrTotalResponseBytes
634 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.33
635 + metric_type: monotonic_count
636 + - name: netscaler.vsvrCurServicesDown
637 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.37
638 + - name: netscaler.vsvrCurServicesUp
639 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.41
640 + - name: netscaler.vsvrRequestRate
641 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.43
642 + - name: netscaler.vsvrRxBytesRate
643 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.44
644 + - name: netscaler.vsvrTxBytesRate
645 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.45
646 + - name: netscaler.vsvrSynfloodRate
647 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.46
648 + - name: netscaler.vsvrTotSpillOvers
649 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.54
650 + metric_type: monotonic_count
651 + - name: netscaler.vsvrTotalClients
652 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.56
653 + metric_type: monotonic_count
654 + - name: netscaler.vsvrTotalServicesBound
655 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.61
656 + - name: netscaler.vsvrHealth
657 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.62
658 + - name: netscaler.vsvrTotalServers
659 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.65
660 + metric_type: monotonic_count
661 + - name: netscaler.vsvrSoThreshold
662 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.70
663 + metric_tags:
664 + - symbol:
665 + name: netscaler.vsvrFullName
666 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.59
667 + tag: netscaler_vsvr_full_name
668 + - symbol:
669 + OID: 1.3.6.1.4.1.5951.4.1.3.1.1.66
670 + name: netscaler.vsvrActiveActiveState
671 + tag: netscaler_vsvr_active_active_state
672 + mapping:
673 + 0: not_applicable
674 + 1: active
675 + 2: backup
676 + - MIB: NS-ROOT-MIB
677 + table:
678 + name: serviceTable
679 + OID: 1.3.6.1.4.1.5951.4.1.2.1
680 + symbols:
681 + - name: netscaler.svcAvgTransactionTime
682 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.7
683 + - name: netscaler.svcEstablishedConn
684 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.8
685 + - name: netscaler.svcActiveConn
686 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.9
687 + - name: netscaler.svcSurgeCount
688 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.10
689 + - name: netscaler.svcTotalRequests
690 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.30
691 + metric_type: monotonic_count
692 + - name: netscaler.svcTotalRequestBytes
693 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.31
694 + metric_type: monotonic_count
695 + - name: netscaler.svcTotalResponses
696 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.32
697 + metric_type: monotonic_count
698 + - name: netscaler.svcTotalResponseBytes
699 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.33
700 + metric_type: monotonic_count
701 + - name: netscaler.svcTotalPktsRecvd
702 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.34
703 + metric_type: monotonic_count
704 + - name: netscaler.svcTotalPktsSent
705 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.35
706 + metric_type: monotonic_count
707 + - name: netscaler.svcAvgSvrTTFB
708 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.38
709 + - name: netscaler.svcCurClntConnections
710 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.41
711 + - name: netscaler.svcRequestRate
712 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.42
713 + - name: netscaler.svcRxBytesRate
714 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.43
715 + - name: netscaler.svcTxBytesRate
716 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.44
717 + - name: netscaler.svcActiveTransactions
718 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.53
719 + metric_tags:
720 + - symbol:
721 + name: netscaler.svcServiceName
722 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.1
723 + tag: netscaler_svc_service_name
724 + - symbol:
725 + name: netscaler.svcIpAddress
726 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.2
727 + tag: netscaler_svc_ip_address
728 + - symbol:
729 + name: netscaler.svcPort
730 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.3
731 + tag: netscaler_svc_port
732 + - symbol:
733 + name: netscaler.svcServiceType
734 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.4
735 + tag: netscaler_svc_service_type
736 + mapping:
737 + 0: http
738 + 1: ftp
739 + 2: tcp
740 + 3: udp
741 + 4: ssl_bridge
742 + 5: monitor
743 + 6: monitor_udp
744 + 7: nntp
745 + 8: httpserver
746 + 9: httpclient
747 + 10: rpcserver
748 + 11: rpcclient
749 + 12: nat
750 + 13: any
751 + 14: ssl
752 + 16: dns
753 + 17: adns
754 + 18: snmp
755 + 19: ha
756 + 20: monitor_ping
757 + 21: ssl_other_tcp
758 + 22: aaa
759 + 23: secure_monitor
760 + 24: sslvpn_udp
761 + 25: rip
762 + 26: dns_client
763 + 27: rpc_server
764 + 28: rpc_client
765 + 36: dhcrpa
766 + 39: sipudp
767 + 40: siptcp
768 + 41: siptls
769 + 48: dnstcp
770 + 49: adnstcp
771 + 50: rtsp
772 + 52: push
773 + 53: ssl_push
774 + 54: dhcp_client
775 + 55: radius
776 + 61: rdp
777 + 62: mysql
778 + 63: mssql
779 + 73: diameter
780 + 74: ssl_diameter
781 + 75: tftp
782 + 90: tftp
783 + 91: pptp
784 + 92: gre
785 + 95: fix
786 + 96: ssl_fix
787 + 104: user_tcp
788 + 105: user_ssl_tcp
789 + 113: mongo
790 + 114: mongo_tls
791 + 116: mqtt
792 + 117: mqtt_tls
793 + 118: quic_bridge
794 + 120: service_unknown
795 + - symbol:
796 + name: netscaler.svcServiceFullName
797 + OID: 1.3.6.1.4.1.5951.4.1.2.1.1.54
798 + tag: netscaler_svc_service_full_name
799 + - MIB: NS-ROOT-MIB
800 + table:
801 + name: serverTable
802 + OID: 1.3.6.1.4.1.5951.4.1.2.2
803 + symbols:
804 + - name: netscaler.server
805 + constant_value_one: true
806 + metric_tags:
807 + - symbol:
808 + name: netscaler.serverName
809 + OID: 1.3.6.1.4.1.5951.4.1.2.2.1.1
810 + tag: netscaler_server_name
811 + - symbol:
812 + name: netscaler.serverIpAddress
813 + OID: 1.3.6.1.4.1.5951.4.1.2.2.1.2
814 + tag: netscaler_server_ip_address
815 + - symbol:
816 + OID: 1.3.6.1.4.1.5951.4.1.2.2.1.3
817 + name: netscaler.serverState
818 + tag: netscaler_server_state
819 + mapping:
820 + 1: down
821 + 2: unknown
822 + 3: busy
823 + 4: out_of_service
824 + 5: transition_to_out_of_service
825 + 7: up
826 + 8: transition_to_out_of_service_down
827 +# metric_tags:
828 + # - OID: 1.3.6.1.4.1.5951.4.1.1.11.0
829 + # symbol: sysHardwareVersionDesc
830 + # tag: netscaler_sys_hardware_version_desc
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/citrix.yaml new
+8
@@ -0,0 +1,8 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "citrix"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cradlepoint.yaml new
+118
@@ -0,0 +1,118 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "cradlepoint"
9 +sysobjectid:
10 + - 1.3.6.1.4.1.20992.2.* # Cradlepoint
11 + - 1.3.6.1.4.1.20992.2.1 # Cradlepoint mbr1000
12 + - 1.3.6.1.4.1.20992.2.2 # Cradlepoint ctr500
13 + - 1.3.6.1.4.1.20992.2.3 # Cradlepoint mbr800
14 + - 1.3.6.1.4.1.20992.2.4 # Cradlepoint mbr1100
15 + - 1.3.6.1.4.1.20992.2.5 # Cradlepoint mbr1200
16 + - 1.3.6.1.4.1.20992.2.6 # Cradlepoint mbr900
17 + - 1.3.6.1.4.1.20992.2.7 # Cradlepoint cba250
18 + - 1.3.6.1.4.1.20992.2.8 # Cradlepoint cba750
19 + - 1.3.6.1.4.1.20992.2.9 # Cradlepoint cx111
20 + - 1.3.6.1.4.1.20992.2.10 # Cradlepoint mbr1400
21 + - 1.3.6.1.4.1.20992.2.11 # Cradlepoint mbr1200b
22 + - 1.3.6.1.4.1.20992.2.12 # Cradlepoint cbr400
23 + - 1.3.6.1.4.1.20992.2.13 # Cradlepoint cbr450
24 + - 1.3.6.1.4.1.20992.2.14 # Cradlepoint ibr600
25 + - 1.3.6.1.4.1.20992.2.15 # Cradlepoint ibr650
26 + - 1.3.6.1.4.1.20992.2.16 # Cradlepoint mbr1400v2
27 + - 1.3.6.1.4.1.20992.2.17 # Cradlepoint cba750b
28 + - 1.3.6.1.4.1.20992.2.18 # Cradlepoint aer2100
29 + - 1.3.6.1.4.1.20992.2.19 # Cradlepoint ibr1150
30 + - 1.3.6.1.4.1.20992.2.20 # Cradlepoint ibr1100
31 + - 1.3.6.1.4.1.20992.2.21 # Cradlepoint cba850
32 + - 1.3.6.1.4.1.20992.2.22 # Cradlepoint ibr350
33 + - 1.3.6.1.4.1.20992.2.23 # Cradlepoint aer3100
34 + - 1.3.6.1.4.1.20992.2.24 # Cradlepoint aer1600
35 + - 1.3.6.1.4.1.20992.2.25 # Cradlepoint ibr650b
36 + - 1.3.6.1.4.1.20992.2.26 # Cradlepoint aer3150
37 + - 1.3.6.1.4.1.20992.2.27 # Cradlepoint aer1650
38 + - 1.3.6.1.4.1.20992.2.28 # Cradlepoint aer2150
39 + - 1.3.6.1.4.1.20992.2.29 # Cradlepoint ibr600b
40 + - 1.3.6.1.4.1.20992.2.30 # Cradlepoint ibr950
41 + - 1.3.6.1.4.1.20992.2.31 # Cradlepoint ibr900
42 + - 1.3.6.1.4.1.20992.2.32 # Cradlepoint ibr650c
43 + - 1.3.6.1.4.1.20992.2.33 # Cradlepoint ibr600c
44 + - 1.3.6.1.4.1.20992.2.34 # Cradlepoint ibr1700
45 + - 1.3.6.1.4.1.20992.2.35 # Cradlepoint aer2200
46 + - 1.3.6.1.4.1.20992.2.36 # Cradlepoint aer2250
47 + - 1.3.6.1.4.1.20992.2.37 # Cradlepoint ap22
48 + - 1.3.6.1.4.1.20992.2.38 # Cradlepoint ibr200
49 + - 1.3.6.1.4.1.20992.2.39 # Cradlepoint ibr250
50 + - 1.3.6.1.4.1.20992.2.40 # Cradlepoint ibr900-fips
51 + - 1.3.6.1.4.1.20992.2.41 # Cradlepoint ibr950-fips
52 + - 1.3.6.1.4.1.20992.2.42 # Cradlepoint ibr1700-fips
53 + - 1.3.6.1.4.1.20992.2.43 # Cradlepoint aer2200-fips
54 + - 1.3.6.1.4.1.20992.2.44 # Cradlepoint aer2250-fips
55 + - 1.3.6.1.4.1.20992.2.45 # Cradlepoint cr4250
56 + - 1.3.6.1.4.1.20992.2.46 # Cradlepoint cba550
57 +metrics:
58 + - MIB: WIPIPE-MIB
59 + table:
60 + OID: 1.3.6.1.4.1.20992.1.2.2
61 + name: mdmTable
62 + symbols:
63 + - name: cradlepoint.mdmSignalStrength
64 + OID: 1.3.6.1.4.1.20992.1.2.2.1.4
65 + - name: cradlepoint.mdmECIO
66 + OID: 1.3.6.1.4.1.20992.1.2.2.1.6
67 + - name: cradlepoint.mdmCINR
68 + OID: 1.3.6.1.4.1.20992.1.2.2.1.12
69 + - name: cradlepoint.mdmSINR
70 + OID: 1.3.6.1.4.1.20992.1.2.2.1.13
71 + - name: cradlepoint.mdmRSRP
72 + OID: 1.3.6.1.4.1.20992.1.2.2.1.14
73 + - name: cradlepoint.mdmRSRQ
74 + OID: 1.3.6.1.4.1.20992.1.2.2.1.15
75 + metric_tags:
76 + - symbol:
77 + name: cradlepoint.mdmDescr
78 + OID: 1.3.6.1.4.1.20992.1.2.2.1.2
79 + tag: cradlepoint_mdm_descr
80 + - symbol:
81 + name: cradlepoint.mdmPort
82 + OID: 1.3.6.1.4.1.20992.1.2.2.1.3
83 + tag: cradlepoint_mdm_port
84 + - symbol:
85 + name: cradlepoint.mdmRFBAND
86 + OID: 1.3.6.1.4.1.20992.1.2.2.1.17
87 + tag: cradlepoint_mdm_rfband
88 + - symbol:
89 + name: cradlepoint.mdmHOMECARRIER
90 + OID: 1.3.6.1.4.1.20992.1.2.2.1.18
91 + tag: cradlepoint_mdm_homecarrier
92 + - symbol:
93 + name: cradlepoint.mdmAPN
94 + OID: 1.3.6.1.4.1.20992.1.2.2.1.21
95 + tag: cradlepoint_mdm_apn
96 + - symbol:
97 + name: cradlepoint.mdmRFCHANNEL
98 + OID: 1.3.6.1.4.1.20992.1.2.2.1.22
99 + tag: cradlepoint_mdm_rfchannel
100 + - symbol:
101 + OID: 1.3.6.1.4.1.20992.1.2.2.1.5
102 + name: cradlepoint.mdmStatus
103 + tag: cradlepoint_mdm_status
104 + mapping:
105 + 1: established
106 + 2: establishing
107 + 3: ready
108 + 4: error
109 + 5: disconnected
110 + 6: disconnecting
111 + 7: suspended
112 + 8: empty
113 + 9: notconfigured
114 + 10: userstopped
115 + - symbol:
116 + OID: 1.3.6.1.4.1.20992.1.2.2.1.16
117 + name: cradlepoint.mdmROAM
118 + tag: cradlepoint_mdm_roam
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/cyberpower-pdu.yaml new
+381
@@ -0,0 +1,381 @@
1 +extends:
2 + - _base.yaml
3 +
4 +sysobjectid: 1.3.6.1.4.1.3808.1.1.*
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "cyberpower"
11 + type:
12 + value: "PDU"
13 +
14 +metrics:
15 + - MIB: CPS-MIB
16 + table:
17 + OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1
18 + name: ePDULoadStatusTable
19 + symbols:
20 + - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.2
21 + name: cyberpower.ePDULoadStatusLoad
22 + - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.6
23 + name: cyberpower.ePDULoadStatusVoltage
24 + - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.7
25 + name: cyberpower.ePDULoadStatusActivePower
26 + - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.8
27 + name: cyberpower.ePDULoadStatusApparentPower
28 + - OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.9
29 + name: cyberpower.ePDULoadStatusPowerFactor
30 + metric_tags:
31 + - symbol:
32 + OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.1
33 + name: ePDULoadStatusIndex
34 + tag: e_pdu_load_status_index
35 + - symbol:
36 + OID: 1.3.6.1.4.1.3808.1.1.3.2.3.1.1.3
37 + name: ePDULoadStatusLoadState
38 + tag: e_pdu_load_status_load_state
39 + mapping:
40 + 1: load_normal
41 + 2: load_low
42 + 3: load_near_overload
43 + 4: load_overload
44 + - MIB: CPS-MIB
45 + table:
46 + OID: 1.3.6.1.4.1.3808.1.1.3.2.4.1
47 + name: ePDULoadBankConfigTable
48 + symbols:
49 + - name: cyberpower.ePDULoadBankConfig
50 + constant_value_one: true
51 + metric_tags:
52 + - symbol:
53 + OID: 1.3.6.1.4.1.3808.1.1.3.2.4.1.1.1
54 + name: ePDULoadBankConfigIndex
55 + tag: e_pdu_load_bank_config_index
56 + - symbol:
57 + OID: 1.3.6.1.4.1.3808.1.1.3.2.4.1.1.5
58 + name: ePDULoadBankConfigAlarm
59 + tag: e_pdu_load_bank_config_alarm
60 + mapping:
61 + 1: no_load_alarm
62 + 2: under_current_alarm
63 + 3: near_over_current_alarm
64 + 4: over_current_alarm
65 + - MIB: CPS-MIB
66 + table:
67 + OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1
68 + name: ePDUOutletStatusTable
69 + symbols:
70 + - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.7
71 + name: cyberpower.ePDUOutletStatusLoad
72 + - OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.8
73 + name: cyberpower.ePDUOutletStatusActivePower
74 + metric_tags:
75 + - symbol:
76 + OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.1
77 + name: ePDUOutletStatusIndex
78 + tag: e_pdu_outlet_status_index
79 + - symbol:
80 + OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.2
81 + name: ePDUOutletStatusOutletName
82 + tag: e_pdu_outlet_status_outlet_name
83 + - symbol:
84 + OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.4
85 + name: ePDUOutletStatusOutletState
86 + tag: e_pdu_outlet_status_outlet_state
87 + mapping:
88 + 1: outlet_status_on
89 + 2: outlet_status_off
90 + - symbol:
91 + OID: 1.3.6.1.4.1.3808.1.1.3.3.5.1.1.9
92 + name: ePDUOutletStatusAlarm
93 + tag: e_pdu_outlet_status_alarm
94 + mapping:
95 + 1: no_load_alarm
96 + 2: under_current_alarm
97 + 3: near_over_current_alarm
98 + 4: over_current_alarm
99 + # - MIB: CPS-MIB # All three metric tags are scalar metrics with enums. Not supported yet.
100 + # table:
101 + # OID: 1.3.6.1.4.1.3808.1.1.3.3.6.1
102 + # name: ePDUOutletBankTable
103 + # symbols:
104 + # - name: ePDUOutletBank
105 + # constant_value_one: true
106 + # metric_tags:
107 + # - symbol:
108 + # OID:
109 + # name: ePDUOutletBankIndex
110 + # - symbol:
111 + # OID: 1.3.6.1.4.1.3808.1.1.3.4.1.1
112 + # name: ePDUPowerSupply1Status
113 + # tag: e_pdu_power_supply1_status
114 + # mapping:
115 + # 1: power_supply_one_ok
116 + # 2: power_supply_one_failed
117 + # - symbol:
118 + # OID: 1.3.6.1.4.1.3808.1.1.3.4.1.2
119 + # name: ePDUPowerSupply2Status
120 + # tag: e_pdu_power_supply2_status
121 + # mapping:
122 + # 1: power_supply_two_ok
123 + # 2: power_supply_two_failed
124 + # 3: power_supply_two_not_present
125 + # - symbol:
126 + # OID: 1.3.6.1.4.1.3808.1.1.3.4.1.3
127 + # name: ePDUPowerSupplyAlarm
128 + # tag: e_pdu_power_supply_alarm
129 + # mapping:
130 + # 1: all_available_power_supplies_ok
131 + # 2: power_supply_one_failed
132 + # 3: power_supply_two_failed
133 + # 4: power_supply_oneand_two_failed
134 + - MIB: CPS-MIB
135 + table:
136 + OID: 1.3.6.1.4.1.3808.1.1.3.5.2
137 + name: ePDUStatusBankTable
138 + symbols:
139 + - name: cyberpower.ePDUStatusBank
140 + constant_value_one: true
141 + metric_tags:
142 + - symbol:
143 + OID: 1.3.6.1.4.1.3808.1.1.3.5.2.1.1
144 + name: ePDUStatusBankIndex
145 + tag: e_pdu_status_bank_index
146 + - symbol:
147 + OID: 1.3.6.1.4.1.3808.1.1.3.5.2.1.2
148 + name: ePDUStatusBankNumber
149 + tag: e_pdu_status_bank_number
150 + - symbol:
151 + OID: 1.3.6.1.4.1.3808.1.1.3.5.2.1.3
152 + name: ePDUStatusBankState
153 + tag: e_pdu_status_bank_state
154 + mapping:
155 + 1: bank_load_normal
156 + 2: bank_load_low
157 + 3: bank_load_near_overload
158 + 4: bank_load_overload
159 + - MIB: CPS-MIB
160 + table:
161 + OID: 1.3.6.1.4.1.3808.1.1.3.5.4
162 + name: ePDUStatusPhaseTable
163 + symbols:
164 + - name: cyberpower.ePDUStatusPhase
165 + constant_value_one: true
166 + metric_tags:
167 + - symbol:
168 + OID: 1.3.6.1.4.1.3808.1.1.3.5.4.1.1
169 + name: ePDUStatusPhaseIndex
170 + tag: e_pdu_status_phase_index
171 + - symbol:
172 + OID: 1.3.6.1.4.1.3808.1.1.3.5.4.1.2
173 + name: ePDUStatusPhaseNumber
174 + tag: e_pdu_status_phase_number
175 + - symbol:
176 + OID: 1.3.6.1.4.1.3808.1.1.3.5.4.1.3
177 + name: ePDUStatusPhaseState
178 + tag: e_pdu_status_phase_state
179 + mapping:
180 + 1: phase_load_normal
181 + 2: phase_load_low
182 + 3: phase_load_near_overload
183 + 4: phase_load_overload
184 + - MIB: CPS-MIB
185 + table:
186 + OID: 1.3.6.1.4.1.3808.1.1.3.5.6
187 + name: ePDUStatusOutletTable
188 + symbols:
189 + - name: cyberpower.ePDUStatusOutlet
190 + constant_value_one: true
191 + metric_tags:
192 + - symbol:
193 + OID: 1.3.6.1.4.1.3808.1.1.3.5.6.1.1
194 + name: ePDUStatusOutletIndex
195 + tag: e_pdu_status_outlet_index
196 + - symbol:
197 + OID: 1.3.6.1.4.1.3808.1.1.3.5.6.1.2
198 + name: ePDUStatusOutletNumber
199 + tag: e_pdu_status_outlet_number
200 + - symbol:
201 + OID: 1.3.6.1.4.1.3808.1.1.3.5.6.1.3
202 + name: ePDUStatusOutletState
203 + tag: e_pdu_status_outlet_state
204 + mapping:
205 + 1: outlet_load_normal
206 + 2: outlet_load_low
207 + 3: outlet_load_near_overload
208 + 4: outlet_load_overload
209 + - MIB: CPS-MIB
210 + symbol:
211 + OID: 1.3.6.1.4.1.3808.1.1.3.5.7
212 + name: cyberpower.ePDUStatusInputVoltage
213 + - MIB: CPS-MIB
214 + symbol:
215 + OID: 1.3.6.1.4.1.3808.1.1.3.5.8
216 + name: cyberpower.ePDUStatusInputFrequency
217 + - MIB: CPS-MIB
218 + table:
219 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4
220 + name: ePDU2DeviceStatusTable
221 + symbols:
222 + - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.5
223 + name: cyberpower.ePDU2DeviceStatusCurrentLoad
224 + - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.6
225 + name: cyberpower.ePDU2DeviceStatusCurrentPeakLoad
226 + - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.15
227 + name: cyberpower.ePDU2DeviceStatusApparentPower
228 + - OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.16
229 + name: cyberpower.ePDU2DeviceStatusPowerFactor
230 + metric_tags:
231 + - symbol:
232 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.1
233 + name: ePDU2DeviceStatusIndex
234 + tag: e_pdu2_device_status_index
235 + - symbol:
236 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.3
237 + name: ePDU2DeviceStatusName
238 + tag: e_pdu2_device_status_name
239 + - symbol:
240 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.17
241 + name: ePDU2DeviceStatusRoleType
242 + tag: e_pdu2_device_status_role_type
243 + mapping:
244 + 1: standalone
245 + 2: host
246 + 3: slave
247 + - symbol:
248 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.4
249 + name: ePDU2DeviceStatusLoadState
250 + tag: e_pdu2_device_status_load_state
251 + mapping:
252 + 1: no_load_alarm
253 + 2: under_current_alarm
254 + 3: near_over_current_alarm
255 + 4: over_current_alarm
256 + - symbol:
257 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.12
258 + name: ePDU2DeviceStatusPowerSupplyAlarm
259 + tag: e_pdu2_device_status_power_supply_alarm
260 + mapping:
261 + 1: normal
262 + 2: alarm
263 + - symbol:
264 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.13
265 + name: ePDU2DeviceStatusPowerSupply1Status
266 + tag: e_pdu2_device_status_power_supply1_status
267 + mapping:
268 + 1: normal
269 + 2: alarm
270 + - symbol:
271 + OID: 1.3.6.1.4.1.3808.1.1.6.3.4.1.14
272 + name: ePDU2DeviceStatusPowerSupply2Status
273 + tag: e_pdu2_device_status_power_supply2_status
274 + mapping:
275 + 1: normal
276 + 2: alarm
277 + - MIB: CPS-MIB
278 + table:
279 + OID: 1.3.6.1.4.1.3808.1.1.6.4.4
280 + name: ePDU2PhaseStatusTable
281 + symbols:
282 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.5
283 + name: cyberpower.ePDU2PhaseStatusLoad
284 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.6
285 + name: cyberpower.ePDU2PhaseStatusVoltage
286 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.7
287 + name: cyberpower.ePDU2PhaseStatusPower
288 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.8
289 + name: cyberpower.ePDU2PhaseStatusApparentPower
290 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.9
291 + name: cyberpower.ePDU2PhaseStatusPowerFactor
292 + - OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.10
293 + name: cyberpower.ePDU2PhaseStatusPeakLoad
294 + metric_tags:
295 + - symbol:
296 + OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.1
297 + name: ePDU2PhaseStatusIndex
298 + tag: e_pdu2_phase_status_index
299 + - symbol:
300 + OID: 1.3.6.1.4.1.3808.1.1.6.4.4.1.4
301 + name: ePDU2PhaseStatusLoadState
302 + tag: e_pdu2_phase_status_load_state
303 + mapping:
304 + 1: normal
305 + 2: low_load
306 + 3: near_overload
307 + 4: overload
308 + - MIB: CPS-MIB
309 + table:
310 + OID: 1.3.6.1.4.1.3808.1.1.6.5.4
311 + name: ePDU2BankStatusTable
312 + symbols:
313 + - OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.5
314 + name: cyberpower.ePDU2BankStatusLoad
315 + - OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.6
316 + name: cyberpower.ePDU2BankStatusPeakLoad
317 + metric_tags:
318 + - symbol:
319 + OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.1
320 + name: ePDU2BankStatusIndex
321 + tag: e_pdu2_bank_status_index
322 + - symbol:
323 + OID: 1.3.6.1.4.1.3808.1.1.6.5.4.1.4
324 + name: ePDU2BankStatusLoadState
325 + tag: e_pdu2_bank_status_load_state
326 + mapping:
327 + 1: normal
328 + 2: low_load
329 + 3: near_overload
330 + 4: overload
331 + - MIB: CPS-MIB
332 + table:
333 + OID: 1.3.6.1.4.1.3808.1.1.6.6.1.4
334 + name: ePDU2OutletSwitchedStatusTable
335 + symbols:
336 + - name: cyberpower.ePDU2OutletSwitchedStatus
337 + constant_value_one: true
338 + metric_tags:
339 + - symbol:
340 + OID: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.1
341 + name: ePDU2OutletSwitchedStatusIndex
342 + tag: e_pdu2_outlet_switched_status_index
343 + - symbol:
344 + OID: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.4
345 + name: ePDU2OutletSwitchedStatusName
346 + tag: e_pdu2_outlet_switched_status_name
347 + - symbol:
348 + OID: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5
349 + name: ePDU2OutletSwitchedStatusState
350 + tag: e_pdu2_outlet_switched_status_state
351 + mapping:
352 + 1: outlet_status_on
353 + 2: outlet_status_off
354 + - MIB: CPS-MIB
355 + symbol:
356 + OID: 1.3.6.1.4.1.3808.1.1.4.2.1.0
357 + name: cyberpower.envirTemperature
358 + - MIB: CPS-MIB
359 + symbol:
360 + OID: 1.3.6.1.4.1.3808.1.1.4.2.6.0
361 + name: cyberpower.envirTemperatureCelsius
362 + - MIB: CPS-MIB
363 + symbol:
364 + OID: 1.3.6.1.4.1.3808.1.1.4.3.1.0
365 + name: cyberpower.envirHumidity
366 +metric_tags:
367 + - OID: 1.3.6.1.4.1.3808.1.1.3.1.1.0
368 + symbol: ePDUIdentName
369 + tag: e_pdu_ident_name
370 + - tag: e_pdu_ident_model_number
371 + OID: 1.3.6.1.4.1.3808.1.1.3.1.5.0
372 + symbol: ePDUIdentModelNumber
373 + - tag: e_pdu_ident_serial_number
374 + OID: 1.3.6.1.4.1.3808.1.1.3.1.6.0
375 + symbol: ePDUIdentSerialNumber
376 + - OID: 1.3.6.1.4.1.3808.1.1.4.1.1.0
377 + symbol: envirIdentName
378 + tag: envir_ident_name
379 + - OID: 1.3.6.1.4.1.3808.1.1.4.1.2.0
380 + symbol: envirIdentLocation
381 + tag: envir_ident_location
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-emc-data-domain.yaml new
+334
@@ -0,0 +1,334 @@
1 +extends:
2 + - _dell.yaml
3 + - _generic-if.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.19746.3.1.* # EMC Data Domain
7 + - 1.3.6.1.4.1.19746.3.1.1 # EMC dd200
8 + - 1.3.6.1.4.1.19746.3.1.2 # EMC dd200Proto
9 + - 1.3.6.1.4.1.19746.3.1.3 # EMC dd410
10 + - 1.3.6.1.4.1.19746.3.1.4 # EMC dd430
11 + - 1.3.6.1.4.1.19746.3.1.5 # EMC dd460
12 + - 1.3.6.1.4.1.19746.3.1.6 # EMC dd400g
13 + - 1.3.6.1.4.1.19746.3.1.7 # EMC dd460g
14 + - 1.3.6.1.4.1.19746.3.1.8 # EMC dd560
15 + - 1.3.6.1.4.1.19746.3.1.9 # EMC dd560g
16 + - 1.3.6.1.4.1.19746.3.1.10 # EMC dd580
17 + - 1.3.6.1.4.1.19746.3.1.11 # EMC dd580g
18 + - 1.3.6.1.4.1.19746.3.1.12 # EMC dd565
19 + - 1.3.6.1.4.1.19746.3.1.13 # EMC dd530
20 + - 1.3.6.1.4.1.19746.3.1.14 # EMC dd510
21 + - 1.3.6.1.4.1.19746.3.1.15 # EMC dd120
22 + - 1.3.6.1.4.1.19746.3.1.16 # EMC dd690
23 + - 1.3.6.1.4.1.19746.3.1.17 # EMC dd690g
24 + - 1.3.6.1.4.1.19746.3.1.18 # EMC dd660
25 + - 1.3.6.1.4.1.19746.3.1.19 # EMC dd880
26 + - 1.3.6.1.4.1.19746.3.1.20 # EMC dd880g
27 + - 1.3.6.1.4.1.19746.3.1.21 # EMC dd610
28 + - 1.3.6.1.4.1.19746.3.1.22 # EMC dd630
29 + - 1.3.6.1.4.1.19746.3.1.23 # EMC dd140
30 + - 1.3.6.1.4.1.19746.3.1.24 # EMC dd670
31 + - 1.3.6.1.4.1.19746.3.1.25 # EMC dd860
32 + - 1.3.6.1.4.1.19746.3.1.26 # EMC dd860g
33 + - 1.3.6.1.4.1.19746.3.1.27 # EMC dd890
34 + - 1.3.6.1.4.1.19746.3.1.28 # EMC dd640
35 + - 1.3.6.1.4.1.19746.3.1.29 # EMC dd620
36 + - 1.3.6.1.4.1.19746.3.1.30 # EMC dd160
37 + - 1.3.6.1.4.1.19746.3.1.31 # EMC ddintrepid
38 + - 1.3.6.1.4.1.19746.3.1.32 # EMC dd4500
39 + - 1.3.6.1.4.1.19746.3.1.33 # EMC dd7200
40 + - 1.3.6.1.4.1.19746.3.1.34 # EMC ddve
41 + - 1.3.6.1.4.1.19746.3.1.35 # EMC dd990
42 + - 1.3.6.1.4.1.19746.3.1.36 # EMC dd2500
43 + - 1.3.6.1.4.1.19746.3.1.37 # EMC dd4200
44 +
45 +metrics:
46 + - MIB: HOST-RESOURCES-MIB
47 + symbol:
48 + name: memory.total
49 + OID: 1.3.6.1.2.1.25.2.3.1.5.1
50 + - MIB: HOST-RESOURCES-MIB
51 + symbol:
52 + name: memory.used
53 + OID: 1.3.6.1.2.1.25.2.3.1.6.1
54 + - MIB: HOST-RESOURCES-MIB
55 + symbol:
56 + OID: 1.3.6.1.2.1.25.2.3.1.6.6 # hrStorageUsed.6 = Memory buffers
57 + name: hrMemoryBuffers
58 + - MIB: HOST-RESOURCES-MIB
59 + symbol:
60 + OID: 1.3.6.1.2.1.25.2.3.1.6.7 # hrStorageUsed.7 = Cached memory
61 + name: hrCachedMemory
62 +# - MIB: DATA-DOMAIN-MIB
63 +# symbol:
64 +# name: fileSystemStatus
65 +# OID: 1.3.6.1.4.1.19746.1.3.1.1.0
66 +# enum:
67 +# enabled: 1
68 +# disabled: 2
69 +# running: 3
70 +# unknown: 4
71 +# error: 5
72 +# cleaning: 6
73 +# TODO: enum in scalar metric is not supported yet (keep this metric and this comment in profile until it's fixed)
74 + - MIB: DATA-DOMAIN-MIB
75 + symbol:
76 + name: datadomain.fileSystemVirtualSpace
77 + OID: 1.3.6.1.4.1.19746.1.3.1.2.0
78 +# TODO: octet string cannot be collected
79 +# - MIB: DATA-DOMAIN-MIB
80 +# symbol:
81 +# name: fileSystemUpTime
82 +# OID: 1.3.6.1.4.1.19746.1.3.1.3.0
83 +# format: TODO_handle_conversion_to_one
84 +# - MIB: DATA-DOMAIN-MIB
85 +# symbol:
86 +# name: fileSystemStatusMessage
87 +# OID: 1.3.6.1.4.1.19746.1.3.1.4.0
88 +# format: TODO_handle_conversion_to_one
89 + - MIB: DATA-DOMAIN-MIB
90 + table:
91 + name: powerModuleTable
92 + OID: 1.3.6.1.4.1.19746.1.1.1.1.1
93 + symbols:
94 + - name: datadomain.powerModule
95 + constant_value_one: true
96 + metric_tags:
97 + - symbol:
98 + name: powerModuleDescription
99 + OID: 1.3.6.1.4.1.19746.1.1.1.1.1.1.3
100 + tag: datadomain_power_module_description
101 + - symbol:
102 + OID: 1.3.6.1.4.1.19746.1.1.1.1.1.1.4
103 + name: powerModuleStatus
104 + tag: datadomain_power_module_status
105 + mapping:
106 + 0: absent
107 + 1: ok
108 + 2: failed
109 + 3: faulty
110 + 4: acnone
111 + 99: unknown
112 + - MIB: DATA-DOMAIN-MIB
113 + table:
114 + name: temperatureSensorTable
115 + OID: 1.3.6.1.4.1.19746.1.1.2.1.1
116 + symbols:
117 + - name: datadomain.tempSensorCurrentValue
118 + OID: 1.3.6.1.4.1.19746.1.1.2.1.1.1.5
119 + metric_tags:
120 + - symbol:
121 + name: tempSensorDescription
122 + OID: 1.3.6.1.4.1.19746.1.1.2.1.1.1.4
123 + tag: datadomain_temp_sensor_description
124 + - symbol:
125 + OID: 1.3.6.1.4.1.19746.1.1.2.1.1.1.6
126 + name: tempSensorStatus
127 + tag: datadomain_temp_sensor_status
128 + mapping:
129 + 0: failed
130 + 1: ok
131 + 2: notfound
132 + 3: overheat_warning
133 + 4: overheat_critical
134 + - MIB: DATA-DOMAIN-MIB
135 + table:
136 + name: fanPropertiesTable
137 + OID: 1.3.6.1.4.1.19746.1.1.3.1.1
138 + symbols:
139 + - name: datadomain.fanProperties
140 + constant_value_one: true
141 + metric_tags:
142 + - symbol:
143 + name: fanDescription
144 + OID: 1.3.6.1.4.1.19746.1.1.3.1.1.1.4
145 + tag: datadomain_fan_description
146 + - symbol:
147 + OID: 1.3.6.1.4.1.19746.1.1.3.1.1.1.5
148 + name: fanLevel
149 + tag: datadomain_fan_level
150 + mapping:
151 + 0: unknown
152 + 1: low
153 + 2: medium
154 + 3: high
155 + - symbol:
156 + OID: 1.3.6.1.4.1.19746.1.1.3.1.1.1.6
157 + name: fanStatus
158 + tag: datadomain_fan_status
159 + mapping:
160 + 0: notfound
161 + 1: ok
162 + 2: fail
163 + - MIB: DATA-DOMAIN-MIB
164 + table:
165 + name: fileSystemSpaceTable
166 + OID: 1.3.6.1.4.1.19746.1.3.2.1
167 + symbols:
168 + - name: datadomain.fileSystemSpaceSize
169 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.4
170 + - name: datadomain.fileSystemSpaceUsed
171 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.5
172 + - name: datadomain.fileSystemSpaceAvail
173 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.6
174 + - name: datadomain.fileSystemPercentUsed
175 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.7
176 + - name: datadomain.fileSystemSpaceCleanable
177 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.8
178 + metric_tags:
179 + - symbol:
180 + name: fileSystemResourceName
181 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.3
182 + tag: datadomain_file_system_resource_name
183 + - symbol:
184 + name: fileSystemResourceTier
185 + OID: 1.3.6.1.4.1.19746.1.3.2.1.1.9
186 + tag: datadomain_file_system_resource_tier
187 + - MIB: DATA-DOMAIN-MIB
188 + table:
189 + name: fileSystemCompressionTable
190 + OID: 1.3.6.1.4.1.19746.1.3.3.1
191 + symbols:
192 + - name: datadomain.fileSystemCompressionStartTime
193 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.3
194 + - name: datadomain.fileSystemCompressionEndTime
195 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.4
196 + - name: datadomain.fileSystemPreCompressionSize
197 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.5
198 + - name: datadomain.fileSystemPostCompressionSize
199 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.6
200 + - name: datadomain.fileSystemGlobalCompressionFactor
201 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.7
202 + - name: datadomain.fileSystemLocalCompressionFactor
203 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.8
204 + - name: datadomain.fileSystemTotalCompressionFactor
205 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.9
206 + - name: datadomain.fileSystemReductionPercent1
207 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.11
208 + metric_tags:
209 + - symbol:
210 + name: fileSystemCompressionIndex
211 + OID: 1.3.6.1.4.1.19746.1.3.3.1.1.1
212 + tag: data_domain_file_system_compression_index
213 + - MIB: DATA-DOMAIN-MIB
214 + table:
215 + name: systemStatsTable
216 + OID: 1.3.6.1.4.1.19746.1.5.1.1
217 + symbols:
218 + - name: cpu.usage
219 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.2
220 + - name: datadomain.cpuMaxPercentageBusy
221 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.3
222 + - name: datadomain.nfsOpsPerSecond
223 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.4
224 + - name: datadomain.nfsIdlePercentage
225 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.5
226 + - name: datadomain.nfsProcPercentage
227 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.6
228 + - name: datadomain.nfsSendPercentage
229 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.7
230 + - name: datadomain.nfsReceivePercentage
231 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.8
232 + - name: datadomain.cifsOpsPerSecond
233 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.9
234 + - name: datadomain.diskReadKBytesPerSecond
235 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.10
236 + - name: datadomain.diskWriteKBytesPerSecond
237 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.11
238 + - name: datadomain.diskBusyPercentage
239 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.12
240 + - name: datadomain.nvramReadKBytesPerSecond
241 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.13
242 + - name: datadomain.nvramWriteKBytesPerSecond
243 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.14
244 + - name: datadomain.replInKBytesPerSecond
245 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.15
246 + - name: datadomain.replOutKBytesPerSecond
247 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.16
248 + metric_tags:
249 + - symbol:
250 + OID: 1.3.6.1.4.1.19746.1.5.1.1.1.1
251 + name: systemStatsIndex
252 + tag: datadomain_system_stats_index
253 + - MIB: DATA-DOMAIN-MIB
254 + table:
255 + name: diskPropertiesTable
256 + OID: 1.3.6.1.4.1.19746.1.6.1.1
257 + symbols:
258 + - name: datadomain.diskProperties
259 + constant_value_one: true
260 + metric_tags:
261 + - symbol:
262 + name: diskPropEnclosureID
263 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.1
264 + tag: datadomain_disk_prop_enclosure_id
265 + - symbol:
266 + name: diskPropIndex
267 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.2
268 + tag: datadomain_disk_prop_index
269 + - symbol:
270 + name: diskModel
271 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.4
272 + tag: datadomain_disk_model
273 + - symbol:
274 + name: diskFirmwareVersion
275 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.5
276 + tag: datadomain_disk_firmware_version
277 + - symbol:
278 + name: diskSerialNumber
279 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.6
280 + tag: datadomain_disk_serial_number
281 + - symbol:
282 + name: diskCapacity
283 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.7
284 + tag: datadomain_disk_capacity
285 + - symbol:
286 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.8
287 + name: diskPropState
288 + tag: datadomain_disk_prop_state
289 + mapping:
290 + 1: ok
291 + 2: unknown
292 + 3: absent
293 + 4: failed
294 + 5: spare
295 + 6: available
296 + - symbol:
297 + OID: 1.3.6.1.4.1.19746.1.6.1.1.1.9
298 + name: diskPack
299 + tag: datadomain_disk_pack
300 + mapping:
301 + 0: notapplicable
302 + 1: pack1
303 + 2: pack2
304 + 3: pack3
305 + 4: pack4
306 + - MIB: DATA-DOMAIN-MIB
307 + table:
308 + name: diskPerformanceTable
309 + OID: 1.3.6.1.4.1.19746.1.6.2.1
310 + symbols:
311 + - name: datadomain.diskSectorsRead
312 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.3
313 + - name: datadomain.diskSectorsWritten
314 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.4
315 + - name: datadomain.diskTotalKBytes
316 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.5
317 + - name: datadomain.diskBusy
318 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.6
319 + metric_tags:
320 + - symbol:
321 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.7
322 + name: diskPerfState
323 + tag: datadomain_disk_perf_state
324 + mapping:
325 + 1: ok
326 + 2: unknown
327 + 3: absent
328 + 4: failed
329 + 5: spare
330 + 6: available
331 + - symbol:
332 + OID: 1.3.6.1.4.1.19746.1.6.2.1.1.2
333 + name: diskPerfIndex
334 + tag: datadomain_disk_perf_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-force10.yaml new
+22
@@ -0,0 +1,22 @@
1 +extends:
2 + - _dell.yaml
3 + - _generic-if.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.6027.1.3.* # Dell Networking S Family
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "switch"
13 +
14 +metrics:
15 + - MIB: F10-S-SERIES-CHASSIS-MIB
16 + symbol:
17 + OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.4
18 + name: cpu.usage
19 + - MIB: F10-S-SERIES-CHASSIS-MIB
20 + symbol:
21 + OID: 1.3.6.1.4.1.6027.3.10.1.2.9.1.5
22 + name: memory.usage
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-os10.yaml new
+243
@@ -0,0 +1,243 @@
1 +extends:
2 + - _dell.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-ucd.yaml
5 +# - if32-mib.yaml # TODO: later (NDM-1933)
6 +
7 +sysobjectid:
8 + - 1.3.6.1.4.1.674.11000.5000.100.2.* # OS10 family
9 + - 1.3.6.1.4.1.674.11000.5000.100.2.1.1 # s6000on
10 + - 1.3.6.1.4.1.674.11000.5000.100.2.1.9 # s4128Ton
11 + - 1.3.6.1.4.1.674.11000.5000.100.2.1.20 # s5232Fon
12 + - 1.3.6.1.4.1.674.11000.5000.100.2.1.21 # s5248Fon
13 +
14 +metadata:
15 + device:
16 + fields:
17 + type:
18 + value: "switch"
19 +
20 +metrics:
21 + - MIB: HOST-RESOURCES-MIB
22 + table:
23 + OID: 1.3.6.1.2.1.25.3.3
24 + name: hrProcessorTable
25 + symbols:
26 + - OID: 1.3.6.1.2.1.25.3.3.1.2
27 + name: cpu.usage
28 + metric_tags:
29 + - tag: hr_processor_frw_id
30 + symbol:
31 + OID: 1.3.6.1.2.1.25.3.3.1.1
32 + name: hrProcessorFrwID
33 + - MIB: HOST-RESOURCES-MIB
34 + symbol:
35 + name: memory.total
36 + OID: 1.3.6.1.2.1.25.2.3.1.5.1
37 + - MIB: HOST-RESOURCES-MIB
38 + symbol:
39 + name: memory.used
40 + OID: 1.3.6.1.2.1.25.2.3.1.6.1
41 + - MIB: DELLEMC-OS10-CHASSIS-MIB
42 + symbol:
43 + name: dell.os10ChassisTemp
44 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.11
45 + - MIB: DELLEMC-OS10-CHASSIS-MIB
46 + table:
47 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4
48 + name: dell.os10CardTable
49 + symbols:
50 + - OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.5
51 + name: dell.os10CardTemp
52 + metric_tags:
53 + - symbol:
54 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.3
55 + name: dell.os10CardDescription
56 + tag: dell_os10_card_description
57 + - symbol:
58 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.9
59 + name: dell.os10CardServiceTag
60 + tag: dell_os10_card_service_tag
61 + - symbol:
62 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.4.1.4
63 + name: dell.os10CardStatus
64 + tag: dell_os10_card_status
65 + mapping:
66 + 1: ready
67 + 2: card_mis_match
68 + 3: card_problem
69 + 4: diag_mode
70 + 5: card_absent
71 + 6: offline
72 + - MIB: DELLEMC-OS10-CHASSIS-MIB
73 + table:
74 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.1
75 + name: dell.os10PowerSupplyTable
76 + symbols:
77 + - name: dell.os10PowerSupply
78 + constant_value_one: true
79 + metric_tags:
80 + - symbol:
81 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.1.1.4
82 + name: dell.os10PowerSupplyOperStatus
83 + tag: dell_os10_power_supply_oper_status
84 + mapping:
85 + 1: up
86 + 2: down
87 + 3: testing
88 + 4: unknown
89 + 5: dormant
90 + 6: not_present
91 + 7: lower_layer_down
92 + 8: failed
93 + - symbol:
94 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.1.1.1
95 + name: dell.os10PowerSupplyIndex
96 + tag: dell_os10_power_supply_index
97 + - MIB: DELLEMC-OS10-CHASSIS-MIB
98 + table:
99 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.2
100 + name: dell.os10FanTrayTable
101 + symbols:
102 + - name: dell.os10FanTray
103 + constant_value_one: true
104 + metric_tags:
105 + - symbol:
106 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.2.1.4
107 + name: dell.os10FanTrayOperStatus
108 + tag: dell_os10_fan_tray_oper_status
109 + mapping:
110 + 1: up
111 + 2: down
112 + 3: testing
113 + 4: unknown
114 + 5: dormant
115 + 6: not_present
116 + 7: lower_layer_down
117 + 8: failed
118 + - symbol:
119 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.2.1.1
120 + name: dell.os10FanTrayIndex
121 + tag: dell_os10_fan_tray_index
122 + - MIB: DELLEMC-OS10-CHASSIS-MIB
123 + table:
124 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.3
125 + name: dell.os10FanTable
126 + symbols:
127 + - name: dell.os10Fan
128 + constant_value_one: true
129 + metric_tags:
130 + - symbol:
131 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.3.1.7
132 + name: dell.os10FanOperStatus
133 + tag: dell_os10_fan_oper_status
134 + mapping:
135 + 1: up
136 + 2: down
137 + 3: testing
138 + 4: unknown
139 + 5: dormant
140 + 6: not_present
141 + 7: lower_layer_down
142 + 8: failed
143 + - symbol:
144 + OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.2.3.1.1
145 + name: dell.os10FanIndex
146 + tag: dell_os10_fan_index
147 + - MIB: DELLEMC-OS10-BGP4V2-MIB
148 + table:
149 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2
150 + name: dell.os10bgp4V2PeerTable
151 + symbols:
152 + - name: dell.os10bgp4V2Peer
153 + constant_value_one: true
154 + metric_tags:
155 + - symbol:
156 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.2
157 + name: dell.os10bgp4V2PeerLocalAddrType
158 + tag: dell_os10bgp4_v2_peer_local_addr_type
159 + mapping:
160 + 0: unknown
161 + 1: ipv4
162 + 2: ipv6
163 + 3: ipv4z
164 + 4: ipv6z
165 + 16: dns
166 + 25: l2vpn
167 + - symbol:
168 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.3
169 + name: dell.os10bgp4V2PeerLocalAddr
170 + tag: dell_os10bgp4_v2_peer_local_addr
171 + - symbol:
172 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.4
173 + name: dell.os10bgp4V2PeerRemoteAddrType
174 + tag: dell_os10bgp4_v2_peer_remote_addr_type
175 + mapping:
176 + 0: unknown
177 + 1: ipv4
178 + 2: ipv6
179 + 3: ipv4z
180 + 4: ipv6z
181 + 16: dns
182 + 25: l2vpn
183 + - symbol:
184 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.5
185 + name: dell.os10bgp4V2PeerRemoteAddr
186 + tag: dell_os10bgp4_v2_peer_remote_addr
187 + - symbol:
188 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.6
189 + name: dell.os10bgp4V2PeerLocalPort
190 + tag: dell_os10bgp4_v2_peer_local_port
191 + - symbol:
192 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.7
193 + name: dell.os10bgp4V2PeerLocalAs
194 + tag: dell_os10bgp4_v2_peer_local_as
195 + - symbol:
196 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.8
197 + name: dell.os10bgp4V2PeerLocalIdentifier
198 + tag: dell_os10bgp4_v2_peer_local_identifier
199 + - symbol:
200 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.9
201 + name: dell.os10bgp4V2PeerRemotePort
202 + tag: dell_os10bgp4_v2_peer_remote_port
203 + - symbol:
204 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.10
205 + name: dell.os10bgp4V2PeerRemoteAs
206 + tag: dell_os10bgp4_v2_peer_remote_as
207 + - symbol:
208 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.11
209 + name: dell.os10bgp4V2PeerRemoteIdentifier
210 + tag: dell_os10bgp4_v2_peer_remote_identifier
211 + - symbol:
212 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.14
213 + name: dell.os10bgp4V2PeerDescription
214 + tag: dell_os10bgp4_v2_peer_description
215 + - symbol:
216 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.12
217 + name: dell.os10bgp4V2PeerAdminStatus
218 + tag: dell_os10bgp4_v2_peer_admin_status
219 + mapping:
220 + 1: halted
221 + 2: running
222 + - symbol:
223 + OID: 1.3.6.1.4.1.674.11000.5000.200.1.1.2.1.13
224 + name: dell.os10bgp4V2PeerState
225 + tag: dell_os10bgp4_v2_peer_state
226 + mapping:
227 + 1: idle
228 + 2: connect
229 + 3: active
230 + 4: opensent
231 + 5: openconfirm
232 + 6: established
233 +# Tagging by column OID is not supported at the moment. Should be a table/columns metric + tags instead.
234 +# metric_tags:
235 +# - OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.6
236 +# symbol: dell.os10ChassisHwRev
237 +# tag: dell_os10_chassis_hw_rev
238 +# - OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.7
239 +# symbol: dell.os10ChassisServiceTag
240 +# tag: dell_os10_chassis_service_tag
241 +# - OID: 1.3.6.1.4.1.674.11000.5000.100.4.1.1.3.1.8
242 +# symbol: dell.os10ChassisExpServiceCode
243 +# tag: dell_os10_chassis_exp_service_code
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-powerconnect.yaml new
+176
@@ -0,0 +1,176 @@
1 +extends:
2 + - _dell.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + version:
9 + symbol:
10 + MIB: Dell-Vendor-MIB
11 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.100.4.0
12 + name: productIdentificationVersion
13 + type:
14 + value: "switch"
15 +
16 +sysobjectid:
17 + - 1.3.6.1.4.1.674.10895.* # PowerConnect
18 + - 1.3.6.1.4.1.674.10895.3008 # PowerConnect 3424P
19 + - 1.3.6.1.4.1.674.10895.3009 # PowerConnect 3448P
20 + - 1.3.6.1.4.1.674.10895.3010 # PowerConnect 6224
21 + - 1.3.6.1.4.1.674.10895.3011 # PowerConnect 6248
22 + - 1.3.6.1.4.1.674.10895.3012 # PowerConnect 6224P
23 + - 1.3.6.1.4.1.674.10895.3013 # PowerConnect 6248P
24 + - 1.3.6.1.4.1.674.10895.3014 # PowerConnect 6224F
25 + - 1.3.6.1.4.1.674.10895.3015 # PowerConnect M6220
26 + - 1.3.6.1.4.1.674.10895.3017 # PowerConnect 3548
27 + - 1.3.6.1.4.1.674.10895.3018 # PowerConnect 3524P
28 + - 1.3.6.1.4.1.674.10895.3019 # PowerConnect 3548P
29 + - 1.3.6.1.4.1.674.10895.3020 # PowerConnect 5424
30 + - 1.3.6.1.4.1.674.10895.3022 # PowerConnect M8024
31 + - 1.3.6.1.4.1.674.10895.3023 # PowerConnect 8024
32 + - 1.3.6.1.4.1.674.10895.3024 # PowerConnect 8024F
33 + - 1.3.6.1.4.1.674.10895.3025 # PowerConnect M6384
34 + - 1.3.6.1.4.1.674.10895.3034 # PowerConnect 7024
35 + - 1.3.6.1.4.1.674.10895.3035 # PowerConnect 7048
36 + - 1.3.6.1.4.1.674.10895.3036 # PowerConnect 7024P
37 + - 1.3.6.1.4.1.674.10895.3037 # PowerConnect 7048P
38 + - 1.3.6.1.4.1.674.10895.3038 # PowerConnect 7024F
39 + - 1.3.6.1.4.1.674.10895.3039 # PowerConnect 7048R
40 + - 1.3.6.1.4.1.674.10895.3040 # PowerConnect 7048RRA
41 + - 1.3.6.1.4.1.674.10895.3041 # PowerConnect M8024K
42 + - 1.3.6.1.4.1.674.10895.3042 # PowerConnect N4032
43 + - 1.3.6.1.4.1.674.10895.3044 # PowerConnect N4032F
44 + - 1.3.6.1.4.1.674.10895.3045 # PowerConnect N4064
45 + - 1.3.6.1.4.1.674.10895.3046 # PowerConnect N4064F
46 + - 1.3.6.1.4.1.674.10895.3053 # PowerConnect N2024
47 + - 1.3.6.1.4.1.674.10895.3054 # PowerConnect N2048
48 + - 1.3.6.1.4.1.674.10895.3055 # PowerConnect N2024P
49 + - 1.3.6.1.4.1.674.10895.3056 # PowerConnect N2048P
50 + - 1.3.6.1.4.1.674.10895.3057 # PowerConnect N3024
51 + - 1.3.6.1.4.1.674.10895.3058 # PowerConnect N3048
52 + - 1.3.6.1.4.1.674.10895.3059 # PowerConnect N3024P
53 + - 1.3.6.1.4.1.674.10895.3060 # PowerConnect N3048P
54 + - 1.3.6.1.4.1.674.10895.3061 # PowerConnect N3024F
55 + - 1.3.6.1.4.1.674.10895.3063 # PowerConnect N1524
56 + - 1.3.6.1.4.1.674.10895.3064 # PowerConnect N1524P
57 + - 1.3.6.1.4.1.674.10895.3065 # PowerConnect N1548
58 + - 1.3.6.1.4.1.674.10895.3066 # PowerConnect N1548P
59 + - 1.3.6.1.4.1.674.10895.3076 # PowerConnect N3132PX
60 + - 1.3.6.1.4.1.674.10895.3077 # PowerConnect N2128PX
61 + - 1.3.6.1.4.1.674.10895.3078 # PowerConnect N1108T-ON
62 + - 1.3.6.1.4.1.674.10895.3079 # PowerConnect N1108P-ON
63 + - 1.3.6.1.4.1.674.10895.3080 # PowerConnect N1124T-ON
64 + - 1.3.6.1.4.1.674.10895.3081 # PowerConnect N1124P-ON
65 + - 1.3.6.1.4.1.674.10895.3082 # PowerConnect N1148T-ON
66 + - 1.3.6.1.4.1.674.10895.3083 # PowerConnect N1148P-ON
67 + - 1.3.6.1.4.1.674.10895.3084 # PowerConnect N3048EP-ON
68 + - 1.3.6.1.4.1.674.10895.3085 # PowerConnect N3048ET-ON
69 + - 1.3.6.1.4.1.674.10895.3086 # PowerConnect N3024EP-ON
70 + - 1.3.6.1.4.1.674.10895.3087 # PowerConnect N3024EF-ON
71 + - 1.3.6.1.4.1.674.10895.3088 # PowerConnect N3024ET-ON
72 + - 1.3.6.1.4.1.674.10895.3089 # PowerConnect N1608X-ON
73 + - 1.3.6.1.4.1.674.10895.3090 # PowerConnect N1608PX-ON
74 + - 1.3.6.1.4.1.674.10895.3091 # PowerConnect N1616X-ON
75 + - 1.3.6.1.4.1.674.10895.3092 # PowerConnect N1616PX-ON
76 + - 1.3.6.1.4.1.674.10895.3093 # PowerConnect N1624X-ON
77 + - 1.3.6.1.4.1.674.10895.3094 # PowerConnect N1624PX-ON
78 + - 1.3.6.1.4.1.674.10895.3095 # PowerConnect N1648X-ON
79 + - 1.3.6.1.4.1.674.10895.3096 # PowerConnect N1648PX-ON
80 + - 1.3.6.1.4.1.674.10895.3097 # PowerConnect N2224X-ON
81 + - 1.3.6.1.4.1.674.10895.3098 # PowerConnect N2224PX-ON
82 + - 1.3.6.1.4.1.674.10895.3099 # PowerConnect N2248X-ON
83 + - 1.3.6.1.4.1.674.10895.3100 # PowerConnect N2248PX-ON
84 + - 1.3.6.1.4.1.674.10895.3104 # PowerConnect NN3208PX-ON
85 + - 1.3.6.1.4.1.674.10895.3105 # PowerConnect N3224X-ON
86 + - 1.3.6.1.4.1.674.10895.3106 # PowerConnect N3224PX-ON
87 + - 1.3.6.1.4.1.674.10895.3107 # PowerConnect N3248X-ON
88 + - 1.3.6.1.4.1.674.10895.3109 # PowerConnect N3248PXE-ON
89 + - 1.3.6.1.4.1.674.10895.3110 # PowerConnect N3224T-ON
90 + - 1.3.6.1.4.1.674.10895.3111 # PowerConnect N3224F-ON
91 + - 1.3.6.1.4.1.674.10895.3112 # PowerConnect N3224P-ON
92 + - 1.3.6.1.4.1.674.10895.3113 # PowerConnect N3248TE-ON
93 + - 1.3.6.1.4.1.674.10895.3114 # PowerConnect N3248P-ON
94 + - 1.3.6.1.4.1.674.10895.3115 # PowerConnect N1108EP-ON
95 +
96 +metrics:
97 + - MIB: DNOS-SWITCHING-MIB
98 + symbol:
99 + name: cpu.usage
100 + OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.9.0
101 + extract_value: 60 Secs.*?(\d+[.]?\d+)
102 + - MIB: DNOS-SWITCHING-MIB
103 + symbol:
104 + name: memory.free
105 + OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.1.0
106 + - MIB: DNOS-SWITCHING-MIB
107 + symbol:
108 + name: memory.total
109 + OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.1.4.2.0
110 +# - MIB: Dell-Vendor-MIB
111 +# symbol:
112 +# name: productStatusGlobalStatus
113 +# OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.1.0
114 +# enum:
115 +# ok: 3
116 +# non-critical: 4
117 +# critical: 5
118 +# TODO: enum in scalar metric is not supported yet (keep this metric and this comment in profile until it's fixed)
119 + - MIB: Dell-Vendor-MIB
120 + table:
121 + name: dell.envMonFanStatusTable
122 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1
123 + symbols:
124 + - name: dell.envMonFanSpeed
125 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1.1.4
126 + metric_tags:
127 + - symbol:
128 + name: dell.envMonFanStatusDescr
129 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1.1.2
130 + tag: dell_env_mon_fan_status_descr
131 + - symbol:
132 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.1.1.3
133 + name: dell.envMonFanState
134 + tag: dell_env_mon_fan_state
135 + mapping:
136 + 1: normal
137 + 2: warning
138 + 3: critical
139 + 4: shutdown
140 + 5: not_present
141 + 6: not_functioning
142 + - MIB: Dell-Vendor-MIB
143 + table:
144 + name: dell.envMonSupplyStatusTable
145 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2
146 + symbols:
147 + - name: dell.envMonSupplyCurrentPower
148 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.5
149 + - name: dell.envMonSupplyAveragePower
150 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.6
151 + metric_tags:
152 + - symbol:
153 + name: dell.envMonSupplyStatusDescr
154 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.2
155 + tag: dell_env_mon_supply_status_descr
156 + - symbol:
157 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.3
158 + name: dell.envMonSupplyState
159 + tag: dell_env_mon_supply_state
160 + mapping:
161 + 1: normal
162 + 2: warning
163 + 3: critical
164 + 4: shutdown
165 + 5: not_present
166 + 6: not_functioning
167 + - symbol:
168 + OID: 1.3.6.1.4.1.674.10895.3000.1.2.110.7.2.1.4
169 + name: dell.envMonSupplySource
170 + tag: dell_env_mon_supply_source
171 + mapping:
172 + 1: unknown
173 + 2: ac
174 + 3: dc
175 + 4: external_power_supply
176 + 5: internal_redundant
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-poweredge.yaml new
+543
@@ -0,0 +1,543 @@
1 +# Profile for Dell Poweredge devices
2 +
3 +# MIBs can be downloaded after searching for a server and looking for keyboard "MIB":
4 +# Example: https://www.dell.com/support/home/us/en/04/product-support/product/poweredge-r730/drivers
5 +
6 +# Status metrics (e.g: powerSupplyStatus, temperatureProbeStatus, etc.) output one of the following: other(1), unknown(2), ok(3), nonCritical(4), critical(5), nonRecoverable(6)
7 +
8 +# PowerEdge servers should be monitored via their iDRAC interface (and with the idrac profile) when possible.
9 +
10 +extends:
11 + - _dell.yaml
12 + - _intel-lan-adapters.yaml
13 + - _generic-tcp.yaml
14 + - _generic-udp.yaml
15 + - _generic-ip.yaml
16 +
17 +device:
18 + vendor: "dell"
19 +
20 +metadata:
21 + device:
22 + fields:
23 + type:
24 + value: "server"
25 +
26 +sysobjectid:
27 + - 1.3.6.1.4.1.674.10892.1 # Poweredge R640
28 + - 1.3.6.1.4.1.674.10892.1.*
29 + - 1.3.6.1.4.1.674.10892.6 # Poweredge MX7000
30 +
31 +metrics:
32 + - MIB: MIB-Dell-10892
33 + table:
34 + OID: 1.3.6.1.4.1.674.10892.1.200.10
35 + name: systemStateTable
36 + symbols:
37 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.4
38 + name: systemStateChassisStatus
39 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.6
40 + name: systemStatePowerUnitStatusRedundancy
41 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.9
42 + name: systemStatePowerSupplyStatusCombined
43 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.15
44 + name: systemStateAmperageStatusCombined
45 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.18
46 + name: systemStateCoolingUnitStatusRedundancy
47 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.21
48 + name: systemStateCoolingDeviceStatusCombined
49 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.24
50 + name: systemStateTemperatureStatusCombined
51 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.27
52 + name: systemStateMemoryDeviceStatusCombined
53 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.30
54 + name: systemStateChassisIntrusionStatusCombined
55 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.42
56 + name: systemStatePowerUnitStatusCombined
57 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.44
58 + name: systemStateCoolingUnitStatusCombined
59 + - OID: 1.3.6.1.4.1.674.10892.1.200.10.1.50
60 + name: systemStateProcessorDeviceStatusCombined
61 + metric_tags:
62 + - symbol:
63 + OID: 1.3.6.1.4.1.674.10892.1.200.10.1.1
64 + name: systemStatechassisIndex
65 + tag: chassis_index
66 + - MIB: MIB-Dell-10892
67 + table:
68 + OID: 1.3.6.1.4.1.674.10892.1.200.10
69 + name: systemStateTable
70 + symbols:
71 + - name: systemState
72 + constant_value_one: true
73 + metric_tags:
74 + - symbol:
75 + OID: 1.3.6.1.4.1.674.10892.1.200.10.1.9
76 + name: systemStatePowerSupplyStatusCombined
77 + tag: system_state_power_supply_status_combined
78 + mapping:
79 + 1: other
80 + 2: unknown
81 + 3: ok
82 + 4: non_critical
83 + 5: critical
84 + 6: non_recoverable
85 + - symbol:
86 + OID: 1.3.6.1.4.1.674.10892.1.200.10.1.1
87 + name: systemStatechassisIndex
88 + tag: chassis_index
89 + - MIB: MIB-Dell-10892
90 + table:
91 + OID: 1.3.6.1.4.1.674.10892.1.400.20
92 + name: operatingSystemMemoryTable
93 + symbols:
94 + - OID: 1.3.6.1.4.1.674.10892.1.400.20.1.6
95 + name: operatingSystemMemoryAvailablePhysicalSize
96 + - OID: 1.3.6.1.4.1.674.10892.1.400.20.1.7
97 + name: operatingSystemMemoryTotalPageFileSize
98 + - OID: 1.3.6.1.4.1.674.10892.1.400.20.1.8
99 + name: operatingSystemMemoryAvailablePageFileSize
100 + - OID: 1.3.6.1.4.1.674.10892.1.400.20.1.9
101 + name: operatingSystemMemoryTotalVirtualSize
102 + - OID: 1.3.6.1.4.1.674.10892.1.400.20.1.10
103 + name: operatingSystemMemoryAvailableVirtualSize
104 + metric_tags:
105 + - symbol:
106 + OID: 1.3.6.1.4.1.674.10892.1.400.20.1.1
107 + name: operatingSystemMemorychassisIndex
108 + tag: chassis_index
109 + - MIB: MIB-Dell-10892
110 + table:
111 + OID: 1.3.6.1.4.1.674.10892.1.600.50
112 + name: batteryTable
113 + symbols:
114 + - OID: 1.3.6.1.4.1.674.10892.1.600.50.1.5
115 + name: batteryStatus
116 + - OID: 1.3.6.1.4.1.674.10892.1.600.50.1.6
117 + name: batteryReading
118 + metric_tags:
119 + - symbol:
120 + OID: 1.3.6.1.4.1.674.10892.1.600.50.1.1
121 + name: batteryChassisIndex
122 + tag: chassis_index
123 + - symbol:
124 + OID: 1.3.6.1.4.1.674.10892.1.600.50.1.2
125 + name: batteryIndex
126 + tag: battery_index
127 + - symbol:
128 + OID: 1.3.6.1.4.1.674.10892.1.600.50.1.7
129 + name: batteryLocationName
130 + tag: battery_location_name
131 + - MIB: MIB-Dell-10892
132 + table:
133 + OID: 1.3.6.1.4.1.674.10892.1.1100.80
134 + name: pCIDeviceTable
135 + symbols:
136 + - OID: 1.3.6.1.4.1.674.10892.1.1100.80.1.5
137 + name: pCIDeviceStatus
138 + metric_tags:
139 + - symbol:
140 + OID: 1.3.6.1.4.1.674.10892.1.1100.80.1.9
141 + name: pCIDeviceDescriptionName
142 + tag: device_descr_name
143 + - symbol:
144 + OID: 1.3.6.1.4.1.674.10892.1.1100.80.1.1
145 + name: pCIDevicechassisIndex
146 + tag: chassis_index
147 + - MIB: MIB-Dell-10892
148 + table:
149 + OID: 1.3.6.1.4.1.674.10892.1.300.50
150 + name: systemBIOSTable
151 + symbols:
152 + - OID: 1.3.6.1.4.1.674.10892.1.300.50.1.5
153 + name: systemBIOSStatus
154 + metric_tags:
155 + - symbol:
156 + OID: 1.3.6.1.4.1.674.10892.1.300.50.1.1
157 + name: systemBIOSchassisIndex
158 + tag: chassis_index
159 + - symbol:
160 + OID: 1.3.6.1.4.1.674.10892.1.300.50.1.2
161 + name: systemBIOSIndex
162 + tag: system_bios_index
163 + - MIB: MIB-Dell-10892
164 + table:
165 + OID: 1.3.6.1.4.1.674.10892.1.300.70
166 + name: intrusionTable
167 + symbols:
168 + - OID: 1.3.6.1.4.1.674.10892.1.300.70.1.5
169 + name: intrusionStatus
170 + - OID: 1.3.6.1.4.1.674.10892.1.300.70.1.6
171 + name: intrusionReading
172 + metric_tags:
173 + - symbol:
174 + OID: 1.3.6.1.4.1.674.10892.1.300.70.1.1
175 + name: intrusionchassisIndex
176 + tag: chassis_index
177 + - symbol:
178 + OID: 1.3.6.1.4.1.674.10892.1.300.70.1.2
179 + name: intrusionIndex
180 + tag: intrusion_index
181 + - symbol:
182 + OID: 1.3.6.1.4.1.674.10892.1.300.70.1.8
183 + name: intrusionLocationName
184 + tag: intrusion_location_name
185 + - MIB: MIB-Dell-10892
186 + table:
187 + OID: 1.3.6.1.4.1.674.10892.1.600.20
188 + name: voltageProbeTable
189 + symbols:
190 + - OID: 1.3.6.1.4.1.674.10892.1.600.20.1.5
191 + name: voltageProbeStatus
192 + - OID: 1.3.6.1.4.1.674.10892.1.600.20.1.6
193 + name: voltageProbeReading
194 + metric_tags:
195 + - symbol:
196 + OID: 1.3.6.1.4.1.674.10892.1.600.20.1.1
197 + name: voltageProbechassisIndex
198 + tag: chassis_index
199 + - symbol:
200 + OID: 1.3.6.1.4.1.674.10892.1.600.20.1.2
201 + name: voltageProbeIndex
202 + tag: voltage_probe_index
203 + - symbol:
204 + OID: 1.3.6.1.4.1.674.10892.1.600.20.1.7
205 + name: voltageProbeType
206 + tag: probe_type
207 + mapping:
208 + 1: voltage_probe_type_is_other
209 + 2: voltage_probe_type_is_unknown
210 + 3: voltage_probe_type_is_1point5_volt # 1.5 volt
211 + 4: voltage_probe_type_is_3point3_volt # 3.3 volt
212 + 5: voltage_probe_type_is_5_volt # 5 volt
213 + 6: voltage_probe_type_is_minus5_volt # -5 volt
214 + 7: voltage_probe_type_is_12_volt # 12 volt
215 + 8: voltage_probe_type_is_minus12_volt # -12 volt
216 + 9: voltage_probe_type_is_io
217 + 10: voltage_probe_type_is_core
218 + 11: voltage_probe_type_is_flea
219 + 12: voltage_probe_type_is_battery
220 + 13: voltage_probe_type_is_terminator
221 + 14: voltage_probe_type_is_2point5_volt # 2.5 volt
222 + 15: voltage_probe_type_is_gtl
223 + 16: voltage_probe_type_is_discrete
224 + 17: voltage_probe_type_is_generic_discrete
225 + 18: voltage_probe_type_is_ps_voltage
226 + 19: voltage_probe_type_is_memory_status
227 + - MIB: MIB-Dell-10892
228 + table:
229 + OID: 1.3.6.1.4.1.674.10892.1.600.30
230 + name: amperageProbeTable
231 + symbols:
232 + - OID: 1.3.6.1.4.1.674.10892.1.600.30.1.5
233 + name: amperageProbeStatus
234 + - OID: 1.3.6.1.4.1.674.10892.1.600.30.1.6
235 + name: amperageProbeReading
236 + metric_tags:
237 + - symbol:
238 + OID: 1.3.6.1.4.1.674.10892.1.600.30.1.7
239 + name: amperageProbeType
240 + tag: probe_type
241 + mapping:
242 + 1: amperage_probe_type_is_other
243 + 2: amperage_probe_type_is_unknown
244 + 3: amperage_probe_type_is_1point5_volt # 1.5 volt
245 + 4: amperage_probe_type_is_3point3_volt # 3.3 volt
246 + 5: amperage_probe_type_is_5_volt # 5 volt
247 + 6: amperage_probe_type_is_minus5_volt # -5 volt
248 + 7: amperage_probe_type_is_12_volt # 12 volt
249 + 8: amperage_probe_type_is_minus12_volt # -12 volt
250 + 9: amperage_probe_type_is_io
251 + 10: amperage_probe_type_is_core
252 + 11: amperage_probe_type_is_flea
253 + 12: amperage_probe_type_is_battery
254 + 13: amperage_probe_type_is_terminator
255 + 14: amperage_probe_type_is_2point5_volt # 2.5 volt
256 + 15: amperage_probe_type_is_gtl
257 + 16: amperage_probe_type_is_discrete
258 + 23: amperage_probe_type_is_power_supply_amps
259 + 24: amperage_probe_type_is_power_supply_watts
260 + 25: amperage_probe_type_is_system_amps
261 + 26: amperage_probe_type_is_system_watts
262 + - symbol:
263 + OID: 1.3.6.1.4.1.674.10892.1.600.30.1.1
264 + name: amperageProbechassisIndex
265 + tag: chassis_index
266 + - symbol:
267 + OID: 1.3.6.1.4.1.674.10892.1.600.30.1.2
268 + name: amperageProbeIndex
269 + tag: amperage_probe_index
270 + - MIB: MIB-Dell-10892
271 + metric_type: gauge # Sent as integers
272 + table:
273 + OID: 1.3.6.1.4.1.674.10892.1.600.12
274 + name: powerSupplyTable
275 + symbols:
276 + - OID: 1.3.6.1.4.1.674.10892.1.600.12.1.5
277 + name: powerSupplyStatus
278 + - OID: 1.3.6.1.4.1.674.10892.1.600.12.1.6
279 + name: powerSupplyOutputWatts
280 + - OID: 1.3.6.1.4.1.674.10892.1.600.12.1.9
281 + name: powerSupplyMaximumInputVoltage
282 + - OID: 1.3.6.1.4.1.674.10892.1.600.12.1.16
283 + name: powerSupplyCurrentInputVoltage
284 + metric_tags:
285 + - symbol:
286 + OID: 1.3.6.1.4.1.674.10892.1.600.12.1.1
287 + name: powerSupplychassisIndex
288 + tag: chassis_index
289 + - symbol:
290 + OID: 1.3.6.1.4.1.674.10892.1.600.12.1.2
291 + name: powerSupplyIndex
292 + tag: index
293 + - MIB: MIB-Dell-10892
294 + table:
295 + OID: 1.3.6.1.4.1.674.10892.1.600.60
296 + name: powerUsageTable
297 + symbols:
298 + - OID: 1.3.6.1.4.1.674.10892.1.600.60.1.5
299 + name: powerUsageStatus
300 + metric_tags:
301 + - symbol:
302 + OID: 1.3.6.1.4.1.674.10892.1.600.60.1.1
303 + name: powerUsageChassisIndex
304 + tag: chassis_index
305 + - symbol:
306 + OID: 1.3.6.1.4.1.674.10892.1.600.60.1.2
307 + name: powerUsageIndex
308 + tag: power_usage_index
309 + - symbol:
310 + OID: 1.3.6.1.4.1.674.10892.1.600.60.1.6
311 + name: powerUsageEntityName
312 + tag: power_usage_entity_name
313 + - MIB: MIB-Dell-10892
314 + table:
315 + OID: 1.3.6.1.4.1.674.10892.1.700.10
316 + name: coolingUnitTable
317 + symbols:
318 + - OID: 1.3.6.1.4.1.674.10892.1.700.10.1.5
319 + name: coolingUnitRedundancyStatus
320 + - OID: 1.3.6.1.4.1.674.10892.1.700.10.1.8
321 + name: coolingUnitStatus
322 + metric_tags:
323 + - symbol:
324 + OID: 1.3.6.1.4.1.674.10892.1.700.10.1.1
325 + name: coolingUnitchassisIndex
326 + tag: chassis_index
327 + - symbol:
328 + OID: 1.3.6.1.4.1.674.10892.1.700.10.1.2
329 + name: coolingUnitIndex
330 + tag: cooling_unit_index
331 + - symbol:
332 + OID: 1.3.6.1.4.1.674.10892.1.700.10.1.7
333 + name: coolingUnitName
334 + tag: cooling_unit_name
335 + - MIB: MIB-Dell-10892
336 + table:
337 + OID: 1.3.6.1.4.1.674.10892.1.700.12
338 + name: coolingDeviceTable
339 + symbols:
340 + - OID: 1.3.6.1.4.1.674.10892.1.700.12.1.5
341 + name: coolingDeviceStatus
342 + - OID: 1.3.6.1.4.1.674.10892.1.700.12.1.6
343 + name: coolingDeviceReading
344 + - OID: 1.3.6.1.4.1.674.10892.1.700.12.1.18
345 + name: coolingDeviceDiscreteReading
346 + metric_tags:
347 + - symbol:
348 + OID: 1.3.6.1.4.1.674.10892.1.700.12.1.1
349 + name: coolingDevicechassisIndex
350 + tag: chassis_index
351 + - symbol:
352 + OID: 1.3.6.1.4.1.674.10892.1.700.12.1.2
353 + name: coolingDeviceIndex
354 + tag: cooling_device_name
355 + - symbol:
356 + OID: 1.3.6.1.4.1.674.10892.1.700.12.1.7
357 + name: coolingDeviceType
358 + tag: cooling_device_type
359 + mapping:
360 + 1: cooling_device_type_is_other
361 + 2: cooling_device_type_is_unknown
362 + 3: cooling_device_type_is_a_fan
363 + 4: cooling_device_type_is_a_blower
364 + 5: cooling_device_type_is_a_chip_fan
365 + 6: cooling_device_type_is_a_cabinet_fan
366 + 7: cooling_device_type_is_a_power_supply_fan
367 + 8: cooling_device_type_is_a_heat_pipe
368 + 9: cooling_device_type_is_refrigeration
369 + 10: cooling_device_type_is_active_cooling
370 + 11: cooling_device_type_is_passive_cooling
371 + - symbol:
372 + OID: 1.3.6.1.4.1.674.10892.1.700.12.1.8
373 + name: coolingDeviceLocationName
374 + tag: cooling_device_location_name
375 + - MIB: MIB-Dell-10892
376 + metric_type: gauge # Sent as integers
377 + table:
378 + OID: 1.3.6.1.4.1.674.10892.1.700.20
379 + name: temperatureProbeTable
380 + symbols:
381 + - OID: 1.3.6.1.4.1.674.10892.1.700.20.1.5
382 + name: temperatureProbeStatus
383 + - OID: 1.3.6.1.4.1.674.10892.1.700.20.1.6
384 + name: temperatureProbeReading
385 + metric_tags:
386 + - symbol:
387 + OID: 1.3.6.1.4.1.674.10892.1.700.20.1.1
388 + name: temperatureProbechassisIndex
389 + tag: chassis_index
390 + - symbol:
391 + OID: 1.3.6.1.4.1.674.10892.1.700.20.1.2
392 + name: temperatureProbeIndex
393 + tag: index
394 + - symbol:
395 + OID: 1.3.6.1.4.1.674.10892.1.700.20.1.7
396 + name: temperatureProbeType
397 + tag: temperature_probe_type
398 + mapping:
399 + 1: temperature_probe_type_is_other
400 + 2: temperature_probe_type_is_unknown
401 + 3: temperature_probe_type_is_ambient_esm
402 + 16: temperature_probe_type_is_discrete
403 + - symbol:
404 + OID: 1.3.6.1.4.1.674.10892.1.700.20.1.8
405 + name: temperatureProbeLocationName
406 + tag: temperature_probe_location_name
407 + - MIB: MIB-Dell-10892
408 + metric_type: gauge # Sent as integers
409 + table:
410 + OID: 1.3.6.1.4.1.674.10892.1.1100.30
411 + name: processorDeviceTable
412 + symbols:
413 + - OID: 1.3.6.1.4.1.674.10892.1.1100.30.1.5
414 + name: processorDeviceStatus
415 + - OID: 1.3.6.1.4.1.674.10892.1.1100.30.1.19
416 + name: processorDeviceThreadCount
417 + metric_tags:
418 + - symbol:
419 + OID: 1.3.6.1.4.1.674.10892.1.1100.30.1.1
420 + name: processorDevicechassisIndex
421 + tag: chassis_index
422 + - symbol:
423 + OID: 1.3.6.1.4.1.674.10892.1.1100.30.1.2
424 + name: processorDeviceIndex
425 + tag: index
426 + - MIB: MIB-Dell-10892
427 + table:
428 + OID: 1.3.6.1.4.1.674.10892.1.1100.32
429 + name: processorDeviceStatusTable
430 + symbols:
431 + - OID: 1.3.6.1.4.1.674.10892.1.1100.32.1.5
432 + name: processorDeviceStatusStatus
433 + - OID: 1.3.6.1.4.1.674.10892.1.1100.32.1.6
434 + name: processorDeviceStatusReading
435 + metric_tags:
436 + - symbol:
437 + OID: 1.3.6.1.4.1.674.10892.1.1100.32.1.1
438 + name: processorDeviceStatusChassisIndex
439 + tag: chassis_index
440 + - symbol:
441 + OID: 1.3.6.1.4.1.674.10892.1.1100.32.1.2
442 + name: processorDeviceStatusIndex
443 + tag: processor_device_status_index
444 + - symbol:
445 + OID: 1.3.6.1.4.1.674.10892.1.1100.32.1.7
446 + name: processorDeviceStatusLocationName
447 + tag: processor_device_status_location_name
448 + - MIB: MIB-Dell-10892
449 + metric_type: gauge # Sent as integers
450 + table:
451 + OID: 1.3.6.1.4.1.674.10892.1.1100.40
452 + name: cacheDeviceTable
453 + symbols:
454 + - OID: 1.3.6.1.4.1.674.10892.1.1100.40.1.5
455 + name: cacheDeviceStatus
456 + - OID: 1.3.6.1.4.1.674.10892.1.1100.40.1.12
457 + name: cacheDeviceMaximumSize
458 + - OID: 1.3.6.1.4.1.674.10892.1.1100.40.1.13
459 + name: cacheDeviceCurrentSize
460 + metric_tags:
461 + - symbol:
462 + OID: 1.3.6.1.4.1.674.10892.1.1100.40.1.1
463 + name: cacheDevicechassisIndex
464 + tag: chassis_index
465 + - symbol:
466 + OID: 1.3.6.1.4.1.674.10892.1.1100.40.1.2
467 + name: cacheDeviceIndex
468 + tag: index
469 + - MIB: MIB-Dell-10892
470 + metric_type: gauge # Sent as integers
471 + table:
472 + OID: 1.3.6.1.4.1.674.10892.1.1100.50
473 + name: memoryDeviceTable
474 + symbols:
475 + - OID: 1.3.6.1.4.1.674.10892.1.1100.50.1.5
476 + name: memoryDeviceStatus
477 + - OID: 1.3.6.1.4.1.674.10892.1.1100.50.1.20
478 + name: memoryDeviceFailureModes
479 + # Sent as bit masks:
480 + # (0) -- memory device has no faults.
481 + # (1) -- ECC single bit correction warning rate exceeded
482 + # (2) -- ECC single bit correction failure rate exceeded
483 + # (4),-- ECC multibit fault encountered
484 + # (8) -- ECC single bit correction logging disabled
485 + # (16) -- device disabled because of spare activation
486 + metric_tags:
487 + - symbol:
488 + OID: 1.3.6.1.4.1.674.10892.1.1100.50.1.1
489 + name: memoryDevicechassisIndex
490 + tag: chassis_index
491 + - symbol:
492 + OID: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.2
493 + name: memoryDeviceIndex
494 + tag: device_index
495 + - symbol:
496 + OID: 1.3.6.1.4.1.674.10892.1.1100.50.1.23
497 + name: memoryDeviceSerialNumberName
498 + tag: serial_number_name
499 + - MIB: MIB-Dell-10892
500 + metric_type: gauge # Sent as integers
501 + table:
502 + OID: 1.3.6.1.4.1.674.10892.1.1100.90
503 + name: networkDeviceTable
504 + symbols:
505 + - OID: 1.3.6.1.4.1.674.10892.1.1100.90.1.3
506 + name: networkDeviceStatus
507 + metric_tags:
508 + - symbol:
509 + OID: 1.3.6.1.4.1.674.10892.1.1100.90.1.11
510 + name: networkDeviceIPAddress
511 + tag: ip_address
512 + - MIB: MIB-Dell-10892
513 + table:
514 + OID: 1.3.6.1.4.1.674.10892.1.1200.10
515 + name: systemSlotTable
516 + symbols:
517 + - OID: 1.3.6.1.4.1.674.10892.1.1200.10.1.5
518 + name: systemSlotStatus
519 + metric_tags:
520 + - symbol:
521 + OID: 1.3.6.1.4.1.674.10892.1.1200.10.1.8
522 + name: systemSlotSlotExternalSlotName
523 + tag: slot_name
524 + - symbol:
525 + OID: 1.3.6.1.4.1.674.10892.1.1200.10.1.1
526 + name: systemSlotchassisIndex
527 + tag: chassis_index
528 + - MIB: DCS3FRU-MIB
529 + table:
530 + OID: 1.3.6.1.4.1.674.10892.1.2000.10
531 + name: fruTable
532 + symbols:
533 + - OID: 1.3.6.1.4.1.674.10892.1.2000.10.1.3
534 + name: fruInformationStatus
535 + metric_tags:
536 + - symbol:
537 + OID: 1.3.6.1.4.1.674.10892.1.2000.10.1.1
538 + name: fruChassisIndex
539 + tag: chassis_index
540 + - symbol:
541 + OID: 1.3.6.1.4.1.674.10892.1.2000.10.1.2
542 + name: fruIndex
543 + tag: fru_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell-sonicwall.yaml new
+106
@@ -0,0 +1,106 @@
1 +extends:
2 + - _dell.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + serial_number:
9 + symbol:
10 + MIB: SONICWALL-COMMON-MIB
11 + OID: 1.3.6.1.4.1.8741.2.1.1.2.0
12 + name: snwlSysSerialNumber
13 + version:
14 + symbol:
15 + MIB: SONICWALL-COMMON-MIB
16 + OID: 1.3.6.1.4.1.8741.2.1.1.3.0
17 + name: snwlSysFirmwareVersion
18 + model:
19 + symbol:
20 + MIB: SONICWALL-COMMON-MIB
21 + OID: 1.3.6.1.4.1.8741.2.1.1.1.0
22 + name: snwlSysModel
23 + type:
24 + value: "firewall"
25 +
26 +sysobjectid:
27 + - 1.3.6.1.4.1.8741.1 # SonicWALL TZ 400
28 +metrics:
29 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
30 + symbol:
31 + name: cpu.usage
32 + OID: 1.3.6.1.4.1.8741.1.3.1.3.0
33 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
34 + symbol:
35 + name: memory.usage
36 + OID: 1.3.6.1.4.1.8741.1.3.1.4.0
37 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
38 + symbol:
39 + name: sonicMaxConnCacheEntries
40 + OID: 1.3.6.1.4.1.8741.1.3.1.1.0
41 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
42 + symbol:
43 + name: sonicCurrentConnCacheEntries
44 + OID: 1.3.6.1.4.1.8741.1.3.1.2.0
45 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
46 + symbol:
47 + name: sonicNatTranslationCount
48 + OID: 1.3.6.1.4.1.8741.1.3.1.5.0
49 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
50 + table:
51 + name: sonicSAStatTable
52 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1
53 + symbols:
54 + - name: sonicSAStatEncryptPktCount
55 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.8
56 + - name: sonicSAStatEncryptByteCount
57 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.9
58 + - name: sonicSAStatDecryptPktCount
59 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.10
60 + - name: sonicSAStatDecryptByteCount
61 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.11
62 + - name: sonicSAStatInFragPktCount
63 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.12
64 + - name: sonicSAStatOutFragPktCount
65 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.13
66 + metric_tags:
67 + - symbol:
68 + name: sonicSAStatPeerGateway
69 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.2
70 + tag: sonic_sa_stat_peer_gateway
71 + - symbol:
72 + name: sonicSAStatSrcAddrBegin
73 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.3
74 + tag: sonic_sa_stat_src_addr_begin
75 + - symbol:
76 + name: sonicSAStatSrcAddrEnd
77 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.4
78 + tag: sonic_sa_stat_src_addr_end
79 + - symbol:
80 + name: sonicSAStatDstAddrBegin
81 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.5
82 + tag: sonic_sa_stat_dst_addr_begin
83 + - symbol:
84 + name: sonicSAStatDstAddrEnd
85 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.6
86 + tag: sonic_sa_stat_dst_addr_end
87 + - symbol:
88 + name: sonicSAStatCreateTime
89 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.7
90 + tag: sonic_sa_stat_create_time
91 + - symbol:
92 + name: sonicSAStatUserName
93 + OID: 1.3.6.1.4.1.8741.1.3.2.1.1.1.14
94 + tag: sonic_sa_stat_user_name
95 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
96 + symbol:
97 + name: sonicDpiSslConnCountCur
98 + OID: 1.3.6.1.4.1.8741.1.3.5.1.0
99 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
100 + symbol:
101 + name: sonicDpiSslConnCountHighWater
102 + OID: 1.3.6.1.4.1.8741.1.3.5.2.0
103 + - MIB: SONICWALL-FIREWALL-IP-STATISTICS-MIB
104 + symbol:
105 + name: sonicDpiSslConnCountMax
106 + OID: 1.3.6.1.4.1.8741.1.3.5.3.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dell.yaml new
+9
@@ -0,0 +1,9 @@
1 +# Profile for Dell devices
2 +
3 +extends:
4 + - _dell.yaml
5 + - _generic-ip.yaml
6 + - _generic-tcp.yaml
7 + - _generic-udp.yaml
8 +
9 +sysobjectid: 1.3.6.1.4.1.674.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dialogic-media-gateway.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "dialogic"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.3028.6.1.1 # DMG 1000 Series
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dlink-dgs-switch.yaml new
+179
@@ -0,0 +1,179 @@
1 +extends:
2 + - dlink.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.171.10.137.*
6 + - 1.3.6.1.4.1.171.10.137.1.1
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "switch"
13 +
14 +metrics:
15 + - MIB: DLINKSW-ENTITY-EXT-MIB
16 + table:
17 + name: dEntityExtCpuUtilTable
18 + OID: 1.3.6.1.4.1.171.14.5.1.7
19 + symbols:
20 + - name: cpu.usage
21 + OID: 1.3.6.1.4.1.171.14.5.1.7.1.3 # dEntityExtCpuUtilOneMinute
22 + metric_tags:
23 + - symbol:
24 + OID: 1.3.6.1.4.1.171.14.5.1.7.1.1
25 + name: dEntityExtCpuUtilUnitId
26 + tag: dlink_entity_ext_cpu_util_unit_id
27 + - symbol:
28 + OID: 1.3.6.1.4.1.171.14.5.1.7.1.2
29 + name: dEntityExtCpuUtilCpuID
30 + tag: cpu
31 + - symbol:
32 + OID: 1.3.6.1.4.1.171.14.5.1.7.1.2
33 + name: dEntityExtCpuUtilCpuID
34 + tag: dlink_entity_ext_cpu_util_cpu_id # duplicated for readability
35 + - MIB: DLINKSW-ENTITY-EXT-MIB
36 + table:
37 + name: dEntityExtMemoryUtilTable
38 + OID: 1.3.6.1.4.1.171.14.5.1.4
39 + symbols:
40 + - name: memory.total
41 + OID: 1.3.6.1.4.1.171.14.5.1.4.1.3
42 + - name: memory.used
43 + OID: 1.3.6.1.4.1.171.14.5.1.4.1.4
44 + metric_tags:
45 + - symbol:
46 + name: dEntityExtMemUtilUnitId
47 + OID: 1.3.6.1.4.1.171.14.5.1.4.1.1
48 + tag: mem
49 + - symbol:
50 + name: dEntityExtMemUtilType
51 + OID: 1.3.6.1.4.1.171.14.5.1.4.1.2
52 + tag: d_entity_ext_mem_util_type
53 + mapping:
54 + 1: dram
55 + 2: flash
56 + 3: nvram
57 + - MIB: DLINKSW-ENTITY-EXT-MIB
58 + table:
59 + name: dEntityExtEnvTempTable
60 + OID: 1.3.6.1.4.1.171.14.5.1.1.1
61 + symbols:
62 + - name: dlink.dEntityExtEnvTempCurrent
63 + OID: 1.3.6.1.4.1.171.14.5.1.1.1.1.4
64 + metric_tags:
65 + - symbol:
66 + name: dEntityExtEnvTempUnitId
67 + OID: 1.3.6.1.4.1.171.14.5.1.1.1.1.1
68 + tag: d_entity_ext_env_temp_unit_id
69 + - symbol:
70 + name: dEntityExtEnvTempIndex
71 + OID: 1.3.6.1.4.1.171.14.5.1.1.1.1.2
72 + tag: d_entity_ext_env_temp_index
73 + - symbol:
74 + name: dEntityExtEnvTempDescr
75 + OID: 1.3.6.1.4.1.171.14.5.1.1.1.1.3
76 + tag: d_entity_ext_env_temp_descr
77 + - symbol:
78 + OID: 1.3.6.1.4.1.171.14.5.1.1.1.1.7
79 + name: dEntityExtEnvTempStatus
80 + tag: d_entity_ext_env_temp_status
81 + mapping:
82 + 1: ok
83 + 2: abnormal
84 + - MIB: DLINKSW-ENTITY-EXT-MIB
85 + table:
86 + name: dEntityExtEnvFanTable
87 + OID: 1.3.6.1.4.1.171.14.5.1.1.2
88 + symbols:
89 + - name: dlink.dEntityExtEnvFan
90 + constant_value_one: true
91 + metric_tags:
92 + - symbol:
93 + name: dEntityExtEnvFanUnitId
94 + OID: 1.3.6.1.4.1.171.14.5.1.1.2.1.1
95 + tag: d_entity_ext_env_fan_unit_id
96 + - symbol:
97 + name: dEntityExtEnvFanIndex
98 + OID: 1.3.6.1.4.1.171.14.5.1.1.2.1.2
99 + tag: d_entity_ext_env_fan_index
100 + - symbol:
101 + name: dEntityExtEnvFanDescr
102 + OID: 1.3.6.1.4.1.171.14.5.1.1.2.1.3
103 + tag: d_entity_ext_env_fan_descr
104 + - symbol:
105 + OID: 1.3.6.1.4.1.171.14.5.1.1.2.1.4
106 + name: dEntityExtEnvFanStatus
107 + tag: d_entity_ext_env_fan_status
108 + mapping:
109 + 1: ok
110 + 2: fault
111 + - MIB: DLINKSW-ENTITY-EXT-MIB
112 + table:
113 + name: dEntityExtEnvPowerTable
114 + OID: 1.3.6.1.4.1.171.14.5.1.1.3
115 + symbols:
116 + - name: dlink.dEntityExtEnvPowerUsedPower
117 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.4
118 + - name: dlink.dEntityExtEnvPowerMaxPower
119 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.5
120 + metric_tags:
121 + - symbol:
122 + name: dEntityExtEnvPowerUnitId
123 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.1
124 + tag: d_entity_ext_env_power_unit_id
125 + - symbol:
126 + name: dEntityExtEnvPowerIndex
127 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.2
128 + tag: d_entity_ext_env_power_index
129 + - symbol:
130 + name: dEntityExtEnvPowerDescr
131 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.3
132 + tag: d_entity_ext_env_power_descr
133 + - symbol:
134 + OID: 1.3.6.1.4.1.171.14.5.1.1.3.1.6
135 + name: dEntityExtEnvPowerStatus
136 + tag: d_entity_ext_env_power_status
137 + mapping:
138 + 1: in_operation
139 + 2: failed
140 + 3: empty
141 + - MIB: DLINKSW-ENTITY-EXT-MIB
142 + table:
143 + name: dEntityExtEnvAirFlowTable
144 + OID: 1.3.6.1.4.1.171.14.5.1.1.4
145 + symbols:
146 + - name: dlink.dEntityExtEnvAirFlow
147 + constant_value_one: true
148 + metric_tags:
149 + - symbol:
150 + name: dEntityExtEnvAirFlowUnitId
151 + OID: 1.3.6.1.4.1.171.14.5.1.1.4.1.1
152 + tag: d_entity_ext_env_air_flow_unit_id
153 + - symbol:
154 + OID: 1.3.6.1.4.1.171.14.5.1.1.4.1.2
155 + name: dEntityExtEnvAirFlowStatus
156 + tag: d_entity_ext_env_air_flow_status
157 + mapping:
158 + 1: ok
159 + 2: abnormal
160 + - MIB: DLINKSW-ENTITY-EXT-MIB
161 + table:
162 + name: dEntityExtUnitTable
163 + OID: 1.3.6.1.4.1.171.14.5.1.3
164 + symbols:
165 + - name: dlink.dEntityExtUnit
166 + constant_value_one: true
167 + metric_tags:
168 + - symbol:
169 + name: dEntityExtUnitIndex
170 + OID: 1.3.6.1.4.1.171.14.5.1.3.1.1
171 + tag: d_entity_ext_unit_index
172 + - symbol:
173 + OID: 1.3.6.1.4.1.171.14.5.1.3.1.2
174 + name: dEntityExtUnitStatus
175 + tag: d_entity_ext_unit_status
176 + mapping:
177 + 1: ok
178 + 2: failed
179 + 3: empty
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/dlink.yaml new
+10
@@ -0,0 +1,10 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "dlink"
10 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/eaton-epdu.yaml new
+424
@@ -0,0 +1,424 @@
1 +extends:
2 + - _base.yaml
3 +
4 +sysobjectid: 1.3.6.1.4.1.534.6.6.7 # eatonEpdu
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "eaton"
11 + type:
12 + value: "PDU"
13 +
14 +metrics:
15 +# - MIB: EATON-EPDU-MIB
16 +# symbol:
17 +# name: eaton.epdu.communicationStatus
18 +# OID: 1.3.6.1.4.1.534.6.6.7.1.2.1.30.0
19 +# enum:
20 +# good: 0
21 +# communicationLost: 1
22 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
23 +# comment in profile until it's fixed)
24 +# - MIB: EATON-EPDU-MIB
25 +# symbol:
26 +# name: eaton.epdu.internalStatus
27 +# OID: 1.3.6.1.4.1.534.6.6.7.1.2.1.31.0
28 +# enum:
29 +# good: 0
30 +# internalFailure: 1
31 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
32 +# comment in profile until it's fixed)
33 +# - MIB: EATON-EPDU-MIB
34 +# symbol:
35 +# name: eaton.epdu.strappingStatus
36 +# OID: 1.3.6.1.4.1.534.6.6.7.1.2.1.32.0
37 +# enum:
38 +# good: 0
39 +# communicationLost: 1
40 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
41 +# comment in profile until it's fixed)
42 + - MIB: EATON-EPDU-MIB
43 + table:
44 + name: inputTable
45 + OID: 1.3.6.1.4.1.534.6.6.7.3.1
46 + symbols:
47 + - name: eaton.epdu.inputFrequency
48 + OID: 1.3.6.1.4.1.534.6.6.7.3.1.1.3
49 + metric_tags:
50 + - symbol:
51 + OID: 1.3.6.1.4.1.534.6.6.7.3.1.1.10
52 + name: eaton.epdu.inputFeedName
53 + tag: eaton_epdu_input_feed_name
54 + - symbol:
55 + OID: 1.3.6.1.4.1.534.6.6.7.3.1.1.4
56 + name: eaton.epdu.inputFrequencyStatus
57 + tag: eaton_epdu_input_frequency_status
58 + mapping:
59 + 0: good
60 + 1: out_of_range
61 + - MIB: EATON-EPDU-MIB
62 + table:
63 + name: inputVoltageTable
64 + OID: 1.3.6.1.4.1.534.6.6.7.3.2
65 + symbols:
66 + - name: eaton.epdu.inputVoltage
67 + OID: 1.3.6.1.4.1.534.6.6.7.3.2.1.3
68 + metric_tags:
69 + - symbol:
70 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.12
71 + name: eaton.epdu.inputPhaseDesignator
72 + tag: eaton_epdu_input_description
73 + - symbol:
74 + OID: 1.3.6.1.4.1.534.6.6.7.3.2.1.4
75 + name: eaton.epdu.inputVoltageThStatus
76 + tag: eaton_epdu_input_voltage_th_status
77 + mapping:
78 + 0: good
79 + 1: low_warning
80 + 2: low_critical
81 + 3: high_warning
82 + 4: high_critical
83 + - MIB: EATON-EPDU-MIB
84 + table:
85 + name: inputCurrentTable
86 + OID: 1.3.6.1.4.1.534.6.6.7.3.3
87 + symbols:
88 + - name: eaton.epdu.inputCurrent
89 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.4
90 + - name: eaton.epdu.inputCurrentPercentLoad
91 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.11
92 + metric_tags:
93 + - symbol:
94 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.12
95 + name: eaton.epdu.inputPhaseDesignator
96 + tag: eaton_epdu_input_description
97 + - symbol:
98 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.5
99 + name: eaton.epdu.inputCurrentThStatus
100 + tag: eaton_epdu_input_current_th_status
101 + mapping:
102 + 0: good
103 + 1: low_warning
104 + 2: low_critical
105 + 3: high_warning
106 + 4: high_critical
107 + - MIB: EATON-EPDU-MIB
108 + table:
109 + name: inputPowerTable
110 + OID: 1.3.6.1.4.1.534.6.6.7.3.4
111 + symbols:
112 + - name: eaton.epdu.inputVA
113 + OID: 1.3.6.1.4.1.534.6.6.7.3.4.1.3
114 + - name: eaton.epdu.inputWatts
115 + OID: 1.3.6.1.4.1.534.6.6.7.3.4.1.4
116 + metric_tags:
117 + - symbol:
118 + OID: 1.3.6.1.4.1.534.6.6.7.3.3.1.12
119 + name: eaton.epdu.inputPhaseDesignator
120 + tag: eaton_epdu_input_description
121 + - MIB: EATON-EPDU-MIB
122 + table:
123 + name: groupTable
124 + OID: 1.3.6.1.4.1.534.6.6.7.5.1
125 + symbols:
126 + - name: eaton.epdu.group
127 + constant_value_one: true
128 + metric_tags:
129 + - symbol:
130 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.3
131 + name: eaton.epdu.groupName
132 + tag: eaton_epdu_group_name
133 + - symbol:
134 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.4
135 + name: eaton.epdu.groupType
136 + tag: eaton_epdu_group_type
137 + mapping:
138 + 0: unknown
139 + 1: breaker1pole
140 + 2: breaker2pole
141 + 3: breaker3pole
142 + 4: outlet_section
143 + 5: user_defined
144 + - symbol:
145 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.5
146 + name: eaton.epdu.groupBreakerStatus
147 + tag: eaton_epdu_group_breaker_status
148 + mapping:
149 + 0: not_applicable
150 + 1: breaker_on
151 + 2: breaker_off
152 + - MIB: EATON-EPDU-MIB
153 + table:
154 + name: groupVoltageTable
155 + OID: 1.3.6.1.4.1.534.6.6.7.5.3
156 + symbols:
157 + - name: eaton.epdu.groupVoltage
158 + OID: 1.3.6.1.4.1.534.6.6.7.5.3.1.3
159 + metric_tags:
160 + - symbol:
161 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.3
162 + name: eaton.epdu.groupName
163 + tag: eaton_epdu_group_name
164 + - symbol:
165 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.4
166 + name: eaton.epdu.groupType
167 + tag: eaton_epdu_group_type
168 + mapping:
169 + 0: unknown
170 + 1: breaker1pole
171 + 2: breaker2pole
172 + 3: breaker3pole
173 + 4: outlet_section
174 + 5: user_defined
175 + - symbol:
176 + OID: 1.3.6.1.4.1.534.6.6.7.5.3.1.4
177 + name: eaton.epdu.groupVoltageThStatus
178 + tag: eaton_epdu_group_voltage_th_status
179 + mapping:
180 + 0: good
181 + 1: low_warning
182 + 2: low_critical
183 + 3: high_warning
184 + 4: high_critical
185 + - MIB: EATON-EPDU-MIB
186 + table:
187 + name: groupCurrentTable
188 + OID: 1.3.6.1.4.1.534.6.6.7.5.4
189 + symbols:
190 + - name: eaton.epdu.groupCurrent
191 + OID: 1.3.6.1.4.1.534.6.6.7.5.4.1.3
192 + - name: eaton.epdu.groupCurrentPercentLoad
193 + OID: 1.3.6.1.4.1.534.6.6.7.5.4.1.10
194 + metric_tags:
195 + - symbol:
196 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.3
197 + name: eaton.epdu.groupName
198 + tag: eaton_epdu_group_name
199 + - symbol:
200 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.4
201 + name: eaton.epdu.groupType
202 + tag: eaton_epdu_group_type
203 + mapping:
204 + 0: unknown
205 + 1: breaker1pole
206 + 2: breaker2pole
207 + 3: breaker3pole
208 + 4: outlet_section
209 + 5: user_defined
210 + - symbol:
211 + OID: 1.3.6.1.4.1.534.6.6.7.5.4.1.4
212 + name: eaton.epdu.groupCurrentThStatus
213 + tag: eaton_epdu_group_current_th_status
214 + mapping:
215 + 0: good
216 + 1: low_warning
217 + 2: low_critical
218 + 3: high_warning
219 + 4: high_critical
220 + - MIB: EATON-EPDU-MIB
221 + table:
222 + name: groupPowerTable
223 + OID: 1.3.6.1.4.1.534.6.6.7.5.5
224 + symbols:
225 + - name: eaton.epdu.groupVA
226 + OID: 1.3.6.1.4.1.534.6.6.7.5.5.1.2
227 + - name: eaton.epdu.groupWatts
228 + OID: 1.3.6.1.4.1.534.6.6.7.5.5.1.3
229 + metric_tags:
230 + - symbol:
231 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.3
232 + name: eaton.epdu.groupName
233 + tag: eaton_epdu_group_name
234 + - symbol:
235 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.4
236 + name: eaton.epdu.groupType
237 + tag: eaton_epdu_group_type
238 + mapping:
239 + 0: unknown
240 + 1: breaker1pole
241 + 2: breaker2pole
242 + 3: breaker3pole
243 + 4: outlet_section
244 + 5: user_defined
245 + - MIB: EATON-EPDU-MIB
246 + table:
247 + name: groupControlTable
248 + OID: 1.3.6.1.4.1.534.6.6.7.5.6
249 + symbols:
250 + - name: eaton.epdu.groupControl
251 + constant_value_one: true
252 + metric_tags:
253 + - symbol:
254 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.3
255 + name: eaton.epdu.groupName
256 + tag: eaton_epdu_group_name
257 + - symbol:
258 + OID: 1.3.6.1.4.1.534.6.6.7.5.1.1.4
259 + name: eaton.epdu.groupType
260 + tag: eaton_epdu_group_type
261 + mapping:
262 + 0: unknown
263 + 1: breaker1pole
264 + 2: breaker2pole
265 + 3: breaker3pole
266 + 4: outlet_section
267 + 5: user_defined
268 + - symbol:
269 + OID: 1.3.6.1.4.1.534.6.6.7.5.6.1.2
270 + name: eaton.epdu.groupControlStatus
271 + tag: eaton_epdu_group_control_status
272 + mapping:
273 + 0: off
274 + 1: on
275 + 2: rebooting
276 + 3: mixed
277 + - MIB: EATON-EPDU-MIB
278 + table:
279 + name: outletVoltageTable
280 + OID: 1.3.6.1.4.1.534.6.6.7.6.3
281 + symbols:
282 + - name: eaton.epdu.outletVoltage
283 + OID: 1.3.6.1.4.1.534.6.6.7.6.3.1.2
284 + metric_tags:
285 + - symbol:
286 + OID: 1.3.6.1.4.1.534.6.6.7.6.1.1.3
287 + name: eaton.epdu.outletName
288 + tag: eaton_epdu_outlet_name
289 + - symbol:
290 + OID: 1.3.6.1.4.1.534.6.6.7.6.3.1.3
291 + name: eaton.epdu.outletVoltageThStatus
292 + tag: eaton_epdu_outlet_voltage_th_status
293 + mapping:
294 + 0: good
295 + 1: low_warning
296 + 2: low_critical
297 + 3: high_warning
298 + 4: high_critical
299 + - MIB: EATON-EPDU-MIB
300 + table:
301 + name: outletCurrentTable
302 + OID: 1.3.6.1.4.1.534.6.6.7.6.4
303 + symbols:
304 + - name: eaton.epdu.outletCurrent
305 + OID: 1.3.6.1.4.1.534.6.6.7.6.4.1.3
306 + - name: eaton.epdu.outletCurrentPercentLoad
307 + OID: 1.3.6.1.4.1.534.6.6.7.6.4.1.10
308 + metric_tags:
309 + - symbol:
310 + OID: 1.3.6.1.4.1.534.6.6.7.6.1.1.3
311 + name: eaton.epdu.outletName
312 + tag: eaton_epdu_outlet_name
313 + - symbol:
314 + OID: 1.3.6.1.4.1.534.6.6.7.6.4.1.4
315 + name: eaton.epdu.outletCurrentThStatus
316 + tag: eaton_epdu_outlet_current_th_status
317 + mapping:
318 + 0: good
319 + 1: low_warning
320 + 2: low_critical
321 + 3: high_warning
322 + 4: high_critical
323 + - MIB: EATON-EPDU-MIB
324 + table:
325 + name: outletPowerTable
326 + OID: 1.3.6.1.4.1.534.6.6.7.6.5
327 + symbols:
328 + - name: eaton.epdu.outletVA
329 + OID: 1.3.6.1.4.1.534.6.6.7.6.5.1.2
330 + - name: eaton.epdu.outletWatts
331 + OID: 1.3.6.1.4.1.534.6.6.7.6.5.1.3
332 + metric_tags:
333 + - symbol:
334 + OID: 1.3.6.1.4.1.534.6.6.7.6.1.1.3
335 + name: eaton.epdu.outletName
336 + tag: eaton_epdu_outlet_name
337 + - MIB: EATON-EPDU-MIB
338 + table:
339 + name: temperatureTable
340 + OID: 1.3.6.1.4.1.534.6.6.7.7.1
341 + symbols:
342 + - name: eaton.epdu.temperatureValue
343 + OID: 1.3.6.1.4.1.534.6.6.7.7.1.1.4
344 + metric_tags:
345 + - symbol:
346 + OID: 1.3.6.1.4.1.534.6.6.7.7.1.1.2
347 + name: eaton.epdu.temperatureName
348 + tag: eaton_epdu_temperature_name
349 + - symbol:
350 + OID: 1.3.6.1.4.1.534.6.6.7.7.1.1.3
351 + name: eaton.epdu.temperatureProbeStatus
352 + tag: eaton_epdu_temperature_probe_status
353 + mapping:
354 + -1: bad
355 + 0: disconnected
356 + 1: connected
357 + - symbol:
358 + OID: 1.3.6.1.4.1.534.6.6.7.7.1.1.5
359 + name: eaton.epdu.temperatureThStatus
360 + tag: eaton_epdu_temperature_th_status
361 + mapping:
362 + 0: good
363 + 1: low_warning
364 + 2: low_critical
365 + 3: high_warning
366 + 4: high_critical
367 + - MIB: EATON-EPDU-MIB
368 + table:
369 + name: humidityTable
370 + OID: 1.3.6.1.4.1.534.6.6.7.7.2
371 + symbols:
372 + - name: eaton.epdu.humidityValue
373 + OID: 1.3.6.1.4.1.534.6.6.7.7.2.1.4
374 + metric_tags:
375 + - symbol:
376 + OID: 1.3.6.1.4.1.534.6.6.7.7.2.1.2
377 + name: eaton.epdu.humidityName
378 + tag: eaton_epdu_humidity_name
379 + - symbol:
380 + OID: 1.3.6.1.4.1.534.6.6.7.7.2.1.3
381 + name: eaton.epdu.humidityProbeStatus
382 + tag: eaton_epdu_humidity_probe_status
383 + mapping:
384 + -1: bad
385 + 0: disconnected
386 + 1: connected
387 + - symbol:
388 + OID: 1.3.6.1.4.1.534.6.6.7.7.2.1.5
389 + name: eaton.epdu.humidityThStatus
390 + tag: eaton_epdu_humidity_th_status
391 + mapping:
392 + 0: good
393 + 1: low_warning
394 + 2: low_critical
395 + 3: high_warning
396 + 4: high_critical
397 + - MIB: EATON-EPDU-MIB
398 + table:
399 + name: contactTable
400 + OID: 1.3.6.1.4.1.534.6.6.7.7.3
401 + symbols:
402 + - name: eaton.epdu.contact
403 + constant_value_one: true
404 + metric_tags:
405 + - symbol:
406 + OID: 1.3.6.1.4.1.534.6.6.7.7.3.1.2
407 + name: eaton.epdu.contactName
408 + tag: eaton_epdu_contact_name
409 + - symbol:
410 + OID: 1.3.6.1.4.1.534.6.6.7.7.3.1.3
411 + name: eaton.epdu.contactProbeStatus
412 + tag: eaton_epdu_contact_probe_status
413 + mapping:
414 + -1: bad
415 + 0: disconnected
416 + 1: connected
417 + - symbol:
418 + OID: 1.3.6.1.4.1.534.6.6.7.7.3.1.4
419 + name: eaton.epdu.contactState
420 + tag: eaton_epdu_contact_state
421 + mapping:
422 + -1: contact_bad
423 + 0: contact_open
424 + 1: contact_closed
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/exagrid.yaml new
+86
@@ -0,0 +1,86 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources.yaml
4 + - _generic-if.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.14941.3.*
8 +
9 +metadata:
10 + device:
11 + fields:
12 + vendor:
13 + value: "exagrid"
14 + type:
15 + value: "storage"
16 +
17 +metrics:
18 + - MIB: EXAGRID-MIB
19 + symbol:
20 + OID: 1.3.6.1.4.1.14941.4.1.1.0
21 + name: egLandingSpaceConfiguredWholeGigabytes
22 + - MIB: EXAGRID-MIB
23 + symbol:
24 + OID: 1.3.6.1.4.1.14941.4.1.2.0
25 + name: egLandingSpaceConfiguredFractionalGigabytes
26 + - MIB: EXAGRID-MIB
27 + symbol:
28 + OID: 1.3.6.1.4.1.14941.4.1.3.0
29 + name: egLandingSpaceAvailableWholeGigabytes
30 + - MIB: EXAGRID-MIB
31 + symbol:
32 + OID: 1.3.6.1.4.1.14941.4.1.4.0
33 + name: egLandingSpaceAvailableFractionalGigabytes
34 + - MIB: EXAGRID-MIB
35 + symbol:
36 + OID: 1.3.6.1.4.1.14941.4.2.1.0
37 + name: egRetentionSpaceConfiguredWholeGigabytes
38 + - MIB: EXAGRID-MIB
39 + symbol:
40 + OID: 1.3.6.1.4.1.14941.4.2.2.0
41 + name: egRetentionSpaceConfiguredFractionalGigabytes
42 + - MIB: EXAGRID-MIB
43 + symbol:
44 + OID: 1.3.6.1.4.1.14941.4.2.3.0
45 + name: egRetentionSpaceAvailableWholeGigabytes
46 + - MIB: EXAGRID-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.14941.4.2.4.0
49 + name: egRetentionSpaceAvailableFractionalGigabytes
50 + - MIB: EXAGRID-MIB
51 + symbol:
52 + OID: 1.3.6.1.4.1.14941.4.3.1.0
53 + name: egBackupDataAvailableWholeGigabytes
54 + - MIB: EXAGRID-MIB
55 + symbol:
56 + OID: 1.3.6.1.4.1.14941.4.3.2.0
57 + name: egBackupDataAvailableFractionalGigabytes
58 + - MIB: EXAGRID-MIB
59 + symbol:
60 + OID: 1.3.6.1.4.1.14941.4.3.3.0
61 + name: egBackupDataSpaceConsumedWholeGigabytes
62 + - MIB: EXAGRID-MIB
63 + symbol:
64 + OID: 1.3.6.1.4.1.14941.4.3.4.0
65 + name: egBackupDataSpaceConsumedFractionalGigabytes
66 + - MIB: EXAGRID-MIB
67 + symbol:
68 + OID: 1.3.6.1.4.1.14941.4.4.1.0
69 + name: egPendingDeduplicationWholeGigabytes
70 + - MIB: EXAGRID-MIB
71 + symbol:
72 + OID: 1.3.6.1.4.1.14941.4.4.2.0
73 + name: egPendingDeduplicationFractionalGigabytes
74 + - MIB: EXAGRID-MIB
75 + symbol:
76 + OID: 1.3.6.1.4.1.14941.4.4.3.0
77 + name: egPendingDeduplicationAge
78 + # - MIB: EXAGRID-MIB
79 + # symbol:
80 + # OID: 1.3.6.1.4.1.14941.4.6
81 + # name: exagridServerStatus
82 + # mapping:
83 + # 1: no_alarm
84 + # 2: warning_alarm
85 + # 3: error_alarm
86 + # TODO: Support `constant_value_one` and `metric_tags` for scalar OID metrics
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/extreme-switching.yaml new
+119
@@ -0,0 +1,119 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-entity-sensor.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.1916.2.89
8 + - 1.3.6.1.4.1.1916.2.343
9 +
10 +metadata:
11 + device:
12 + fields:
13 + vendor:
14 + value: "extreme-networks"
15 + type:
16 + value: "switch"
17 +
18 +metrics:
19 + - MIB: EXTREME-SOFTWARE-MONITOR-MIB
20 + symbol:
21 + name: cpu.usage
22 + OID: 1.3.6.1.4.1.1916.1.32.1.2.0
23 + - MIB: EXTREME-SOFTWARE-MONITOR-MIB
24 + table:
25 + name: extremeMemoryMonitorSystemTable
26 + OID: 1.3.6.1.4.1.1916.1.32.2.2
27 + symbols:
28 + - name: memory.total
29 + OID: 1.3.6.1.4.1.1916.1.32.2.2.1.2
30 + - name: memory.free
31 + OID: 1.3.6.1.4.1.1916.1.32.2.2.1.3
32 + metric_tags:
33 + - index: 1 # extremeMemoryMonitorSystemSlotId
34 + tag: mem
35 + # - MIB: EXTREME-SYSTEM-MIB
36 + # symbol:
37 + # name: extremeOverTemperatureAlarm
38 + # OID: 1.3.6.1.4.1.1916.1.1.1.7.0
39 + # enum:
40 + # true: 1
41 + # false: 2
42 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
43 + # comment in profile until it's fixed)
44 + - MIB: EXTREME-SYSTEM-MIB
45 + symbol:
46 + name: extremeCurrentTemperature
47 + OID: 1.3.6.1.4.1.1916.1.1.1.8.0
48 + # - MIB: EXTREME-SYSTEM-MIB
49 + # symbol:
50 + # name: extremePrimaryPowerOperational
51 + # OID: 1.3.6.1.4.1.1916.1.1.1.10.0
52 + # enum:
53 + # true: 1
54 + # false: 2
55 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
56 + # comment in profile until it's fixed)
57 + # - MIB: EXTREME-SYSTEM-MIB
58 + # symbol:
59 + # name: extremeRedundantPowerStatus
60 + # OID: 1.3.6.1.4.1.1916.1.1.1.11.0
61 + # enum:
62 + # notPresent: 1
63 + # presentOK: 2
64 + # presentNotOK: 3
65 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
66 + # comment in profile until it's fixed)
67 + # - MIB: EXTREME-SYSTEM-MIB
68 + # symbol:
69 + # name: extremeRedundantPowerAlarm
70 + # OID: 1.3.6.1.4.1.1916.1.1.1.12.0
71 + # enum:
72 + # true: 1
73 + # false: 2
74 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
75 + # comment in profile until it's fixed)
76 + # - MIB: EXTREME-SYSTEM-MIB
77 + # symbol:
78 + # name: extremePrimarySoftwareRev
79 + # OID: 1.3.6.1.4.1.1916.1.1.1.13.0
80 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
81 + # - MIB: EXTREME-SYSTEM-MIB
82 + # symbol:
83 + # name: extremeSecondarySoftwareRev
84 + # OID: 1.3.6.1.4.1.1916.1.1.1.14.0
85 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
86 + - MIB: EXTREME-SYSTEM-MIB
87 + symbol:
88 + name: extremeInputPowerVoltage
89 + OID: 1.3.6.1.4.1.1916.1.1.1.20.0
90 + # - MIB: EXTREME-SYSTEM-MIB
91 + # symbol:
92 + # name: extremePowerStatus
93 + # OID: 1.3.6.1.4.1.1916.1.1.1.21.0
94 + # enum:
95 + # notPresent: 1
96 + # presentOK: 2
97 + # presentNotOK: 3
98 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
99 + # comment in profile until it's fixed)
100 + # - MIB: EXTREME-SYSTEM-MIB
101 + # symbol:
102 + # name: extremePowerAlarm
103 + # OID: 1.3.6.1.4.1.1916.1.1.1.22.0
104 + # enum:
105 + # true: 1
106 + # false: 2
107 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
108 + # comment in profile until it's fixed)
109 + # - MIB: EXTREME-SYSTEM-MIB
110 + # symbol:
111 + # name: extremeSystemPowerState
112 + # OID: 1.3.6.1.4.1.1916.1.1.1.36.0
113 + # enum:
114 + # computing: 1
115 + # sufficientButNotRedundantPower: 2
116 + # redundantPowerAvailable: 3
117 + # insufficientPower: 4
118 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
119 + # comment in profile until it's fixed)
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/f5-big-ip.yaml new
+676
@@ -0,0 +1,676 @@
1 +# Profile for F5 BIG-IP devices
2 +#
3 +# Details related to F5-BIGIP-SYSTEM-MIB:
4 +# http://www.mibdepot.com/cgi-bin/getmib3.cgi?win=mib_a&r=f5&f=F5-BIGIP-SYSTEM-MIB&v=v2&t=tree
5 +# Example sysDescr:
6 +# BIG-IP Virtual Edition : Linux 3.10.0-862.14.4.el7.ve.x86_64 : BIG-IP software release 15.0.1, build 0.0.11
7 +
8 +extends:
9 + - _base.yaml
10 + - _generic-if.yaml # F5-specific variants of the other metrics are provided in this profile.
11 + - _generic-bgp4.yaml
12 + - _generic-ospf.yaml
13 + - _generic-tcp.yaml
14 + - _generic-udp.yaml
15 + - _generic-ip.yaml
16 + - _f5-big-ip-cpu-memory.yaml
17 +
18 +device:
19 + vendor: "f5"
20 +
21 +
22 +sysobjectid: 1.3.6.1.4.1.3375.2.1.3.4.*
23 +
24 +metadata:
25 + device:
26 + fields:
27 + vendor:
28 + value: "f5"
29 + serial_number:
30 + symbol:
31 + MIB: F5-BIGIP-SYSTEM-MIB
32 + OID: 1.3.6.1.4.1.3375.2.1.3.3.3.0
33 + name: sysGeneralChassisSerialNum # The system serial number. 26ff4a4d-190e-12ac-d4257ed36ba6
34 + version:
35 + symbol:
36 + OID: 1.3.6.1.4.1.3375.2.1.4.2.0
37 + name: sysProductVersion # Displays BIG-IP software version information. e.g. 15.0.1
38 + product_name:
39 + symbol:
40 + OID: 1.3.6.1.4.1.3375.2.1.4.1.0
41 + name: sysProductName # The product name. e.g. BIG-IP
42 + model:
43 + symbol:
44 + OID: 1.3.6.1.4.1.3375.2.1.3.3.1.0
45 + name: sysGeneralHwName # The name of the system hardware model. e.g. Z100
46 + os_name:
47 + symbol:
48 + OID: 1.3.6.1.4.1.3375.2.1.6.1.0
49 + name: sysSystemName # The operating system name. e.g. Linux
50 + os_version:
51 + symbol:
52 + OID: 1.3.6.1.4.1.3375.2.1.6.3.0
53 + name: sysSystemRelease # The current system release level. e.g. 3.10.0-862.14.4.el7.ve.x86_64
54 + type:
55 + value: "load_balancer"
56 +
57 +metrics:
58 + # Memory stats
59 + - MIB: F5-BIGIP-SYSTEM-MIB
60 + metric_type: gauge
61 + symbol:
62 + OID: 1.3.6.1.4.1.3375.2.1.1.2.1.44.0
63 + name: sysStatMemoryTotal
64 + - MIB: F5-BIGIP-SYSTEM-MIB
65 + metric_type: gauge
66 + symbol:
67 + OID: 1.3.6.1.4.1.3375.2.1.1.2.1.45.0
68 + name: sysStatMemoryUsed
69 + - MIB: F5-BIGIP-SYSTEM-MIB
70 + metric_type: gauge
71 + symbol:
72 + OID: 1.3.6.1.4.1.3375.2.1.1.2.21.28.0
73 + name: sysGlobalTmmStatMemoryTotal
74 + - MIB: F5-BIGIP-SYSTEM-MIB
75 + metric_type: gauge
76 + symbol:
77 + OID: 1.3.6.1.4.1.3375.2.1.1.2.21.29.0
78 + name: sysGlobalTmmStatMemoryUsed
79 + - MIB: F5-BIGIP-SYSTEM-MIB
80 + metric_type: gauge
81 + symbol:
82 + OID: 1.3.6.1.4.1.3375.2.1.1.2.20.44.0
83 + name: sysGlobalHostOtherMemoryTotal
84 + - MIB: F5-BIGIP-SYSTEM-MIB
85 + metric_type: gauge
86 + symbol:
87 + OID: 1.3.6.1.4.1.3375.2.1.1.2.20.45.0
88 + name: sysGlobalHostOtherMemoryUsed
89 + - MIB: F5-BIGIP-SYSTEM-MIB
90 + metric_type: gauge
91 + symbol:
92 + OID: 1.3.6.1.4.1.3375.2.1.1.2.20.46.0
93 + name: sysGlobalHostSwapTotal
94 + - MIB: F5-BIGIP-SYSTEM-MIB
95 + metric_type: gauge
96 + symbol:
97 + OID: 1.3.6.1.4.1.3375.2.1.1.2.20.47.0
98 + name: sysGlobalHostSwapUsed
99 + # CPU
100 + - MIB: F5-BIGIP-SYSTEM-MIB
101 + table:
102 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2
103 + name: sysMultiHostCpuTable
104 + metric_type: gauge
105 + symbols:
106 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.11
107 + name: sysMultiHostCpuUsageRatio
108 + metric_tags:
109 + - symbol:
110 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.3
111 + name: sysMultiHostCpuId
112 + tag: cpu
113 + - MIB: F5-BIGIP-SYSTEM-MIB
114 + table:
115 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2
116 + name: sysMultiHostCpuTable
117 + metric_type: percent
118 + symbols:
119 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.4
120 + name: sysMultiHostCpuUser
121 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.5
122 + name: sysMultiHostCpuNice
123 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.6
124 + name: sysMultiHostCpuSystem
125 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.7
126 + name: sysMultiHostCpuIdle
127 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.8
128 + name: sysMultiHostCpuIrq
129 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.9
130 + name: sysMultiHostCpuSoftirq
131 + - OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.10
132 + name: sysMultiHostCpuIowait
133 + metric_tags:
134 + - symbol:
135 + OID: 1.3.6.1.4.1.3375.2.1.7.5.2.1.3
136 + name: sysMultiHostCpuId
137 + tag: cpu
138 +
139 + # TCP stats
140 + - MIB: F5-BIGIP-SYSTEM-MIB
141 + symbol:
142 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.2.0
143 + name: sysTcpStatOpen
144 + - MIB: F5-BIGIP-SYSTEM-MIB
145 + symbol:
146 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.3.0
147 + name: sysTcpStatCloseWait
148 + - MIB: F5-BIGIP-SYSTEM-MIB
149 + symbol:
150 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.4.0
151 + name: sysTcpStatFinWait
152 + - MIB: F5-BIGIP-SYSTEM-MIB
153 + symbol:
154 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.5.0
155 + name: sysTcpStatTimeWait
156 + - MIB: F5-BIGIP-SYSTEM-MIB
157 + metric_type: monotonic_count
158 + symbol:
159 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.6.0
160 + name: sysTcpStatAccepts
161 + - MIB: F5-BIGIP-SYSTEM-MIB
162 + metric_type: monotonic_count
163 + symbol:
164 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.7.0
165 + name: sysTcpStatAcceptfails
166 + - MIB: F5-BIGIP-SYSTEM-MIB
167 + metric_type: monotonic_count
168 + symbol:
169 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.8.0
170 + name: sysTcpStatConnects
171 + - MIB: F5-BIGIP-SYSTEM-MIB
172 + metric_type: monotonic_count
173 + symbol:
174 + OID: 1.3.6.1.4.1.3375.2.1.1.2.12.9.0
175 + name: sysTcpStatConnfails
176 + # UDP stats
177 + - MIB: F5-BIGIP-SYSTEM-MIB
178 + symbol:
179 + OID: 1.3.6.1.4.1.3375.2.1.1.2.13.2.0
180 + name: sysUdpStatOpen
181 + - MIB: F5-BIGIP-SYSTEM-MIB
182 + metric_type: monotonic_count
183 + symbol:
184 + OID: 1.3.6.1.4.1.3375.2.1.1.2.13.3.0
185 + name: sysUdpStatAccepts
186 + - MIB: F5-BIGIP-SYSTEM-MIB
187 + metric_type: monotonic_count
188 + symbol:
189 + OID: 1.3.6.1.4.1.3375.2.1.1.2.13.4.0
190 + name: sysUdpStatAcceptfails
191 + - MIB: F5-BIGIP-SYSTEM-MIB
192 + metric_type: monotonic_count
193 + symbol:
194 + OID: 1.3.6.1.4.1.3375.2.1.1.2.13.5.0
195 + name: sysUdpStatConnects
196 + - MIB: F5-BIGIP-SYSTEM-MIB
197 + metric_type: monotonic_count
198 + symbol:
199 + OID: 1.3.6.1.4.1.3375.2.1.1.2.13.6.0
200 + name: sysUdpStatConnfails
201 + - MIB: F5-BIGIP-SYSTEM-MIB
202 + symbol:
203 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.2.0
204 + name: sysClientsslStatCurConns
205 + - MIB: F5-BIGIP-SYSTEM-MIB
206 + metric_type: monotonic_count
207 + symbol:
208 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.10.0
209 + name: sysClientsslStatEncryptedBytesIn
210 + - MIB: F5-BIGIP-SYSTEM-MIB
211 + metric_type: monotonic_count
212 + symbol:
213 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.11.0
214 + name: sysClientsslStatEncryptedBytesOut
215 + - MIB: F5-BIGIP-SYSTEM-MIB
216 + metric_type: monotonic_count
217 + symbol:
218 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.12.0
219 + name: sysClientsslStatDecryptedBytesIn
220 + - MIB: F5-BIGIP-SYSTEM-MIB
221 + metric_type: monotonic_count
222 + symbol:
223 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.13.0
224 + name: sysClientsslStatDecryptedBytesOut
225 + - MIB: F5-BIGIP-SYSTEM-MIB
226 + metric_type: monotonic_count
227 + symbol:
228 + OID: 1.3.6.1.4.1.3375.2.1.1.2.9.29.0
229 + name: sysClientsslStatHandshakeFailures
230 +
231 + # Metrics from F5-BIGIP-LOCAL-MIB provide monitoring information about virtual servers, nodes, and pools.
232 + # These concepts are related to the LTM (Local Traffic Management) features of BIG IP devices.
233 + # TL;DR:
234 + # * Virtual servers act as load balancers that are assigned pools of nodes (= servers).
235 + # * Clients can use a virtual server as an entrypoint to an application service that spans multiple machines.
236 + # Learn more: https://techdocs.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/ltm-basics-11-6-0.html
237 +
238 + # Virtual servers.
239 +
240 + - MIB: F5-BIGIP-LOCAL-MIB
241 + symbol:
242 + OID: 1.3.6.1.4.1.3375.2.2.10.1.1
243 + name: ltmVirtualServNumber
244 +
245 + - MIB: F5-BIGIP-LOCAL-MIB
246 + table:
247 + OID: 1.3.6.1.4.1.3375.2.2.10.1.2
248 + name: ltmVirtualServTable
249 + symbols:
250 + # Gauges
251 + - OID: 1.3.6.1.4.1.3375.2.2.10.1.2.1.9
252 + name: ltmVirtualServEnabled
253 + - OID: 1.3.6.1.4.1.3375.2.2.10.1.2.1.10
254 + name: ltmVirtualServConnLimit
255 + metric_tags:
256 + - tag: server
257 + symbol:
258 + OID: 1.3.6.1.4.1.3375.2.2.10.1.2.1.1
259 + name: ltmVirtualServName
260 +
261 + - MIB: F5-BIGIP-LOCAL-MIB
262 + table:
263 + OID: 1.3.6.1.4.1.3375.2.2.10.13.2
264 + name: ltmVsStatusTable
265 + symbols:
266 + # Gauges
267 + - name: ltmVsStatus
268 + constant_value_one: true
269 + metric_tags:
270 + - tag: ltm_vs_status_avail_state
271 + symbol:
272 + OID: 1.3.6.1.4.1.3375.2.2.10.13.2.1.2
273 + name: ltmVsStatusAvailState
274 + mapping:
275 + 0: none
276 + 1: green
277 + 2: yellow
278 + 3: red
279 + 4: blue
280 + 5: gray
281 + - tag: ltm_vs_status_name
282 + symbol:
283 + OID: 1.3.6.1.4.1.3375.2.2.10.13.2.1.1
284 + name: ltmVsStatusName
285 + - tag: ltm_vs_status_enabled_state
286 + symbol:
287 + OID: 1.3.6.1.4.1.3375.2.2.10.13.2.1.3
288 + name: ltmVsStatusEnabledState
289 + mapping:
290 + 0: none
291 + 1: enabled
292 + 2: disabled
293 + 3: disabledbyparent
294 + - MIB: F5-BIGIP-LOCAL-MIB
295 + table:
296 + OID: 1.3.6.1.4.1.3375.2.2.10.2.3
297 + name: ltmVirtualServStatTable
298 + symbols:
299 + # Counters (= rates)
300 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.6
301 + name: ltmVirtualServStatClientPktsIn
302 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.7
303 + name: ltmVirtualServStatClientBytesIn
304 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.8
305 + name: ltmVirtualServStatClientPktsOut
306 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.9
307 + name: ltmVirtualServStatClientBytesOut
308 + # Gauges
309 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.12
310 + name: ltmVirtualServStatClientCurConns
311 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.31
312 + name: ltmVirtualServStatVsUsageRatio5s
313 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.32
314 + name: ltmVirtualServStatVsUsageRatio1m
315 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.33
316 + name: ltmVirtualServStatVsUsageRatio5m
317 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.34
318 + name: ltmVirtualServStatCurrentConnsPerSec
319 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.35
320 + name: ltmVirtualServStatDurationRateExceeded
321 + metric_tags:
322 + - tag: server
323 + symbol:
324 + OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.1
325 + name: ltmVirtualServStatName
326 +
327 + - MIB: F5-BIGIP-LOCAL-MIB
328 + table:
329 + OID: 1.3.6.1.4.1.3375.2.2.10.2.3
330 + name: ltmVirtualServStatTable
331 + symbols:
332 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.5
333 + name: ltmVirtualServStatNoNodesErrors
334 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.11
335 + name: ltmVirtualServStatClientTotConns
336 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.27
337 + name: ltmVirtualServStatTotRequests
338 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.40
339 + name: ltmVirtualServStatClientEvictedConns
340 + - OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.41
341 + name: ltmVirtualServStatClientSlowKilled
342 + metric_type: monotonic_count
343 + metric_tags:
344 + - tag: server
345 + symbol:
346 + OID: 1.3.6.1.4.1.3375.2.2.10.2.3.1.1
347 + name: ltmVirtualServStatName
348 +
349 + # Nodes.
350 +
351 + - MIB: F5-BIGIP-LOCAL-MIB
352 + symbol:
353 + OID: 1.3.6.1.4.1.3375.2.2.4.1.1
354 + name: ltmNodeAddrNumber
355 +
356 + - MIB: F5-BIGIP-LOCAL-MIB
357 + table:
358 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2
359 + name: ltmNodeAddrTable
360 + symbols:
361 + # Gauges
362 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.3
363 + name: ltmNodeAddrConnLimit
364 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.4
365 + name: ltmNodeAddrRatio
366 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.5
367 + name: ltmNodeAddrDynamicRatio
368 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.6
369 + name: ltmNodeAddrMonitorState
370 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.7
371 + name: ltmNodeAddrMonitorStatus
372 + - OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.10
373 + name: ltmNodeAddrSessionStatus
374 + metric_tags:
375 + - tag: node
376 + symbol:
377 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.17
378 + name: ltmNodeAddrName
379 +
380 + - MIB: F5-BIGIP-LOCAL-MIB
381 + table:
382 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2
383 + name: ltmNodeAddrTable
384 + symbols:
385 + # Gauges
386 + - name: ltmNodeAddr
387 + constant_value_one: true
388 + metric_tags:
389 + - tag: node
390 + symbol:
391 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.17
392 + name: ltmNodeAddrName
393 + - tag: monitor_state
394 + symbol:
395 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.6
396 + name: ltmNodeAddrMonitorState
397 + mapping:
398 + 0: unchecked
399 + 1: checking
400 + 2: inband
401 + 3: forced_up
402 + 4: up
403 + 19: down
404 + 20: forced_down
405 + 22: irule_down
406 + 23: inband_down
407 + 24: down_manual_resume
408 + 25: disabled
409 + 26: fqdn_checking
410 + 27: fqdn_down
411 + 28: fqdn_up
412 + 29: fqdn_up_no_address
413 + - tag: monitor_status
414 + symbol:
415 + OID: 1.3.6.1.4.1.3375.2.2.4.1.2.1.7
416 + name: ltmNodeAddrMonitorStatus
417 + mapping:
418 + 0: unchecked
419 + 1: checking
420 + 2: inband
421 + 3: forced_up
422 + 4: up
423 + 18: addr_down
424 + 19: down
425 + 20: forced_down
426 + 21: maint
427 + 22: irule_down
428 + 23: inband_down
429 + 24: down_manual_resume
430 + 26: fqdn_checking
431 + 27: fqdn_down
432 + 28: fqdn_up
433 + 29: fqdn_up_no_address
434 + - MIB: F5-BIGIP-LOCAL-MIB
435 + table:
436 + OID: 1.3.6.1.4.1.3375.2.2.4.2.3
437 + name: ltmNodeAddrStatTable
438 + symbols:
439 + # Counters (= rates)
440 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.3
441 + name: ltmNodeAddrStatServerPktsIn
442 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.4
443 + name: ltmNodeAddrStatServerBytesIn
444 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.5
445 + name: ltmNodeAddrStatServerPktsOut
446 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.6
447 + name: ltmNodeAddrStatServerBytesOut
448 + # Gauges
449 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.9
450 + name: ltmNodeAddrStatServerCurConns
451 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.21
452 + name: ltmNodeAddrStatCurSessions
453 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.22
454 + name: ltmNodeAddrStatCurrentConnsPerSec
455 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.23
456 + name: ltmNodeAddrStatDurationRateExceeded
457 + metric_tags:
458 + - tag: node
459 + symbol:
460 + OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.20
461 + name: ltmNodeAddrStatNodeName
462 +
463 + - MIB: F5-BIGIP-LOCAL-MIB
464 + table:
465 + OID: 1.3.6.1.4.1.3375.2.2.4.2.3
466 + name: ltmNodeAddrStatTable
467 + symbols:
468 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.8
469 + name: ltmNodeAddrStatServerTotConns
470 + - OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.17
471 + name: ltmNodeAddrStatTotRequests
472 + metric_type: monotonic_count
473 + metric_tags:
474 + - tag: node
475 + symbol:
476 + OID: 1.3.6.1.4.1.3375.2.2.4.2.3.1.20
477 + name: ltmNodeAddrStatNodeName
478 +
479 + # Pools.
480 +
481 + - MIB: F5-BIGIP-LOCAL-MIB
482 + symbol:
483 + OID: 1.3.6.1.4.1.3375.2.2.5.1.1
484 + name: ltmPoolNumber
485 +
486 + - MIB: F5-BIGIP-LOCAL-MIB
487 + table:
488 + OID: 1.3.6.1.4.1.3375.2.2.5.1.2
489 + name: ltmPoolTable
490 + symbols:
491 + # Gauges
492 + - OID: 1.3.6.1.4.1.3375.2.2.5.1.2.1.8
493 + name: ltmPoolActiveMemberCnt
494 + - OID: 1.3.6.1.4.1.3375.2.2.5.1.2.1.16
495 + name: ltmPoolDynamicRatioSum
496 + - OID: 1.3.6.1.4.1.3375.2.2.5.1.2.1.23
497 + name: ltmPoolMemberCnt
498 + metric_tags:
499 + - tag: pool
500 + symbol:
501 + OID: 1.3.6.1.4.1.3375.2.2.5.1.2.1.1
502 + name: ltmPoolName
503 +
504 + - MIB: F5-BIGIP-LOCAL-MIB
505 + table:
506 + OID: 1.3.6.1.4.1.3375.2.2.5.2.3
507 + name: ltmPoolStatTable
508 + symbols:
509 + # Counters (= rates)
510 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.2
511 + name: ltmPoolStatServerPktsIn
512 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.3
513 + name: ltmPoolStatServerBytesIn
514 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.4
515 + name: ltmPoolStatServerPktsOut
516 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.5
517 + name: ltmPoolStatServerBytesOut
518 + # Gauges
519 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.8
520 + name: ltmPoolStatServerCurConns
521 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.18
522 + name: ltmPoolStatConnqDepth
523 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.19
524 + name: ltmPoolStatConnqAgeHead
525 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.31
526 + name: ltmPoolStatCurSessions
527 + metric_tags:
528 + - tag: pool
529 + symbol:
530 + OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.1
531 + name: ltmPoolStatName
532 +
533 + - MIB: F5-BIGIP-LOCAL-MIB
534 + table:
535 + OID: 1.3.6.1.4.1.3375.2.2.5.2.3
536 + name: ltmPoolStatTable
537 + symbols:
538 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.7
539 + name: ltmPoolStatServerTotConns
540 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.23
541 + name: ltmPoolStatConnqServiced
542 + - OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.30
543 + name: ltmPoolStatTotRequests
544 + metric_type: monotonic_count
545 + metric_tags:
546 + - tag: pool
547 + symbol:
548 + OID: 1.3.6.1.4.1.3375.2.2.5.2.3.1.1
549 + name: ltmPoolStatName
550 +
551 + # Pool members.
552 +
553 + - MIB: F5-BIGIP-LOCAL-MIB
554 + symbol:
555 + OID: 1.3.6.1.4.1.3375.2.2.5.3.1
556 + name: ltmPoolMemberNumber
557 +
558 + - MIB: F5-BIGIP-LOCAL-MIB
559 + table:
560 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2
561 + name: ltmPoolMemberTable
562 + symbols:
563 + # Gauges
564 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.5
565 + name: ltmPoolMemberConnLimit
566 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.6
567 + name: ltmPoolMemberRatio
568 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.9
569 + name: ltmPoolMemberDynamicRatio
570 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.10
571 + name: ltmPoolMemberMonitorState
572 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.11
573 + name: ltmPoolMemberMonitorStatus
574 + - OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.13
575 + name: ltmPoolMemberSessionStatus
576 + metric_tags:
577 + - tag: pool
578 + symbol:
579 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.1
580 + name: ltmPoolMemberPoolName
581 + - tag: node
582 + symbol:
583 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.19
584 + name: ltmPoolMemberNodeName
585 +
586 + - MIB: F5-BIGIP-LOCAL-MIB
587 + table:
588 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2
589 + name: ltmPoolMemberTable
590 + symbols:
591 + # Gauges
592 + - name: ltmPoolMember
593 + constant_value_one: true
594 + metric_tags:
595 + - tag: pool
596 + symbol:
597 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.1
598 + name: ltmPoolMemberPoolName
599 + - tag: node
600 + symbol:
601 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.19
602 + name: ltmPoolMemberNodeName
603 + - tag: monitor_state
604 + symbol:
605 + OID: 1.3.6.1.4.1.3375.2.2.5.3.2.1.10
606 + name: ltmPoolMemberMonitorState
607 + mapping:
608 + 0: unchecked
609 + 1: checking
610 + 2: inband
611 + 3: forced_up
612 + 4: up
613 + 19: down
614 + 20: forced_down
615 + 22: irule_down
616 + 23: inband_down
617 + 24: down_manual_resume
618 + 25: disabled
619 + - MIB: F5-BIGIP-LOCAL-MIB
620 + table:
621 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3
622 + name: ltmPoolMemberStatTable
623 + symbols:
624 + # Counters (= rates)
625 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.5
626 + name: ltmPoolMemberStatServerPktsIn
627 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.6
628 + name: ltmPoolMemberStatServerBytesIn
629 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.7
630 + name: ltmPoolMemberStatServerPktsOut
631 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.8
632 + name: ltmPoolMemberStatServerBytesOut
633 + # Gauges
634 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.11
635 + name: ltmPoolMemberStatServerCurConns
636 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.22
637 + name: ltmPoolMemberStatConnqDepth
638 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.23
639 + name: ltmPoolMemberStatConnqAgeHead
640 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.29
641 + name: ltmPoolMemberStatCurSessions
642 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.30
643 + name: ltmPoolMemberStatCurrentConnsPerSec
644 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.31
645 + name: ltmPoolMemberStatDurationRateExceeded
646 + metric_tags:
647 + - tag: pool
648 + symbol:
649 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.1
650 + name: ltmPoolMemberStatPoolName
651 + - tag: node
652 + symbol:
653 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.28
654 + name: ltmPoolMemberStatNodeName
655 +
656 + - MIB: F5-BIGIP-LOCAL-MIB
657 + table:
658 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3
659 + name: ltmPoolMemberStatTable
660 + symbols:
661 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.10
662 + name: ltmPoolMemberStatServerTotConns
663 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.19
664 + name: ltmPoolMemberStatTotRequests
665 + - OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.27
666 + name: ltmPoolMemberStatConnqServiced
667 + metric_type: monotonic_count
668 + metric_tags:
669 + - tag: pool
670 + symbol:
671 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.1
672 + name: ltmPoolMemberStatPoolName
673 + - tag: node
674 + symbol:
675 + OID: 1.3.6.1.4.1.3375.2.2.5.4.3.1.28
676 + name: ltmPoolMemberStatNodeName
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/fireeye.yaml new
+181
@@ -0,0 +1,181 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "fireeye"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.25597.1
13 +
14 +metrics:
15 + - MIB: HOST-RESOURCES-MIB
16 + table:
17 + OID: 1.3.6.1.2.1.25.3.3
18 + name: hrProcessorTable
19 + symbols:
20 + - OID: 1.3.6.1.2.1.25.3.3.1.2
21 + name: cpu.usage
22 + metric_tags:
23 + - tag: hr_processor_frw_id
24 + symbol:
25 + OID: 1.3.6.1.2.1.25.3.3.1.1
26 + name: hrProcessorFrwID
27 + - MIB: HOST-RESOURCES-MIB
28 + symbol:
29 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 = Physical memory
30 + name: memory.total
31 + - MIB: HOST-RESOURCES-MIB
32 + symbol:
33 + OID: 1.3.6.1.2.1.25.2.3.1.6.6 # hrStorageUsed.6 = Memory buffers
34 + name: feMemoryBuffers
35 + - MIB: HOST-RESOURCES-MIB
36 + symbol:
37 + OID: 1.3.6.1.2.1.25.2.3.1.6.7 # hrStorageUsed.7 = Cached memory
38 + name: feCachedMemory
39 + # - MIB: FE-FIREEYE-MIB
40 + # symbol:
41 + # OID: 1.3.6.1.4.1.25597.11.5.1.10.0
42 + # name: feProductLicenseActive
43 + # enum:
44 + # true: 1
45 + # false: 2
46 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
47 + # comment in profile until it's fixed)
48 + # - MIB: FE-FIREEYE-MIB
49 + # symbol:
50 + # OID: 1.3.6.1.4.1.25597.11.1.1.1.0
51 + # name: feSystemStatus
52 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
53 + # - MIB: FE-FIREEYE-MIB
54 + # symbol:
55 + # OID: 1.3.6.1.4.1.25597.11.1.1.6.0
56 + # name: feTemperatureIsHealthy
57 + # enum:
58 + # true: 1
59 + # false: 2
60 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
61 + # comment in profile until it's fixed)
62 + # - MIB: FE-FIREEYE-MIB
63 + # symbol:
64 + # OID: 1.3.6.1.4.1.25597.11.2.1.2.0
65 + # name: feRaidIsHealthy
66 + # enum:
67 + # true: 1
68 + # false: 2
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: FE-FIREEYE-MIB
72 + table:
73 + OID: 1.3.6.1.4.1.25597.11.2.1.3
74 + name: fePhysicalDiskTable
75 + symbols:
76 + - name: fePhysicalDisk
77 + constant_value_one: true
78 + metric_tags:
79 + - symbol:
80 + OID: 1.3.6.1.4.1.25597.11.2.1.3.1.2
81 + name: fePhysicalDiskName
82 + tag: fe_physical_disk_name
83 + - symbol:
84 + OID: 1.3.6.1.4.1.25597.11.2.1.3.1.4
85 + name: fePhysicalDiskIsHealthy
86 + tag: fe_physical_disk_is_healthy
87 + mapping:
88 + 1: 'true'
89 + 2: 'false'
90 + # - MIB: FE-FIREEYE-MIB
91 + # symbol:
92 + # OID: 1.3.6.1.4.1.25597.11.3.1.2.0
93 + # name: fePowerSupplyOverallIsHealthy
94 + # enum:
95 + # true: 1
96 + # false: 2
97 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
98 + # comment in profile until it's fixed)
99 + # - MIB: FE-FIREEYE-MIB
100 + # symbol:
101 + # OID: 1.3.6.1.4.1.25597.11.4.1.2.0
102 + # name: feFanOverallIsHealthy
103 + # enum:
104 + # true: 1
105 + # false: 2
106 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
107 + # comment in profile until it's fixed)
108 + - MIB: FE-FIREEYE-MIB
109 + symbol:
110 + OID: 1.3.6.1.4.1.25597.13.1.1.0
111 + name: feTotalEmailCount
112 + metric_type: monotonic_count
113 + - MIB: FE-FIREEYE-MIB
114 + symbol:
115 + OID: 1.3.6.1.4.1.25597.13.1.4.0
116 + name: feInfectedEmailCount
117 + metric_type: monotonic_count
118 + - MIB: FE-FIREEYE-MIB
119 + symbol:
120 + OID: 1.3.6.1.4.1.25597.13.1.7.0
121 + name: feAnalyzedEmailCount
122 + metric_type: monotonic_count
123 + - MIB: FE-FIREEYE-MIB
124 + symbol:
125 + OID: 1.3.6.1.4.1.25597.13.1.10.0
126 + name: feTotalUrlCount
127 + metric_type: monotonic_count
128 + - MIB: FE-FIREEYE-MIB
129 + symbol:
130 + OID: 1.3.6.1.4.1.25597.13.1.13.0
131 + name: feInfectedUrlCount
132 + metric_type: monotonic_count
133 + - MIB: FE-FIREEYE-MIB
134 + symbol:
135 + OID: 1.3.6.1.4.1.25597.13.1.16.0
136 + name: feAnalyzedUrlCount
137 + metric_type: monotonic_count
138 + - MIB: FE-FIREEYE-MIB
139 + symbol:
140 + OID: 1.3.6.1.4.1.25597.13.1.19.0
141 + name: feTotalAttachmentCount
142 + metric_type: monotonic_count
143 + - MIB: FE-FIREEYE-MIB
144 + symbol:
145 + OID: 1.3.6.1.4.1.25597.13.1.22.0
146 + name: feInfectedAttachmentCount
147 + metric_type: monotonic_count
148 + - MIB: FE-FIREEYE-MIB
149 + symbol:
150 + OID: 1.3.6.1.4.1.25597.13.1.25.0
151 + name: feAnalyzedAttachmentCount
152 + metric_type: monotonic_count
153 + - MIB: FE-FIREEYE-MIB
154 + symbol:
155 + OID: 1.3.6.1.4.1.25597.13.1.40.0
156 + name: feeQuarantineUsage
157 + - MIB: FE-FIREEYE-MIB
158 + symbol:
159 + OID: 1.3.6.1.4.1.25597.13.1.44.0
160 + name: feDeferredEmailCount
161 + - MIB: FE-FIREEYE-MIB
162 + symbol:
163 + OID: 1.3.6.1.4.1.25597.13.1.45.0
164 + name: feHoldQueueEmailCount
165 + - MIB: FE-FIREEYE-MIB
166 + symbol:
167 + OID: 1.3.6.1.4.1.25597.15.1.1.0
168 + name: feTotalObjectAnalyzedCount
169 + metric_type: monotonic_count
170 + - MIB: FE-FIREEYE-MIB
171 + symbol:
172 + OID: 1.3.6.1.4.1.25597.15.1.4.0
173 + name: feTotalMaliciousObjectCount
174 + metric_type: monotonic_count
175 +metric_tags:
176 + - tag: fe_hardware_model
177 + OID: 1.3.6.1.4.1.25597.11.1.1.2.0
178 + symbol: feHardwareModel
179 + - tag: fe_serial_number
180 + OID: 1.3.6.1.4.1.25597.11.1.1.3.0
181 + symbol: feSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/fortinet-appliance.yaml new
+354
@@ -0,0 +1,354 @@
1 +extends:
2 + - _base.yaml
3 + - fortinet.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.12356.103.1.* # Fortinet FortiManager
7 + - 1.3.6.1.4.1.12356.103.1.64 # Fortinet fmgvm
8 + - 1.3.6.1.4.1.12356.103.1.1000 # Fortinet fmg100
9 + - 1.3.6.1.4.1.12356.103.1.1001 # Fortinet fmgvm
10 + - 1.3.6.1.4.1.12356.103.1.1003 # Fortinet fmg100C
11 + - 1.3.6.1.4.1.12356.103.1.2004 # Fortinet fmg200D
12 + - 1.3.6.1.4.1.12356.103.1.2005 # Fortinet fmg200E
13 + - 1.3.6.1.4.1.12356.103.1.2006 # Fortinet fmg200F
14 + - 1.3.6.1.4.1.12356.103.1.3004 # Fortinet fmg300D
15 + - 1.3.6.1.4.1.12356.103.1.3005 # Fortinet fmg300E
16 + - 1.3.6.1.4.1.12356.103.1.3006 # Fortinet fmg300F
17 + - 1.3.6.1.4.1.12356.103.1.4000 # Fortinet fmg400
18 + - 1.3.6.1.4.1.12356.103.1.4001 # Fortinet fmg400A
19 + - 1.3.6.1.4.1.12356.103.1.4002 # Fortinet fmg400B
20 + - 1.3.6.1.4.1.12356.103.1.4003 # Fortinet fmg400C
21 + - 1.3.6.1.4.1.12356.103.1.4005 # Fortinet fmg400E
22 + - 1.3.6.1.4.1.12356.103.1.10003 # Fortinet fmg1000C
23 + - 1.3.6.1.4.1.12356.103.1.10004 # Fortinet fmg1000D
24 + - 1.3.6.1.4.1.12356.103.1.20000 # Fortinet fmg2000XL
25 + - 1.3.6.1.4.1.12356.103.1.20005 # Fortinet fmg2000E
26 + - 1.3.6.1.4.1.12356.103.1.30002 # Fortinet fmg3000B
27 + - 1.3.6.1.4.1.12356.103.1.30003 # Fortinet fmg3000C
28 + - 1.3.6.1.4.1.12356.103.1.30006 # Fortinet fmg3000F
29 + - 1.3.6.1.4.1.12356.103.1.39005 # Fortinet fmg3900E
30 + - 1.3.6.1.4.1.12356.103.1.40004 # Fortinet fmg4000D
31 + - 1.3.6.1.4.1.12356.103.1.40005 # Fortinet fmg4000E
32 + - 1.3.6.1.4.1.12356.103.1.50011 # Fortinet fmg5001A
33 + - 1.3.6.1.4.1.12356.103.3.* # Fortinet FortiAnalyzer
34 + - 1.3.6.1.4.1.12356.103.3.20 # Fortinet fazvm
35 + - 1.3.6.1.4.1.12356.103.3.64 # Fortinet fazvm
36 + - 1.3.6.1.4.1.12356.103.3.1000 # Fortinet faz100
37 + - 1.3.6.1.4.1.12356.103.3.1001 # Fortinet faz100A
38 + - 1.3.6.1.4.1.12356.103.3.1002 # Fortinet faz100B
39 + - 1.3.6.1.4.1.12356.103.3.1003 # Fortinet faz100C
40 + - 1.3.6.1.4.1.12356.103.3.2004 # Fortinet faz200D
41 + - 1.3.6.1.4.1.12356.103.3.2005 # Fortinet faz200E
42 + - 1.3.6.1.4.1.12356.103.3.2006 # Fortinet faz200F
43 + - 1.3.6.1.4.1.12356.103.3.3004 # Fortinet faz300D
44 + - 1.3.6.1.4.1.12356.103.3.3006 # Fortinet faz300F
45 + - 1.3.6.1.4.1.12356.103.3.4000 # Fortinet faz400
46 + - 1.3.6.1.4.1.12356.103.3.4002 # Fortinet faz400B
47 + - 1.3.6.1.4.1.12356.103.3.4003 # Fortinet faz400C
48 + - 1.3.6.1.4.1.12356.103.3.4005 # Fortinet faz400E
49 + - 1.3.6.1.4.1.12356.103.3.8000 # Fortinet faz800
50 + - 1.3.6.1.4.1.12356.103.3.8002 # Fortinet faz800B
51 + - 1.3.6.1.4.1.12356.103.3.8006 # Fortinet faz800F
52 + - 1.3.6.1.4.1.12356.103.3.10002 # Fortinet faz1000B
53 + - 1.3.6.1.4.1.12356.103.3.10003 # Fortinet faz1000C
54 + - 1.3.6.1.4.1.12356.103.3.10004 # Fortinet faz1000D
55 + - 1.3.6.1.4.1.12356.103.3.10005 # Fortinet faz1000E
56 + - 1.3.6.1.4.1.12356.103.3.20000 # Fortinet faz2000
57 + - 1.3.6.1.4.1.12356.103.3.20001 # Fortinet faz2000A
58 + - 1.3.6.1.4.1.12356.103.3.20002 # Fortinet faz2000B
59 + - 1.3.6.1.4.1.12356.103.3.20005 # Fortinet faz2000E
60 + - 1.3.6.1.4.1.12356.103.3.30004 # Fortinet faz3000D
61 + - 1.3.6.1.4.1.12356.103.3.30005 # Fortinet faz3000E
62 + - 1.3.6.1.4.1.12356.103.3.30006 # Fortinet faz3000F
63 + - 1.3.6.1.4.1.12356.103.3.35005 # Fortinet faz3500E
64 + - 1.3.6.1.4.1.12356.103.3.35006 # Fortinet faz3500F
65 + - 1.3.6.1.4.1.12356.103.3.37006 # Fortinet faz3700F
66 + - 1.3.6.1.4.1.12356.103.3.39005 # Fortinet faz3900E
67 + - 1.3.6.1.4.1.12356.103.3.40000 # Fortinet faz4000
68 + - 1.3.6.1.4.1.12356.103.3.40001 # Fortinet faz4000A
69 + - 1.3.6.1.4.1.12356.103.3.40002 # Fortinet faz4000B
70 +
71 +metrics:
72 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
73 + symbol:
74 + name: cpu.usage
75 + OID: 1.3.6.1.4.1.12356.103.2.1.1.0
76 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
77 + symbol:
78 + name: memory.used
79 + OID: 1.3.6.1.4.1.12356.103.2.1.2.0
80 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
81 + symbol:
82 + name: memory.total
83 + OID: 1.3.6.1.4.1.12356.103.2.1.3.0
84 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
85 + symbol:
86 + name: fmSysDiskUsage
87 + OID: 1.3.6.1.4.1.12356.103.2.1.4.0
88 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
89 + symbol:
90 + name: fmSysDiskCapacity
91 + OID: 1.3.6.1.4.1.12356.103.2.1.5.0
92 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
93 + symbol:
94 + name: fmSysCpuUsageExcludedNice
95 + OID: 1.3.6.1.4.1.12356.103.2.1.6.0
96 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
97 + symbol:
98 + name: fmLogRate
99 + OID: 1.3.6.1.4.1.12356.103.2.1.9.0
100 + # - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
101 + # symbol:
102 + # name: fmRaidLevel
103 + # OID: 1.3.6.1.4.1.12356.103.7.1.1.0
104 + # enum:
105 + # unavailable: 0
106 + # linear: 1
107 + # raid-0: 2
108 + # raid-1: 3
109 + # raid-1s: 4
110 + # raid-5: 5
111 + # raid-5s: 6
112 + # raid-6: 7
113 + # raid-6s: 8
114 + # raid-10: 9
115 + # raid-10s: 10
116 + # raid-50: 11
117 + # raid-50s: 12
118 + # raid-60: 13
119 + # raid-60s: 14
120 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
121 + # comment in profile until it's fixed)
122 + # - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
123 + # symbol:
124 + # name: fmRaidState
125 + # OID: 1.3.6.1.4.1.12356.103.7.1.2.0
126 + # enum:
127 + # unavailable: 0
128 + # ok: 1
129 + # degraded: 2
130 + # failed: 3
131 + # background-initializing: 4
132 + # background-verifying: 5
133 + # background-rebuilding: 6
134 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
135 + # comment in profile until it's fixed)
136 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
137 + symbol:
138 + name: fmRaidSize
139 + OID: 1.3.6.1.4.1.12356.103.7.1.3.0
140 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
141 + symbol:
142 + name: fmRaidDiskNumber
143 + OID: 1.3.6.1.4.1.12356.103.7.1.4.0
144 + # - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
145 + # symbol:
146 + # name: fmHaMode
147 + # OID: 1.3.6.1.4.1.12356.103.9.1.1.0
148 + # enum:
149 + # standalone: 0
150 + # master: 1
151 + # slave: 2
152 + # TODO: enum in scalar metric is not supported yet (keep this metric and this
153 + # comment in profile until it's fixed)
154 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
155 + symbol:
156 + name: fmHaClusterId
157 + OID: 1.3.6.1.4.1.12356.103.9.1.2.0
158 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
159 + symbol:
160 + name: fmHaPeerNumber
161 + OID: 1.3.6.1.4.1.12356.103.9.1.3.0
162 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
163 + table:
164 + OID: 1.3.6.1.4.1.12356.103.6.2
165 + name: fmDeviceTable
166 + symbols:
167 + - name: fmDevice
168 + constant_value_one: true
169 + metric_tags:
170 + - symbol:
171 + name: fmDeviceEntName
172 + OID: 1.3.6.1.4.1.12356.103.6.2.1.2
173 + tag: fm_device_ent_name
174 + - symbol:
175 + name: fmDeviceEntSn
176 + OID: 1.3.6.1.4.1.12356.103.6.2.1.3
177 + tag: fm_device_ent_sn
178 + - symbol:
179 + name: fmDeviceEntMode
180 + OID: 1.3.6.1.4.1.12356.103.6.2.1.4
181 + tag: fm_device_ent_mode
182 + mapping:
183 + 0: unregistered
184 + 1: fmg
185 + 2: faz
186 + 3: fmg-faz
187 + - symbol:
188 + name: fmDeviceEntAdom
189 + OID: 1.3.6.1.4.1.12356.103.6.2.1.5
190 + tag: fm_device_ent_adom
191 + - symbol:
192 + name: fmDeviceEntIp
193 + OID: 1.3.6.1.4.1.12356.103.6.2.1.6
194 + tag: fm_device_ent_ip
195 + - symbol:
196 + name: fmDeviceEntHaMode
197 + OID: 1.3.6.1.4.1.12356.103.6.2.1.10
198 + tag: fm_device_ent_ha_mode
199 + mapping:
200 + 0: standalone
201 + 1: a-p
202 + 2: a-a
203 + 3: elbc
204 + 4: dual
205 + 5: fmg
206 + - symbol:
207 + name: fmDeviceEntHaGroup
208 + OID: 1.3.6.1.4.1.12356.103.6.2.1.11
209 + tag: fm_device_ent_ha_group
210 + - symbol:
211 + name: fmDeviceEntDesc
212 + OID: 1.3.6.1.4.1.12356.103.6.2.1.24
213 + tag: fm_device_ent_desc
214 + - symbol:
215 + OID: 1.3.6.1.4.1.12356.103.6.2.1.12
216 + name: fmDeviceEntConnectState
217 + tag: fm_device_ent_connect_state
218 + mapping:
219 + 0: unknown
220 + 1: up
221 + 2: down
222 + - symbol:
223 + OID: 1.3.6.1.4.1.12356.103.6.2.1.13
224 + name: fmDeviceEntDbState
225 + tag: fm_device_ent_db_state
226 + mapping:
227 + 0: unknown
228 + 1: not-modified
229 + 2: modified
230 + - symbol:
231 + OID: 1.3.6.1.4.1.12356.103.6.2.1.14
232 + name: fmDeviceEntConfigState
233 + tag: fm_device_ent_config_state
234 + mapping:
235 + 0: unknown
236 + 1: in-sync
237 + 2: out-of-sync
238 + - symbol:
239 + OID: 1.3.6.1.4.1.12356.103.6.2.1.15
240 + name: fmDeviceEntState
241 + tag: fm_device_ent_state
242 + mapping:
243 + 0: none
244 + 1: unknown
245 + 2: checked-in
246 + 3: in-progress
247 + 4: installed
248 + 5: aborted
249 + 6: sched
250 + 7: retry
251 + 8: canceled
252 + 9: pending
253 + 10: retrieved
254 + 11: changed-conf
255 + 12: sync-fail
256 + 13: timeout
257 + 14: rev-reverted
258 + 15: auto-updated
259 + - symbol:
260 + OID: 1.3.6.1.4.1.12356.103.6.2.1.18
261 + name: fmDeviceEntSupportState
262 + tag: fm_device_ent_support_state
263 + mapping:
264 + 0: expired
265 + 1: valid
266 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
267 + table:
268 + OID: 1.3.6.1.4.1.12356.103.7.2
269 + name: fmRaidDiskTable
270 + symbols:
271 + - name: fmRaidDiskEntSize
272 + OID: 1.3.6.1.4.1.12356.103.7.2.1.3
273 + metric_tags:
274 + - symbol:
275 + OID: 1.3.6.1.4.1.12356.103.7.2.1.2
276 + name: fmRaidDiskEntState
277 + tag: fm_raid_disk_ent_state
278 + mapping:
279 + 0: unavailable
280 + 1: unused
281 + 2: ok
282 + 3: rebuilding
283 + 4: failed
284 + 5: spare
285 + # - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
286 + # table:
287 + # OID: 1.3.6.1.4.1.12356.103.8.2
288 + # name: fmSensorTable
289 + # symbols:
290 + # - name: fmSensorEntVal
291 + # OID: 1.3.6.1.4.1.12356.103.8.2.1.3
292 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
293 + # metric_tags:
294 + # - symbol:
295 + # name: fmSensorEntName
296 + # OID: 1.3.6.1.4.1.12356.103.8.2.1.2
297 + # tag: fm_sensor_ent_name
298 + # - symbol:
299 + # name: fmSensorEntType
300 + # OID: 1.3.6.1.4.1.12356.103.8.2.1.4
301 + # tag: fm_sensor_ent_type
302 + # mapping:
303 + # 0: power
304 + # 1: fan
305 + # 2: temperature
306 + # 3: voltage
307 + # - symbol:
308 + # OID: 1.3.6.1.4.1.12356.103.8.2.1.5
309 + # name: fmSensorEntState
310 + # tag: fm_sensor_ent_state
311 + # mapping:
312 + # 0: ok
313 + # 1: failed
314 + # 2: out-of-range-not-critical
315 + # 3: out-of-range-critical
316 + # 4: out-of-range-not-recoverable
317 + # 5: input-lost
318 + # 6: not-present
319 + - MIB: FORTINET-FORTIMANAGER-FORTIANALYZER-MIB
320 + table:
321 + OID: 1.3.6.1.4.1.12356.103.9.2
322 + name: fmHaPeerTable
323 + symbols:
324 + - name: fmHaPeer
325 + constant_value_one: true
326 + metric_tags:
327 + - symbol:
328 + name: fmHaPeerEntIp
329 + OID: 1.3.6.1.4.1.12356.103.9.2.1.2
330 + tag: fm_ha_peer_ent_ip
331 + - symbol:
332 + name: fmHaPeerEntSn
333 + OID: 1.3.6.1.4.1.12356.103.9.2.1.3
334 + tag: fm_ha_peer_ent_sn
335 + - symbol:
336 + name: fmHaPeerEntHostName
337 + OID: 1.3.6.1.4.1.12356.103.9.2.1.5
338 + tag: fm_ha_peer_ent_host_name
339 + - symbol:
340 + OID: 1.3.6.1.4.1.12356.103.9.2.1.4
341 + name: fmHaPeerEntEnabled
342 + tag: fm_ha_peer_ent_enabled
343 + mapping:
344 + 1: disabled
345 + 2: enabled
346 + - symbol:
347 + OID: 1.3.6.1.4.1.12356.103.9.2.1.6
348 + name: fmHaPeerEntState
349 + tag: fm_ha_peer_ent_state
350 + mapping:
351 + 0: down
352 + 1: negotiating
353 + 2: synchronizing
354 + 3: up
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/fortinet-fortigate.yaml new
+319
@@ -0,0 +1,319 @@
1 +# Profile for Fortinet FortiGate devices
2 +#
3 +# For Fortinet FortiGate devices, the sysDescr is not a reliable source of info.
4 +
5 +extends:
6 + - _base.yaml
7 + - _generic-if.yaml
8 + - _fortinet-fortigate-cpu-memory.yaml
9 + - _fortinet-fortigate-vpn-tunnel.yaml
10 +
11 +device:
12 + vendor: "fortinet"
13 +
14 +# All fortinet devices have sysObjectID starting with `1.3.6.1.4.1.12356.101.1` (fgModel)
15 +# We only target Fortinet Fortigate devices (1.3.6.1.4.1.12356.101/fnFortiGateMib)
16 +sysobjectid: 1.3.6.1.4.1.12356.101.1.*
17 +
18 +
19 +# Note related to use of index `1` of entPhysicalTable columns:
20 +# Based on snmpwalks of Fortigate devices, the main/chassis hardware have the index `1`
21 +# Librennms is also using index `1`: https://github.com/librenms/librenms/blob/1ac60e3b1d90616119f3c4adc28213e3c35c2477/includes/definitions/discovery/fortigate.yaml#L10-L13
22 +metadata:
23 + device:
24 + fields:
25 + vendor:
26 + value: "fortinet"
27 + serial_number:
28 + symbol:
29 + MIB: ENTITY-MIB
30 + OID: 1.3.6.1.2.1.47.1.1.1.1.11.1 # entPhysicalSerialNum OID at index `1`
31 + name: entPhysicalSerialNum
32 + # Examples: `FG5H1E1110000000`
33 + version:
34 + symbol:
35 + MIB: FORTINET-FORTIGATE-MIB
36 + OID: 1.3.6.1.4.1.12356.101.4.1.1.0
37 + name: fgSysVersion
38 + # Example fgSysVersion (Firmware version of the device)
39 + # - v5.6.4,build1575,180425 (GA)
40 + # - v5.4.8,build1183,180115 (GA)
41 + product_name:
42 + symbol:
43 + OID: 1.3.6.1.2.1.47.1.1.1.1.10.1 # entPhysicalName OID at index `1`
44 + name: entPhysicalSoftwareRev
45 + match_pattern: '^(\S+)\s+'
46 + match_value: '$1'
47 + # Examples: `FortiGate-1500D` from `FortiGate-1500D v5.4.8,build1183b1183,180115 (GA)`
48 + model:
49 + symbol:
50 + OID: 1.3.6.1.2.1.47.1.1.1.1.13.1 # entPhysicalModelName OID at index `1`
51 + name: entPhysicalModelName
52 + # Examples: `FGT_501E`
53 + os_name:
54 + # "FortiOS is a security-hardened, purpose-built operating system that is the software foundation of FortiGate.
55 + # Control all the security and networking capabilities in all your FortiGates across your entire network with
56 + # one intuitive operating system."
57 + # source: 'http://www.corex.at/Produktinfos/FortiOS_6_0.pdf'
58 + value: FortiOS
59 + os_version:
60 + # The device firmware version and FortiOS version are same
61 + symbol:
62 + MIB: FORTINET-FORTIGATE-MIB
63 + OID: 1.3.6.1.4.1.12356.101.4.1.1.0
64 + name: fgSysVersion
65 + match_pattern: 'v([\d.]+)'
66 + match_value: '$1'
67 + # Examples: `5.6.4` from `v5.6.4,build1575,180425 (GA)`
68 +
69 +metrics:
70 +
71 + ### CPU
72 + - MIB: FORTINET-FORTIGATE-MIB
73 + symbol:
74 + # Current CPU usage (percentage).
75 + OID: 1.3.6.1.4.1.12356.101.4.1.3.0
76 + name: fgSysCpuUsage
77 +
78 + ### Processors
79 + # Only valid for processors types that support these statistics.
80 + - MIB: FORTINET-FORTIGATE-MIB
81 + table:
82 + OID: 1.3.6.1.4.1.12356.101.4.4.2
83 + name: fgProcessorTable
84 + metric_type: monotonic_count_and_rate
85 + symbols:
86 + # The total number of packets received by this processor.
87 + - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.6
88 + name: fgProcessorPktRxCount
89 + # The total number of packets transmitted by this processor.
90 + - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.7
91 + name: fgProcessorPktTxCount
92 + # The total number of packets dropped by this processor.
93 + - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.8
94 + name: fgProcessorPktDroppedCount
95 + metric_tags:
96 + # A unique identifier within the fgProcessorTable.
97 + - tag: processor_index
98 + symbol:
99 + OID: 1.3.6.1.4.1.12356.101.4.4.2.1.1
100 + name: fgProcessorEntIndex
101 + - MIB: FORTINET-FORTIGATE-MIB
102 + table:
103 + OID: 1.3.6.1.4.1.12356.101.4.4.2
104 + name: fgProcessorTable
105 + symbols:
106 + # The processor's CPU usage (percentage), which is an average calculated over the last minute.
107 + - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.2
108 + name: fgProcessorUsage
109 + # The processor's CPU system space usage, which is an average calculated over the last minute.
110 + - OID: 1.3.6.1.4.1.12356.101.4.4.2.1.10
111 + name: fgProcessorSysUsage
112 + metric_tags:
113 + # A unique identifier within the fgProcessorTable.
114 + - tag: processor_index
115 + symbol:
116 + OID: 1.3.6.1.4.1.12356.101.4.4.2.1.1
117 + name: fgProcessorEntIndex
118 +
119 + ### Memory
120 + - MIB: FORTINET-FORTIGATE-MIB
121 + symbol:
122 + # Current memory utilization (percentage).
123 + OID: 1.3.6.1.4.1.12356.101.4.1.4.0
124 + name: fgSysMemUsage
125 + - MIB: FORTINET-FORTIGATE-MIB
126 + symbol:
127 + # Total physical memory (RAM) installed (KB).
128 + OID: 1.3.6.1.4.1.12356.101.4.1.5.0
129 + name: fgSysMemCapacity
130 + - MIB: FORTINET-FORTIGATE-MIB
131 + symbol:
132 + # Current lowmem utilization (percentage). Lowmem is memory available for the kernel's own data structures and kernel specific tables. The system can get into a bad state if it runs out of lowmem.
133 + OID: 1.3.6.1.4.1.12356.101.4.1.9.0
134 + name: fgSysLowMemUsage
135 + - MIB: FORTINET-FORTIGATE-MIB
136 + symbol:
137 + # Total lowmem capacity (KB). See fgSysLowMemUsage for the description of lowmem.
138 + OID: 1.3.6.1.4.1.12356.101.4.1.10.0
139 + name: fgSysLowMemCapacity
140 +
141 + ### Disk
142 + - MIB: FORTINET-FORTIGATE-MIB
143 + symbol:
144 + # Current hard disk usage (MB), if disk is present.
145 + OID: 1.3.6.1.4.1.12356.101.4.1.6.0
146 + name: fgSysDiskUsage
147 + - MIB: FORTINET-FORTIGATE-MIB
148 + symbol:
149 + # Total hard disk capacity (MB), if disk is present.
150 + OID: 1.3.6.1.4.1.12356.101.4.1.7.0
151 + name: fgSysDiskCapacity
152 +
153 + ### Virtual Domains
154 + # A table of virtual domains configured on the device.
155 + - MIB: FORTINET-FORTIGATE-MIB
156 + table:
157 + OID: 1.3.6.1.4.1.12356.101.3.2.1
158 + name: fgVdTable
159 + symbols:
160 + # Operation mode of the virtual domain: nat(1), transparent(2)
161 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.3
162 + name: fgVdEntOpMode
163 + # HA cluster member state of the virtual domain on this device: master(1), backup(2), standalone(3)
164 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.4
165 + name: fgVdEntHaState
166 + # CPU usage of the virtual domain (percentage).
167 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.5
168 + name: fgVdEntCpuUsage
169 + # Memory usage of the virtual domain (percentage).
170 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.6
171 + name: fgVdEntMemUsage
172 + # Number of active sessions on the virtual domain.
173 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.7
174 + name: fgVdEntSesCount
175 + # The session setup rate on the virtual domain.
176 + - OID: 1.3.6.1.4.1.12356.101.3.2.1.1.8
177 + name: fgVdEntSesRate
178 + metric_tags:
179 + - tag: virtualdomain_index
180 + symbol:
181 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.1
182 + name: fgVdEntIndex
183 + - tag: virtualdomain_name
184 + symbol:
185 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.2
186 + name: fgVdEntName
187 +
188 + - MIB: FORTINET-FORTIGATE-MIB
189 + table:
190 + OID: 1.3.6.1.4.1.12356.101.3.2.1
191 + name: fgVdTable
192 + symbols:
193 + - name: fgVirtualDomain
194 + constant_value_one: true
195 + metric_tags:
196 + - tag: virtualdomain_index
197 + symbol:
198 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.1
199 + name: fgVdEntIndex
200 + - tag: virtualdomain_name
201 + symbol:
202 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.2
203 + name: fgVdEntName
204 + - tag: virtualdomain_state
205 + symbol:
206 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.4
207 + name: fgVdEntHaState
208 + mapping:
209 + 1: primary
210 + 2: secondary
211 + 3: standalone
212 +
213 + - MIB: FORTINET-FORTIGATE-MIB
214 + symbol:
215 + # The number of virtual domains in vdTable.
216 + OID: 1.3.6.1.4.1.12356.101.3.1.1.0
217 + name: fgVdNumber
218 + - MIB: FORTINET-FORTIGATE-MIB
219 + symbol:
220 + # The maximum number of virtual domains allowed on the device as allowed by hardware and/or licensing.
221 + OID: 1.3.6.1.4.1.12356.101.3.1.2.0
222 + name: fgVdMaxVdoms
223 +
224 + ### Interfaces
225 + # Fortinet specific extensions to MIB-2 ifTable.
226 + - MIB: FORTINET-FORTIGATE-MIB
227 + table:
228 + OID: 1.3.6.1.4.1.12356.101.7.2.1
229 + name: fgIntfTable
230 + symbols:
231 + - OID: 1.3.6.1.4.1.12356.101.7.2.1.1.1
232 + name: fgIntfEntVdom
233 + metric_tags:
234 + # The virtual domain the interface belongs to. This index corresponds to the index used by fgVdTable.
235 + - tag: virtualdomain_index
236 + symbol:
237 + OID: 1.3.6.1.4.1.12356.101.3.2.1.1.1
238 + name: fgVdEntIndex
239 + - MIB: IF-MIB
240 + symbol:
241 + OID: 1.3.6.1.2.1.31.1.1.1.1
242 + name: ifName
243 + table: ifXTable
244 + tag: interface
245 +
246 +
247 + ### Sessions
248 + - MIB: FORTINET-FORTIGATE-MIB
249 + symbol:
250 + # Number of active sessions on the device.
251 + OID: 1.3.6.1.4.1.12356.101.4.1.8.0
252 + name: fgSysSesCount
253 + - MIB: FORTINET-FORTIGATE-MIB
254 + symbol:
255 + # The average session setup rate over the past minute.
256 + OID: 1.3.6.1.4.1.12356.101.4.1.11.0
257 + name: fgSysSesRate1
258 + - MIB: FORTINET-FORTIGATE-MIB
259 + symbol:
260 + # Number of active ipv6 sessions on the device.
261 + OID: 1.3.6.1.4.1.12356.101.4.1.15.0
262 + name: fgSysSes6Count
263 + - MIB: FORTINET-FORTIGATE-MIB
264 + symbol:
265 + # The average ipv6 session setup rate over the past minute.
266 + OID: 1.3.6.1.4.1.12356.101.4.1.16.0
267 + name: fgSysSes6Rate1
268 + - MIB: FORTINET-FORTIGATE-MIB
269 + symbol:
270 + # HTTP proxy current connections.
271 + OID: 1.3.6.1.4.1.12356.101.10.100.4.0
272 + name: fgApHTTPConnections
273 + - MIB: FORTINET-FORTIGATE-MIB
274 + symbol:
275 + # Maximum number of connections supported by HTTP proxy.
276 + OID: 1.3.6.1.4.1.12356.101.10.100.5.0
277 + name: fgApHTTPMaxConnections
278 +
279 + ### Firewall
280 + # Firewall policy statistics table.
281 + - MIB: FORTINET-FORTIGATE-MIB
282 + table:
283 + OID: 1.3.6.1.4.1.12356.101.5.1.2.1
284 + name: fgFwPolStatsTable
285 + metric_type: monotonic_count_and_rate
286 + symbols:
287 + # Number of packets matched to policy (passed or blocked, depending on policy action). Count is from the time the policy became active.
288 + - OID: 1.3.6.1.4.1.12356.101.5.1.2.1.1.2
289 + name: fgFwPolPktCount
290 + # Number of bytes in packets matching the policy.
291 + - OID: 1.3.6.1.4.1.12356.101.5.1.2.1.1.3
292 + name: fgFwPolByteCount
293 + metric_tags:
294 + # Internal virtual domain index used to uniquely identify rows in this table. This index is also used by other tables referencing a virtual domain.
295 + - index: 1
296 + tag: virtualdomain_index
297 + # Firewall policy ID. Only enabled policies are present in this table. Policy IDs are only unique within a virtual domain.
298 + - index: 2
299 + tag: policy_index
300 + # Firewall policy6 statistics table.
301 + - MIB: FORTINET-FORTIGATE-MIB
302 + table:
303 + OID: 1.3.6.1.4.1.12356.101.5.1.2.2
304 + name: fgFwPol6StatsTable
305 + metric_type: monotonic_count_and_rate
306 + symbols:
307 + # Number of packets matched to policy (passed or blocked, depending on policy action). Count is from the time the policy became active.
308 + - OID: 1.3.6.1.4.1.12356.101.5.1.2.2.1.2
309 + name: fgFwPol6PktCount
310 + # Number of bytes in packets matching the policy. See fgFwPol6PktCount.
311 + - OID: 1.3.6.1.4.1.12356.101.5.1.2.2.1.3
312 + name: fgFwPol6ByteCount
313 + metric_tags:
314 + # Internal virtual domain index used to uniquely identify rows in this table. This index is also used by other tables referencing a virtual domain.
315 + - index: 1
316 + tag: virtualdomain_index
317 + # Firewall policy6 ID. Only enabled policies are present in this table. Policy IDs are only unique within a virtual domain.
318 + - index: 2
319 + tag: policy6_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/fortinet-fortiswitch.yaml new
+40
@@ -0,0 +1,40 @@
1 +extends:
2 + - fortinet.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.12356.106.1.* # FortiSwitch
5 + - 1.3.6.1.4.1.12356.106.1.1486 # FortiSwitch-148F-FPOE
6 + - 1.3.6.1.4.1.12356.106.1.1248 # FortiSwitch-148E-FPOE
7 + - 1.3.6.1.4.1.12356.106.1.2485 # FortiSwitch-248E-POE
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "switch"
13 +metrics:
14 + - MIB: FORTINET-FORTISWITCH-MIB
15 + symbol:
16 + name: cpu.usage
17 + OID: 1.3.6.1.4.1.12356.106.4.1.2.0
18 + - MIB: FORTINET-FORTISWITCH-MIB
19 + symbol:
20 + name: memory.used
21 + OID: 1.3.6.1.4.1.12356.106.4.1.3.0
22 + - MIB: FORTINET-FORTISWITCH-MIB
23 + symbol:
24 + name: memory.total
25 + OID: 1.3.6.1.4.1.12356.106.4.1.4.0
26 + - MIB: FORTINET-FORTISWITCH-MIB
27 + symbol:
28 + name: fsSysDiskUsage
29 + OID: 1.3.6.1.4.1.12356.106.4.1.5.0
30 + - MIB: FORTINET-FORTISWITCH-MIB
31 + symbol:
32 + name: fsSysDiskCapacity
33 + OID: 1.3.6.1.4.1.12356.106.4.1.6.0
34 +metric_tags:
35 + - OID: 1.3.6.1.4.1.12356.106.1.1.1.0
36 + symbol: fsSysSerial
37 + tag: fs_sys_serial
38 + - OID: 1.3.6.1.4.1.12356.106.4.1.1.0
39 + symbol: fsSysVersion
40 + tag: fs_sys_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/fortinet.yaml new
+17
@@ -0,0 +1,17 @@
1 +# Profile for Fortinet devices
2 +# For Fortinet FortiGate devices, a separate fortinet-fortigate profile is used
3 +
4 +extends:
5 + - _base.yaml
6 + - _generic-if.yaml
7 +
8 +metadata:
9 + device:
10 + fields:
11 + vendor:
12 + value: "fortinet"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.12356.103.* # Fortinet Appliance
16 + - 1.3.6.1.4.1.12356.106.* # Fortinet fortiswitch
17 +
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/generic-device.yaml new
+11
@@ -0,0 +1,11 @@
1 +# Generic profile for network devices
2 +
3 +extends:
4 + - _base.yaml
5 + - _generic-if.yaml
6 + - _generic-ip.yaml
7 + - _generic-tcp.yaml
8 + - _generic-udp.yaml
9 + - _generic-ospf.yaml
10 +
11 +sysobjectid: 1.3.6.1.4.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/generic-router.yaml new
+5
@@ -0,0 +1,5 @@
1 +# generic-device.yaml is now the generic profile for network devices
2 +# this profile is kept only for backward compatibility
3 +
4 +extends:
5 + - generic-device.yaml
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/generic-ups.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-ups.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.2.1.33
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "UPS"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/gigamon.yaml new
+30
@@ -0,0 +1,30 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "gigamon"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.26866.3.6
13 +
14 +# metrics:
15 +# - MIB: GIGAMON-SNMP-MIB
16 +# symbol:
17 +# name: cpu.usage
18 +# OID: 1.3.6.1.4.1.26866.2.18.4.0
19 +# extract_value: '(\d+)'.
20 +# - MIB: GIGAMON-SNMP-MIB
21 +# symbol:
22 +# name: memory.total
23 +# OID: 1.3.6.1.4.1.26866.2.19.1.0
24 +# - MIB: GIGAMON-SNMP-MIB
25 +# symbol:
26 +# name: memory.free
27 +# OID: 1.3.6.1.4.1.26866.2.19.2.0
28 +# The latest version we could find (from 2018) doesn't contain these metrics
29 +# https://github.com/librenms/librenms/blob/master/mibs/gigamon/GIGAMON-SNMP-MIB
30 +# keeping this until we can confirm furthermore these metrics
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hp-h3c-switch.yaml new
+73
@@ -0,0 +1,73 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _hp.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.25506.11.1.*
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "switch"
13 +
14 +metrics:
15 + - MIB: HH3C-ENTITY-EXT-MIB
16 + table:
17 + OID: 1.3.6.1.4.1.25506.2.6.1.4.1
18 + name: hh3cProcessTable
19 + symbols:
20 + - OID: 1.3.6.1.4.1.25506.2.6.1.4.1.1.3
21 + name: hh3cProcessUtil5Min
22 + metric_tags:
23 + - symbol:
24 + OID: 1.3.6.1.4.1.25506.2.6.1.4.1.1.1
25 + name: hh3cProcessID
26 + tag: hh3c_process_id
27 + - symbol:
28 + OID: 1.3.6.1.4.1.25506.2.6.1.4.1.1.2
29 + name: hh3cProcessName
30 + tag: hh3c_process_name
31 + - MIB: HH3C-ENTITY-EXT-MIB
32 + table:
33 + OID: 1.3.6.1.4.1.25506.2.6.1.1.1
34 + name: hh3cEntityExtStateTable
35 + symbols:
36 + - OID: 1.3.6.1.4.1.25506.2.6.1.1.1.1.6
37 + name: cpu.usage
38 + metric_tags:
39 + - MIB: HH3C-ENTITY-EXT-MIB
40 + symbol:
41 + OID: 1.3.6.1.4.1.25506.2.6.1.1.1.1.1
42 + name: hh3cEntityExtPhysicalIndex
43 + tag: hh3c_entity_ext_physical_index
44 + - MIB: ENTITY-MIB
45 + symbol:
46 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
47 + name: entPhysicalName
48 + table: entPhysicalTable
49 + tag: ent_physical_name
50 + - tag: cpu
51 + index: 1 # hh3cEntityExtPhysicalIndex
52 +
53 + - MIB: HH3C-ENTITY-EXT-MIB
54 + table:
55 + OID: 1.3.6.1.4.1.25506.2.6.1.1.1
56 + name: hh3cEntityExtStateTable
57 + symbols:
58 + - OID: 1.3.6.1.4.1.25506.2.6.1.1.1.1.8
59 + name: memory.usage
60 + metric_tags:
61 + - MIB: HH3C-ENTITY-EXT-MIB
62 + symbol:
63 + OID: 1.3.6.1.4.1.25506.2.6.1.1.1.1.1
64 + name: hh3cEntityExtPhysicalIndex
65 + tag: hh3c_entity_ext_physical_index
66 + - MIB: ENTITY-MIB
67 + symbol:
68 + OID: 1.3.6.1.2.1.47.1.1.1.1.7
69 + name: entPhysicalName
70 + table: entPhysicalTable
71 + tag: ent_physical_name
72 + - tag: mem
73 + index: 1 # hh3cEntityExtPhysicalIndex
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hp-icf-switch.yaml new
+34
@@ -0,0 +1,34 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _hp.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.11.2.3.7.11.*
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "switch"
13 +
14 +metrics:
15 + - MIB: STATISTICS-MIB
16 + symbol:
17 + name: cpu.usage
18 + OID: 1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0
19 + - MIB: NETSWITCH-MIB
20 + table:
21 + name: hpLocalMemTable
22 + OID: 1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1
23 + symbols:
24 + - name: memory.total
25 + OID: 1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5
26 + - name: memory.free
27 + OID: 1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6
28 + metric_tags:
29 + - symbol:
30 + OID: 1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1
31 + name: hpLocalMemSlotIndex
32 + tag: hp_local_mem_slot_index
33 + - index: 1
34 + tag: mem
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hp-ilo.yaml new
+172
@@ -0,0 +1,172 @@
1 +# Profile for HP iLO devices.
2 +# For HP iLO4 devices, a separate hp-ilo4 profile is used
3 +
4 +extends:
5 + - _hp.yaml
6 + - _hp-base.yaml
7 + - _hp-compaq-health.yaml
8 + - _hp-driver-stats.yaml
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.232.9.4.* # HP iLO
12 +
13 +metadata:
14 + device:
15 + fields:
16 + product_name:
17 + value: Integrated Lights-Out
18 + type:
19 + value: "server"
20 +
21 +metrics:
22 + # iLO controller metrics.
23 +
24 + - # Power state.
25 + # NOTE: unknown(1), poweredOff(2), poweredOn(3), insufficientPowerOrPowerOnDenied(4)
26 + MIB: CPQSM2-MIB
27 + symbol:
28 + OID: 1.3.6.1.4.1.232.9.2.2.32.0
29 + name: cpqSm2CntlrServerPowerState
30 +
31 + - # Status of battery.
32 + # NOTE: other(1), batteryOk(2), batteryFailed(3), batteryDisconnected(4)
33 + MIB: CPQSM2-MIB
34 + symbol:
35 + OID: 1.3.6.1.4.1.232.9.2.2.5.0
36 + name: cpqSm2CntlrBatteryStatus
37 +
38 + - # Charge level of battery.
39 + MIB: CPQSM2-MIB
40 + symbol:
41 + OID: 1.3.6.1.4.1.232.9.2.2.6.0
42 + name: cpqSm2CntlrBatteryPercentCharged
43 +
44 + - # A bitmap of self-test errors.
45 + # NOTE: 0 indicates that no errors have occurred.
46 + MIB: CPQSM2-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.232.9.2.2.9.0
49 + name: cpqSm2CntlrSelfTestErrors
50 +
51 + - # Whether a remote session is active.
52 + # NOTE: other(1), active(2), inactive(3)
53 + MIB: CPQSM2-MIB
54 + symbol:
55 + OID: 1.3.6.1.4.1.232.9.2.2.16.0
56 + name: cpqSm2CntlrRemoteSessionStatus
57 +
58 + - # Status of the remote interface.
59 + # NOTE: other(1), ok(2), notResponding(3)
60 + MIB: CPQSM2-MIB
61 + symbol:
62 + OID: 1.3.6.1.4.1.232.9.2.2.17.0
63 + name: cpqSm2CntlrInterfaceStatus
64 +
65 + # Event log.
66 +
67 + - # Number of entries in the event log.
68 + MIB: CPQSM2-MIB
69 + symbol:
70 + OID: 1.3.6.1.4.1.232.9.2.3.1.0
71 + name: cpqSm2EventTotalEntries
72 +
73 + # Network interfaces and traffic.
74 +
75 + - # Network interface card statistics.
76 + MIB: CPQSM2-MIB
77 + table:
78 + OID: 1.3.6.1.4.1.232.9.2.5.2
79 + name: cpqSm2NicStatsTable
80 + symbols:
81 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.2
82 + name: cpqSm2NicXmitBytes
83 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.3
84 + name: cpqSm2NicXmitTotalPackets
85 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.6
86 + name: cpqSm2NicXmitDiscardPackets
87 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.7
88 + name: cpqSm2NicXmitErrorPackets
89 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.8
90 + name: cpqSm2NicXmitQueueLength
91 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.9
92 + name: cpqSm2NicRecvBytes
93 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.10
94 + name: cpqSm2NicRecvTotalPackets
95 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.13
96 + name: cpqSm2NicRecvDiscardPackets
97 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.14
98 + name: cpqSm2NicRecvErrorPackets
99 + - OID: 1.3.6.1.4.1.232.9.2.5.2.1.15
100 + name: cpqSm2NicRecvUnknownPackets
101 + metric_type: monotonic_count # Sent as Counter (would be ingested as rates if not forced).
102 + metric_tags:
103 + - # Location of the controller (embedded controller vs. PC card).
104 + # NOTE: other(1), embedded(2), pcmcia(3)
105 + tag: nic_stats_location
106 + symbol:
107 + OID: 1.3.6.1.4.1.232.9.2.5.2.1.1
108 + name: cpqSm2NicStatsLocation
109 +
110 + - # Network physical adapters statistics (counts).
111 + MIB: CPQNIC-MIB
112 + table:
113 + OID: 1.3.6.1.4.1.232.18.2.3.1
114 + name: cpqNicIfPhysAdapterTable
115 + symbols:
116 + - # Number of frames successfully transmitted.
117 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.16
118 + name: cpqNicIfPhysAdapterGoodTransmits
119 + - # Number of frames successfully received.
120 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.17
121 + name: cpqNicIfPhysAdapterGoodReceives
122 + - # Number of frames not transmitted because of an error.
123 + # NOTE: this is the sum of 4 other metrics. (As a result, we don't submit those 4 metrics.)
124 + # NOTE: MIB recommends looking at details stats and take action if this counter increments frequently.
125 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.18
126 + name: cpqNicIfPhysAdapterBadTransmits
127 + - # Number of frames not received because of an error.
128 + # NOTE: this is the sum of 4 other metrics. (As a result, we don't submit those 4 metrics.)
129 + # NOTE: MIB recommends looking at details stats and take action if this counter increments frequently.
130 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.19
131 + name: cpqNicIfPhysAdapterBadReceives
132 + - # Number of octets received.
133 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.37
134 + name: cpqNicIfPhysAdapterInOctets
135 + - # Number of octets sent.
136 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.38
137 + name: cpqNicIfPhysAdapterOutOctets
138 + metric_type: monotonic_count # Sent as Counters (not forcing would make us ingest them as rates).
139 + metric_tags:
140 + - tag: interface
141 + symbol:
142 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.39
143 + name: cpqNicIfPhysAdapterName
144 +
145 + - # Network physical adapters statistics (rates).
146 + MIB: CPQNIC-MIB
147 + table:
148 + OID: 1.3.6.1.4.1.232.18.2.3.1
149 + name: cpqNicIfPhysAdapterTable
150 + symbols:
151 + - # Estimate of current bandwidth in bps.
152 + # NOTE: this is zero if the value exceeds 4Gbps.
153 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.33
154 + name: cpqNicIfPhysAdapterSpeed
155 + - # Estimate of current bandwidth in Mbps.
156 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.36
157 + name: cpqNicIfPhysAdapterSpeedMbps
158 + # NOTE: no 'metric_type', as these are correctly sent as gauges.
159 + metric_tags:
160 + - tag: interface
161 + symbol:
162 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.39
163 + name: cpqNicIfPhysAdapterName
164 +
165 + # Miscellaneous.
166 +
167 + - # Virus activity detection.
168 + # NOTE: notDetected(1), detected(2)
169 + MIB: CPQNIC-MIB
170 + symbol:
171 + OID: 1.3.6.1.4.1.232.18.2.5.3.0
172 + name: cpqNicVtVirusActivity
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hp-ilo4.yaml new
+18
@@ -0,0 +1,18 @@
1 +# Profile for HP iLO4 devices.
2 +
3 +# This corresponds to the 'cpqSm2ProdRILO4' OID listed in CPQSM2-MIB.
4 +# Source: CPQSM2-MIB, can downloaded here: https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX_53293d026fb147958b223069b6
5 +
6 +extends:
7 + - hp-ilo.yaml
8 +
9 +device:
10 + vendor: "hp"
11 +
12 +sysobjectid: 1.3.6.1.4.1.232.9.4.10
13 +
14 +metadata:
15 + device:
16 + fields:
17 + model:
18 + value: iLO4
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hpe-bladesystem-enclosure.yaml new
+460
@@ -0,0 +1,460 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _generic-ucd.yaml
4 + - _hp.yaml
5 + - _hp-base.yaml
6 +sysobjectid:
7 + - 1.3.6.1.4.1.11.5.7.1.2
8 +metrics:
9 + - MIB: CPQRACK-MIB
10 + table:
11 + name: cpqRackCommonEnclosureTempTable
12 + OID: 1.3.6.1.4.1.232.22.2.3.1.2
13 + symbols:
14 + - name: cpqRackCommonEnclosureTempCurrent
15 + OID: 1.3.6.1.4.1.232.22.2.3.1.2.1.6
16 + metric_tags:
17 + - symbol:
18 + OID: 1.3.6.1.4.1.232.22.2.3.1.2.1.4
19 + name: cpqRackCommonEnclosureTempSensorEnclosureName
20 + tag: cpq_rack_common_enclosure_temp_sensor_enclosure_name
21 + - symbol:
22 + OID: 1.3.6.1.4.1.232.22.2.3.1.2.1.5
23 + name: cpqRackCommonEnclosureTempLocation
24 + tag: cpq_rack_common_enclosure_temp_location
25 + - symbol:
26 + OID: 1.3.6.1.4.1.232.22.2.3.1.2.1.8
27 + name: cpqRackCommonEnclosureTempCondition
28 + tag: cpq_rack_common_enclosure_temp_condition
29 + mapping:
30 + 1: other
31 + 2: ok
32 + 3: degraded
33 + 4: failed
34 + - symbol:
35 + OID: 1.3.6.1.4.1.232.22.2.3.1.2.1.9
36 + name: cpqRackCommonEnclosureTempType
37 + tag: cpq_rack_common_enclosure_temp_type
38 + mapping:
39 + 1: other
40 + 5: blowout
41 + 9: caution
42 + 15: critical
43 + - MIB: CPQRACK-MIB
44 + table:
45 + name: cpqRackCommonEnclosureFanTable
46 + OID: 1.3.6.1.4.1.232.22.2.3.1.3
47 + symbols:
48 + - name: cpqRackCommonEnclosureFan
49 + constant_value_one: true
50 + metric_tags:
51 + - symbol:
52 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.5
53 + name: cpqRackCommonEnclosureFanLocation
54 + tag: cpq_rack_common_enclosure_fan_location
55 + - symbol:
56 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.6
57 + name: cpqRackCommonEnclosureFanPartNumber
58 + tag: cpq_rack_common_enclosure_fan_part_number
59 + - symbol:
60 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.7
61 + name: cpqRackCommonEnclosureFanSparePartNumber
62 + tag: cpq_rack_common_enclosure_fan_spare_part_number
63 + - symbol:
64 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.8
65 + name: cpqRackCommonEnclosureFanPresent
66 + tag: cpq_rack_common_enclosure_fan_present
67 + mapping:
68 + 1: other
69 + 2: absent
70 + 3: present
71 + - symbol:
72 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.9
73 + name: cpqRackCommonEnclosureFanRedundant
74 + tag: cpq_rack_common_enclosure_fan_redundant
75 + mapping:
76 + 1: other
77 + 2: not_redundant
78 + 3: redundant
79 + - symbol:
80 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.10
81 + name: cpqRackCommonEnclosureFanRedundantGroupId
82 + tag: cpq_rack_common_enclosure_fan_redundant_group_id
83 + - symbol:
84 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.12
85 + name: cpqRackCommonEnclosureFanEnclosureSerialNum
86 + tag: cpq_rack_common_enclosure_fan_enclosure_serial_num
87 + - symbol:
88 + OID: 1.3.6.1.4.1.232.22.2.3.1.3.1.11
89 + name: cpqRackCommonEnclosureFanCondition
90 + tag: cpq_rack_common_enclosure_fan_condition
91 + mapping:
92 + 1: other
93 + 2: ok
94 + 3: degraded
95 + 4: failed
96 + - MIB: CPQRACK-MIB
97 + table:
98 + name: cpqRackCommonEnclosureFuseTable
99 + OID: 1.3.6.1.4.1.232.22.2.3.1.4
100 + symbols:
101 + - name: cpqRackCommonEnclosureFuse
102 + constant_value_one: true
103 + metric_tags:
104 + - symbol:
105 + OID: 1.3.6.1.4.1.232.22.2.3.1.4.1.4
106 + name: cpqRackCommonEnclosureFuseEnclosureName
107 + tag: cpq_rack_common_enclosure_fuse_enclosure_name
108 + - symbol:
109 + OID: 1.3.6.1.4.1.232.22.2.3.1.4.1.5
110 + name: cpqRackCommonEnclosureFuseLocation
111 + tag: cpq_rack_common_enclosure_fuse_location
112 + - symbol:
113 + OID: 1.3.6.1.4.1.232.22.2.3.1.4.1.6
114 + name: cpqRackCommonEnclosureFusePresent
115 + tag: cpq_rack_common_enclosure_fuse_present
116 + mapping:
117 + 1: other
118 + 2: absent
119 + 3: present
120 + - symbol:
121 + OID: 1.3.6.1.4.1.232.22.2.3.1.4.1.7
122 + name: cpqRackCommonEnclosureFuseCondition
123 + tag: cpq_rack_common_enclosure_fuse_condition
124 + mapping:
125 + 1: other
126 + 2: ok
127 + 4: failed
128 + - MIB: CPQRACK-MIB
129 + table:
130 + name: cpqRackCommonEnclosureManagerTable
131 + OID: 1.3.6.1.4.1.232.22.2.3.1.6
132 + symbols:
133 + - name: cpqRackCommonEnclosureManager
134 + constant_value_one: true
135 + metric_tags:
136 + - symbol:
137 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.4
138 + name: cpqRackCommonEnclosureManagerEnclosureName
139 + tag: cpq_rack_common_enclosure_manager_enclosure_name
140 + - symbol:
141 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.5
142 + name: cpqRackCommonEnclosureManagerLocation
143 + tag: cpq_rack_common_enclosure_manager_location
144 + - symbol:
145 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.6
146 + name: cpqRackCommonEnclosureManagerPartNumber
147 + tag: cpq_rack_common_enclosure_manager_part_number
148 + - symbol:
149 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.7
150 + name: cpqRackCommonEnclosureManagerSparePartNumber
151 + tag: cpq_rack_common_enclosure_manager_spare_part_number
152 + - symbol:
153 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.8
154 + name: cpqRackCommonEnclosureManagerSerialNum
155 + tag: cpq_rack_common_enclosure_manager_serial_num
156 + - symbol:
157 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.9
158 + name: cpqRackCommonEnclosureManagerRole
159 + tag: cpq_rack_common_enclosure_manager_role
160 + mapping:
161 + 1: standby
162 + 2: active
163 + - symbol:
164 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.10
165 + name: cpqRackCommonEnclosureManagerPresent
166 + tag: cpq_rack_common_enclosure_manager_present
167 + mapping:
168 + 1: other
169 + 2: absent
170 + 3: present
171 + - symbol:
172 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.11
173 + name: cpqRackCommonEnclosureManagerRedundant
174 + tag: cpq_rack_common_enclosure_manager_redundant
175 + mapping:
176 + 1: other
177 + 2: not_redundant
178 + 3: redundant
179 + - symbol:
180 + OID: 1.3.6.1.4.1.232.22.2.3.1.6.1.12
181 + name: cpqRackCommonEnclosureManagerCondition
182 + tag: cpq_rack_common_enclosure_manager_condition
183 + mapping:
184 + 1: other
185 + 2: ok
186 + 3: degraded
187 + 4: failed
188 + - MIB: CPQRACK-MIB
189 + table:
190 + name: cpqRackPowerEnclosureTable
191 + OID: 1.3.6.1.4.1.232.22.2.3.3.1
192 + symbols:
193 + - name: cpqRackPowerEnclosure
194 + constant_value_one: true
195 + metric_tags:
196 + - symbol:
197 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.3
198 + name: cpqRackPowerEnclosureName
199 + tag: cpq_rack_power_enclosure_name
200 + - symbol:
201 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.4
202 + name: cpqRackPowerEnclosureMgmtBoardSerialNum
203 + tag: cpq_rack_power_enclosure_mgmt_board_serial_num
204 + - symbol:
205 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.5
206 + name: cpqRackPowerEnclosureRedundant
207 + tag: cpq_rack_power_enclosure_redundant
208 + mapping:
209 + 1: other
210 + 2: not_redundant
211 + 3: redundant
212 + - symbol:
213 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.6
214 + name: cpqRackPowerEnclosureLoadBalanced
215 + tag: cpq_rack_power_enclosure_load_balanced
216 + mapping:
217 + 1: other
218 + 2: not_load_balanced
219 + 3: load_balanced
220 + - symbol:
221 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.7
222 + name: cpqRackPowerEnclosureInputPwrType
223 + tag: cpq_rack_power_enclosure_input_pwr_type
224 + mapping:
225 + 1: other
226 + 2: single_phase
227 + 3: three_phase
228 + 4: direct_current
229 + - symbol:
230 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.10
231 + name: cpqRackPowerEnclosureBladeAutopoweron
232 + tag: cpq_rack_power_enclosure_blade_autopoweron
233 + mapping:
234 + 1: other
235 + 2: disabled
236 + 3: enabled
237 + - symbol:
238 + OID: 1.3.6.1.4.1.232.22.2.3.3.1.1.9
239 + name: cpqRackPowerEnclosureCondition
240 + tag: cpq_rack_power_enclosure_condition
241 + mapping:
242 + 1: other
243 + 2: ok
244 + 3: degraded
245 + - MIB: CPQRACK-MIB
246 + table:
247 + name: cpqRackServerBladeTable
248 + OID: 1.3.6.1.4.1.232.22.2.4.1.1
249 + symbols:
250 + - name: cpqRackServerBladeFaultMajor
251 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.22
252 + - name: cpqRackServerBladeFaultMinor
253 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.23
254 +# - name: cpqRackServerBladeFaultDiagnosticString
255 +# OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.24
256 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
257 + metric_tags:
258 + - symbol:
259 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.4
260 + name: cpqRackServerBladeName
261 + tag: cpq_rack_server_blade_name
262 + - symbol:
263 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.6
264 + name: cpqRackServerBladePartNumber
265 + tag: cpq_rack_server_blade_part_number
266 + - symbol:
267 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.7
268 + name: cpqRackServerBladeSparePartNumber
269 + tag: cpq_rack_server_blade_spare_part_number
270 + - symbol:
271 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.8
272 + name: cpqRackServerBladePosition
273 + tag: cpq_rack_server_blade_position
274 + - symbol:
275 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.12
276 + name: cpqRackServerBladePresent
277 + tag: cpq_rack_server_blade_present
278 + mapping:
279 + 1: other
280 + 2: absent
281 + 3: present
282 + - symbol:
283 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.13
284 + name: cpqRackServerBladeHasFuses
285 + tag: cpq_rack_server_blade_has_fuses
286 + mapping:
287 + 1: false
288 + 2: true
289 + - symbol:
290 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.16
291 + name: cpqRackServerBladeSerialNum
292 + tag: cpq_rack_server_blade_serial_num
293 + - symbol:
294 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.17
295 + name: cpqRackServerBladeProductId
296 + tag: cpq_rack_server_blade_product_id
297 + - symbol:
298 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.18
299 + name: cpqRackServerBladeUid
300 + tag: cpq_rack_server_blade_uid
301 + - symbol:
302 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.35
303 + name: cpqRackServerBladePOSTStatus
304 + tag: cpq_rack_server_blade_post_status
305 + mapping:
306 + 1: other
307 + 2: started
308 + 3: completed
309 + 4: failed
310 + - symbol:
311 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.21
312 + name: cpqRackServerBladeStatus
313 + tag: cpq_rack_server_blade_status
314 + mapping:
315 + 1: other
316 + 2: ok
317 + 3: degraded
318 + 4: failed
319 + - symbol:
320 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.25
321 + name: cpqRackServerBladePowered
322 + tag: cpq_rack_server_blade_powered
323 + mapping:
324 + 1: other
325 + 2: on
326 + 3: off
327 + 4: power_staged_off
328 + 5: reboot
329 + - symbol:
330 + OID: 1.3.6.1.4.1.232.22.2.4.1.1.1.26
331 + name: cpqRackServerBladeUIDState
332 + tag: cpq_rack_server_blade_uid_state
333 + mapping:
334 + 1: other
335 + 2: none
336 + 3: led_on
337 + 4: led_off
338 + - MIB: CPQRACK-MIB
339 + table:
340 + name: cpqRackServerTempSensorTable
341 + OID: 1.3.6.1.4.1.232.22.2.4.3.1
342 + symbols:
343 + - name: cpqRackServerTempSensorCurrent
344 + OID: 1.3.6.1.4.1.232.22.2.4.3.1.1.8
345 + metric_tags:
346 + - symbol:
347 + OID: 1.3.6.1.4.1.232.22.2.4.3.1.1.4
348 + name: cpqRackServerTempSensorName
349 + tag: cpq_rack_server_temp_sensor_name
350 + - symbol:
351 + OID: 1.3.6.1.4.1.232.22.2.4.3.1.1.7
352 + name: cpqRackServerTempSensorLocation
353 + tag: cpq_rack_server_temp_sensor_location
354 + - symbol:
355 + OID: 1.3.6.1.4.1.232.22.2.4.3.1.1.10
356 + name: cpqRackServerTempSensorCondition
357 + tag: cpq_rack_server_temp_sensor_condition
358 + mapping:
359 + 1: other
360 + 2: ok
361 + 3: degraded
362 + 4: failed
363 + - symbol:
364 + OID: 1.3.6.1.4.1.232.22.2.4.3.1.1.11
365 + name: cpqRackServerTempSensorType
366 + tag: cpq_rack_server_temp_sensor_type
367 + mapping:
368 + 1: other
369 + 5: blowout
370 + 9: caution
371 + 15: critical
372 + - MIB: CPQRACK-MIB
373 + table:
374 + name: cpqRackPowerSupplyTable
375 + OID: 1.3.6.1.4.1.232.22.2.5.1.1
376 + symbols:
377 + - name: cpqRackPowerSupplyCurPwrOutput
378 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.10
379 + - name: cpqRackPowerSupplyIntakeTemp
380 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.12
381 + - name: cpqRackPowerSupplyExhaustTemp
382 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.13
383 + metric_tags:
384 + - symbol:
385 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.4
386 + name: cpqRackPowerSupplyEnclosureName
387 + tag: cpq_rack_power_supply_enclosure_name
388 + - symbol:
389 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.5
390 + name: cpqRackPowerSupplySerialNum
391 + tag: cpq_rack_power_supply_serial_num
392 + - symbol:
393 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.6
394 + name: cpqRackPowerSupplyPartNumber
395 + tag: cpq_rack_power_supply_part_number
396 + - symbol:
397 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.7
398 + name: cpqRackPowerSupplySparePartNumber
399 + tag: cpq_rack_power_supply_spare_part_number
400 + - symbol:
401 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.8
402 + name: cpqRackPowerSupplyFWRev
403 + tag: cpq_rack_power_supply_fw_rev
404 + - symbol:
405 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.9
406 + name: cpqRackPowerSupplyMaxPwrOutput
407 + tag: cpq_rack_power_supply_max_pwr_output
408 + - symbol:
409 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.16
410 + name: cpqRackPowerSupplyPresent
411 + tag: cpq_rack_power_supply_present
412 + mapping:
413 + 1: other
414 + 2: absent
415 + 3: present
416 + - symbol:
417 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.18
418 + name: cpqRackPowerSupplyEnclosureSerialNum
419 + tag: cpq_rack_power_supply_enclosure_serial_num
420 + - symbol:
421 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.14
422 + name: cpqRackPowerSupplyStatus
423 + tag: cpq_rack_power_supply_status
424 + mapping:
425 + 1: no_error
426 + 2: general_failure
427 + 3: bist_failure
428 + 4: fan_failure
429 + 5: temp_failure
430 + 6: interlock_open
431 + 7: eprom_failed
432 + 8: vref_failed
433 + 9: dac_failed
434 + 10: ram_test_failed
435 + 11: voltage_channel_failed
436 + 12: orringdiode_failed
437 + 13: brown_out
438 + 14: giveup_on_startup
439 + 15: nvram_invalid
440 + 16: calibration_table_invalid
441 + - symbol:
442 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.15
443 + name: cpqRackPowerSupplyInputLineStatus
444 + tag: cpq_rack_power_supply_input_line_status
445 + mapping:
446 + 1: no_error
447 + 2: line_over_voltage
448 + 3: line_under_voltage
449 + 4: line_hit
450 + 5: brown_out
451 + 6: line_power_loss
452 + - symbol:
453 + OID: 1.3.6.1.4.1.232.22.2.5.1.1.1.17
454 + name: cpqRackPowerSupplyCondition
455 + tag: cpq_rack_power_supply_condition
456 + mapping:
457 + 1: other
458 + 2: ok
459 + 3: degraded
460 + 4: failed
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hpe-msa.yaml new
+160
@@ -0,0 +1,160 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _hp.yaml
4 + - _hp-base.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.11.2.51
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "storage"
12 +metrics:
13 + - MIB: FCMGMT-MIB
14 + table:
15 + OID: 1.3.6.1.3.94.1.8
16 + name: connUnitSensorTable
17 + symbols:
18 + - name: hpe.fibrechannel.connUnitSensor
19 + constant_value_one: true
20 +# - OID: 1.3.6.1.3.94.1.8.1.6
21 +# name: hpe.fibrechannel.connUnitSensorMessage
22 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
23 + metric_tags:
24 + - symbol:
25 + OID: 1.3.6.1.3.94.1.8.1.3
26 + name: connUnitSensorName
27 + tag: hpe_fibrechannel_conn_unit_sensor_name
28 + - symbol:
29 + OID: 1.3.6.1.3.94.1.8.1.8
30 + name: connUnitSensorCharacteristic
31 + tag: hpe_fibrechannel_conn_unit_sensor_characteristic
32 + mapping:
33 + 1: unknown
34 + 2: other
35 + 3: temperature
36 + 4: pressure
37 + 5: emf
38 + 6: current_value
39 + 7: airflow
40 + 8: frequency
41 + 9: power
42 + 10: door
43 + - symbol:
44 + OID: 1.3.6.1.3.94.1.8.1.4
45 + name: connUnitSensorStatus
46 + tag: hpe_fibrechannel_conn_unit_sensor_status
47 + mapping:
48 + 1: unknown
49 + 2: other
50 + 3: ok
51 + 4: warning
52 + 5: failed
53 + - MIB: FCMGMT-MIB
54 + table:
55 + OID: 1.3.6.1.3.94.1.10
56 + name: connUnitPortTable
57 + symbols:
58 + - name: hpe.fibrechannel.connUnitPort
59 + constant_value_one: true
60 + metric_tags:
61 + - symbol:
62 + OID: 1.3.6.1.3.94.1.10.1.3
63 + name: connUnitPortType
64 + tag: hpe_fibrechannel_conn_unit_port_type
65 + mapping:
66 + 1: unknown
67 + 2: other
68 + 3: not-present
69 + 4: hub-port
70 + 5: n-port
71 + 6: nl-port
72 + 7: fl-port
73 + 8: f-port
74 + 9: e-port
75 + 10: g-port
76 + 11: domain-ctl
77 + 12: hub-controller
78 + 13: scsi
79 + 14: escon
80 + 15: lan
81 + 16: wan
82 + 17: ac
83 + 18: dc
84 + 19: ssa
85 + - symbol:
86 + OID: 1.3.6.1.3.94.1.10.1.8
87 + name: connUnitPortTransmitterType
88 + tag: hpe_fibrechannel_conn_unit_port_transmitter_type
89 + mapping:
90 + 1: unknown
91 + 2: other
92 + 3: unused
93 + 4: shortwave
94 + 5: longwave
95 + 6: copper
96 + 7: scsi
97 + 8: longwave_no_ofc
98 + 9: shortwave_no_ofc
99 + 10: longwave_led
100 + 11: ssa
101 + - symbol:
102 + OID: 1.3.6.1.3.94.1.10.1.9
103 + name: connUnitPortModuleType
104 + tag: hpe_fibrechannel_conn_unit_port_module_type
105 + mapping:
106 + 1: unknown
107 + 2: other
108 + 3: gbic
109 + 4: embedded
110 + 5: glm
111 + 6: gbic_serial_id
112 + 7: gbic_no_serial_id
113 + 8: gbic_not_installed
114 + 9: small_form_factor
115 + - symbol:
116 + OID: 1.3.6.1.3.94.1.10.1.10
117 + name: connUnitPortWwn
118 + tag: hpe_fibrechannel_conn_unit_port_wwn
119 + - symbol:
120 + OID: 1.3.6.1.3.94.1.10.1.15
121 + name: connUnitPortSpeed
122 + tag: hpe_fibrechannel_conn_unit_port_speed
123 + - symbol:
124 + OID: 1.3.6.1.3.94.1.10.1.17
125 + name: connUnitPortName
126 + tag: hpe_fibrechannel_conn_unit_port_name
127 + - symbol:
128 + OID: 1.3.6.1.3.94.1.10.1.6
129 + name: connUnitPortState
130 + tag: hpe_fibrechannel_conn_unit_port_state
131 + mapping:
132 + 1: unknown
133 + 2: online
134 + 3: offline
135 + 4: bypassed
136 + 5: diagnostics
137 + - symbol:
138 + OID: 1.3.6.1.3.94.1.10.1.7
139 + name: connUnitPortStatus
140 + tag: hpe_fibrechannel_conn_unit_port_status
141 + mapping:
142 + 1: unknown
143 + 2: unused
144 + 3: ready
145 + 4: warning
146 + 5: failure
147 + 6: notparticipating
148 + 7: initializing
149 + 8: bypass
150 + 9: ols
151 +metric_tags:
152 + - tag: hpe_fibrechannel_cpq_si_sys_serial_num
153 + OID: 1.3.6.1.4.1.232.2.2.2.1
154 + symbol: cpqSiSysSerialNum
155 + - OID: 1.3.6.1.4.1.232.2.2.2.6
156 + symbol: cpqSiSysProductId
157 + tag: hpe_fibrechannel_cpq_si_sys_product_id
158 + - tag: hpe_fibrechannel_cpq_si_product_name
159 + OID: 1.3.6.1.4.1.232.2.2.4.2
160 + symbol: cpqSiProductName
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hpe-nimble.yaml new
+107
@@ -0,0 +1,107 @@
1 +extends:
2 + - _hp.yaml
3 + - _generic-if.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.37447.3.1
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "storage"
11 +metrics:
12 + - MIB: NIMBLE-MIB
13 + table:
14 + name: volTable
15 + OID: 1.3.6.1.4.1.37447.1.2
16 + symbols:
17 + - name: nimble.volSizeLow
18 + OID: 1.3.6.1.4.1.37447.1.2.1.4
19 + - name: nimble.volSizeHigh
20 + OID: 1.3.6.1.4.1.37447.1.2.1.5
21 + - name: nimble.volUsageLow
22 + OID: 1.3.6.1.4.1.37447.1.2.1.6
23 + - name: nimble.volUsageHigh
24 + OID: 1.3.6.1.4.1.37447.1.2.1.7
25 + - name: nimble.volReserveLow
26 + OID: 1.3.6.1.4.1.37447.1.2.1.8
27 + - name: nimble.volReserveHigh
28 + OID: 1.3.6.1.4.1.37447.1.2.1.9
29 + - name: nimble.volIoReads
30 + OID: 1.3.6.1.4.1.37447.1.2.1.13
31 + metric_type: monotonic_count
32 + - name: nimble.volIoWrites
33 + OID: 1.3.6.1.4.1.37447.1.2.1.34
34 + metric_type: monotonic_count
35 + metric_tags:
36 + - symbol:
37 + OID: 1.3.6.1.4.1.37447.1.2.1.3
38 + name: nimble.volName
39 + tag: nimble_vol_name
40 + - symbol:
41 + OID: 1.3.6.1.4.1.37447.1.2.1.10
42 + name: nimble.volOnline
43 + tag: nimble_vol_online
44 + mapping:
45 + 1: 'true'
46 + 2: 'false'
47 + - MIB: NIMBLE-MIB
48 + symbol:
49 + OID: 1.3.6.1.4.1.37447.1.3.2.0
50 + name: nimble.ioReads
51 + metric_type: monotonic_count
52 + - MIB: NIMBLE-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.37447.1.3.4.0
55 + name: nimble.ioWrites
56 + metric_type: monotonic_count
57 + - MIB: NIMBLE-MIB
58 + symbol:
59 + OID: 1.3.6.1.4.1.37447.1.3.6.0
60 + name: nimble.ioReadTimeMicrosec
61 + metric_type: monotonic_count
62 + - MIB: NIMBLE-MIB
63 + symbol:
64 + OID: 1.3.6.1.4.1.37447.1.3.7.0
65 + name: nimble.ioWriteTimeMicrosec
66 + metric_type: monotonic_count
67 + - MIB: NIMBLE-MIB
68 + symbol:
69 + OID: 1.3.6.1.4.1.37447.1.3.8.0
70 + name: nimble.ioReadBytes
71 + metric_type: monotonic_count
72 + - MIB: NIMBLE-MIB
73 + symbol:
74 + OID: 1.3.6.1.4.1.37447.1.3.9.0
75 + name: nimble.ioSeqReadBytes
76 + metric_type: monotonic_count
77 + - MIB: NIMBLE-MIB
78 + symbol:
79 + OID: 1.3.6.1.4.1.37447.1.3.10.0
80 + name: nimble.ioWriteBytes
81 + metric_type: monotonic_count
82 + - MIB: NIMBLE-MIB
83 + symbol:
84 + OID: 1.3.6.1.4.1.37447.1.3.11.0
85 + name: nimble.ioSeqWriteBytes
86 + metric_type: monotonic_count
87 + - MIB: NIMBLE-MIB
88 + symbol:
89 + OID: 1.3.6.1.4.1.37447.1.3.12.0
90 + name: nimble.diskVolBytesUsedLow
91 + - MIB: NIMBLE-MIB
92 + symbol:
93 + OID: 1.3.6.1.4.1.37447.1.3.13.0
94 + name: nimble.diskVolBytesUsedHigh
95 + - MIB: NIMBLE-MIB
96 + symbol:
97 + OID: 1.3.6.1.4.1.37447.1.3.14.0
98 + name: nimble.diskSnapBytesUsedLow
99 + - MIB: NIMBLE-MIB
100 + symbol:
101 + OID: 1.3.6.1.4.1.37447.1.3.15.0
102 + name: nimble.diskSnapBytesUsedHigh
103 + - MIB: NIMBLE-MIB
104 + symbol:
105 + OID: 1.3.6.1.4.1.37447.1.3.16.0
106 + name: nimble.ioNonseqReadHits
107 + metric_type: monotonic_count
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/hpe-proliant.yaml new
+151
@@ -0,0 +1,151 @@
1 +extends:
2 + - _hp.yaml
3 + - _hp-base.yaml
4 + - _hp-compaq-health.yaml
5 + - _hp-driver-stats.yaml
6 + - _generic-if.yaml
7 + - _generic-tcp.yaml
8 + - _generic-udp.yaml
9 + - _generic-ip.yaml
10 +
11 +device:
12 + vendor: "hp"
13 +
14 +sysobjectid: 1.3.6.1.4.1.232.*
15 +metadata:
16 + device:
17 + fields:
18 + product_name:
19 + value: ProLiant
20 + model:
21 + symbols:
22 + - MIB: CPQSINFO-MIB
23 + OID: 1.3.6.1.4.1.232.2.2.4.2
24 + name: cpqSiProductName
25 + extract_value: '\s*ProLiant\s*([-a-zA-Z0-9_ ]+)' # The product name. e.g. ProLiant BL35p G1, only extract "BL35p G1"
26 + - MIB: CPQSINFO-MIB
27 + OID: 1.3.6.1.4.1.232.2.2.4.2
28 + name: cpqSiProductName # Fallback if unable to parse the product name
29 +metrics:
30 + - MIB: CPQSTDEQ-MIB
31 + table:
32 + OID: 1.3.6.1.4.1.232.1.2.2.1
33 + name: cpqSeCpuTable
34 + symbols:
35 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.2
36 + name: cpqSeCpuSlot
37 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.4
38 + name: cpqSeCpuSpeed
39 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.6
40 + name: cpqSeCpuStatus
41 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.7
42 + name: cpqSeCpuExtSpeed
43 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.15
44 + name: cpqSeCpuCore
45 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.25
46 + name: cpqSeCPUCoreMaxThreads
47 + - OID: 1.3.6.1.4.1.232.1.2.2.1.1.27
48 + name: cpqSeCpuPrimary
49 + metric_tags:
50 + - symbol:
51 + OID: 1.3.6.1.4.1.232.1.2.2.1.1.1
52 + name: cpqSeCpuUnitIndex
53 + tag: cpu_index
54 + - MIB: CPQHOST-MIB
55 + table:
56 + OID: 1.3.6.1.4.1.232.11.2.3.1
57 + name: cpqHoCpuUtilTable
58 + symbols:
59 + - OID: 1.3.6.1.4.1.232.11.2.3.1.1.2
60 + name: cpqHoCpuUtilMin
61 + - OID: 1.3.6.1.4.1.232.11.2.3.1.1.3
62 + name: cpqHoCpuUtilFiveMin
63 + - OID: 1.3.6.1.4.1.232.11.2.3.1.1.4
64 + name: cpqHoCpuUtilThirtyMin
65 + - OID: 1.3.6.1.4.1.232.11.2.3.1.1.5
66 + name: cpqHoCpuUtilHour
67 + metric_tags:
68 + - symbol:
69 + OID: 1.3.6.1.4.1.232.11.2.3.1.1.1
70 + name: cpqHoCpuUtilUnitIndex
71 + tag: cpu_unit_index
72 + - MIB: CPQHOST-MIB
73 + table:
74 + OID: 1.3.6.1.4.1.232.11.2.4.1
75 + name: cpqHoFileSysTable
76 + symbols:
77 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.3
78 + name: cpqHoFileSysSpaceTotal
79 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.4
80 + name: cpqHoFileSysSpaceUsed
81 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.5
82 + name: cpqHoFileSysPercentSpaceUsed
83 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.6
84 + name: cpqHoFileSysAllocUnitsTotal
85 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.7
86 + name: cpqHoFileSysAllocUnitsUsed
87 + - OID: 1.3.6.1.4.1.232.11.2.4.1.1.8
88 + name: cpqHoFileSysStatus
89 + metric_tags:
90 + - symbol:
91 + OID: 1.3.6.1.4.1.232.11.2.4.1.1.1
92 + name: cpqHoFileSysIndex
93 + tag: file_sys_index
94 + - MIB: CPQSINFO-MIB
95 + table:
96 + OID: 1.3.6.1.4.1.232.2.2.4.5
97 + name: cpqSiMemModuleTable
98 + symbols:
99 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.3
100 + name: cpqSiMemModuleSize
101 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.4
102 + name: cpqSiMemModuleType
103 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.5
104 + name: cpqSiMemModuleSpeed
105 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.6
106 + name: cpqSiMemModuleTechnology
107 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.11
108 + name: cpqSiMemModuleECCStatus
109 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.13
110 + name: cpqSiMemModuleFrequency
111 + - OID: 1.3.6.1.4.1.232.2.2.4.5.1.15
112 + name: cpqSiMemModuleCellStatus
113 + metric_tags:
114 + - symbol:
115 + OID: 1.3.6.1.4.1.232.2.2.4.5.1.1
116 + name: cpqSiMemBoardIndex
117 + tag: mem_board_index
118 + - symbol:
119 + OID: 1.3.6.1.4.1.232.2.2.4.5.1.2
120 + name: cpqSiMemModuleIndex
121 + tag: mem_module_index
122 + - MIB: CPQNIC-MIB
123 + table:
124 + OID: 1.3.6.1.4.1.232.18.2.3.1
125 + name: cpqNicIfPhysAdapterTable
126 + symbols:
127 + - OID: 1.3.6.1.4.1.232.18.2.3.1.1.13
128 + name: cpqNicIfPhysAdapterState
129 + - OID: 1.3.6.1.4.1.232.18.2.3.1.1.14
130 + name: cpqNicIfPhysAdapterStatus
131 + metric_tags:
132 + - symbol:
133 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.4
134 + name: cpqNicIfPhysAdapterMACAddress
135 + tag: adapter_mac_addr
136 + - symbol:
137 + OID: 1.3.6.1.4.1.232.18.2.3.1.1.39
138 + name: cpqNicIfPhysAdapterName
139 + tag: adapter_name
140 + - MIB: CPQIDA-MIB
141 + table:
142 + OID: 1.3.6.1.4.1.232.3.2.2.1
143 + name: cpqDaCntlrTable
144 + symbols:
145 + - OID: 1.3.6.1.4.1.232.3.2.2.1.1.6
146 + name: cpqDaCntlrCondition
147 + metric_tags:
148 + - symbol:
149 + OID: 1.3.6.1.4.1.232.3.2.2.1.1.1
150 + name: cpqDaCntlrIndex
151 + tag: controller_index
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/huawei-access-controllers.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - _huawei.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.2011.2.240.6
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "access_point"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/huawei-routers.yaml new
+314
@@ -0,0 +1,314 @@
1 +extends:
2 + - huawei.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.2011.2.224.279
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "router"
10 +metrics:
11 + - MIB: HUAWEI-BGP-VPN-MIB
12 + table:
13 + name: hwBgpPeerTable
14 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2
15 + symbols:
16 + - name: huawei.hwBgpPeerNegotiatedVersion
17 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1
18 + - name: huawei.hwBgpPeerRemoteAs
19 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2
20 + - name: huawei.hwBgpPeerFsmEstablishedCounter
21 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6
22 + - name: huawei.hwBgpPeerFsmEstablishedTime
23 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7
24 + metric_tags:
25 + - symbol:
26 + name: huawei.hwBgpPeerVrfName
27 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6
28 + tag: huawei_hw_bgp_peer_vrf_name
29 + - symbol:
30 + name: huawei.hwBgpPeerRemoteAddr
31 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4
32 + format: ip_address
33 + tag: huawei_hw_bgp_peer_remote_addr
34 + - symbol:
35 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5
36 + name: huawei.hwBgpPeerState
37 + tag: huawei_hw_bgp_peer_state
38 + mapping:
39 + 1: idle
40 + 2: connect
41 + 3: active
42 + 4: opensent
43 + 5: openconfirm
44 + 6: established
45 + - symbol:
46 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10
47 + name: huawei.hwBgpPeerUnAvaiReason
48 + tag: huawei_hw_bgp_peer_un_avai_reason
49 + mapping:
50 + 1: configuration_lead_peer_down
51 + 2: receive_notification
52 + 3: receive_error_packet
53 + 4: hold_timer_expire
54 + 5: remote_peer_not_reachable
55 + 6: direct_connect_interface_down
56 + 7: route_limit
57 + # the mapping is defined in the metric description
58 + - MIB: HUAWEI-BGP-VPN-MIB
59 + table:
60 + name: hwBgpPeerRouteTable
61 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3
62 + symbols:
63 + - name: huawei.hwBgpPeerPrefixRcvCounter
64 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1
65 + metric_type: monotonic_count
66 + - name: huawei.hwBgpPeerPrefixActiveCounter
67 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2
68 + metric_type: monotonic_count
69 + - name: huawei.hwBgpPeerPrefixAdvCounter
70 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3
71 + metric_type: monotonic_count
72 + metric_tags:
73 + - symbol:
74 + name: huawei.hwBgpPeerVrfName
75 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6
76 + tag: huawei_hw_bgp_peer_vrf_name
77 + - symbol:
78 + name: huawei.hwBgpPeerRemoteAddr
79 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4
80 + format: ip_address
81 + tag: huawei_hw_bgp_peer_remote_addr
82 + - MIB: HUAWEI-BGP-VPN-MIB
83 + table:
84 + name: hwBgpPeerMessageTable
85 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4
86 + symbols:
87 + - name: huawei.hwBgpPeerInTotalMsgCounter
88 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.1
89 + metric_type: monotonic_count
90 + - name: huawei.hwBgpPeerOutTotalMsgCounter
91 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.2
92 + metric_type: monotonic_count
93 + - name: huawei.hwBgpPeerInOpenMsgCounter
94 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.3
95 + metric_type: monotonic_count
96 + - name: huawei.hwBgpPeerInUpdateMsgCounter
97 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.4
98 + metric_type: monotonic_count
99 + - name: huawei.hwBgpPeerInNotificationMsgCounter
100 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.5
101 + metric_type: monotonic_count
102 + - name: huawei.hwBgpPeerInKeepAliveMsgCounter
103 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.6
104 + metric_type: monotonic_count
105 + - name: huawei.hwBgpPeerInRouteFreshMsgCounter
106 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.7
107 + metric_type: monotonic_count
108 + - name: huawei.hwBgpPeerOutOpenMsgCounter
109 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.8
110 + metric_type: monotonic_count
111 + - name: huawei.hwBgpPeerOutUpdateMsgCounter
112 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.9
113 + metric_type: monotonic_count
114 + - name: huawei.hwBgpPeerOutNotificationMsgCounter
115 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.10
116 + metric_type: monotonic_count
117 + - name: huawei.hwBgpPeerOutKeepAliveMsgCounter
118 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.11
119 + metric_type: monotonic_count
120 + - name: huawei.hwBgpPeerOutRouteFreshMsgCounter
121 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.4.1.12
122 + metric_type: monotonic_count
123 + metric_tags:
124 + - symbol:
125 + name: huawei.hwBgpPeerVrfName
126 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6
127 + tag: huawei_hw_bgp_peer_vrf_name
128 + - symbol:
129 + name: huawei.hwBgpPeerRemoteAddr
130 + OID: 1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4
131 + format: ip_address
132 + tag: huawei_hw_bgp_peer_remote_addr
133 + - MIB: HUAWEI-DNS-MIB
134 + table:
135 + name: hwDnsHostsDynamicTable
136 + OID: 1.3.6.1.4.1.2011.5.25.194.1.1
137 + symbols:
138 + - name: huawei.hwDnsTtl
139 + OID: 1.3.6.1.4.1.2011.5.25.194.1.1.1.3
140 + metric_tags:
141 + - symbol:
142 + name: huawei.hwDnsDomainName
143 + OID: 1.3.6.1.4.1.2011.5.25.194.1.1.1.1
144 + tag: huawei_hw_dns_domain_name
145 + - symbol:
146 + name: huawei.hwDnsIpAddress
147 + OID: 1.3.6.1.4.1.2011.5.25.194.1.1.1.2
148 + tag: huawei_hw_dns_ip_address
149 + - symbol:
150 + name: huawei.hwDnsAlias
151 + OID: 1.3.6.1.4.1.2011.5.25.194.1.1.1.4
152 + tag: huawei_hw_dns_alias
153 + - MIB: HUAWEI-DNS-MIB
154 + table:
155 + name: hwDnsServerAddrTable
156 + OID: 1.3.6.1.4.1.2011.5.25.194.1.4
157 + symbols:
158 + - name: huawei.hwDnsServerAddr
159 + constant_value_one: true
160 + metric_tags:
161 + - symbol:
162 + name: huawei.hwServerAddr
163 + OID: 1.3.6.1.4.1.2011.5.25.194.1.4.1.1
164 + tag: huawei_hw_server_addr
165 + # - symbol:
166 + # OID: 1.3.6.1.4.1.2011.5.25.194.1.4.1.2
167 + # name: huawei.hwServerStatus
168 + # tag: huawei_hw_server_status
169 + # mapping:
170 + # 1: static
171 + # 2: dynamic
172 + # mapping absent in MIB
173 + - MIB: HUAWEI-FIREWALL-MIB
174 + table:
175 + name: hwFwNetEventsTable
176 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4
177 + symbols:
178 + - name: huawei.hwFwNetEvents
179 + constant_value_one: true
180 + metric_tags:
181 + - symbol:
182 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.4
183 + name: huawei.hwFwNetEventSrcIpAddress
184 + tag: huawei_hw_fw_net_event_src_ip_address
185 + - symbol:
186 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.7
187 + name: huawei.hwFwNetEventDstIpAddress
188 + tag: huawei_hw_fw_net_event_dst_ip_address
189 + - symbol:
190 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.2
191 + name: huawei.hwFwNetEventInterface
192 + tag: huawei_hw_fw_net_event_interface
193 + - symbol:
194 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.3
195 + name: huawei.hwFwNetEventSrcVrfName
196 + tag: huawei_hw_fw_net_event_src_vrf_name
197 + - symbol:
198 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.9
199 + name: huawei.hwFwNetEventSrcIpPort
200 + tag: huawei_hw_fw_net_event_src_ip_port
201 + - symbol:
202 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.11
203 + name: huawei.hwFwNetEventDstIpPort
204 + tag: huawei_hw_fw_net_event_dst_ip_port
205 + - symbol:
206 + OID: 1.3.6.1.4.1.2011.5.25.222.1.1.2.4.1.16
207 + name: huawei.hwFwNetEventDescription
208 + tag: huawei_hw_fw_net_event_description
209 + - MIB: HUAWEI-FIREWALL-MIB
210 + table:
211 + name: hwFwConnectionStatTable
212 + OID: 1.3.6.1.4.1.2011.5.25.222.1.2.2.2
213 + symbols:
214 + - name: huawei.hwFwConnectionStatCount
215 + OID: 1.3.6.1.4.1.2011.5.25.222.1.2.2.2.1.4
216 + metric_tags:
217 + - symbol:
218 + name: huawei.hwFwConnectionStatDescription
219 + OID: 1.3.6.1.4.1.2011.5.25.222.1.2.2.2.1.3
220 + tag: huawei_hw_fw_connection_stat_description
221 + - MIB: HUAWEI-NAT-EXT-MIB
222 + table:
223 + name: hwNatAddrPoolTable
224 + OID: 1.3.6.1.4.1.2011.5.25.226.2.3.2
225 + symbols:
226 + - name: huawei.hwNatAddrPoolRefTimes
227 + OID: 1.3.6.1.4.1.2011.5.25.226.2.3.2.1.4
228 + metric_tags:
229 + - symbol:
230 + name: huawei.hwNatAddrPoolStartAddr
231 + OID: 1.3.6.1.4.1.2011.5.25.226.2.3.2.1.2
232 + tag: huawei_hw_nat_addr_pool_start_addr
233 + - symbol:
234 + name: huawei.hwNatAddrPoolEndAddr
235 + OID: 1.3.6.1.4.1.2011.5.25.226.2.3.2.1.3
236 + tag: huawei_hw_nat_addr_pool_end_addr
237 + # the mapping value is ambiguous, difference between the type definition and the metric description
238 + # keep this commented until further investigated
239 + # - symbol:
240 + # name: huawei.hwNatAddrPoolRefType
241 + # OID: 1.3.6.1.4.1.2011.5.25.226.2.3.2.1.5
242 + # tag: huawei_hw_nat_addr_pool_ref_type
243 + # mapping:
244 + # 0: nopat
245 + # 1: pat
246 + # 2: easy_ip
247 + - MIB: HUAWEI-NAT-EXT-MIB
248 + table:
249 + name: hwNatSessionTable
250 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2
251 + symbols:
252 + - name: huawei.hwNatSession
253 + constant_value_one: true
254 + metric_tags:
255 + - symbol:
256 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.1
257 + name: huawei.hwNatSessionSrcLocalAddr
258 + tag: huawei_hw_nat_session_src_local_addr
259 + - symbol:
260 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.2
261 + name: huawei.hwNatSessionDstLocalAddr
262 + tag: huawei_hw_nat_session_dst_local_addr
263 + - symbol:
264 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.3
265 + name: huawei.hwNatSessionSrcLocalPort
266 + tag: huawei_hw_nat_session_src_local_port
267 + - symbol:
268 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.4
269 + name: huawei.hwNatSessionDstLocalPort
270 + tag: huawei_hw_nat_session_dst_local_port
271 + - symbol:
272 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.6
273 + name: huawei.hwNatSessionSrcGlobalAddr
274 + tag: huawei_hw_nat_session_src_global_addr
275 + - symbol:
276 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.7
277 + name: huawei.hwNatSessionDstGlobalAddr
278 + tag: huawei_hw_nat_session_dst_global_addr
279 + - symbol:
280 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.8
281 + name: huawei.hwNatSessionSrcGlobalPort
282 + tag: huawei_hw_nat_session_src_global_port
283 + - symbol:
284 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.9
285 + name: huawei.hwNatSessionDstGlobalPort
286 + tag: huawei_hw_nat_session_dst_global_port
287 + - symbol:
288 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.5
289 + name: huawei.hwNatSessionProtocol
290 + tag: huawei_hw_nat_session_protocol
291 + mapping:
292 + 1: other
293 + 2: icmp
294 + 3: udp
295 + 4: tcp
296 + - symbol:
297 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.10
298 + name: huawei.hwNatSessionSrcVPN
299 + tag: huawei_hw_nat_session_src_vpn
300 + - symbol:
301 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.11
302 + name: huawei.hwNatSessionDstVPN
303 + tag: huawei_hw_nat_session_dst_vpn
304 + - symbol:
305 + OID: 1.3.6.1.4.1.2011.5.25.226.2.14.2.1.12
306 + name: huawei.hwNatSessionStatus
307 + tag: huawei_hw_nat_session_status
308 + mapping:
309 + 1: active
310 + 2: not_in_service
311 + 3: not_ready
312 + 4: create_and_go
313 + 5: create_and_wait
314 + 6: destroy
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/huawei-switches.yaml new
+86
@@ -0,0 +1,86 @@
1 +extends:
2 + - huawei.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.2011.2.23.343
5 + - 1.3.6.1.4.1.2011.2.23.606
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "switch"
11 +metrics:
12 +# - MIB: HUAWEI-STACK-MIB
13 +# symbol:
14 +# name: huawei.hwStackTopoType
15 +# OID: 1.3.6.1.4.1.2011.5.25.183.1.2.0
16 +# enum:
17 +# ring: 1
18 +# link: 2
19 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
20 +# comment in profile until it's fixed)
21 +# - MIB: HUAWEI-STACK-MIB
22 +# symbol:
23 +# name: huawei.hwStackSystemMac
24 +# OID: 1.3.6.1.4.1.2011.5.25.183.1.4.0
25 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
26 +# - MIB: HUAWEI-STACK-MIB
27 +# symbol:
28 +# name: huawei.hwStackIsStackDevice
29 +# OID: 1.3.6.1.4.1.2011.5.25.183.1.5.0
30 +# enum:
31 +# true: 1
32 +# false: 2
33 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
34 +# comment in profile until it's fixed)
35 + - MIB: HUAWEI-STACK-MIB
36 + symbol:
37 + name: huawei.hwStackReservedVlanId
38 + OID: 1.3.6.1.4.1.2011.5.25.183.1.6.0
39 + - MIB: HUAWEI-STACK-MIB
40 + table:
41 + name: hwStackMemberInfoTable
42 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20
43 + symbols:
44 + - name: huawei.hwMemberStackPriority
45 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.2
46 + metric_tags:
47 + - symbol:
48 + name: huawei.hwMemberStackMacAddress
49 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.4
50 + format: mac_address
51 + tag: huawei_hw_member_stack_mac_address
52 + - symbol:
53 + name: huawei.hwMemberStackDeviceType
54 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.5
55 + tag: huawei_hw_member_stack_device_type
56 + - symbol:
57 + name: huawei.hwMemberStackObjectId
58 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.7
59 + tag: huawei_hw_member_stack_object_id
60 + - symbol:
61 + OID: 1.3.6.1.4.1.2011.5.25.183.1.20.1.3
62 + name: huawei.hwMemberStackRole
63 + tag: huawei_hw_member_stack_role
64 + mapping:
65 + 1: master
66 + 2: standby
67 + 3: slave
68 + - MIB: HUAWEI-STACK-MIB
69 + table:
70 + name: hwStackPortTable
71 + OID: 1.3.6.1.4.1.2011.5.25.183.1.21
72 + symbols:
73 + - name: huawei.hwStackPort
74 + constant_value_one: true
75 + metric_tags:
76 + - symbol:
77 + name: huawei.hwStackPortName
78 + OID: 1.3.6.1.4.1.2011.5.25.183.1.21.1.3
79 + tag: huawei_hw_stack_port_name
80 + - symbol:
81 + OID: 1.3.6.1.4.1.2011.5.25.183.1.21.1.5
82 + name: huawei.hwStackPortStatus
83 + tag: huawei_hw_stack_port_status
84 + mapping:
85 + 1: up
86 + 2: down
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/huawei.yaml new
+230
@@ -0,0 +1,230 @@
1 +extends:
2 + - _huawei.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.2011.2.*
6 +
7 +metrics:
8 + - MIB: HUAWEI-ENTITY-EXTENT-MIB
9 + table:
10 + name: hwEntityStateTable
11 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1
12 + symbols:
13 +# - name: cpu.usage
14 +# OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5
15 +# condition: hwEntityStandbyStatus=4
16 +# - name: memory.usage
17 +# OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7
18 +# condition: hwEntityStandbyStatus=4
19 +# TODO : Handle conditional metric collection NDM-2232
20 + - name: huawei.hwEntityTemperature
21 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11
22 + - name: huawei.hwEntityVoltage
23 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13
24 + metric_tags:
25 + - symbol:
26 + name: huawei.hwEntityBoardName
27 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43
28 + tag: huawei_hw_entity_board_name
29 + - symbol:
30 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1
31 + name: huawei.hwEntityAdminStatus
32 + tag: huawei_hw_entity_admin_status
33 + mapping:
34 + 1: not_supported
35 + 2: locked
36 + 3: shutting_down
37 + 4: unlocked
38 + 11: up
39 + 12: down
40 + 13: loopback
41 + - symbol:
42 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2
43 + name: huawei.hwEntityOperStatus
44 + tag: huawei_hw_entity_oper_status
45 + mapping:
46 + 1: not_supported
47 + 2: disabled
48 + 3: enabled
49 + 4: offline
50 + 11: up
51 + 12: down
52 + 13: connect
53 + 15: protocol_up
54 + 16: link_up
55 + 17: link_down
56 + 18: present
57 + 19: absent
58 + - symbol:
59 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3
60 + name: huawei.hwEntityStandbyStatus
61 + tag: huawei_hw_entity_standby_status
62 + mapping:
63 + 1: not_supported
64 + 2: hot_standby
65 + 3: cold_standby
66 + 4: providing_service
67 + - symbol:
68 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.42
69 + name: huawei.hwEntityFaultLight
70 + tag: huawei_hw_entity_fault_light
71 + mapping:
72 + 1: not_supported
73 + 2: normal
74 + 3: under_repair
75 + - MIB: HUAWEI-ENTITY-EXTENT-MIB
76 + table:
77 + name: hwFanStatusTable
78 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10
79 + symbols:
80 + - name: huawei.hwEntityFanSpeed
81 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.5
82 + metric_tags:
83 + - symbol:
84 + name: huawei.hwEntityFanSlot
85 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1
86 + tag: huawei_hw_entity_fan_slot
87 + - symbol:
88 + name: huawei.hwEntityFanSn
89 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.2
90 + tag: huawei_hw_entity_fan_sn
91 + - symbol:
92 + name: huawei.hwEntityFanReg
93 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.3
94 + tag: huawei_hw_entity_fan_reg
95 + mapping:
96 + 1: yes
97 + 2: no
98 + - symbol:
99 + name: huawei.hwEntityFanSpdAdjMode
100 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.4
101 + tag: huawei_hw_entity_fan_spd_adj_mode
102 + mapping:
103 + 1: auto
104 + 2: manual
105 + 3: unknown
106 + 4: silent
107 + - symbol:
108 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.6
109 + name: huawei.hwEntityFanPresent
110 + tag: huawei_hw_entity_fan_present
111 + mapping:
112 + 1: present
113 + 2: absent
114 + - symbol:
115 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7
116 + name: huawei.hwEntityFanState
117 + tag: huawei_hw_entity_fan_state
118 + mapping:
119 + 1: normal
120 + 2: abnormal
121 + - MIB: HUAWEI-ENTITY-EXTENT-MIB
122 + table:
123 + name: hwSystemPowerTable
124 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14
125 + symbols:
126 + - name: huawei.hwSystemPowerTotalPower
127 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.2
128 + - name: huawei.hwSystemPowerUsedPower
129 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.3
130 + - name: huawei.hwSystemPowerRemainPower
131 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.4
132 + metric_tags:
133 + - symbol:
134 + name: huawei.hwSystemPowerDeviceID
135 + OID: 1.3.6.1.4.1.2011.5.25.31.1.1.14.1.1
136 + tag: huawei_hw_system_power_device_id
137 + - MIB: HUAWEI-OSPFV2-MIB
138 + table:
139 + name: hwOspfv2NeighborTable
140 + OID: 1.3.6.1.4.1.2011.5.25.155.6
141 + symbols:
142 + - name: huawei.hwOspfv2NbrPriority
143 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.12
144 + - name: huawei.hwOspfv2NbrUpTime
145 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.13
146 + - name: huawei.hwOspfv2NbrDeadTimeLeft
147 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.15
148 + metric_tags:
149 + - symbol:
150 + name: huawei.hwOspfv2SelfRouterId
151 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.3
152 + tag: huawei_hw_ospfv2_self_router_id
153 + - symbol:
154 + name: huawei.hwOspfv2NbrRouterId
155 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.9
156 + tag: huawei_hw_ospfv2_neighbor_router_id
157 + - symbol:
158 + name: huawei.hwOspfv2SelfIfIpAddress
159 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.4
160 + tag: huawei_hw_ospfv2_self_if_ip_address
161 + - symbol:
162 + name: huawei.hwOspfv2SelfIfName
163 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.5
164 + tag: huawei_hw_ospfv2_self_if_name
165 + - symbol:
166 + name: huawei.hwOspfv2NbrIfDesignatedRouter
167 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.6
168 + tag: huawei_hw_ospfv2_nbr_if_designated_router
169 + - symbol:
170 + name: huawei.hwOspfv2NbrIfBackupDesignatedRouter
171 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.7
172 + tag: huawei_hw_ospfv2_nbr_if_backup_designated_router
173 + - symbol:
174 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.10
175 + name: huawei.hwOspfv2NbrState
176 + tag: huawei_hw_ospfv2_nbr_state
177 + mapping:
178 + 1: down
179 + 2: attempt
180 + 3: init
181 + 4: two_way
182 + 5: exchange_start
183 + 6: exchange
184 + 7: loading
185 + 8: full
186 + - symbol:
187 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.11
188 + name: huawei.hwOspfv2NbrMode
189 + tag: huawei_hw_ospfv2_nbr_mode
190 + mapping:
191 + 1: master
192 + 2: slave
193 + - symbol:
194 + OID: 1.3.6.1.4.1.2011.5.25.155.6.1.16
195 + name: huawei.hwOspfv2NbrGrStatus
196 + tag: huawei_hw_ospfv2_nbr_gr_status
197 + mapping:
198 + 1: normal
199 + 2: doing_gr
200 + 3: helper
201 + 4: notsupport
202 + - MIB: HUAWEI-DEVICE-MIB
203 + table:
204 + name: hwCpuDevTable
205 + OID: 1.3.6.1.4.1.2011.6.3.4
206 + symbols:
207 + - name: huawei.hwAvgDuty1min
208 + OID: 1.3.6.1.4.1.2011.6.3.4.1.3
209 + metric_tags:
210 + - tag: cpu
211 + index: 1
212 + - MIB: HUAWEI-DEVICE-MIB
213 + table:
214 + name: hwMemoryDevTable
215 + OID: 1.3.6.1.4.1.2011.6.3.5.1
216 + symbols:
217 + - name: huawei.hwMemoryDevSize
218 + OID: 1.3.6.1.4.1.2011.6.3.5.1.1.2
219 + metric_type: monotonic_count
220 + - name: huawei.hwMemoryDevFree
221 + OID: 1.3.6.1.4.1.2011.6.3.5.1.1.3
222 + metric_type: monotonic_count
223 + metric_tags:
224 + - tag: mem
225 + index: 1
226 +
227 +metric_tags:
228 + - OID: 1.3.6.1.4.1.2011.5.25.31.6.5.0
229 + symbol: hwEntitySystemModel
230 + tag: huawei_hw_entity_system_model
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ibm-datapower-gateway.yaml new
+276
@@ -0,0 +1,276 @@
1 +extends:
2 + - ibm.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.14685.1.8
5 +metrics:
6 + - MIB: DATAPOWER-STATUS-MIB
7 + symbol:
8 + name: cpu.usage
9 + OID: 1.3.6.1.4.1.14685.3.1.14.2.0 # dpStatusCPUUsageoneMinute
10 + - MIB: DATAPOWER-STATUS-MIB
11 + symbol:
12 + name: memory.usage
13 + OID: 1.3.6.1.4.1.14685.3.1.5.1.0 # dpStatusMemoryStatusUsage
14 + - MIB: DATAPOWER-STATUS-MIB
15 + symbol:
16 + name: ibm.dpStatusSystemUsageLoad
17 + OID: 1.3.6.1.4.1.14685.3.1.52.2.0
18 + - MIB: DATAPOWER-STATUS-MIB
19 + symbol:
20 + name: ibm.dpStatusTCPSummaryestablished
21 + OID: 1.3.6.1.4.1.14685.3.1.12.1.0
22 + - MIB: DATAPOWER-STATUS-MIB
23 + symbol:
24 + name: ibm.dpStatusTCPSummarysynsent
25 + OID: 1.3.6.1.4.1.14685.3.1.12.2.0
26 + - MIB: DATAPOWER-STATUS-MIB
27 + symbol:
28 + name: ibm.dpStatusTCPSummarysynreceived
29 + OID: 1.3.6.1.4.1.14685.3.1.12.3.0
30 + - MIB: DATAPOWER-STATUS-MIB
31 + symbol:
32 + name: ibm.dpStatusTCPSummaryfinwait1
33 + OID: 1.3.6.1.4.1.14685.3.1.12.4.0
34 + - MIB: DATAPOWER-STATUS-MIB
35 + symbol:
36 + name: ibm.dpStatusTCPSummaryfinwait2
37 + OID: 1.3.6.1.4.1.14685.3.1.12.5.0
38 + - MIB: DATAPOWER-STATUS-MIB
39 + symbol:
40 + name: ibm.dpStatusTCPSummarytimewait
41 + OID: 1.3.6.1.4.1.14685.3.1.12.6.0
42 + - MIB: DATAPOWER-STATUS-MIB
43 + symbol:
44 + name: ibm.dpStatusTCPSummaryclosed
45 + OID: 1.3.6.1.4.1.14685.3.1.12.7.0
46 + - MIB: DATAPOWER-STATUS-MIB
47 + symbol:
48 + name: ibm.dpStatusTCPSummaryclosewait
49 + OID: 1.3.6.1.4.1.14685.3.1.12.8.0
50 + - MIB: DATAPOWER-STATUS-MIB
51 + symbol:
52 + name: ibm.dpStatusTCPSummarylastack
53 + OID: 1.3.6.1.4.1.14685.3.1.12.9.0
54 + - MIB: DATAPOWER-STATUS-MIB
55 + symbol:
56 + name: ibm.dpStatusTCPSummarylisten
57 + OID: 1.3.6.1.4.1.14685.3.1.12.10.0
58 + - MIB: DATAPOWER-STATUS-MIB
59 + symbol:
60 + name: ibm.dpStatusTCPSummaryclosing
61 + OID: 1.3.6.1.4.1.14685.3.1.12.11.0
62 + - MIB: DATAPOWER-STATUS-MIB
63 + symbol:
64 + name: ibm.dpStatusConnectionsAcceptedtenSeconds
65 + OID: 1.3.6.1.4.1.14685.3.1.13.1.0
66 + - MIB: DATAPOWER-STATUS-MIB
67 + symbol:
68 + name: ibm.dpStatusConnectionsAcceptedoneMinute
69 + OID: 1.3.6.1.4.1.14685.3.1.13.2.0
70 + - MIB: DATAPOWER-STATUS-MIB
71 + symbol:
72 + name: ibm.dpStatusConnectionsAcceptedtenMinutes
73 + OID: 1.3.6.1.4.1.14685.3.1.13.3.0
74 + - MIB: DATAPOWER-STATUS-MIB
75 + symbol:
76 + name: ibm.dpStatusConnectionsAcceptedoneHour
77 + OID: 1.3.6.1.4.1.14685.3.1.13.4.0
78 + - MIB: DATAPOWER-STATUS-MIB
79 + symbol:
80 + name: ibm.dpStatusConnectionsAcceptedoneDay
81 + OID: 1.3.6.1.4.1.14685.3.1.13.5.0
82 + - MIB: DATAPOWER-STATUS-MIB
83 + symbol:
84 + name: ibm.dpStatusFilesystemStatusFreeEncrypted
85 + OID: 1.3.6.1.4.1.14685.3.1.29.1.0
86 + - MIB: DATAPOWER-STATUS-MIB
87 + symbol:
88 + name: ibm.dpStatusFilesystemStatusTotalEncrypted
89 + OID: 1.3.6.1.4.1.14685.3.1.29.2.0
90 + - MIB: DATAPOWER-STATUS-MIB
91 + symbol:
92 + name: ibm.dpStatusFilesystemStatusFreeTemporary
93 + OID: 1.3.6.1.4.1.14685.3.1.29.5.0
94 + - MIB: DATAPOWER-STATUS-MIB
95 + symbol:
96 + name: ibm.dpStatusFilesystemStatusTotalTemporary
97 + OID: 1.3.6.1.4.1.14685.3.1.29.6.0
98 + - MIB: DATAPOWER-STATUS-MIB
99 + symbol:
100 + name: ibm.dpStatusFilesystemStatusFreeInternal
101 + OID: 1.3.6.1.4.1.14685.3.1.29.7.0
102 + - MIB: DATAPOWER-STATUS-MIB
103 + symbol:
104 + name: ibm.dpStatusFilesystemStatusTotalInternal
105 + OID: 1.3.6.1.4.1.14685.3.1.29.8.0
106 + - MIB: DATAPOWER-STATUS-MIB
107 + symbol:
108 + name: ibm.dpStatusEnvironmentalSensorssystemTemp
109 + OID: 1.3.6.1.4.1.14685.3.1.55.1.0
110 + - MIB: DATAPOWER-STATUS-MIB
111 + symbol:
112 + name: ibm.dpStatusEnvironmentalSensorscpu1Temp
113 + OID: 1.3.6.1.4.1.14685.3.1.55.2.0
114 + - MIB: DATAPOWER-STATUS-MIB
115 + symbol:
116 + name: ibm.dpStatusEnvironmentalSensorscpu2Temp
117 + OID: 1.3.6.1.4.1.14685.3.1.55.3.0
118 + - MIB: DATAPOWER-STATUS-MIB
119 + symbol:
120 + name: ibm.dpStatusEnvironmentalSensorscpu1rpm
121 + OID: 1.3.6.1.4.1.14685.3.1.55.4.0
122 + - MIB: DATAPOWER-STATUS-MIB
123 + symbol:
124 + name: ibm.dpStatusEnvironmentalSensorscpu2rpm
125 + OID: 1.3.6.1.4.1.14685.3.1.55.5.0
126 + - MIB: DATAPOWER-STATUS-MIB
127 + symbol:
128 + name: ibm.dpStatusEnvironmentalSensorschassis1rpm
129 + OID: 1.3.6.1.4.1.14685.3.1.55.6.0
130 + - MIB: DATAPOWER-STATUS-MIB
131 + symbol:
132 + name: ibm.dpStatusEnvironmentalSensorschassis2rpm
133 + OID: 1.3.6.1.4.1.14685.3.1.55.7.0
134 + - MIB: DATAPOWER-STATUS-MIB
135 + symbol:
136 + name: ibm.dpStatusEnvironmentalSensorschassis3rpm
137 + OID: 1.3.6.1.4.1.14685.3.1.55.8.0
138 +# - MIB: DATAPOWER-STATUS-MIB
139 +# symbol:
140 +# name: ibm.dpStatusEnvironmentalSensorsCaseOpen
141 +# OID: 1.3.6.1.4.1.14685.3.1.55.9.0
142 +# enum:
143 +# yes: 1
144 +# no: 2
145 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
146 +# comment in profile until it's fixed)
147 +# - MIB: DATAPOWER-STATUS-MIB
148 +# symbol:
149 +# name: ibm.dpStatusEnvironmentalSensorsPowerSupply
150 +# OID: 1.3.6.1.4.1.14685.3.1.55.13.0
151 +# enum:
152 +# ok: 1
153 +# power-1-failure: 2
154 +# power-2-failure: 3
155 +# power-1-ac-lost: 4
156 +# power-2-ac-lost: 5
157 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
158 +# comment in profile until it's fixed)
159 + - MIB: DATAPOWER-STATUS-MIB
160 + table:
161 + name: dpStatusLogTargetStatusTable
162 + OID: 1.3.6.1.4.1.14685.3.1.28
163 + symbols:
164 + - name: ibm.dpStatusLogTargetStatusEventsProcessed
165 + OID: 1.3.6.1.4.1.14685.3.1.28.1.3
166 + metric_type: monotonic_count
167 + - name: ibm.dpStatusLogTargetStatusEventsDropped
168 + OID: 1.3.6.1.4.1.14685.3.1.28.1.4
169 + metric_type: monotonic_count
170 + - name: ibm.dpStatusLogTargetStatusEventsPending
171 + OID: 1.3.6.1.4.1.14685.3.1.28.1.5
172 + metric_type: monotonic_count
173 + metric_tags:
174 + - symbol:
175 + name: ibm.dpStatusLogTargetStatusLogTarget
176 + OID: 1.3.6.1.4.1.14685.3.1.28.1.1
177 + tag: ibm_dp_status_log_target_status_log_target
178 + - symbol:
179 + OID: 1.3.6.1.4.1.14685.3.1.28.1.2
180 + name: ibm.dpStatusLogTargetStatusStatus
181 + tag: ibm_dp_status_log_target_status_status
182 + mapping:
183 + 1: active
184 + 2: warning
185 + 3: failure
186 + 4: suspended
187 +# - symbol:
188 +# OID: 1.3.6.1.4.1.14685.3.1.28.1.6
189 +# name: ibm.dpStatusLogTargetStatusErrorInfo
190 +# tag: ibm_dp_status_log_target_status_error_info
191 +# TODO : This tag might have high cardinality, to be investigated before adding
192 + - MIB: DATAPOWER-STATUS-MIB
193 + table:
194 + name: dpStatusNetworkInterfaceStatusTable
195 + OID: 1.3.6.1.4.1.14685.3.1.124
196 + symbols:
197 + - name: ibm.dpStatusNetworkInterfaceStatusRxHCBytes
198 + OID: 1.3.6.1.4.1.14685.3.1.124.1.19
199 + metric_type: monotonic_count
200 + - name: ibm.dpStatusNetworkInterfaceStatusRxHCPackets
201 + OID: 1.3.6.1.4.1.14685.3.1.124.1.20
202 + metric_type: monotonic_count
203 + - name: ibm.dpStatusNetworkInterfaceStatusRxErrors2
204 + OID: 1.3.6.1.4.1.14685.3.1.124.1.21
205 + metric_type: monotonic_count
206 + - name: ibm.dpStatusNetworkInterfaceStatusRxDrops2
207 + OID: 1.3.6.1.4.1.14685.3.1.124.1.22
208 + metric_type: monotonic_count
209 + - name: ibm.dpStatusNetworkInterfaceStatusTxHCBytes
210 + OID: 1.3.6.1.4.1.14685.3.1.124.1.23
211 + metric_type: monotonic_count
212 + - name: ibm.dpStatusNetworkInterfaceStatusTxHCPackets
213 + OID: 1.3.6.1.4.1.14685.3.1.124.1.24
214 + metric_type: monotonic_count
215 + - name: ibm.dpStatusNetworkInterfaceStatusTxErrors2
216 + OID: 1.3.6.1.4.1.14685.3.1.124.1.25
217 + metric_type: monotonic_count
218 + - name: ibm.dpStatusNetworkInterfaceStatusTxDrops2
219 + OID: 1.3.6.1.4.1.14685.3.1.124.1.26
220 + metric_type: monotonic_count
221 + metric_tags:
222 + - symbol:
223 + name: ibm.dpStatusNetworkInterfaceStatusInterfaceType
224 + OID: 1.3.6.1.4.1.14685.3.1.124.1.2
225 + tag: ibm_dp_status_network_interface_status_interface_type
226 + mapping:
227 + 1: other
228 + 6: ethernet
229 + 131: tunnel
230 + 135: vlan
231 + 161: aggregate
232 + - symbol:
233 + name: ibm.dpStatusNetworkInterfaceStatusName
234 + OID: 1.3.6.1.4.1.14685.3.1.124.1.3
235 + tag: ibm_dp_status_network_interface_status_name
236 + - symbol:
237 + name: ibm.dpStatusNetworkInterfaceStatusIPType
238 + OID: 1.3.6.1.4.1.14685.3.1.124.1.6
239 + tag: ibm_dp_status_network_interface_status_ip_type
240 + mapping:
241 + 0: unknown
242 + 1: ipv4
243 + 2: ipv6
244 + 3: ipv4z
245 + 4: ipv6z
246 + 16: dns
247 + 25: l2vpn
248 + - symbol:
249 + name: ibm.dpStatusNetworkInterfaceStatusIP
250 + OID: 1.3.6.1.4.1.14685.3.1.124.1.7
251 + format: ip_address
252 + tag: ibm_dp_status_network_interface_status_ip
253 + - symbol:
254 + name: ibm.dpStatusNetworkInterfaceStatusMACAddress
255 + OID: 1.3.6.1.4.1.14685.3.1.124.1.9
256 + format: mac_address
257 + tag: ibm_dp_status_network_interface_status_mac_address
258 + - symbol:
259 + OID: 1.3.6.1.4.1.14685.3.1.124.1.4
260 + name: ibm.dpStatusNetworkInterfaceStatusAdminStatus
261 + tag: ibm_dp_status_network_interface_status_admin_status
262 + mapping:
263 + 1: up
264 + 2: down
265 + - symbol:
266 + OID: 1.3.6.1.4.1.14685.3.1.124.1.5
267 + name: ibm.dpStatusNetworkInterfaceStatusOperStatus
268 + tag: ibm_dp_status_network_interface_status_oper_status
269 + mapping:
270 + 1: up
271 + 2: down
272 + 3: testing
273 + 4: unknown
274 + 5: dormant
275 + 6: not_present
276 + 7: lower_layer_down
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ibm-lenovo-server.yaml new
+160
@@ -0,0 +1,160 @@
1 +extends:
2 + - _generic-host-resources-base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 + - ibm.yaml
6 +sysobjectid:
7 + - 1.3.6.1.4.1.2.3.51.3
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "server"
13 +metrics:
14 +# - MIB: IMM-MIB
15 +# symbol:
16 +# name: ibm.imm.systemHealthStat
17 +# OID: 1.3.6.1.4.1.2.3.51.3.1.4.1.0
18 +# enum:
19 +# onRecoverable: 0
20 +# critical: 2
21 +# nonCritical: 4
22 +# normal: 255
23 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
24 +# comment in profile until it's fixed)
25 + - MIB: IMM-MIB
26 + table:
27 + name: tempTable
28 + OID: 1.3.6.1.4.1.2.3.51.3.1.1.2
29 + symbols:
30 + - name: ibm.imm.tempReading
31 + OID: 1.3.6.1.4.1.2.3.51.3.1.1.2.1.3
32 + metric_tags:
33 + - symbol:
34 + name: ibm.imm.tempDescr
35 + OID: 1.3.6.1.4.1.2.3.51.3.1.1.2.1.2
36 + tag: ibm_imm_temp_descr
37 + - symbol:
38 + OID: 1.3.6.1.4.1.2.3.51.3.1.1.2.1.11
39 + name: ibm.imm.tempHealthStatus
40 + tag: ibm_imm_temp_health_status
41 + - MIB: IMM-MIB
42 + table:
43 + name: voltTable
44 + OID: 1.3.6.1.4.1.2.3.51.3.1.2.2
45 + symbols:
46 + - name: ibm.imm.voltReading
47 + OID: 1.3.6.1.4.1.2.3.51.3.1.2.2.1.3
48 + metric_tags:
49 + - symbol:
50 + name: ibm.imm.voltDescr
51 + OID: 1.3.6.1.4.1.2.3.51.3.1.2.2.1.2
52 + tag: ibm_imm_volt_descr
53 + - symbol:
54 + OID: 1.3.6.1.4.1.2.3.51.3.1.2.2.1.11
55 + name: ibm.imm.voltHealthStatus
56 + tag: ibm_imm_volt_health_status
57 + - MIB: IMM-MIB
58 + table:
59 + name: fanTable
60 + OID: 1.3.6.1.4.1.2.3.51.3.1.3.2
61 + symbols:
62 + - name: ibm.imm.fanSpeed
63 + OID: 1.3.6.1.4.1.2.3.51.3.1.3.2.1.3
64 + extract_value: '(\d+)%' # Example value : '74% of maximum'
65 + metric_tags:
66 + - symbol:
67 + name: ibm.imm.fanDescr
68 + OID: 1.3.6.1.4.1.2.3.51.3.1.3.2.1.2
69 + tag: ibm_imm_fan_descr
70 + - symbol:
71 + OID: 1.3.6.1.4.1.2.3.51.3.1.3.2.1.10
72 + name: ibm.imm.fanHealthStatus
73 + tag: ibm_imm_fan_health_status
74 + - MIB: IMM-MIB
75 + table:
76 + name: systemHealthSummaryTable
77 + OID: 1.3.6.1.4.1.2.3.51.3.1.4.2
78 + symbols:
79 + - name: ibm.imm.systemHealthSummary
80 + constant_value_one: true
81 + metric_tags:
82 + - symbol:
83 + name: ibm.imm.systemHealthSummaryDescription
84 + OID: 1.3.6.1.4.1.2.3.51.3.1.4.2.1.3
85 + tag: ibm_imm_system_health_summary_description
86 + - symbol:
87 + OID: 1.3.6.1.4.1.2.3.51.3.1.4.2.1.2
88 + name: ibm.imm.systemHealthSummarySeverity
89 + tag: ibm_imm_system_health_summary_severity
90 + - MIB: IMM-MIB
91 + table:
92 + name: systemCPUVpdTable
93 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.20
94 + symbols:
95 + - name: ibm.imm.systemCPUVpd
96 + constant_value_one: true
97 + metric_tags:
98 + - symbol:
99 + name: ibm.imm.cpuVpdDescription
100 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.20.1.2
101 + tag: ibm_imm_cpu_vpd_description
102 + - symbol:
103 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.20.1.11
104 + name: ibm.imm.cpuVpdHealthStatus
105 + tag: ibm_imm_cpu_vpd_health_status
106 + - MIB: IMM-MIB
107 + table:
108 + name: systemMemoryVpdTable
109 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.21
110 + symbols:
111 + - name: ibm.imm.systemMemoryVpd
112 + constant_value_one: true
113 + metric_tags:
114 + - symbol:
115 + name: ibm.imm.memoryVpdDescription
116 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.21.1.2
117 + tag: ibm_imm_memory_vpd_description
118 + - symbol:
119 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.21.1.8
120 + name: ibm.imm.memoryHealthStatus
121 + tag: ibm_imm_memory_health_status
122 + - MIB: IMM-MIB
123 + table:
124 + name: powerTable
125 + OID: 1.3.6.1.4.1.2.3.51.3.1.11.2
126 + symbols:
127 + - name: ibm.imm.power
128 + constant_value_one: true
129 + metric_tags:
130 + - symbol:
131 + name: ibm.imm.powerFruName
132 + OID: 1.3.6.1.4.1.2.3.51.3.1.11.2.1.2
133 + tag: ibm_imm_power_fru_name
134 + - symbol:
135 + OID: 1.3.6.1.4.1.2.3.51.3.1.11.2.1.6
136 + name: ibm.imm.powerHealthStatus
137 + tag: ibm_imm_power_health_status
138 + - MIB: IMM-MIB
139 + table:
140 + name: diskTable
141 + OID: 1.3.6.1.4.1.2.3.51.3.1.12.2
142 + symbols:
143 + - name: ibm.imm.disk
144 + constant_value_one: true
145 + metric_tags:
146 + - symbol:
147 + name: ibm.imm.diskFruName
148 + OID: 1.3.6.1.4.1.2.3.51.3.1.12.2.1.2
149 + tag: ibm_imm_disk_fru_name
150 + - symbol:
151 + OID: 1.3.6.1.4.1.2.3.51.3.1.12.2.1.3
152 + name: ibm.imm.diskHealthStatus
153 + tag: ibm_imm_disk_health_status
154 +metric_tags:
155 + - tag: ibm_imm_machine_level_serial_number
156 + OID: 1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0
157 + symbol: machineLevelSerialNumber
158 + - OID: 1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0
159 + symbol: machineLevelProductName
160 + tag: ibm_imm_machine_level_product_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ibm.yaml new
+7
@@ -0,0 +1,7 @@
1 +extends:
2 + - _base.yaml
3 +metadata:
4 + device:
5 + fields:
6 + vendor:
7 + value: "ibm"
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/idrac.yaml new
+55
@@ -0,0 +1,55 @@
1 +# Profile for iDRAC devices
2 +# iDRAC is an integrated component of PowerEdge servers to allow out-of-band remote management.
3 +# This profile is for monitoring of Dell Servers via their iDRAC interface.
4 +
5 +
6 +extends:
7 + - _dell.yaml
8 + - _dell-rac.yaml
9 + - _intel-lan-adapters.yaml
10 +
11 +device:
12 + vendor: "dell"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.674.10892.2 # DRAC v1-v5 and iDRAC v6-v7
16 + - 1.3.6.1.4.1.674.10892.5 # iDRAC v7+
17 +
18 +metadata:
19 + device:
20 + fields:
21 + vendor:
22 + value: "dell"
23 + serial_number:
24 + symbol:
25 + MIB: IDRAC-MIB-SMIv2
26 + OID: 1.3.6.1.4.1.674.10892.5.1.3.2.0
27 + name: systemServiceTag # Serial number of the system, `GX0DH03`
28 + version:
29 + symbol:
30 + MIB: IDRAC-MIB-SMIv2
31 + OID: 1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1 # First element of a table
32 + name: systemBIOSVersionName # This attribute defines the version name of the system BIOS.
33 + product_name:
34 + value: PowerEdge # iDRAC is just the Remote Access controller, any device with iDRAC is a PowerEdge server
35 + model:
36 + symbols:
37 + - MIB: IDRAC-MIB-SMIv2
38 + OID: 1.3.6.1.4.1.674.10892.5.1.3.12.0
39 + name: systemModelName
40 + extract_value: '\s*PowerEdge\s*([-a-zA-Z0-9_ ]+)' # The product name. e.g. PowerEdge R740xd, only extract "R740xd"
41 + - MIB: IDRAC-MIB-SMIv2
42 + OID: 1.3.6.1.4.1.674.10892.5.1.3.12.0
43 + name: systemModelName
44 + os_name:
45 + symbol:
46 + MIB: IDRAC-MIB-SMIv2
47 + OID: 1.3.6.1.4.1.674.10892.5.1.3.6.0
48 + name: systemOSName # The operating system name. e.g. Ubuntu
49 + os_version:
50 + symbol:
51 + MIB: IDRAC-MIB-SMIv2
52 + OID: 1.3.6.1.4.1.674.10892.5.1.3.14.0
53 + name: systemOSVersion # The operating system name. e.g. 18.04.3 LTS (Bionic Beaver) Kernel 4.15.0-91-generic (x86_64)
54 + type:
55 + value: "server"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/infinera-coriant-groove.yaml new
+229
@@ -0,0 +1,229 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +sysobjectid: 1.3.6.1.4.1.42229.1.2 # Groove GX Series
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "infinera"
10 +metrics:
11 +# Commented since not present in latest CORIANT-GROOVE-MIB from 2022
12 +# - MIB: CORIANT-GROOVE-MIB
13 +# symbol:
14 +# OID: 1.3.6.1.4.1.42229.1.2.2.2.2.0
15 +# name: coriant.groove.systemPowerConsumptionCurrent
16 + - MIB: CORIANT-GROOVE-MIB
17 + table:
18 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1
19 + name: shelfTable
20 + symbols:
21 + - OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.3
22 + name: coriant.groove.shelfInletTemperature # Type CoriantTypesTemperature is a string that represents a float in Celcius e.g. 23.8
23 + - OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.4
24 + name: coriant.groove.shelfOutletTemperature # Type CoriantTypesTemperature is a string that represents a float in Celcius e.g. 23.8
25 + metric_tags:
26 + - symbol:
27 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.2
28 + name: coriant.groove.shelfLocation
29 + tag: coriant_groove_shelf_location
30 + - symbol:
31 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.8
32 + name: coriant.groove.shelfAliasName
33 + tag: coriant_groove_shelf_alias_name
34 + - symbol:
35 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.5
36 + name: coriant.groove.shelfAdminStatus
37 + tag: coriant_groove_shelf_admin_status
38 + mapping:
39 + 1: up
40 + 2: down
41 + 3: up_no_alm
42 + - symbol:
43 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.6
44 + name: coriant.groove.shelfOperStatus
45 + tag: coriant_groove_shelf_oper_status
46 + mapping:
47 + 1: up
48 + 2: down
49 + - symbol:
50 + OID: 1.3.6.1.4.1.42229.1.2.3.1.1.1.7
51 + name: coriant.groove.shelfAvailStatus
52 + tag: coriant_groove_shelf_avail_status
53 + mapping:
54 + 0: none
55 + 1: failed
56 + 2: mismatch
57 + 3: lower_layer_down
58 + 4: not_present
59 + 5: shutdown
60 + 6: degraded
61 + 7: idle
62 + 8: busy
63 + 9: hibernation
64 + 10: in_test
65 + 11: loopback
66 + 12: software_upgrade
67 + 13: initializing
68 + 14: unknown
69 + 15: incomplete
70 + 16: laser_safety_shutoff
71 + 17: measuring
72 + 18: firmware_loading
73 + 19: connected
74 + 20: communication_failed
75 + - MIB: CORIANT-GROOVE-MIB
76 + table:
77 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1
78 + name: cardTable
79 + symbols:
80 + - OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.7
81 + name: coriant.groove.cardFanSpeedRate
82 + - OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.9
83 + name: coriant.groove.cardTemperature # Type CoriantTypesTemperature is a string that represents a float in Celcius e.g. 23.8
84 + metric_tags:
85 + - symbol:
86 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.1
87 + name: coriant.groove.cardRequiredType
88 + tag: coriant_groove_card_required_type
89 + mapping:
90 + 11: fan
91 + 12: psu
92 + 13: chm1
93 + 14: chm2
94 + 16: xtm2
95 + 17: chm1g
96 + 18: chm1lh
97 + 19: chm2lh
98 + 20: utm2
99 + 100: occ2
100 + 101: omd96
101 + 102: paoscofp2
102 + 103: pabaofp2
103 + 104: pairofp2
104 + 105: palrofp2
105 + 106: paerofp2
106 + 107: bahofp2
107 + 109: omd48_s
108 + 110: omd48_o
109 + 111: tdcmofp2
110 + 112: bauofp2
111 + 113: paulrofp2
112 + 114: omd8b1ofp2
113 + 115: omd8b2ofp2
114 + 116: opsofp2
115 + 117: otdrofp2
116 + 118: ocmofp2
117 + 119: opsptofp2
118 + 120: chm2t
119 + 121: frcu
120 + 122: cad8ofp2
121 + 123: cad8eofp2
122 + 124: omd64
123 + 125: ws04sofp2
124 + 126: cad16aofp2
125 + 127: baxofp2
126 + 128: rd09sm
127 + 129: omd48e
128 + 130: dge2m2ofp2
129 + 131: pbmtpp
130 + 200: vir_sim
131 + - symbol:
132 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.2
133 + name: coriant.groove.cardEquipmentName
134 + tag: coriant_groove_card_equipment_name
135 + - symbol:
136 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.6
137 + name: coriant.groove.cardAliasName
138 + tag: coriant_groove_card_alias_name
139 + - symbol:
140 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.3
141 + name: coriant.groove.cardAdminStatus
142 + tag: coriant_groove_card_admin_status
143 + mapping:
144 + 1: up
145 + 2: down
146 + 3: up_no_alm
147 + - symbol:
148 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.4
149 + name: coriant.groove.cardOperStatus
150 + tag: coriant_groove_card_oper_status
151 + mapping:
152 + 1: up
153 + 2: down
154 + - symbol:
155 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.5
156 + name: coriant.groove.cardAvailStatus
157 + tag: coriant_groove_card_avail_status
158 + mapping:
159 + 0: none
160 + 1: failed
161 + 2: mismatch
162 + 3: lower_layer_down
163 + 4: not_present
164 + 5: shutdown
165 + 6: degraded
166 + 7: idle
167 + 8: busy
168 + 9: hibernation
169 + 10: in_test
170 + 11: loopback
171 + 12: software_upgrade
172 + 13: initializing
173 + 14: unknown
174 + 15: incomplete
175 + 16: laser_safety_shutoff
176 + 17: measuring
177 + 18: firmware_loading
178 + 19: connected
179 + 20: communication_failed
180 + - symbol:
181 + OID: 1.3.6.1.4.1.42229.1.2.3.3.1.1.10
182 + name: coriant.groove.cardMode
183 + tag: coriant_groove_card_mode
184 + mapping:
185 + 0: not_applicable
186 + 1: normal
187 + 2: regen
188 + 3: mix_function
189 + 4: grey_muxponder
190 + - MIB: CORIANT-GROOVE-MIB
191 + table:
192 + OID: 1.3.6.1.4.1.42229.1.2.3.6.1
193 + name: portTable
194 + symbols:
195 + - OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.4
196 + name: coriant.groove.portRxOpticalPower # Type CoriantTypesOpticalPower is a string that represents a float in dBm unit e.g. -14.5
197 + - OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.5
198 + name: coriant.groove.portTxOpticalPower # Type CoriantTypesOpticalPower is a string that represents a float in dBm unit e.g. -14.5
199 + metric_tags:
200 + - symbol:
201 + OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.16
202 + name: coriant.groove.portName
203 + tag: coriant_groove_port_name
204 + - symbol:
205 + OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.22
206 + name: coriant.groove.portAliasName
207 + tag: coriant_groove_port_alias_name
208 + - symbol:
209 + OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.23
210 + name: coriant.groove.portServiceLabel
211 + tag: coriant_groove_port_service_label
212 + - symbol:
213 + OID: 1.3.6.1.4.1.42229.1.2.3.6.1.1.24
214 + name: coriant.groove.portConnectedTo
215 + tag: coriant_groove_port_connected_to
216 + - MIB: CORIANT-GROOVE-MIB
217 + table:
218 + OID: 1.3.6.1.4.1.42229.1.2.4.1.19.1
219 + name: ochOsTable
220 + symbols:
221 + - OID: 1.3.6.1.4.1.42229.1.2.4.1.19.1.1.23
222 + name: coriant.groove.ochOsCD
223 + - OID: 1.3.6.1.4.1.42229.1.2.4.1.19.1.1.24
224 + name: coriant.groove.ochOsOSNR # Type CoriantTypesOpticalDB is a string that represents a float in dB unit e.g. 33.5
225 + metric_tags:
226 + - symbol:
227 + OID: 1.3.6.1.4.1.42229.1.2.4.1.19.1.1.21
228 + name: coriant.groove.ochOsServiceLabel
229 + tag: coriant_groove_och_os_service_label
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/infoblox-ipam.yaml new
+238
@@ -0,0 +1,238 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 + - _generic-ucd.yaml
6 +sysobjectid:
7 + - 1.3.6.1.4.1.7779.1.1004 # Virtual Device
8 + - 1.3.6.1.4.1.7779.1.1204 # IB-1552
9 + - 1.3.6.1.4.1.7779.1.1301 # IB-550-A
10 + - 1.3.6.1.4.1.7779.1.1302 # IB-1050-A
11 + - 1.3.6.1.4.1.7779.1.1303 # IB-1550-A
12 + - 1.3.6.1.4.1.7779.1.1401 # IB-810
13 + - 1.3.6.1.4.1.7779.1.1402 # IB-820
14 + - 1.3.6.1.4.1.7779.1.1403 # IB-1410
15 + - 1.3.6.1.4.1.7779.1.1404 # IB-1420
16 + - 1.3.6.1.4.1.7779.1.1405 # IB-1400
17 + - 1.3.6.1.4.1.7779.1.1406 # IB-800
18 + - 1.3.6.1.4.1.7779.1.1407 # PT-1400
19 + - 1.3.6.1.4.1.7779.1.1411 # IB-2200
20 + - 1.3.6.1.4.1.7779.1.1412 # IB-2210
21 + - 1.3.6.1.4.1.7779.1.1413 # IB-2220
22 + - 1.3.6.1.4.1.7779.1.1414 # PT-2200
23 + - 1.3.6.1.4.1.7779.1.1421 # IB-4010
24 + - 1.3.6.1.4.1.7779.1.1422 # IB-4030
25 + - 1.3.6.1.4.1.7779.1.1423 # IB-4000
26 + - 1.3.6.1.4.1.7779.1.1424 # PT-4000
27 + - 1.3.6.1.4.1.7779.1.1425 # Infoblox, Model Unknown
28 + - 1.3.6.1.4.1.7779.1.1431 # IB-100
29 + - 1.3.6.1.4.1.7779.1.1441 # ND-800
30 + - 1.3.6.1.4.1.7779.1.1442 # ND-1400
31 + - 1.3.6.1.4.1.7779.1.1443 # ND-2200
32 + - 1.3.6.1.4.1.7779.1.1444 # ND-4000
33 + - 1.3.6.1.4.1.7779.1.1501 # IB-815
34 + - 1.3.6.1.4.1.7779.1.1502 # IB-825
35 + - 1.3.6.1.4.1.7779.1.1503 # IB-1415
36 + - 1.3.6.1.4.1.7779.1.1504 # IB-1425
37 + - 1.3.6.1.4.1.7779.1.1505 # IB-1405
38 + - 1.3.6.1.4.1.7779.1.1506 # IB-805
39 + - 1.3.6.1.4.1.7779.1.1507 # PT-1405
40 + - 1.3.6.1.4.1.7779.1.1511 # IB-2205
41 + - 1.3.6.1.4.1.7779.1.1512 # IB-2215
42 + - 1.3.6.1.4.1.7779.1.1513 # IB-2225
43 + - 1.3.6.1.4.1.7779.1.1514 # PT-2205
44 + - 1.3.6.1.4.1.7779.1.1521 # IB-4015
45 + - 1.3.6.1.4.1.7779.1.1522 # IB-4035
46 + - 1.3.6.1.4.1.7779.1.1523 # IB-4005
47 + - 1.3.6.1.4.1.7779.1.1524 # PT-4005
48 + - 1.3.6.1.4.1.7779.1.1525 # IB-4025
49 + - 1.3.6.1.4.1.7779.1.1541 # ND-805
50 + - 1.3.6.1.4.1.7779.1.1542 # ND-1405
51 + - 1.3.6.1.4.1.7779.1.1543 # ND-2205
52 + - 1.3.6.1.4.1.7779.1.1544 # ND-4005
53 + - 1.3.6.1.4.1.7779.2.2 # IB-1050
54 + - 1.3.6.1.4.1.7779.2.4 # IB-1552
55 + - 1.3.6.1.4.1.7779.3.4 # IB-1552-A
56 + - 1.3.6.1.4.1.7779.3.7 # IB-2000-A
57 +metadata:
58 + device:
59 + fields:
60 + vendor:
61 + value: "infoblox"
62 +metrics:
63 + - MIB: IB-PLATFORMONE-MIB
64 + symbol:
65 + name: cpu.usage
66 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.8.1.1.0
67 + - MIB: IB-PLATFORMONE-MIB
68 + symbol:
69 + name: memory.usage
70 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.8.2.1.0
71 + - MIB: IB-DHCPONE-MIB
72 + symbol:
73 + name: ibDhcpDeferredQueueSize
74 + OID: 1.3.6.1.4.1.7779.3.1.1.4.1.4.0
75 + - MIB: IB-DNSONE-MIB
76 + table:
77 + name: ibZoneStatisticsTable
78 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1
79 + symbols:
80 + - name: ibBindZoneSuccess
81 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.2
82 + metric_type: monotonic_count
83 + - name: ibBindZoneReferral
84 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.3
85 + metric_type: monotonic_count
86 + - name: ibBindZoneNxRRset
87 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.4
88 + metric_type: monotonic_count
89 + - name: ibBindZoneNxDomain
90 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.5
91 + metric_type: monotonic_count
92 + - name: ibBindZoneRecursion
93 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.6
94 + metric_type: monotonic_count
95 + - name: ibBindZoneFailure
96 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.7
97 + metric_type: monotonic_count
98 + metric_tags:
99 + - symbol:
100 + name: ibBindZoneName
101 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.1.1.1
102 + tag: ib_bind_zone_name
103 + - MIB: IB-DNSONE-MIB
104 + symbol:
105 + name: ibDDNSUpdateSuccess
106 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.1.0
107 + metric_type: monotonic_count
108 + - MIB: IB-DNSONE-MIB
109 + symbol:
110 + name: ibDDNSUpdateFailure
111 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.2.0
112 + metric_type: monotonic_count
113 + - MIB: IB-DNSONE-MIB
114 + symbol:
115 + name: ibDDNSUpdateReject
116 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.3.0
117 + metric_type: monotonic_count
118 + - MIB: IB-DNSONE-MIB
119 + symbol:
120 + name: ibDDNSUpdatePrerequisiteReject
121 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.3.4.0
122 + metric_type: monotonic_count
123 + - MIB: IB-DNSONE-MIB
124 + symbol:
125 + name: ibDnsQueryRate
126 + OID: 1.3.6.1.4.1.7779.3.1.1.3.1.6.0
127 + - MIB: IB-PLATFORMONE-MIB
128 + table:
129 + name: ibClusterReplicationStatusTable
130 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.2
131 + symbols:
132 + - name: ibNodeQueueFromMaster
133 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.2.1.3
134 + - name: ibNodeQueueToMaster
135 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.2.1.5
136 + metric_tags:
137 + - symbol:
138 + name: ibNodeIPAddress
139 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.2.1.1
140 + tag: ib_node_ip_address
141 + - symbol:
142 + name: ibNodeReplicationStatus
143 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.2.1.2
144 + tag: ib_node_replication_status
145 + - MIB: IB-PLATFORMONE-MIB
146 + table:
147 + name: ibMemberServiceStatusTable
148 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.9
149 + symbols:
150 + - name: ibMemberServiceStatus
151 + constant_value_one: true
152 + metric_tags:
153 + - symbol:
154 + name: ibServiceName
155 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.9.1.1
156 + tag: ib_service_name
157 + mapping:
158 + 1: dhcp
159 + 2: dns
160 + 3: ntp
161 + 4: tftp
162 + 5: http-file-dist
163 + 6: ftp
164 + 7: bloxtools-move
165 + 8: bloxtools
166 + 9: node-status
167 + 10: disk-usage
168 + 11: enet-lan
169 + 12: enet-lan2
170 + 13: enet-ha
171 + 14: enet-mgmt
172 + 15: lcd
173 + 16: memory
174 + 17: replication
175 + 18: db-object
176 + 19: raid-summary
177 + 20: raid-disk1
178 + 21: raid-disk2
179 + 22: raid-disk3
180 + 23: raid-disk4
181 + 24: raid-disk5
182 + 25: raid-disk6
183 + 26: raid-disk7
184 + 27: raid-disk8
185 + 28: fan1
186 + 29: fan2
187 + 30: fan3
188 + 31: fan4
189 + 32: fan5
190 + 33: fan6
191 + 34: fan7
192 + 35: fan8
193 + 36: power-supply1
194 + 37: power-supply2
195 + 38: ntp-sync
196 + 39: cpu1-temp
197 + 40: cpu2-temp
198 + 41: sys-temp
199 + 42: raid-battery
200 + 43: cpu-usage
201 + 44: ospf
202 + 45: bgp
203 + 46: mgm-service
204 + 47: subgrid-conn
205 + 48: network-capacity
206 + 49: reporting
207 + 50: dns-cache-acceleration
208 + 51: ospf6
209 + 52: swap-usage
210 + 53: discovery-consolidator
211 + 54: discovery-collector
212 + 55: discovery-capacity
213 + 56: threat-protection
214 + 58: recursive-clients
215 + - symbol:
216 + name: ibServiceDesc
217 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.9.1.3
218 + tag: ib_service_desc
219 + - symbol:
220 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.9.1.2
221 + name: ibServiceStatus
222 + tag: ib_service_status
223 + mapping:
224 + 1: working
225 + 2: warning
226 + 3: failed
227 + 4: inactive
228 + 5: unknown
229 +metric_tags:
230 + - OID: 1.3.6.1.4.1.7779.3.1.1.2.1.4.0
231 + symbol: ibHardwareType
232 + tag: ib_hardware_type
233 + - tag: ib_serial_number
234 + OID: 1.3.6.1.4.1.7779.3.1.1.2.1.6.0
235 + symbol: ibSerialNumber
236 + - OID: 1.3.6.1.4.1.7779.3.1.1.2.1.7.0
237 + symbol: ibNiosVersion
238 + tag: ib_nios_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/isilon.yaml new
+200
@@ -0,0 +1,200 @@
1 +# Example sysDescr:
2 +# - device-name-3 263829375 Isilon OneFS v8.2.0.0
3 +# - device-name-5 2316163007 Isilon OneFS v8.1.2.0
4 +extends:
5 + - _base.yaml
6 + - _generic-ip.yaml
7 + - _generic-tcp.yaml
8 + - _generic-udp.yaml
9 +
10 +device:
11 + vendor: "dell"
12 +
13 +sysobjectid:
14 + - 1.3.6.1.4.1.12124.*
15 +
16 + # Looks like EMC Isilon devices might use the wrong sysObjectID `1.3.6.1.4.1.12325.1.1.2.1.1` (FreeBSD-FOKUS)
17 + # Few related discussions:
18 + # - https://thwack.solarwinds.com/product-forums/network-performance-monitor-npm/f/forum/66098/emc-isilon-showing-up-as-non-emc-device-after-upgrade/39511
19 + # - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0761173
20 + # - https://github.com/librenms/librenms/issues/6412
21 + # Long term solution:
22 + # Similar to librenms a possible solution is to have other ways to match devices like sysDescr text matching. See example:
23 + # https://github.com/librenms/librenms/pull/6416/files#diff-ec0470a0c495f1349b349f62b0dfdf14b928a5acb94f0de5f6c5a6e523f7817cR12-R16
24 + - 1.3.6.1.4.1.12325.1.1.2.1.1
25 +
26 +metadata:
27 + device:
28 + fields:
29 + vendor:
30 + value: "dell"
31 + serial_number:
32 + symbol:
33 + OID: 1.3.6.1.4.1.12124.2.51.1.3.1
34 + name: chassisSerialNumber # The chassis serial number.
35 + version:
36 + symbol:
37 + OID: 1.3.6.1.2.1.1.1.0
38 + name: sysDescr
39 + match_pattern: 'Isilon OneFS v(\S+)'
40 + match_value: '$1'
41 + # Examples:
42 + # - device-name-3 263829375 Isilon OneFS v8.2.0.0
43 + product_name:
44 + value: 'Isilon OneFS'
45 + model:
46 + symbol:
47 + OID: 1.3.6.1.4.1.12124.2.51.1.4.1
48 + name: chassisModel # The chassis model name.
49 + # source/hints:
50 + # - https://www.dell.com/support/kbdoc/fr-fr/000020536/isilon-how-to-find-serial-numbers-for-isilon-nodes?lang=en
51 + # - https://www.dell.com/community/Isilon/Querying-Isilon-Cluster-via-SNMP-For-Node-Model/td-p/7048622
52 + os_name:
53 + symbol:
54 + OID: 1.3.6.1.2.1.1.1.0
55 + name: sysDescr
56 + match_pattern: '\bOneFS\b'
57 + match_value: 'OneFS'
58 + # Examples:
59 + # - device-name-3 263829375 Isilon OneFS v8.2.0.0
60 + os_version:
61 + # OneFS operating system version seems to be the same as the OneFS filestem version
62 + symbol:
63 + OID: 1.3.6.1.2.1.1.1.0
64 + name: sysDescr
65 + match_pattern: 'Isilon OneFS v(\S+)'
66 + match_value: '$1'
67 + # Examples:
68 + # - device-name-3 263829375 Isilon OneFS v8.2.0.0
69 + type:
70 + value: "storage"
71 +
72 +metrics:
73 + # fan hardware
74 + - MIB: ISILON-MIB
75 + table:
76 + OID: 1.3.6.1.4.1.12124.2.53
77 + name: fanTable
78 + symbols:
79 + - OID: 1.3.6.1.4.1.12124.2.53.1.4
80 + name: fanSpeed
81 + metric_tags:
82 + - tag: fan_name
83 + symbol:
84 + OID: 1.3.6.1.4.1.12124.2.53.1.2
85 + name: fanName
86 + - tag: fan_number
87 + symbol:
88 + OID: 1.3.6.1.4.1.12124.2.53.1.1
89 + name: fanNumber
90 +
91 + # cluster
92 + - MIB: ISILON-MIB
93 + symbol:
94 + OID: 1.3.6.1.4.1.12124.1.1.2.0
95 + name: clusterHealth
96 + - MIB: ISILON-MIB
97 + symbol:
98 + OID: 1.3.6.1.4.1.12124.1.2.1.1.0
99 + name: clusterIfsInBytes
100 + - MIB: ISILON-MIB
101 + symbol:
102 + OID: 1.3.6.1.4.1.12124.1.2.1.3.0
103 + name: clusterIfsOutBytes
104 +
105 + # file system
106 + - MIB: ISILON-MIB
107 + symbol:
108 + OID: 1.3.6.1.4.1.12124.1.3.2.0
109 + name: ifsUsedBytes
110 + - MIB: ISILON-MIB
111 + symbol:
112 + OID: 1.3.6.1.4.1.12124.1.3.1.0
113 + name: ifsTotalBytes
114 +
115 + # node
116 + - MIB: ISILON-MIB
117 + symbol:
118 + OID: 1.3.6.1.4.1.12124.2.1.2.0
119 + name: nodeHealth
120 + - MIB: ISILON-MIB
121 + symbol:
122 + OID: 1.3.6.1.4.1.12124.2.2.1.1.0
123 + name: nodeIfsInBytes
124 + - MIB: ISILON-MIB
125 + symbol:
126 + OID: 1.3.6.1.4.1.12124.2.2.1.3.0
127 + name: nodeIfsOutBytes
128 +
129 + # disk
130 + - MIB: ISILON-MIB
131 + table:
132 + OID: 1.3.6.1.4.1.12124.2.52
133 + name: diskTable
134 + symbols:
135 + - OID: 1.3.6.1.4.1.12124.2.52.1.9
136 + name: diskSizeBytes
137 + metric_tags:
138 + - symbol:
139 + OID: 1.3.6.1.4.1.12124.2.52.1.5
140 + name: diskStatus
141 + tag: disk_status
142 + - symbol:
143 + OID: 1.3.6.1.4.1.12124.2.52.1.1
144 + name: diskBay
145 + tag: disk_bay
146 +
147 +
148 + # protocol
149 + - MIB: ISILON-MIB
150 + table:
151 + OID: 1.3.6.1.4.1.12124.2.2.10
152 + name: nodeProtocolPerfTable
153 + symbols:
154 + - OID: 1.3.6.1.4.1.12124.2.2.10.1.3
155 + name: protocolOpsPerSecond
156 + - OID: 1.3.6.1.4.1.12124.2.2.10.1.14
157 + name: latencyMin
158 + - OID: 1.3.6.1.4.1.12124.2.2.10.1.15
159 + name: latencyMax
160 + - OID: 1.3.6.1.4.1.12124.2.2.10.1.16
161 + name: latencyAverage
162 + metric_tags:
163 + - tag: protocol_name
164 + symbol:
165 + OID: 1.3.6.1.4.1.12124.2.2.10.1.1
166 + name: protocolName
167 +
168 + # quota
169 + - MIB: ISILON-MIB
170 + table:
171 + OID: 1.3.6.1.4.1.12124.1.12.1
172 + name: quotaTable
173 + symbols:
174 + - OID: 1.3.6.1.4.1.12124.1.12.1.1.7
175 + name: quotaHardThreshold
176 + - OID: 1.3.6.1.4.1.12124.1.12.1.1.9
177 + name: quotaSoftThreshold
178 + - OID: 1.3.6.1.4.1.12124.1.12.1.1.13
179 + name: quotaUsage
180 + - OID: 1.3.6.1.4.1.12124.1.12.1.1.11
181 + name: quotaAdvisoryThreshold
182 + metric_tags:
183 + - tag: quota_type
184 + symbol:
185 + OID: 1.3.6.1.4.1.12124.1.12.1.1.2
186 + name: quotaType
187 + - tag: quota_id
188 + symbol:
189 + OID: 1.3.6.1.4.1.12124.1.12.1.1.3
190 + name: quotaID
191 +metric_tags:
192 + - tag: cluster_name
193 + OID: 1.3.6.1.4.1.12124.1.1.1.0
194 + symbol: clusterName
195 + - tag: node_name
196 + OID: 1.3.6.1.4.1.12124.2.1.1.0
197 + symbol: nodeName
198 + - tag: node_type
199 + OID: 1.3.6.1.4.1.12124.2.1.3.0
200 + symbol: nodeType
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ixsystems-truenas.yaml new
+171
@@ -0,0 +1,171 @@
1 +# TrueNAS vs FreeNAS:
2 +# TrueNAS is commercially-supported, while FreeNAS is community-supported.
3 +# FreeNAS is an open-source network attached storage platform.
4 +# TrueNAS is a set of open-source NAS operating systems developed by iXsystems.
5 +
6 +# TODO: We can possibly support later FreeNAS devices by moving FREENAS-MIB metrics to a separate abstract profile,
7 +# that can be extended in by ixsystems-truenas.yaml but also a new FreeNAS profile (with sysobjectid 1.3.6.1.4.1.50536.3.1 FreeNAS).
8 +
9 +extends:
10 + - _base.yaml
11 + - _generic-host-resources-base.yaml
12 + - _generic-if.yaml
13 + - _generic-ucd.yaml
14 +
15 +sysobjectid: 1.3.6.1.4.1.50536.3.2 # TrueNAS
16 +
17 +metadata:
18 + device:
19 + fields:
20 + vendor:
21 + value: "iXsystems"
22 + type:
23 + value: "storage"
24 +
25 +metrics:
26 + - MIB: FREENAS-MIB
27 + table:
28 + name: zpoolTable
29 + OID: 1.3.6.1.4.1.50536.1.1.1
30 + symbols:
31 + - name: freenas.zpoolReadBytes
32 + OID: 1.3.6.1.4.1.50536.1.1.1.1.10
33 + - name: freenas.zpoolWriteBytes
34 + OID: 1.3.6.1.4.1.50536.1.1.1.1.11
35 + - name: freenas.zpoolReadOps1sec
36 + OID: 1.3.6.1.4.1.50536.1.1.1.1.12
37 + - name: freenas.zpoolWriteOps1sec
38 + OID: 1.3.6.1.4.1.50536.1.1.1.1.13
39 + - name: freenas.zpoolReadBytes1sec
40 + OID: 1.3.6.1.4.1.50536.1.1.1.1.14
41 + - name: freenas.zpoolWriteBytes1sec
42 + OID: 1.3.6.1.4.1.50536.1.1.1.1.15
43 + - name: freenas.zpoolAllocationUnits
44 + OID: 1.3.6.1.4.1.50536.1.1.1.1.3
45 + - name: freenas.zpoolSize
46 + OID: 1.3.6.1.4.1.50536.1.1.1.1.4
47 + - name: freenas.zpoolUsed
48 + OID: 1.3.6.1.4.1.50536.1.1.1.1.5
49 + - name: freenas.zpoolAvailable
50 + OID: 1.3.6.1.4.1.50536.1.1.1.1.6
51 + - name: freenas.zpoolHealth
52 + OID: 1.3.6.1.4.1.50536.1.1.1.1.7
53 + - name: freenas.zpoolReadOps
54 + OID: 1.3.6.1.4.1.50536.1.1.1.1.8
55 + - name: freenas.zpoolWriteOps
56 + OID: 1.3.6.1.4.1.50536.1.1.1.1.9
57 + metric_tags:
58 + - symbol:
59 + name: freenas.zpoolDescr
60 + OID: 1.3.6.1.4.1.50536.1.1.1.1.2
61 + tag: freenas_zpool_descr
62 + - MIB: FREENAS-MIB
63 + table:
64 + name: datasetTable
65 + OID: 1.3.6.1.4.1.50536.1.2.1
66 + symbols:
67 + - name: freenas.datasetAllocationUnits
68 + OID: 1.3.6.1.4.1.50536.1.2.1.1.3
69 + - name: freenas.datasetSize
70 + OID: 1.3.6.1.4.1.50536.1.2.1.1.4
71 + - name: freenas.datasetUsed
72 + OID: 1.3.6.1.4.1.50536.1.2.1.1.5
73 + - name: freenas.datasetAvailable
74 + OID: 1.3.6.1.4.1.50536.1.2.1.1.6
75 + metric_tags:
76 + - symbol:
77 + name: freenas.datasetDescr
78 + OID: 1.3.6.1.4.1.50536.1.2.1.1.2
79 + tag: freenas_dataset_descr
80 + - MIB: FREENAS-MIB
81 + table:
82 + name: zvolTable
83 + OID: 1.3.6.1.4.1.50536.1.3.1
84 + symbols:
85 + - name: freenas.zvolAllocationUnits
86 + OID: 1.3.6.1.4.1.50536.1.3.1.1.3
87 + - name: freenas.zvolSize
88 + OID: 1.3.6.1.4.1.50536.1.3.1.1.4
89 + - name: freenas.zvolUsed
90 + OID: 1.3.6.1.4.1.50536.1.3.1.1.5
91 + - name: freenas.zvolAvailable
92 + OID: 1.3.6.1.4.1.50536.1.3.1.1.6
93 + - name: freenas.zvolReferenced
94 + OID: 1.3.6.1.4.1.50536.1.3.1.1.7
95 + metric_tags:
96 + - symbol:
97 + name: freenas.zvolDescr
98 + OID: 1.3.6.1.4.1.50536.1.3.1.1.2
99 + tag: freenas_zvol_descr
100 + - MIB: FREENAS-MIB
101 + symbol:
102 + name: freenas.zfsArcSize
103 + OID: 1.3.6.1.4.1.50536.1.4.1.0
104 + - MIB: FREENAS-MIB
105 + symbol:
106 + name: freenas.zfsArcCacheMissRatio # zfsArcCacheMissRatio is a string representing a float value
107 + OID: 1.3.6.1.4.1.50536.1.4.10.0
108 + - MIB: FREENAS-MIB
109 + symbol:
110 + name: freenas.zfsArcMeta
111 + OID: 1.3.6.1.4.1.50536.1.4.2.0
112 + - MIB: FREENAS-MIB
113 + symbol:
114 + name: freenas.zfsArcData
115 + OID: 1.3.6.1.4.1.50536.1.4.3.0
116 + - MIB: FREENAS-MIB
117 + symbol:
118 + name: freenas.zfsArcHits
119 + OID: 1.3.6.1.4.1.50536.1.4.4.0
120 + - MIB: FREENAS-MIB
121 + symbol:
122 + name: freenas.zfsArcMisses
123 + OID: 1.3.6.1.4.1.50536.1.4.5.0
124 + - MIB: FREENAS-MIB
125 + symbol:
126 + name: freenas.zfsArcC
127 + OID: 1.3.6.1.4.1.50536.1.4.6.0
128 + - MIB: FREENAS-MIB
129 + symbol:
130 + name: freenas.zfsArcP
131 + OID: 1.3.6.1.4.1.50536.1.4.7.0
132 + - MIB: FREENAS-MIB
133 + symbol:
134 + name: freenas.zfsArcMissPercent # zfsArcMissPercent is a string representing a float value
135 + OID: 1.3.6.1.4.1.50536.1.4.8.0
136 + - MIB: FREENAS-MIB
137 + symbol:
138 + name: freenas.zfsArcCacheHitRatio # zfsArcCacheHitRatio is a string representing a float value
139 + OID: 1.3.6.1.4.1.50536.1.4.9.0
140 + - MIB: FREENAS-MIB
141 + symbol:
142 + name: freenas.zfsL2ArcHits
143 + OID: 1.3.6.1.4.1.50536.1.5.1.0
144 + - MIB: FREENAS-MIB
145 + symbol:
146 + name: freenas.zfsL2ArcMisses
147 + OID: 1.3.6.1.4.1.50536.1.5.2.0
148 + - MIB: FREENAS-MIB
149 + symbol:
150 + name: freenas.zfsL2ArcRead
151 + OID: 1.3.6.1.4.1.50536.1.5.3.0
152 + - MIB: FREENAS-MIB
153 + symbol:
154 + name: freenas.zfsL2ArcWrite
155 + OID: 1.3.6.1.4.1.50536.1.5.4.0
156 + - MIB: FREENAS-MIB
157 + symbol:
158 + name: freenas.zfsL2ArcSize
159 + OID: 1.3.6.1.4.1.50536.1.5.5.0
160 + - MIB: FREENAS-MIB
161 + symbol:
162 + name: freenas.zfsZilstatOps1sec
163 + OID: 1.3.6.1.4.1.50536.1.6.1.0
164 + - MIB: FREENAS-MIB
165 + symbol:
166 + name: freenas.zfsZilstatOps5sec
167 + OID: 1.3.6.1.4.1.50536.1.6.2.0
168 + - MIB: FREENAS-MIB
169 + symbol:
170 + name: freenas.zfsZilstatOps10sec
171 + OID: 1.3.6.1.4.1.50536.1.6.3.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper-ex.yaml new
+78
@@ -0,0 +1,78 @@
1 +# Profile for Juniper EX Series Ethernet devices
2 +# See:
3 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/standard-mib-overview.html
4 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/enterprise-specific-mibs-overview.html
5 +
6 +extends:
7 + - _generic-if.yaml
8 + - _generic-ip.yaml
9 + - _generic-tcp.yaml
10 + - _generic-udp.yaml
11 + - _generic-bgp4.yaml
12 + - _generic-ospf.yaml
13 + - _generic-host-resources.yaml
14 + - _juniper-virtualchassis.yaml
15 + - _juniper-dcu.yaml
16 + - _juniper-cos.yaml
17 + - _juniper-firewall.yaml
18 + - _juniper-junos-generic.yaml
19 + - _juniper.yaml
20 +
21 +device:
22 + vendor: "juniper-networks"
23 +
24 +metadata:
25 + device:
26 + fields:
27 + type:
28 + value: "switch"
29 +
30 +# Juniper Products are declared in JUNIPER-CHASSIS-DEFINES-MIB.
31 +# Products are defined under 1.3.6.1.4.1.2636.1.1.1.2 (jnxProductName).
32 +# Variations are defined under 1.3.6.1.4.1.2636.1.1.1.4 (jnxProductVariation).
33 +# Reference: https://mibs.observium.org/mib/JUNIPER-CHASSIS-DEFINES-MIB/
34 +sysobjectid:
35 + - 1.3.6.1.4.1.2636.1.1.1.2.30 # EX3200
36 + - 1.3.6.1.4.1.2636.1.1.1.4.30.* # EX3200 variations
37 + - 1.3.6.1.4.1.2636.1.1.1.2.31 # EX4200
38 + - 1.3.6.1.4.1.2636.1.1.1.4.31.* # EX4200 variations
39 + - 1.3.6.1.4.1.2636.1.1.1.2.32 # EX8208
40 + - 1.3.6.1.4.1.2636.1.1.1.4.32.* # EX8208 variations
41 + - 1.3.6.1.4.1.2636.1.1.1.2.33 # EX8216
42 + - 1.3.6.1.4.1.2636.1.1.1.4.33.* # EX8216 variations
43 + - 1.3.6.1.4.1.2636.1.1.1.2.43 # EX2200
44 + - 1.3.6.1.4.1.2636.1.1.1.4.43.* # EX2200 variations
45 + - 1.3.6.1.4.1.2636.1.1.1.2.44 # EX4500
46 + - 1.3.6.1.4.1.2636.1.1.1.4.44.* # EX4500 variations
47 + - 1.3.6.1.4.1.2636.1.1.1.2.59 # EXXRE
48 + - 1.3.6.1.4.1.2636.1.1.1.4.59.* # EXXRE variations
49 + - 1.3.6.1.4.1.2636.1.1.1.2.63 # EX4300
50 + - 1.3.6.1.4.1.2636.1.1.1.4.63.* # EX4300 variations
51 + - 1.3.6.1.4.1.2636.1.1.1.2.74 # EX6210
52 + - 1.3.6.1.4.1.2636.1.1.1.4.74.* # EX6210 variations
53 + - 1.3.6.1.4.1.2636.1.1.1.2.76 # EX3300
54 + - 1.3.6.1.4.1.2636.1.1.1.4.76.* # EX3300 variations
55 + - 1.3.6.1.4.1.2636.1.1.1.2.92 # EX4550
56 + - 1.3.6.1.4.1.2636.1.1.1.4.92.* # EX4550 variations
57 + - 1.3.6.1.4.1.2636.1.1.1.2.102 # EX9214
58 + - 1.3.6.1.4.1.2636.1.1.1.4.102.* # EX9214 variations
59 + - 1.3.6.1.4.1.2636.1.1.1.2.103 # EX9208
60 + - 1.3.6.1.4.1.2636.1.1.1.4.103.* # EX9208 variations
61 + - 1.3.6.1.4.1.2636.1.1.1.2.104 # EX9204
62 + - 1.3.6.1.4.1.2636.1.1.1.4.104.* # EX9204 variations
63 + - 1.3.6.1.4.1.2636.1.1.1.2.109 # EX4600
64 + - 1.3.6.1.4.1.2636.1.1.1.4.109.* # EX4600 variations
65 + - 1.3.6.1.4.1.2636.1.1.1.2.131 # EX3400
66 + - 1.3.6.1.4.1.2636.1.1.1.4.131.* # EX3400 variations
67 + - 1.3.6.1.4.1.2636.1.1.1.2.132 # EX2300
68 + - 1.3.6.1.4.1.2636.1.1.1.4.132.* # EX2300 variations
69 + - 1.3.6.1.4.1.2636.1.1.1.2.151 # EX9251
70 + - 1.3.6.1.4.1.2636.1.1.1.4.151.* # EX9251 variations
71 + - 1.3.6.1.4.1.2636.1.1.1.2.156 # EX9253
72 + - 1.3.6.1.4.1.2636.1.1.1.4.156.* # EX9253 variations
73 + - 1.3.6.1.4.1.2636.1.1.1.2.165 # EX4400
74 + - 1.3.6.1.4.1.2636.1.1.1.4.165.* # EX4400 variations
75 + - 1.3.6.1.4.1.2636.1.1.1.2.169 # EX4100
76 + - 1.3.6.1.4.1.2636.1.1.1.4.169.* # EX4100 variations
77 + - 1.3.6.1.4.1.2636.1.1.1.2.508 # EX4650
78 + - 1.3.6.1.4.1.2636.1.1.1.4.508.* # EX4650 variations
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper-mx.yaml new
+69
@@ -0,0 +1,69 @@
1 +# Profile for Juniper MX Routers
2 +# See:
3 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/standard-mib-overview.html
4 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/enterprise-specific-mibs-overview.html
5 +
6 +extends:
7 + - _generic-if.yaml
8 + - _generic-ip.yaml
9 + - _generic-tcp.yaml
10 + - _generic-udp.yaml
11 + - _generic-bgp4.yaml
12 + - _generic-ospf.yaml
13 + - _generic-host-resources.yaml
14 + - _juniper-virtualchassis.yaml
15 + - _juniper-firewall.yaml
16 + - _juniper-junos-generic.yaml
17 + - _juniper.yaml
18 +
19 +device:
20 + vendor: "juniper-networks"
21 +
22 +metadata:
23 + device:
24 + fields:
25 + type:
26 + value: "router"
27 +
28 +# Juniper Products are declared in JUNIPER-CHASSIS-DEFINES-MIB.
29 +# Product sysoids are defined under 1.3.6.1.4.1.2636.1.1.1.2 (jnxProductName).
30 +# Variations of a product are defined under 1.3.6.1.4.1.2636.1.1.1.4 (jnxProductVariation).
31 +# Reference: https://mibs.observium.org/mib/JUNIPER-CHASSIS-DEFINES-MIB/
32 +sysobjectid:
33 + - 1.3.6.1.4.1.2636.1.1.1.2.21 # MX960
34 + - 1.3.6.1.4.1.2636.1.1.1.4.21.* # MX960 variations
35 + - 1.3.6.1.4.1.2636.1.1.1.2.25 # MX480
36 + - 1.3.6.1.4.1.2636.1.1.1.4.25.* # MX480 variations
37 + - 1.3.6.1.4.1.2636.1.1.1.2.29 # MX240
38 + - 1.3.6.1.4.1.2636.1.1.1.4.29.* # MX240 variations
39 + - 1.3.6.1.4.1.2636.1.1.1.2.57 # MX80
40 + - 1.3.6.1.4.1.2636.1.1.1.4.57.* # MX80 variations
41 + - 1.3.6.1.4.1.2636.1.1.1.2.88 # MX40
42 + - 1.3.6.1.4.1.2636.1.1.1.4.88.* # MX40 variations
43 + - 1.3.6.1.4.1.2636.1.1.1.2.89 # MX10
44 + - 1.3.6.1.4.1.2636.1.1.1.4.89.* # MX10 variations
45 + - 1.3.6.1.4.1.2636.1.1.1.2.90 # MX5
46 + - 1.3.6.1.4.1.2636.1.1.1.4.90.* # MX5 variations
47 + - 1.3.6.1.4.1.2636.1.1.1.2.93 # MX2020
48 + - 1.3.6.1.4.1.2636.1.1.1.4.93.* # MX2020 variations
49 + - 1.3.6.1.4.1.2636.1.1.1.2.97 # MX104
50 + - 1.3.6.1.4.1.2636.1.1.1.4.97.* # MX104 variations
51 + - 1.3.6.1.4.1.2636.1.1.1.2.99 # MX2010
52 + - 1.3.6.1.4.1.2636.1.1.1.4.99.* # MX2010 variations
53 + - 1.3.6.1.4.1.2636.1.1.1.2.108 # vMX
54 + - 1.3.6.1.4.1.2636.1.1.1.2.111 # MX10440G
55 + - 1.3.6.1.4.1.2636.1.1.1.2.139 # JNP10003
56 + - 1.3.6.1.4.1.2636.1.1.1.4.139.* # JNP10003 variations
57 + - 1.3.6.1.4.1.2636.1.1.1.2.144 # JNP204
58 + - 1.3.6.1.4.1.2636.1.1.1.4.144.* # JNP204 variations
59 + - 1.3.6.1.4.1.2636.1.1.1.2.145 # MX2008
60 + - 1.3.6.1.4.1.2636.1.1.1.4.145.* # MX2008 variations
61 + - 1.3.6.1.4.1.2636.1.1.1.2.146 # MXTSR80
62 + - 1.3.6.1.4.1.2636.1.1.1.4.146.* # MXTSR80 variations
63 + - 1.3.6.1.4.1.2636.1.1.1.2.152 # MX150
64 + - 1.3.6.1.4.1.2636.1.1.1.2.154 # MX10008
65 + - 1.3.6.1.4.1.2636.1.1.1.4.154.* # MX10008 variations
66 + - 1.3.6.1.4.1.2636.1.1.1.2.155 # MX10016
67 + - 1.3.6.1.4.1.2636.1.1.1.4.155.* # MX10016 variations
68 + - 1.3.6.1.4.1.2636.1.1.1.2.168 # MX10004
69 + - 1.3.6.1.4.1.2636.1.1.1.4.168.* # MX10004 variations
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper-pulse-secure.yaml new
+117
@@ -0,0 +1,117 @@
1 +extends:
2 + - _generic-host-resources-base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 + - _juniper.yaml
6 +sysobjectid: 1.3.6.1.4.1.12532.256.*
7 +metrics:
8 + - MIB: JUNIPER-IVE-MIB
9 + symbol:
10 + OID: 1.3.6.1.4.1.12532.1.0
11 + name: juniper.ive.logFullPercent
12 + - MIB: JUNIPER-IVE-MIB
13 + symbol:
14 + OID: 1.3.6.1.4.1.12532.2.0
15 + name: juniper.ive.signedInWebUsers
16 + - MIB: JUNIPER-IVE-MIB
17 + symbol:
18 + OID: 1.3.6.1.4.1.12532.3.0
19 + name: juniper.ive.signedInMailUsers
20 + - MIB: JUNIPER-IVE-MIB
21 + symbol:
22 + OID: 1.3.6.1.4.1.12532.10.0
23 + name: cpu.usage
24 + - MIB: JUNIPER-IVE-MIB
25 + symbol:
26 + OID: 1.3.6.1.4.1.12532.11.0
27 + name: memory.usage
28 + - MIB: JUNIPER-IVE-MIB
29 + symbol:
30 + OID: 1.3.6.1.4.1.12532.12.0
31 + name: juniper.ive.iveConcurrentUsers
32 + - MIB: JUNIPER-IVE-MIB
33 + symbol:
34 + OID: 1.3.6.1.4.1.12532.13.0
35 + name: juniper.ive.clusterConcurrentUsers
36 + - MIB: JUNIPER-IVE-MIB
37 + symbol:
38 + OID: 1.3.6.1.4.1.12532.14.0
39 + name: juniper.ive.iveTotalHits
40 + metric_type: monotonic_count
41 + - MIB: JUNIPER-IVE-MIB
42 + symbol:
43 + OID: 1.3.6.1.4.1.12532.15.0
44 + name: juniper.ive.iveFileHits
45 + metric_type: monotonic_count
46 + - MIB: JUNIPER-IVE-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.12532.16.0
49 + name: juniper.ive.iveWebHits
50 + metric_type: monotonic_count
51 + - MIB: JUNIPER-IVE-MIB
52 + symbol:
53 + OID: 1.3.6.1.4.1.12532.17.0
54 + name: juniper.ive.iveAppletHits
55 + metric_type: monotonic_count
56 + - MIB: JUNIPER-IVE-MIB
57 + symbol:
58 + OID: 1.3.6.1.4.1.12532.18.0
59 + name: juniper.ive.ivetermHits
60 + metric_type: monotonic_count
61 + - MIB: JUNIPER-IVE-MIB
62 + symbol:
63 + OID: 1.3.6.1.4.1.12532.19.0
64 + name: juniper.ive.iveSAMHits
65 + metric_type: monotonic_count
66 + - MIB: JUNIPER-IVE-MIB
67 + symbol:
68 + OID: 1.3.6.1.4.1.12532.20.0
69 + name: juniper.ive.iveNCHits
70 + metric_type: monotonic_count
71 + - MIB: JUNIPER-IVE-MIB
72 + symbol:
73 + OID: 1.3.6.1.4.1.12532.21.0
74 + name: juniper.ive.meetingHits
75 + metric_type: monotonic_count
76 + - MIB: JUNIPER-IVE-MIB
77 + symbol:
78 + OID: 1.3.6.1.4.1.12532.24.0
79 + name: juniper.ive.iveSwapUtil
80 + - MIB: JUNIPER-IVE-MIB
81 + symbol:
82 + OID: 1.3.6.1.4.1.12532.25.0
83 + name: juniper.ive.diskFullPercent
84 + - MIB: JUNIPER-IVE-MIB
85 + symbol:
86 + OID: 1.3.6.1.4.1.12532.42.0
87 + name: juniper.ive.iveTemperature
88 + - MIB: JUNIPER-IVE-MIB
89 + symbol:
90 + OID: 1.3.6.1.4.1.12532.43.0
91 + name: juniper.ive.iveVPNTunnels
92 + - MIB: JUNIPER-IVE-MIB
93 + symbol:
94 + OID: 1.3.6.1.4.1.12532.44.0
95 + name: juniper.ive.iveSSLConnections
96 +# Commented since iveTotalSignedInUsers is not present in the most recent JUNIPER-IVE-MIB we managed to find
97 +# - MIB: JUNIPER-IVE-MIB
98 +# symbol:
99 +# OID: 1.3.6.1.4.1.12532.48.0
100 +# name: juniper.ive.iveTotalSignedInUsers
101 +metric_tags:
102 + - # MIB: PULSESECURE-PSG-MIB
103 + tag: juniper_ive_product_name
104 + OID: 1.3.6.1.4.1.12532.6.0
105 + symbol: productName
106 + - # MIB: PULSESECURE-PSG-MIB
107 + tag: juniper_ive_product_version
108 + OID: 1.3.6.1.4.1.12532.7.0
109 + symbol: productVersion
110 + - # MIB: PULSESECURE-PSG-MIB
111 + tag: juniper_ive_esap_version
112 + OID: 1.3.6.1.4.1.12532.45.0
113 + symbol: esapVersion
114 + - # MIB: PULSESECURE-PSG-MIB
115 + tag: juniper_ive_ive_max_concurrent_users_license_capacity
116 + OID: 1.3.6.1.4.1.12532.55.0
117 + symbol: iveMaxConcurrentUsersLicenseCapacity
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper-qfx.yaml new
+18
@@ -0,0 +1,18 @@
1 +extends:
2 + - _generic-bgp4.yaml
3 + - _generic-host-resources.yaml
4 + - _generic-if.yaml
5 + - _generic-ospf.yaml
6 + - _juniper-cos.yaml
7 + - _juniper-dcu.yaml
8 + - _juniper-firewall.yaml
9 + - _juniper-virtualchassis.yaml
10 + - _juniper.yaml
11 +sysobjectid:
12 + - 1.3.6.1.4.1.2636.1.1.1.2.82 # QFX Switch
13 + - 1.3.6.1.4.1.2636.1.1.1.4.82.* # QFX Switch Variant
14 +metadata:
15 + device:
16 + fields:
17 + type:
18 + value: "switch"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper-srx.yaml new
+80
@@ -0,0 +1,80 @@
1 +# Profile for Juniper SRX Series Firewall devices
2 +# See:
3 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/standard-mib-overview.html
4 +# https://www.juniper.net/documentation/en_US/junos/topics/concept/enterprise-specific-mibs-overview.html
5 +
6 +
7 +extends:
8 + - _generic-if.yaml
9 + - _generic-ip.yaml
10 + - _generic-tcp.yaml
11 + - _generic-udp.yaml
12 + - _generic-ospf.yaml
13 + - _generic-bgp4.yaml
14 + - _generic-host-resources.yaml
15 + - _juniper-userfirewall.yaml
16 + - _juniper-scu.yaml
17 + - _juniper-dcu.yaml
18 + - _juniper-junos-generic.yaml
19 + - _juniper.yaml
20 +
21 +device:
22 + vendor: "juniper-networks"
23 +
24 +metadata:
25 + device:
26 + fields:
27 + type:
28 + value: "firewall"
29 +
30 +# Juniper Products are declared in JUNIPER-CHASSIS-DEFINES-MIB.
31 +# Products are defined under 1.3.6.1.4.1.2636.1.1.1.2 (jnxProductName).
32 +# Variations are defined under 1.3.6.1.4.1.2636.1.1.1.4 (jnxProductVariation).
33 +# Reference: https://mibs.observium.org/mib/JUNIPER-CHASSIS-DEFINES-MIB/
34 +sysobjectid:
35 + - 1.3.6.1.4.1.2636.1.1.1.2.26 # SRX5800
36 + - 1.3.6.1.4.1.2636.1.1.1.4.26.* # SRX5800 variations
37 + - 1.3.6.1.4.1.2636.1.1.1.2.28 # SRX5600
38 + - 1.3.6.1.4.1.2636.1.1.1.4.28.* # SRX5600 variations
39 + - 1.3.6.1.4.1.2636.1.1.1.2.34 # SRX3600
40 + - 1.3.6.1.4.1.2636.1.1.1.4.34.* # SRX3600 variations
41 + - 1.3.6.1.4.1.2636.1.1.1.2.35 # SRX3400
42 + - 1.3.6.1.4.1.2636.1.1.1.4.35.* # SRX3400 variations
43 + - 1.3.6.1.4.1.2636.1.1.1.2.36 # SRX210
44 + - 1.3.6.1.4.1.2636.1.1.1.4.36.* # SRX210 variations
45 + - 1.3.6.1.4.1.2636.1.1.1.2.39 # SRX240
46 + - 1.3.6.1.4.1.2636.1.1.1.4.39.* # SRX240 variations
47 + - 1.3.6.1.4.1.2636.1.1.1.2.40 # SRX650
48 + - 1.3.6.1.4.1.2636.1.1.1.4.40.* # SRX650 variations
49 + - 1.3.6.1.4.1.2636.1.1.1.2.41 # SRX100
50 + - 1.3.6.1.4.1.2636.1.1.1.4.41.* # SRX100 variations
51 + - 1.3.6.1.4.1.2636.1.1.1.2.49 # SRX1400
52 + - 1.3.6.1.4.1.2636.1.1.1.4.49.* # SRX1400 variations
53 + - 1.3.6.1.4.1.2636.1.1.1.2.58 # SRX220
54 + - 1.3.6.1.4.1.2636.1.1.1.4.58.* # SRX220 variations
55 + - 1.3.6.1.4.1.2636.1.1.1.2.64 # SRX110
56 + - 1.3.6.1.4.1.2636.1.1.1.4.64.* # SRX110 variations
57 + - 1.3.6.1.4.1.2636.1.1.1.2.65 # SRX120
58 + - 1.3.6.1.4.1.2636.1.1.1.4.65.* # SRX120 variations
59 + - 1.3.6.1.4.1.2636.1.1.1.2.86 # SRX550
60 + - 1.3.6.1.4.1.2636.1.1.1.4.86.* # SRX550 variations
61 + - 1.3.6.1.4.1.2636.1.1.1.2.133 # SRX300
62 + - 1.3.6.1.4.1.2636.1.1.1.4.133.* # SRX300 variations
63 + - 1.3.6.1.4.1.2636.1.1.1.2.134 # SRX320
64 + - 1.3.6.1.4.1.2636.1.1.1.4.134.* # SRX320 variations
65 + - 1.3.6.1.4.1.2636.1.1.1.2.135 # SRX340
66 + - 1.3.6.1.4.1.2636.1.1.1.4.135.* # SRX340 variations
67 + - 1.3.6.1.4.1.2636.1.1.1.2.136 # SRX345
68 + - 1.3.6.1.4.1.2636.1.1.1.4.136.* # SRX345 variations
69 + - 1.3.6.1.4.1.2636.1.1.1.2.137 # SRX1500
70 + - 1.3.6.1.4.1.2636.1.1.1.4.137.* # SRX1500 variations
71 + - 1.3.6.1.4.1.2636.1.1.1.2.140 # SRX4600
72 + - 1.3.6.1.4.1.2636.1.1.1.4.140.* # SRX4600 variations
73 + - 1.3.6.1.4.1.2636.1.1.1.2.141 # SRX4800
74 + - 1.3.6.1.4.1.2636.1.1.1.4.141.* # SRX4800 variations
75 + - 1.3.6.1.4.1.2636.1.1.1.2.142 # SRX4100
76 + - 1.3.6.1.4.1.2636.1.1.1.4.142.* # SRX4100 variations
77 + - 1.3.6.1.4.1.2636.1.1.1.2.143 # SRX4200
78 + - 1.3.6.1.4.1.2636.1.1.1.4.143.* # SRX4200 variations
79 + - 1.3.6.1.4.1.2636.1.1.1.2.164 # SRX380
80 + - 1.3.6.1.4.1.2636.1.1.1.4.164.* # SRX380 variations
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/juniper.yaml new
+21
@@ -0,0 +1,21 @@
1 +# Profile for Juniper devices
2 +
3 +extends:
4 + - _generic-if.yaml
5 + - _generic-ip.yaml
6 + - _generic-tcp.yaml
7 + - _generic-udp.yaml
8 + - _generic-bgp4.yaml
9 + - _generic-ospf.yaml
10 + - _generic-host-resources.yaml
11 + - _juniper-junos-generic.yaml
12 + - _juniper.yaml
13 +
14 +# Juniper Products are declared in JUNIPER-CHASSIS-DEFINES-MIB.
15 +# Products are defined under 1.3.6.1.4.1.2636.1.1.1.2 (jnxProductName).
16 +# Variations are defined under 1.3.6.1.4.1.2636.1.1.1.4 (jnxProductVariation).
17 +# Reference: https://mibs.observium.org/mib/JUNIPER-CHASSIS-DEFINES-MIB/
18 +sysobjectid:
19 + - 1.3.6.1.4.1.2636.1.1.1.2.* # Products
20 + - 1.3.6.1.4.1.2636.1.1.1.4.* # Variations
21 +
\ No newline at end of file
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/kyocera-printer.yaml new
+75
@@ -0,0 +1,75 @@
1 +extends:
2 + - _base.yaml
3 + # TODO: Extends _generic-if32.yaml when implemented
4 + # - _generic-if32.yaml
5 +sysobjectid: 1.3.6.1.4.1.1347.41
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "kyocera"
11 + type:
12 + value: "printer"
13 +metrics:
14 + - MIB: KYOCERA-MIB
15 + table:
16 + OID: 1.3.6.1.4.1.1347.43.18.2
17 + name: kcprtAlertStateTable
18 + symbols:
19 + - OID: 1.3.6.1.4.1.1347.43.18.2.1.3
20 + name: kcprtAlertStateCode
21 + metric_tags:
22 + - symbol:
23 + OID: 1.3.6.1.4.1.1347.43.18.2.1.2
24 + name: kcprtAlertStateDisplay
25 + tag: kcprt_alert_state_display
26 + - MIB: KYOCERA-MIB
27 + table:
28 + OID: 1.3.6.1.4.1.1347.43.20
29 + name: kcprtMemoryDeviceTable
30 + symbols:
31 + - OID: 1.3.6.1.4.1.1347.43.20.1.1.4
32 + name: kcprtMemoryDeviceTotalSize
33 + - OID: 1.3.6.1.4.1.1347.43.20.1.1.5
34 + name: kcprtMemoryDeviceUsedSize
35 + metric_tags:
36 + - symbol:
37 + OID: 1.3.6.1.4.1.1347.43.20.1.1.2
38 + name: kcprtMemoryDeviceLocation
39 + tag: kcprt_memory_device_location
40 + mapping:
41 + 0: pc_card-a
42 + 1: pc_card-b
43 + 2: option_ro_msocket
44 + 3: resident_font
45 + 4: download_area
46 + 5: hard_disk
47 + 6: memory_card
48 + 255: others
49 + - symbol:
50 + OID: 1.3.6.1.4.1.1347.43.20.1.1.3
51 + name: kcprtMemoryDeviceType
52 + tag: kcprt_memory_device_type
53 + mapping:
54 + 0: rom
55 + 1: flash
56 + 2: sram
57 + 3: dram
58 + 4: strage
59 + 255: others
60 + - symbol:
61 + OID: 1.3.6.1.4.1.1347.43.20.1.1.6
62 + name: kcprtMemoryDeviceStatus
63 + tag: kcprt_memory_device_status
64 + mapping:
65 + 0: ready_read_write
66 + 1: ready_read_only
67 + 2: not_accessible
68 + 4: low_battery
69 +metric_tags:
70 + - tag: kcprt_general_model_name
71 + OID: 1.3.6.1.4.1.1347.43.5.1.1.1.1 # kcprtGeneralModelName.1 (index 1)
72 + symbol: kcprtGeneralModelName
73 + - tag: kcprt_serial_number
74 + OID: 1.3.6.1.4.1.1347.43.5.1.1.28.1 # kcprtSerialNumber.1 (index 1)
75 + symbol: kcprtSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/linksys.yaml new
+10
@@ -0,0 +1,10 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "linksys"
9 +sysobjectid:
10 + - 1.3.6.1.4.1.3955.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/mcafee-web-gateway.yaml new
+228
@@ -0,0 +1,228 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.1230.2.7.1.1
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "mcafee"
11 +metrics:
12 + - MIB: MCAFEE-MWG-MIB
13 + symbol:
14 + name: cpu.usage
15 + OID: 1.3.6.1.4.1.1230.2.7.2.5.1.0
16 + - MIB: MCAFEE-MWG-MIB
17 + symbol:
18 + name: memory.usage
19 + OID: 1.3.6.1.4.1.1230.2.7.2.5.15.0
20 + - MIB: MCAFEE-MWG-MIB
21 + symbol:
22 + name: mcafee.mwg.stMalwareDetected
23 + OID: 1.3.6.1.4.1.1230.2.7.2.1.2.0
24 + metric_type: monotonic_count
25 + - MIB: MCAFEE-MWG-MIB
26 + symbol:
27 + name: mcafee.mwg.stConnectionsLegitimate
28 + OID: 1.3.6.1.4.1.1230.2.7.2.1.3.0
29 + metric_type: monotonic_count
30 + - MIB: MCAFEE-MWG-MIB
31 + symbol:
32 + name: mcafee.mwg.stBlockedByAntiMalware
33 + OID: 1.3.6.1.4.1.1230.2.7.2.1.4.0
34 + metric_type: monotonic_count
35 + - MIB: MCAFEE-MWG-MIB
36 + symbol:
37 + name: mcafee.mwg.stConnectionsBlocked
38 + OID: 1.3.6.1.4.1.1230.2.7.2.1.5.0
39 + metric_type: monotonic_count
40 + - MIB: MCAFEE-MWG-MIB
41 + symbol:
42 + name: mcafee.mwg.stBlockedByMediaFilter
43 + OID: 1.3.6.1.4.1.1230.2.7.2.1.6.0
44 + metric_type: monotonic_count
45 + - MIB: MCAFEE-MWG-MIB
46 + symbol:
47 + name: mcafee.mwg.stBlockedByURLFilter
48 + OID: 1.3.6.1.4.1.1230.2.7.2.1.7.0
49 + metric_type: monotonic_count
50 + - MIB: MCAFEE-MWG-MIB
51 + symbol:
52 + name: mcafee.mwg.stMimeType
53 + OID: 1.3.6.1.4.1.1230.2.7.2.1.8.0
54 + metric_type: monotonic_count
55 + - MIB: MCAFEE-MWG-MIB
56 + symbol:
57 + name: mcafee.mwg.stCategories
58 + OID: 1.3.6.1.4.1.1230.2.7.2.1.9.0
59 + metric_type: monotonic_count
60 + - MIB: MCAFEE-MWG-MIB
61 + symbol:
62 + name: mcafee.mwg.stHttpRequests
63 + OID: 1.3.6.1.4.1.1230.2.7.2.2.1.0
64 + metric_type: monotonic_count
65 + - MIB: MCAFEE-MWG-MIB
66 + symbol:
67 + name: mcafee.mwg.stHttpTraffic
68 + OID: 1.3.6.1.4.1.1230.2.7.2.2.2.0
69 + metric_type: monotonic_count
70 + - MIB: MCAFEE-MWG-MIB
71 + symbol:
72 + name: mcafee.mwg.stHttpBytesFromClient
73 + OID: 1.3.6.1.4.1.1230.2.7.2.2.3.0
74 + metric_type: monotonic_count
75 + - MIB: MCAFEE-MWG-MIB
76 + symbol:
77 + name: mcafee.mwg.stHttpBytesFromServer
78 + OID: 1.3.6.1.4.1.1230.2.7.2.2.4.0
79 + metric_type: monotonic_count
80 + - MIB: MCAFEE-MWG-MIB
81 + symbol:
82 + name: mcafee.mwg.stHttpBytesToClient
83 + OID: 1.3.6.1.4.1.1230.2.7.2.2.5.0
84 + metric_type: monotonic_count
85 + - MIB: MCAFEE-MWG-MIB
86 + symbol:
87 + name: mcafee.mwg.stHttpBytesToServer
88 + OID: 1.3.6.1.4.1.1230.2.7.2.2.6.0
89 + metric_type: monotonic_count
90 + - MIB: MCAFEE-MWG-MIB
91 + symbol:
92 + name: mcafee.mwg.stHttpsRequests
93 + OID: 1.3.6.1.4.1.1230.2.7.2.3.1.0
94 + metric_type: monotonic_count
95 + - MIB: MCAFEE-MWG-MIB
96 + symbol:
97 + name: mcafee.mwg.stHttpsTraffic
98 + OID: 1.3.6.1.4.1.1230.2.7.2.3.2.0
99 + metric_type: monotonic_count
100 + - MIB: MCAFEE-MWG-MIB
101 + symbol:
102 + name: mcafee.mwg.stHttpsBytesFromClient
103 + OID: 1.3.6.1.4.1.1230.2.7.2.3.3.0
104 + metric_type: monotonic_count
105 + - MIB: MCAFEE-MWG-MIB
106 + symbol:
107 + name: mcafee.mwg.stHttpsBytesFromServer
108 + OID: 1.3.6.1.4.1.1230.2.7.2.3.4.0
109 + metric_type: monotonic_count
110 + - MIB: MCAFEE-MWG-MIB
111 + symbol:
112 + name: mcafee.mwg.stHttpsBytesToClient
113 + OID: 1.3.6.1.4.1.1230.2.7.2.3.5.0
114 + metric_type: monotonic_count
115 + - MIB: MCAFEE-MWG-MIB
116 + symbol:
117 + name: mcafee.mwg.stHttpsBytesToServer
118 + OID: 1.3.6.1.4.1.1230.2.7.2.3.6.0
119 + metric_type: monotonic_count
120 + - MIB: MCAFEE-MWG-MIB
121 + symbol:
122 + name: mcafee.mwg.stFtpTraffic
123 + OID: 1.3.6.1.4.1.1230.2.7.2.4.1.0
124 + metric_type: monotonic_count
125 + - MIB: MCAFEE-MWG-MIB
126 + symbol:
127 + name: mcafee.mwg.stFtpBytesFromClient
128 + OID: 1.3.6.1.4.1.1230.2.7.2.4.2.0
129 + metric_type: monotonic_count
130 + - MIB: MCAFEE-MWG-MIB
131 + symbol:
132 + name: mcafee.mwg.stFtpBytesFromServer
133 + OID: 1.3.6.1.4.1.1230.2.7.2.4.3.0
134 + metric_type: monotonic_count
135 + - MIB: MCAFEE-MWG-MIB
136 + symbol:
137 + name: mcafee.mwg.stFtpBytesToClient
138 + OID: 1.3.6.1.4.1.1230.2.7.2.4.4.0
139 + metric_type: monotonic_count
140 + - MIB: MCAFEE-MWG-MIB
141 + symbol:
142 + name: mcafee.mwg.stFtpBytesToServer
143 + OID: 1.3.6.1.4.1.1230.2.7.2.4.5.0
144 + metric_type: monotonic_count
145 + - MIB: MCAFEE-MWG-MIB
146 + symbol:
147 + name: mcafee.mwg.stClientCount
148 + OID: 1.3.6.1.4.1.1230.2.7.2.5.2.0
149 + metric_type: monotonic_count
150 + - MIB: MCAFEE-MWG-MIB
151 + symbol:
152 + name: mcafee.mwg.stConnectedSockets
153 + OID: 1.3.6.1.4.1.1230.2.7.2.5.3.0
154 + metric_type: monotonic_count
155 + - MIB: MCAFEE-MWG-MIB
156 + symbol:
157 + name: mcafee.mwg.stResolveHostViaDNS
158 + OID: 1.3.6.1.4.1.1230.2.7.2.5.6.0
159 + metric_type: monotonic_count
160 + - MIB: MCAFEE-MWG-MIB
161 + symbol:
162 + name: mcafee.mwg.stTimeConsumedByRuleEngine
163 + OID: 1.3.6.1.4.1.1230.2.7.2.5.7.0
164 + metric_type: monotonic_count
165 + - MIB: MCAFEE-MWG-MIB
166 + symbol:
167 + name: mcafee.mwg.stTimeForTransaction
168 + OID: 1.3.6.1.4.1.1230.2.7.2.5.8.0
169 + metric_type: monotonic_count
170 + - MIB: MCAFEE-MWG-MIB
171 + table:
172 + name: stCategoriesTable
173 + OID: 1.3.6.1.4.1.1230.2.7.2.1.10
174 + symbols:
175 + - name: mcafee.mwg.stCategoryCount
176 + OID: 1.3.6.1.4.1.1230.2.7.2.1.10.1.2
177 + metric_type: monotonic_count
178 + metric_tags:
179 + - symbol:
180 + name: mcafee.mwg.stCategoryName
181 + OID: 1.3.6.1.4.1.1230.2.7.2.1.10.1.1
182 + tag: mcafee_mwg_st_category_name
183 +metric_tags:
184 + - OID: 1.3.6.1.4.1.1230.2.7.1.1.0
185 + symbol: kProductName
186 + tag: mcafee_mwg_k_product_name
187 + - OID: 1.3.6.1.4.1.1230.2.7.1.2.0
188 + symbol: kCompanyName
189 + tag: mcafee_mwg_k_company_name
190 + - OID: 1.3.6.1.4.1.1230.2.7.1.3.0
191 + symbol: kProductVersion
192 + tag: mcafee_mwg_k_product_version
193 + - OID: 1.3.6.1.4.1.1230.2.7.1.4.0
194 + symbol: kMajorVersion
195 + tag: mcafee_mwg_k_major_version
196 + - OID: 1.3.6.1.4.1.1230.2.7.1.5.0
197 + symbol: kMinorVersion
198 + tag: mcafee_mwg_k_minor_version
199 + - OID: 1.3.6.1.4.1.1230.2.7.1.6.0
200 + symbol: kMicroVersion
201 + tag: mcafee_mwg_k_micro_version
202 + - OID: 1.3.6.1.4.1.1230.2.7.1.7.0
203 + symbol: kHotfixVersion
204 + tag: mcafee_mwg_k_hotfix_version
205 + - OID: 1.3.6.1.4.1.1230.2.7.1.8.0
206 + symbol: kCustomVersion
207 + tag: mcafee_mwg_k_custom_version
208 + - OID: 1.3.6.1.4.1.1230.2.7.1.9.0
209 + symbol: kRevision
210 + tag: mcafee_mwg_k_revision
211 + - OID: 1.3.6.1.4.1.1230.2.7.1.10.0
212 + symbol: kBuildNumber
213 + tag: mcafee_mwg_k_build_number
214 + - OID: 1.3.6.1.4.1.1230.2.7.1.20.1.0
215 + symbol: pAMEngineVersion
216 + tag: mcafee_mwg_p_am_engine_version
217 + - OID: 1.3.6.1.4.1.1230.2.7.1.20.3.0
218 + symbol: pMFEEngineVersion
219 + tag: mcafee_mwg_p_mfe_engine_version
220 + - OID: 1.3.6.1.4.1.1230.2.7.1.20.4.0
221 + symbol: pMFEDATVersion
222 + tag: mcafee_mwg_p_mfedat_version
223 + - OID: 1.3.6.1.4.1.1230.2.7.1.20.5.0
224 + symbol: pAMProactiveVersion
225 + tag: mcafee_mwg_p_am_proactive_version
226 + - OID: 1.3.6.1.4.1.1230.2.7.1.20.6.0
227 + symbol: pTSDBVersion
228 + tag: mcafee_mwg_p_tsdb_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/meraki-cloud-controller.yaml new
+116
@@ -0,0 +1,116 @@
1 +# Profile for Meraki Cloud devices
2 +#
3 +# We don't extend from base for now, as sysName is useless for meraki.
4 +extends:
5 + - _base.yaml
6 + - _generic-if.yaml
7 +
8 +device:
9 + vendor: "meraki"
10 +
11 +metadata:
12 + device:
13 + fields:
14 + type:
15 + value: "SD-WAN"
16 +
17 +sysobjectid:
18 + - 1.3.6.1.4.1.29671.1
19 + - 1.3.6.1.4.1.29671.1.*
20 +
21 +metrics:
22 + - MIB: MERAKI-CLOUD-CONTROLLER-MIB
23 + table:
24 + OID: 1.3.6.1.4.1.29671.1.1.4
25 + name: devTable
26 + # devTable INDEX is: devMac
27 + metric_type: gauge
28 + symbols:
29 + - OID: 1.3.6.1.4.1.29671.1.1.4.1.3
30 + name: devStatus
31 + - OID: 1.3.6.1.4.1.29671.1.1.4.1.5
32 + name: devClientCount
33 + metric_tags:
34 + # devMac is part of the devTable index
35 + - symbol:
36 + OID: 1.3.6.1.4.1.29671.1.1.4.1.1
37 + name: devMac
38 + format: mac_address
39 + tag: mac_address
40 + - symbol:
41 + OID: 1.3.6.1.4.1.29671.1.1.4.1.2
42 + name: devName
43 + tag: device_name
44 + - symbol:
45 + OID: 1.3.6.1.4.1.29671.1.1.4.1.9
46 + name: devProductCode
47 + tag: product
48 + - symbol:
49 + OID: 1.3.6.1.4.1.29671.1.1.4.1.11
50 + name: devNetworkName
51 + tag: network
52 + - MIB: MERAKI-CLOUD-CONTROLLER-MIB
53 + table:
54 + OID: 1.3.6.1.4.1.29671.1.1.4
55 + name: devTable
56 + # devTable INDEX is: devMac
57 + metric_type: gauge
58 + symbols:
59 + - name: meraki.dev
60 + constant_value_one: true
61 + metric_tags:
62 + # devMac is part of the devTable index
63 + - symbol:
64 + OID: 1.3.6.1.4.1.29671.1.1.4.1.1
65 + name: devMac
66 + format: mac_address
67 + tag: mac_address
68 + - symbol:
69 + OID: 1.3.6.1.4.1.29671.1.1.4.1.2
70 + name: devName
71 + tag: device_name
72 + - symbol:
73 + OID: 1.3.6.1.4.1.29671.1.1.4.1.9
74 + name: devProductCode
75 + tag: product
76 + - symbol:
77 + OID: 1.3.6.1.4.1.29671.1.1.4.1.11
78 + name: devNetworkName
79 + tag: network
80 + - symbol:
81 + OID: 1.3.6.1.4.1.29671.1.1.4.1.3
82 + name: devStatus
83 + tag: status
84 + mapping:
85 + 0: offline
86 + 1: online
87 + - MIB: MERAKI-CLOUD-CONTROLLER-MIB
88 + table:
89 + OID: 1.3.6.1.4.1.29671.1.1.5
90 + name: devInterfaceTable
91 + # devInterfaceTable INDEX is: devInterfaceDevMac, devInterfaceIndex
92 + metric_type: gauge
93 + symbols:
94 + - OID: 1.3.6.1.4.1.29671.1.1.5.1.4
95 + name: devInterfaceSentPkts
96 + - OID: 1.3.6.1.4.1.29671.1.1.5.1.5
97 + name: devInterfaceRecvPkts
98 + - OID: 1.3.6.1.4.1.29671.1.1.5.1.6
99 + name: devInterfaceSentBytes
100 + - OID: 1.3.6.1.4.1.29671.1.1.5.1.7
101 + name: devInterfaceRecvBytes
102 + metric_tags:
103 + # devMac and devInterfaceIndex are part of the devInterfaceTable index
104 + - symbol:
105 + OID: 1.3.6.1.4.1.29671.1.1.5.1.1
106 + name: devInterfaceDevMac
107 + format: mac_address
108 + tag: mac_address
109 + - symbol:
110 + OID: 1.3.6.1.4.1.29671.1.1.5.1.2
111 + name: devInterfaceIndex
112 + tag: index
113 + - symbol:
114 + OID: 1.3.6.1.4.1.29671.1.1.5.1.3
115 + name: devInterfaceName
116 + tag: interface
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/meraki.yaml new
+19
@@ -0,0 +1,19 @@
1 +# Profile for Meraki devices
2 +# 1.3.6.1.4.1.29671.1 Meraki Cloud Controllers
3 +# 1.3.6.1.4.1.29671.2 Meraki Devices
4 +#
5 +# We don't extend from base for now, as sysName is useless for meraki.
6 +extends:
7 + - _base.yaml
8 + - _generic-if.yaml
9 +
10 +device:
11 + vendor: "meraki"
12 +
13 +metadata:
14 + device:
15 + fields:
16 + vendor:
17 + value: "meraki"
18 +
19 +sysobjectid: 1.3.6.1.4.1.29671.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/mikrotik-router.yaml new
+120
@@ -0,0 +1,120 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "mikrotik"
9 + type:
10 + value: "router"
11 +sysobjectid:
12 + - 1.3.6.1.4.1.14988.1.*
13 +metrics:
14 + - MIB: MIKROTIK-MIB
15 + table:
16 + OID: 1.3.6.1.4.1.14988.1.1.19.1
17 + name: mtxrOpticalTable
18 + symbols:
19 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.6
20 + name: mtxrOpticalTemperature
21 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.10
22 + name: mtxrOpticalRxPower
23 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.7
24 + name: mtxrOpticalSupplyVoltage
25 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.8
26 + name: mtxrOpticalTxBiasCurrent
27 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.5
28 + name: mtxrOpticalWavelength
29 + - OID: 1.3.6.1.4.1.14988.1.1.19.1.1.9
30 + name: mtxrOpticalTxPower
31 + metric_tags:
32 + - symbol:
33 + OID: 1.3.6.1.4.1.14988.1.1.19.1.1.1
34 + name: mtxrOpticalIndex
35 + tag: mtxr_optical_index
36 + - symbol:
37 + OID: 1.3.6.1.4.1.14988.1.1.19.1.1.2
38 + name: mtxrOpticalName
39 + tag: mtxr_optical_name
40 + - symbol:
41 + OID: 1.3.6.1.4.1.14988.1.1.19.1.1.4
42 + name: mtxrOpticalTxFault
43 + tag: mtxr_optical_tx_fault
44 + mapping:
45 + 0: 'false'
46 + 1: 'true'
47 + - symbol:
48 + OID: 1.3.6.1.4.1.14988.1.1.19.1.1.3
49 + name: mtxrOpticalRxLoss
50 + tag: mtxr_optical_rx_loss
51 + mapping:
52 + 0: 'false'
53 + 1: 'true'
54 + - MIB: MIKROTIK-MIB
55 + symbol:
56 + OID: 1.3.6.1.4.1.14988.1.1.3.6
57 + name: mtxrHlCpuTemperature
58 + - MIB: MIKROTIK-MIB
59 + symbol:
60 + OID: 1.3.6.1.4.1.14988.1.1.3.10
61 + name: mtxrHlTemperature
62 + - MIB: MIKROTIK-MIB
63 + symbol:
64 + OID: 1.3.6.1.4.1.14988.1.1.3.8
65 + name: mtxrHlVoltage
66 + - MIB: MIKROTIK-MIB
67 + table:
68 + OID: 1.3.6.1.4.1.14988.1.1.15.1
69 + name: mtxrPOETable
70 + symbols:
71 + - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.6
72 + name: mtxrPOEPower
73 + - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.4
74 + name: mtxrPOEVoltage
75 + - OID: 1.3.6.1.4.1.14988.1.1.15.1.1.5
76 + name: mtxrPOECurrent
77 + metric_tags:
78 + - symbol:
79 + OID: 1.3.6.1.4.1.14988.1.1.15.1.1.1
80 + name: mtxrPOEInterfaceIndex
81 + tag: mtxr_poe_interface_index
82 + - symbol:
83 + OID: 1.3.6.1.4.1.14988.1.1.15.1.1.2
84 + name: mtxrPOEName
85 + tag: mtxr_poe_name
86 + - symbol:
87 + OID: 1.3.6.1.4.1.14988.1.1.15.1.1.3
88 + name: mtxrPOEStatus
89 + tag: mtxr_poe_status
90 + mapping:
91 + 1: disabled
92 + 2: waiting_for_load
93 + 3: powered_on
94 + 4: overload
95 +# - MIB: MIKROTIK-MIB
96 +# symbol:
97 +# OID: 1.3.6.1.4.1.14988.1.1.3.17
98 +# name: mtxrHlFanSpeed1
99 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
100 +# - MIB: MIKROTIK-MIB
101 +# symbol:
102 +# OID: 1.3.6.1.4.1.14988.1.1.3.18
103 +# name: mtxrHlFanSpeed2
104 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
105 + - MIB: HOST-RESOURCES-MIB
106 + symbol:
107 + OID: 1.3.6.1.2.1.25.3.3.1.2.1
108 + name: cpu.usage
109 + - MIB: HOST-RESOURCES-MIB
110 + table:
111 + OID: 1.3.6.1.2.1.25.2.3
112 + name: hrStorageTable
113 + symbols:
114 + - OID: 1.3.6.1.2.1.25.2.3.1.5
115 + name: memory.total
116 + - OID: 1.3.6.1.2.1.25.2.3.1.6
117 + name: memory.used
118 + metric_tags:
119 + - tag: mem
120 + index: 1
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/nasuni-filer.yaml new
+350
@@ -0,0 +1,350 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.42040.1.1.0
7 +metadata:
8 + device:
9 + fields:
10 + vendor:
11 + value: "nasuni"
12 + type:
13 + value: "storage"
14 +metrics:
15 +# - MIB: NASUNI-FILER-MIB
16 +# symbol:
17 +# OID: 1.3.6.1.4.1.42040.1.5.0
18 +# name: nasuni.filerUpdateAvailable
19 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
20 + - MIB: NASUNI-FILER-MIB
21 + symbol:
22 + OID: 1.3.6.1.4.1.42040.1.6.0
23 + name: nasuni.filerTotalUnprotectedData
24 + - MIB: NASUNI-FILER-MIB
25 + symbol:
26 + OID: 1.3.6.1.4.1.42040.1.7.0
27 + name: nasuni.filerPushesCompleted
28 + - MIB: NASUNI-FILER-MIB
29 + symbol:
30 + OID: 1.3.6.1.4.1.42040.1.8.0
31 + name: nasuni.filerTotalPushed
32 + - MIB: NASUNI-FILER-MIB
33 + symbol:
34 + OID: 1.3.6.1.4.1.42040.1.9.0
35 + name: nasuni.filerTotalRead
36 + - MIB: NASUNI-FILER-MIB
37 + symbol:
38 + OID: 1.3.6.1.4.1.42040.1.10.0
39 + name: nasuni.filerOpensForRead
40 + - MIB: NASUNI-FILER-MIB
41 + symbol:
42 + OID: 1.3.6.1.4.1.42040.1.11.0
43 + name: nasuni.filerOpensForWrite
44 + - MIB: NASUNI-FILER-MIB
45 + symbol:
46 + OID: 1.3.6.1.4.1.42040.1.12.0
47 + name: nasuni.filerMergeConflicts
48 + - MIB: NASUNI-FILER-MIB
49 + symbol:
50 + OID: 1.3.6.1.4.1.42040.1.13.0
51 + name: nasuni.filerReadHits
52 + - MIB: NASUNI-FILER-MIB
53 + symbol:
54 + OID: 1.3.6.1.4.1.42040.1.14.0
55 + name: nasuni.filerReadMisses
56 + - MIB: NASUNI-FILER-MIB
57 + metric_type: gauge
58 + symbol:
59 + OID: 1.3.6.1.4.1.42040.1.100.1.0
60 + name: nasuni.filerCacheTotal
61 + - MIB: NASUNI-FILER-MIB
62 + metric_type: gauge
63 + symbol:
64 + OID: 1.3.6.1.4.1.42040.1.100.2.0
65 + name: nasuni.filerCacheUsed
66 + - MIB: NASUNI-FILER-MIB
67 + metric_type: gauge
68 + symbol:
69 + OID: 1.3.6.1.4.1.42040.1.100.3.0
70 + name: nasuni.filerCacheFree
71 + - MIB: NASUNI-FILER-MIB
72 + symbol:
73 + OID: 1.3.6.1.4.1.42040.1.103.1.0
74 + name: nasuni.filerTotalShares
75 + - MIB: NASUNI-FILER-MIB
76 + symbol:
77 + OID: 1.3.6.1.4.1.42040.1.103.2.0
78 + name: nasuni.filerTotalShareLocks
79 + - MIB: NASUNI-FILER-MIB
80 + symbol:
81 + OID: 1.3.6.1.4.1.42040.1.103.3.0
82 + name: nasuni.filerTotalShareClients
83 + - MIB: NASUNI-FILER-MIB
84 + symbol:
85 + OID: 1.3.6.1.4.1.42040.1.104.1.0
86 + name: nasuni.filerTotalExports
87 + - MIB: NASUNI-FILER-MIB
88 + symbol:
89 + OID: 1.3.6.1.4.1.42040.1.105.1.0
90 + name: nasuni.filerTotalIscsiTargets
91 + - MIB: NASUNI-FILER-MIB
92 + symbol:
93 + OID: 1.3.6.1.4.1.42040.1.105.2.0
94 + name: nasuni.filerTotalIscsiClients
95 + - MIB: NASUNI-FILER-MIB
96 + symbol:
97 + OID: 1.3.6.1.4.1.42040.1.109.1.0
98 + name: nasuni.filerTotalFtpdirs
99 + - MIB: NASUNI-FILER-MIB
100 + symbol:
101 + OID: 1.3.6.1.4.1.42040.1.106.1.0
102 + name: nasuni.filerTotalMobileLicenses
103 + - MIB: NASUNI-FILER-MIB
104 + symbol:
105 + OID: 1.3.6.1.4.1.42040.1.106.2.0
106 + name: nasuni.filerNumIOSLicenses
107 + - MIB: NASUNI-FILER-MIB
108 + symbol:
109 + OID: 1.3.6.1.4.1.42040.1.106.3.0
110 + name: nasuni.filerNumAndroidLicenses
111 + - MIB: NASUNI-FILER-MIB
112 + symbol:
113 + OID: 1.3.6.1.4.1.42040.1.108.1.0
114 + name: nasuni.filerCloudOut
115 + - MIB: NASUNI-FILER-MIB
116 + symbol:
117 + OID: 1.3.6.1.4.1.42040.1.108.2.0
118 + name: nasuni.filerCloudIn
119 + - MIB: NASUNI-FILER-MIB
120 + symbol:
121 + OID: 1.3.6.1.4.1.42040.1.108.3.0
122 + name: nasuni.filerMobileOut
123 + - MIB: NASUNI-FILER-MIB
124 + symbol:
125 + OID: 1.3.6.1.4.1.42040.1.108.4.0
126 + name: nasuni.filerMobileIn
127 + - MIB: NASUNI-FILER-MIB
128 + symbol:
129 + OID: 1.3.6.1.4.1.42040.1.108.5.0
130 + name: nasuni.filerUIOut
131 + - MIB: NASUNI-FILER-MIB
132 + symbol:
133 + OID: 1.3.6.1.4.1.42040.1.108.6.0
134 + name: nasuni.filerUIIn
135 + - MIB: NASUNI-FILER-MIB
136 + symbol:
137 + OID: 1.3.6.1.4.1.42040.1.108.7.0
138 + name: nasuni.filerClientsOut
139 + - MIB: NASUNI-FILER-MIB
140 + symbol:
141 + OID: 1.3.6.1.4.1.42040.1.108.8.0
142 + name: nasuni.filerClientsIn
143 + - MIB: NASUNI-FILER-MIB
144 + symbol:
145 + OID: 1.3.6.1.4.1.42040.1.108.9.0
146 + name: nasuni.filerMigrationOut
147 + - MIB: NASUNI-FILER-MIB
148 + symbol:
149 + OID: 1.3.6.1.4.1.42040.1.108.10.0
150 + name: nasuni.filerMigrationIn
151 + - MIB: NASUNI-FILER-MIB
152 + symbol:
153 + OID: 1.3.6.1.4.1.42040.3.1.0
154 + name: nasuni.accountLicensedCapacity
155 + - MIB: NASUNI-FILER-MIB
156 + symbol:
157 + OID: 1.3.6.1.4.1.42040.3.2.0
158 + name: nasuni.accountUsedCapacity
159 + - MIB: NASUNI-FILER-MIB
160 + symbol:
161 + OID: 1.3.6.1.4.1.42040.3.3.0
162 + name: nasuni.accountPercentUsedCapacity
163 + - MIB: NASUNI-FILER-MIB
164 + symbol:
165 + OID: 1.3.6.1.4.1.42040.1.102.1.0
166 + name: nasuni.filerAmbientTemp
167 + - MIB: NASUNI-FILER-MIB
168 + symbol:
169 + OID: 1.3.6.1.4.1.42040.1.102.2.0
170 + name: nasuni.filerInletTemp
171 + - MIB: NASUNI-FILER-MIB
172 + symbol:
173 + OID: 1.3.6.1.4.1.42040.1.102.3.0
174 + name: nasuni.filerExhaustTemp
175 + - MIB: NASUNI-FILER-MIB
176 + symbol:
177 + OID: 1.3.6.1.4.1.42040.1.102.4.0
178 + name: nasuni.filerNumPowerSupplies
179 + - MIB: NASUNI-FILER-MIB
180 + symbol:
181 + OID: 1.3.6.1.4.1.42040.1.102.5.0
182 + name: nasuni.filerPowerSupplyErrors
183 + - MIB: NASUNI-FILER-MIB
184 + symbol:
185 + OID: 1.3.6.1.4.1.42040.1.102.6.0
186 + name: nasuni.filerNumRaidArrays
187 + - MIB: NASUNI-FILER-MIB
188 + symbol:
189 + OID: 1.3.6.1.4.1.42040.1.102.7.0
190 + name: nasuni.filerRaidArrayErrors
191 + - MIB: NASUNI-FILER-MIB
192 + symbol:
193 + OID: 1.3.6.1.4.1.42040.1.102.8.0
194 + name: nasuni.filerNumRaidDisks
195 + - MIB: NASUNI-FILER-MIB
196 + symbol:
197 + OID: 1.3.6.1.4.1.42040.1.102.9.0
198 + name: nasuni.filerRaidDiskErrors
199 + - MIB: NASUNI-FILER-MIB
200 + symbol:
201 + OID: 1.3.6.1.4.1.42040.1.101.10.0
202 + name: nasuni.filerDiskCount
203 + - MIB: NASUNI-FILER-MIB
204 + symbol:
205 + OID: 1.3.6.1.4.1.42040.1.101.6.0
206 + name: nasuni.filerPhysCpuCount
207 + - MIB: NASUNI-FILER-MIB
208 + symbol:
209 + OID: 1.3.6.1.4.1.42040.1.101.7.0
210 + name: nasuni.filerCoreCount
211 + - MIB: NASUNI-FILER-MIB
212 + symbol:
213 + OID: 1.3.6.1.4.1.42040.2.1.0
214 + name: nasuni.volumeCount
215 + - MIB: NASUNI-FILER-MIB
216 + table:
217 + OID: 1.3.6.1.4.1.42040.2.2
218 + name: volumeTable
219 + symbols:
220 + - OID: 1.3.6.1.4.1.42040.2.2.1.6
221 + name: nasuni.volumeTableAccessibleData
222 + - OID: 1.3.6.1.4.1.42040.2.2.1.7
223 + name: nasuni.volumeTableUnprotectedData
224 + - OID: 1.3.6.1.4.1.42040.2.2.1.10
225 + name: nasuni.volumeTableLastSnapshotDuration
226 + - OID: 1.3.6.1.4.1.42040.2.2.1.11
227 + name: nasuni.volumeTableLastSnapshotVersion
228 + - OID: 1.3.6.1.4.1.42040.2.2.1.19
229 + name: nasuni.volumeTableQuota
230 + - OID: 1.3.6.1.4.1.42040.2.2.1.20
231 + name: nasuni.volumeTableNumAVViolations
232 + - OID: 1.3.6.1.4.1.42040.2.2.1.21
233 + name: nasuni.volumeTableNumFileAlerts
234 + - OID: 1.3.6.1.4.1.42040.2.2.1.22
235 + name: nasuni.volumeTableNumExports
236 + - OID: 1.3.6.1.4.1.42040.2.2.1.23
237 + name: nasuni.volumeTableNumShares
238 + - OID: 1.3.6.1.4.1.42040.2.2.1.24
239 + name: nasuni.volumeTableNumFtpdirs
240 + metric_tags:
241 + - symbol:
242 + OID: 1.3.6.1.4.1.42040.2.2.1.2
243 + name: volumeTableDescription
244 + tag: volume_table_description
245 + - symbol:
246 + OID: 1.3.6.1.4.1.42040.2.2.1.3
247 + name: volumeTableProvider
248 + tag: volume_table_provider
249 + - symbol:
250 + OID: 1.3.6.1.4.1.42040.2.2.1.4
251 + name: volumeTableProtocol
252 + tag: volume_table_protocol
253 + - symbol:
254 + OID: 1.3.6.1.4.1.42040.2.2.1.12
255 + name: volumeTableIsActive
256 + tag: volume_table_is_active
257 + mapping:
258 + 0: 'false'
259 + 1: 'true'
260 + # mapping in the metric description
261 + - symbol:
262 + OID: 1.3.6.1.4.1.42040.2.2.1.13
263 + name: volumeTableIsShared
264 + tag: volume_table_is_shared
265 + mapping:
266 + 0: 'false'
267 + 1: 'true'
268 + # mapping in the metric description
269 + - symbol:
270 + OID: 1.3.6.1.4.1.42040.2.2.1.14
271 + name: volumeTableIsReadOnly
272 + tag: volume_table_is_read_only
273 + mapping:
274 + 0: 'false'
275 + 1: 'true'
276 + # mapping in the metric description
277 + - symbol:
278 + OID: 1.3.6.1.4.1.42040.2.2.1.15
279 + name: volumeTableIsPinned
280 + tag: volume_table_is_pinned
281 + mapping:
282 + 0: 'false'
283 + 1: 'true'
284 + # mapping in the metric description
285 + - symbol:
286 + OID: 1.3.6.1.4.1.42040.2.2.1.16
287 + name: volumeTableIsRemote
288 + tag: volume_table_is_remote
289 + mapping:
290 + 0: 'false'
291 + 1: 'true'
292 + # mapping in the metric description
293 + - symbol:
294 + OID: 1.3.6.1.4.1.42040.2.2.1.17
295 + name: volumeTableAvEnabled
296 + tag: volume_table_av_enabled
297 + mapping:
298 + 0: 'false'
299 + 1: 'true'
300 + # mapping in the metric description
301 + - symbol:
302 + OID: 1.3.6.1.4.1.42040.2.2.1.18
303 + name: volumeTableRemoteAccessEnabled
304 + tag: volume_table_remote_access_enabled
305 + mapping:
306 + 0: 'false'
307 + 1: 'true'
308 + # mapping in the metric description
309 + - symbol:
310 + OID: 1.3.6.1.4.1.42040.2.2.1.5
311 + name: volumeTableStatus
312 + tag: volume_table_status
313 +metric_tags:
314 + - OID: 1.3.6.1.4.1.42040.1.1.0
315 + symbol: filerIdentifier
316 + tag: filer_identifier
317 + - OID: 1.3.6.1.4.1.42040.1.2.0
318 + symbol: filerVersion
319 + tag: filer_version
320 + - OID: 1.3.6.1.4.1.42040.1.3.0
321 + symbol: filerSerialNumber
322 + tag: filer_serial_number
323 + - OID: 1.3.6.1.4.1.42040.1.101.1.0
324 + symbol: filerPlatformName
325 + tag: filer_platform_name
326 + - OID: 1.3.6.1.4.1.42040.1.101.2.0
327 + symbol: filerPlatformType
328 + tag: filer_platform_type
329 + - OID: 1.3.6.1.4.1.42040.1.101.3.0
330 + symbol: filerPackageFormat
331 + tag: filer_package_format
332 + - OID: 1.3.6.1.4.1.42040.1.101.4.0
333 + symbol: filerBiosVersion
334 + tag: filer_bios_version
335 + - OID: 1.3.6.1.4.1.42040.1.101.5.0
336 + symbol: filerCpuModel
337 + tag: filer_cpu_model
338 + - OID: 1.3.6.1.4.1.42040.1.101.8.0
339 + symbol: filerCpuArch
340 + tag: filer_cpu_arch
341 +# Awaiting support for reporting string scalar OIDs for the following
342 +# - OID: 1.3.6.1.4.1.42040.1.107.1.0
343 +# symbol: filerSupportServiceEnabled
344 +# tag: filer_support_service_enabled
345 +# - OID: 1.3.6.1.4.1.42040.1.107.2.0
346 +# symbol: filerSupportServiceConnected
347 +# tag: filer_support_service_connected
348 +# - OID: 1.3.6.1.4.1.42040.1.107.3.0
349 +# symbol: filerSupportServiceRunning
350 +# tag: filer_support_service_running
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/nec-univerge.yaml new
+181
@@ -0,0 +1,181 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-bgp4.yaml
4 + - _generic-if.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.119.1.* # NEC
7 + - 1.3.6.1.4.1.119.1.84.18 # NEC IX Series IX2207
8 +metadata:
9 + device:
10 + fields:
11 + vendor:
12 + value: "nec"
13 +metrics:
14 + - MIB: PICO-SMI
15 + symbol:
16 + name: nec.picoCelsius
17 + OID: 1.3.6.1.4.1.119.2.3.84.2.1.1.0
18 + - MIB: PICO-SMI
19 + symbol:
20 + name: nec.picoFahrenheit
21 + OID: 1.3.6.1.4.1.119.2.3.84.2.1.2.0
22 + - MIB: PICO-SMI
23 + symbol:
24 + name: nec.picoVoltage
25 + OID: 1.3.6.1.4.1.119.2.3.84.2.2.0
26 + - MIB: PICO-SMI
27 + symbol:
28 + name: cpu.usage
29 + OID: 1.3.6.1.4.1.119.2.3.84.2.5.3.0
30 + - MIB: PICO-SMI
31 + symbol:
32 + name: memory.usage
33 + OID: 1.3.6.1.4.1.119.2.3.84.2.6.2.0
34 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
35 + symbol:
36 + name: nec.pikeGlobalActiveTunnels
37 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1.0
38 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
39 + symbol:
40 + name: nec.pikeGlobalInNotifys
41 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6.0
42 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
43 + symbol:
44 + name: nec.pikeGlobalInP2Exchgs
45 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7.0
46 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
47 + symbol:
48 + name: nec.pikeGlobalInP2ExchgInvalids
49 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8.0
50 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
51 + symbol:
52 + name: nec.pikeGlobalInP2ExchgRejects
53 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9.0
54 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
55 + symbol:
56 + name: nec.pikeGlobalInP2SaDelRequests
57 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10.0
58 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
59 + symbol:
60 + name: nec.pikeGlobalOutNotifys
61 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14.0
62 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
63 + symbol:
64 + name: nec.pikeGlobalOutP2Exchgs
65 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15.0
66 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
67 + symbol:
68 + name: nec.pikeGlobalOutP2ExchgInvalids
69 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16.0
70 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
71 + symbol:
72 + name: nec.pikeGlobalOutP2ExchgRejects
73 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17.0
74 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
75 + symbol:
76 + name: nec.pikeGlobalOutP2SaDelRequests
77 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18.0
78 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
79 + symbol:
80 + name: nec.pikeGlobalInitTunnels
81 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19.0
82 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
83 + symbol:
84 + name: nec.pikeGlobalInitTunnelFails
85 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20.0
86 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
87 + symbol:
88 + name: nec.pikeGlobalRespTunnelFails
89 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21.0
90 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
91 + symbol:
92 + name: nec.pikeGlobalAuthFails
93 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23.0
94 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
95 + symbol:
96 + name: nec.pikeGlobalDecryptFails
97 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24.0
98 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
99 + symbol:
100 + name: nec.pikeGlobalHashValidFails
101 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25.0
102 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
103 + symbol:
104 + name: nec.pikeGlobalRespTunnels
105 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27.0
106 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
107 + symbol:
108 + name: nec.pikeGlobalInP1SaDelRequests
109 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30.0
110 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
111 + symbol:
112 + name: nec.pikeGlobalOutP1SaDelRequests
113 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31.0
114 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
115 + symbol:
116 + name: nec.pipSecGlobalActiveTunnels
117 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1.0
118 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
119 + symbol:
120 + name: nec.pipSecGlobalInOctets
121 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3.0
122 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
123 + symbol:
124 + name: nec.pipSecGlobalInPkts
125 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9.0
126 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
127 + symbol:
128 + name: nec.pipSecGlobalInDrops
129 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10.0
130 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
131 + symbol:
132 + name: nec.pipSecGlobalInReplayDrops
133 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11.0
134 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
135 + symbol:
136 + name: nec.pipSecGlobalInAuths
137 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12.0
138 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
139 + symbol:
140 + name: nec.pipSecGlobalInAuthFails
141 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13.0
142 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
143 + symbol:
144 + name: nec.pipSecGlobalInDecrypts
145 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14.0
146 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
147 + symbol:
148 + name: nec.pipSecGlobalInDecryptFails
149 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15.0
150 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
151 + symbol:
152 + name: nec.pipSecGlobalOutOctets
153 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16.0
154 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
155 + symbol:
156 + name: nec.pipSecGlobalOutPkts
157 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22.0
158 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
159 + symbol:
160 + name: nec.pipSecGlobalOutDrops
161 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23.0
162 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
163 + symbol:
164 + name: nec.pipSecGlobalOutAuths
165 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24.0
166 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
167 + symbol:
168 + name: nec.pipSecGlobalOutAuthFails
169 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25.0
170 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
171 + symbol:
172 + name: nec.pipSecGlobalOutEncrypts
173 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26.0
174 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
175 + symbol:
176 + name: nec.pipSecGlobalOutEncryptFails
177 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27.0
178 + - MIB: PICO-IPSEC-FLOW-MONITOR-MIB
179 + symbol:
180 + name: nec.pipSecGlobalNoSaFails
181 + OID: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/netapp.yaml new
+183
@@ -0,0 +1,183 @@
1 +# Profile for NetApp devices.
2 +# Example sysDescr:
3 +# - "NetApp Release 9.7P9: Fri Nov 06 01:13:45 UTC 2020"
4 +# - "NetApp Release 9.7P14: Thu Jun 10 22:54:31 UTC 2021"
5 +# - "NetApp Release 8.2.5P3 7-Mode: Tue Jul 16 01:37:24 PDT 2019"
6 +
7 +extends:
8 + - _base.yaml
9 +
10 +device:
11 + vendor: "netapp"
12 +
13 +# All netapp products have netappProducts (1.3.6.1.4.1.789.2) OID as parent
14 +sysobjectid: 1.3.6.1.4.1.789.2.*
15 +
16 +metadata:
17 + device:
18 + fields:
19 + vendor:
20 + value: "netapp"
21 + serial_number:
22 + symbol:
23 + MIB: NETAPP-MIB
24 + OID: 1.3.6.1.4.1.789.1.1.9.0
25 + name: productSerialNum # The product serial number. Returns unknown if it cannot be determined.
26 + version:
27 + # We can alternatively use 1.3.6.1.4.1.789.1.1.2.0/productVersion, but it seems to contain the same string as sysDescr.
28 + # Choosing to use sysDescr since it's already retrieved anyway.
29 + # Info about NetApp version: https://mysupport.netapp.com/site/info/version-support
30 + symbol:
31 + OID: 1.3.6.1.2.1.1.1.0
32 + name: sysDescr
33 + match_pattern: 'NetApp Release\s+(\S+)[:\s]'
34 + match_value: '$1'
35 + # product_name:
36 + # TODO: No suitable info found yet that can be used as product_name
37 + model:
38 + symbol:
39 + MIB: NETAPP-MIB
40 + OID: 1.3.6.1.4.1.789.1.1.5.0
41 + name: productModel # The model name of the system. Examples are FAS980 and FAS3050.
42 + os_name:
43 + # Data ONTAP is the operating system for all NetApp storage systems.
44 + # Source: https://library.netapp.com/ecmdocs/ECMP1155684/html/GUID-C6A665D4-EB47-485E-B2C9-29405DEE4510.html
45 + value: 'ONTAP'
46 + os_version:
47 + symbol:
48 + OID: 1.3.6.1.2.1.1.1.0
49 + name: sysDescr
50 + match_pattern: 'NetApp Release\s+(\d+(?:\.\d+)*)' # First part of the version composed of digits and `.`
51 + # Example: 9.7P14 => 9.7
52 + match_value: '$1'
53 +
54 +
55 +metrics:
56 + - MIB: NETAPP-MIB
57 + OID: 1.3.6.1.4.1.789.1.2.3.8.0
58 + name: cfInterconnectStatus # The current status of the interconnect. The partialFailure(3) status indicates that
59 + # one of the links in the interconnect hardware is down.
60 + - MIB: NETAPP-MIB
61 + OID: 1.3.6.1.4.1.789.1.2.2.23.0
62 + name: miscCacheAge # Age in minutes of the oldest read-only blocks in the buffer cache.
63 + # This indicates how fast read operations are cycling through system memory;
64 + # when the appliance is reading very large files (larger than the machine's memory size),
65 + # buffer cache age will be very low.
66 + - MIB: NETAPP-MIB
67 + OID: 1.3.6.1.4.1.789.1.8.3.6.36.0
68 + name: ncHttpActiveCliConns # Number of currently active TCP/IP connections to HTTP clients
69 +
70 + - MIB: NETAPP-MIB
71 + OID: 1.3.6.1.4.1.789.1.26.8.0
72 + name: extcache64Hits # Indicates number of wafl buffers read from the external cache
73 + metric_type: monotonic_count
74 +
75 + # Snap vaults
76 +
77 + - MIB: NETAPP-MIB
78 + table:
79 + OID: 1.3.6.1.4.1.789.1.19.11
80 + name: snapvaultStatusTable
81 + symbols:
82 + - OID: 1.3.6.1.4.1.789.1.19.11.1.9
83 + name: svTotalFailures
84 + metric_type: monotonic_count
85 + metric_tags:
86 + - tag: index
87 + symbol:
88 + OID: 1.3.6.1.4.1.789.1.19.11.1.1
89 + name: svIndex
90 + - tag: destination
91 + symbol:
92 + OID: 1.3.6.1.4.1.789.1.19.11.1.3
93 + name: svDst
94 + - tag: state
95 + symbol:
96 + OID: 1.3.6.1.4.1.789.1.19.11.1.5
97 + name: svState
98 +
99 + # Snap mirrors
100 +
101 + - MIB: NETAPP-MIB
102 + table:
103 + OID: 1.3.6.1.4.1.789.1.9.20
104 + name: snapmirrorStatusTable
105 + metric_type: gauge
106 + symbols:
107 + - OID: 1.3.6.1.4.1.789.1.9.20.1.6
108 + name: snapmirrorLag # SNMP type is TimeTicks
109 + metric_tags:
110 + - tag: index
111 + symbol:
112 + OID: 1.3.6.1.4.1.789.1.9.20.1.1
113 + name: snapmirrorIndex
114 + - tag: state
115 + symbol:
116 + OID: 1.3.6.1.4.1.789.1.9.20.1.5
117 + name: snapmirrorState
118 +
119 + - MIB: NETAPP-MIB
120 + table:
121 + OID: 1.3.6.1.4.1.789.1.9.20
122 + name: snapmirrorStatusTable
123 + metric_type: monotonic_count
124 + symbols:
125 + - OID: 1.3.6.1.4.1.789.1.9.20.1.9
126 + name: snapmirrorTotalFailures
127 + metric_tags:
128 + - tag: index
129 + symbol:
130 + OID: 1.3.6.1.4.1.789.1.9.20.1.1
131 + name: snapmirrorIndex
132 + - tag: state
133 + symbol:
134 + OID: 1.3.6.1.4.1.789.1.9.20.1.5
135 + name: snapmirrorState
136 +
137 + # Disk filesystems
138 +
139 + - MIB: NETAPP-MIB
140 + table:
141 + OID: 1.3.6.1.4.1.789.1.5.4
142 + name: dfTable
143 + metric_type: gauge
144 + symbols:
145 + - OID: 1.3.6.1.4.1.789.1.5.4.1.14
146 + name: dfHighTotalKBytes
147 + - OID: 1.3.6.1.4.1.789.1.5.4.1.18
148 + name: dfHighAvailKBytes
149 + - OID: 1.3.6.1.4.1.789.1.5.4.1.7
150 + name: dfInodesUsed
151 + - OID: 1.3.6.1.4.1.789.1.5.4.1.8
152 + name: dfInodesFree
153 + metric_tags:
154 + - tag: index
155 + symbol:
156 + OID: 1.3.6.1.4.1.789.1.5.4.1.1
157 + name: dfIndex
158 + - tag: filesystem
159 + symbol:
160 + OID: 1.3.6.1.4.1.789.1.5.4.1.2
161 + name: dfFileSys
162 +
163 + # Network interfaces
164 +
165 + - MIB: NETAPP-MIB
166 + table:
167 + OID: 1.3.6.1.4.1.789.1.22.1.2
168 + name: netifTable
169 + metric_type: monotonic_count_and_rate
170 + symbols:
171 + - OID: 1.3.6.1.4.1.789.1.22.1.2.1.3
172 + name: ifHighInOctets
173 + metric_tags:
174 + - tag: index
175 + symbol:
176 + OID: 1.3.6.1.4.1.789.1.22.1.2.1.1
177 + name: netifIndex
178 + - tag: interface
179 + symbol:
180 + # A DisplayString that represents the manufacturer, product name and hardware version.
181 + # Will be normalized to something like 'netgear_ifX300_v1'.
182 + OID: 1.3.6.1.4.1.789.1.22.1.2.1.2
183 + name: netifDescr
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/netgear-access-point.yaml new
+9
@@ -0,0 +1,9 @@
1 +extends:
2 + - netgear.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.4526.100.7.*
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "access_point"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/netgear-readynas.yaml new
+131
@@ -0,0 +1,131 @@
1 +extends:
2 + - _generic-ucd.yaml
3 + - netgear.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.4526.100.16.*
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "storage"
11 +metrics:
12 + # scalar string metric is not supported yet
13 + # - MIB: READYNASOS-MIB
14 + # symbol:
15 + # OID: 1.3.6.1.4.1.4526.22.1.0
16 + # name: netgear.readynasos.nasMgrSoftwareVersion
17 + # tag: softwareVersion
18 + - MIB: READYNASOS-MIB
19 + table:
20 + OID: 1.3.6.1.4.1.4526.22.3
21 + name: diskTable
22 + symbols:
23 + - OID: 1.3.6.1.4.1.4526.22.3.1.6
24 + name: netgear.readynasos.ataError
25 + - OID: 1.3.6.1.4.1.4526.22.3.1.7
26 + name: netgear.readynasos.diskCapacity
27 + - OID: 1.3.6.1.4.1.4526.22.3.1.10
28 + name: netgear.readynasos.diskTemperature
29 + metric_tags:
30 + - tag: netgear_readynasos_disk_id
31 + symbol:
32 + OID: 1.3.6.1.4.1.4526.22.3.1.2
33 + name: netgear.readynasos.diskID
34 + - tag: netgear_readynasos_disk_slot_name
35 + symbol:
36 + OID: 1.3.6.1.4.1.4526.22.3.1.3
37 + name: netgear.readynasos.diskSlotName
38 + - tag: netgear_readynasos_disk_serial
39 + symbol:
40 + OID: 1.3.6.1.4.1.4526.22.3.1.4
41 + name: netgear.readynasos.diskSerial
42 + - tag: netgear_readynasos_disk_model
43 + symbol:
44 + OID: 1.3.6.1.4.1.4526.22.3.1.5
45 + name: netgear.readynasos.diskModel
46 + - tag: netgear_readynasos_disk_interface
47 + symbol:
48 + OID: 1.3.6.1.4.1.4526.22.3.1.8
49 + name: netgear.readynasos.diskInterface
50 + - symbol:
51 + OID: 1.3.6.1.4.1.4526.22.3.1.9
52 + name: netgear.readynasos.diskState
53 + tag: netgear_readynasos_disk_state
54 + mapping:
55 + 0: online
56 + 1: offline
57 + # mapping in the metric description
58 + - MIB: READYNASOS-MIB
59 + table:
60 + OID: 1.3.6.1.4.1.4526.22.4
61 + name: fanTable
62 + symbols:
63 + - OID: 1.3.6.1.4.1.4526.22.4.1.2
64 + name: netgear.readynasos.fanRPM
65 + - OID: 1.3.6.1.4.1.4526.22.4.1.3
66 + name: netgear.readynasos.fanStatus
67 + metric_tags:
68 + - tag: netgear_readynasos_fan_type
69 + symbol:
70 + OID: 1.3.6.1.4.1.4526.22.4.1.4
71 + name: netgear.readynasos.fanType
72 + - MIB: READYNASOS-MIB
73 + table:
74 + OID: 1.3.6.1.4.1.4526.22.5
75 + name: temperatureTable
76 + symbols:
77 + - OID: 1.3.6.1.4.1.4526.22.5.1.2
78 + name: netgear.readynasos.temperatureValue
79 + - OID: 1.3.6.1.4.1.4526.22.5.1.4
80 + name: netgear.readynasos.temperatureMin
81 + - OID: 1.3.6.1.4.1.4526.22.5.1.5
82 + name: netgear.readynasos.temperatureMax
83 + metric_tags:
84 + - tag: netgear_readynasos_temperature_type
85 + symbol:
86 + OID: 1.3.6.1.4.1.4526.22.5.1.3
87 + name: netgear.readynasos.temperatureType
88 + - MIB: READYNASOS-MIB
89 + table:
90 + OID: 1.3.6.1.4.1.4526.22.7
91 + name: volumeTable
92 + symbols:
93 + - OID: 1.3.6.1.4.1.4526.22.7.1.3
94 + name: netgear.readynasos.volumeRAIDLevel
95 + - OID: 1.3.6.1.4.1.4526.22.7.1.5
96 + name: netgear.readynasos.volumeSize
97 + - OID: 1.3.6.1.4.1.4526.22.7.1.6
98 + name: netgear.readynasos.volumeFreeSpace
99 + metric_tags:
100 + - tag: netgear_readynasos_volume_name
101 + symbol:
102 + OID: 1.3.6.1.4.1.4526.22.7.1.2
103 + name: netgear.readynasos.volumeName
104 + - symbol:
105 + OID: 1.3.6.1.4.1.4526.22.7.1.4
106 + name: netgear.readynasos.volumeStatus
107 + tag: netgear_readynasos_volume_status
108 + mapping:
109 + 1: redundant
110 + 2: unprotected
111 + 3: degraded
112 + 4: dead
113 + 5: inactive
114 + 6: unknown
115 + # mapping in the metric description
116 + - MIB: READYNASOS-MIB
117 + table:
118 + OID: 1.3.6.1.4.1.4526.22.8
119 + name: psuTable
120 + symbols:
121 + - name: netgear.readynasos.psu
122 + constant_value_one: true
123 + metric_tags:
124 + - tag: netgear_readynasos_psu_desc
125 + symbol:
126 + OID: 1.3.6.1.4.1.4526.22.8.1.2
127 + name: netgear.readynasos.psuDesc
128 + - symbol:
129 + OID: 1.3.6.1.4.1.4526.22.8.1.3
130 + name: netgear.readynasos.psuStatus
131 + tag: netgear_readynasos_psu_status
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/netgear-switch.yaml new
+31
@@ -0,0 +1,31 @@
1 +extends:
2 + - netgear.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.4526.100.1.28
5 + - 1.3.6.1.4.1.4526.100.1.31
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "switch"
11 +metrics:
12 + - MIB: NETGEAR-SWITCHING-MIB
13 + symbol:
14 + name: memory.free
15 + OID: 1.3.6.1.4.1.4526.10.1.1.4.1.0
16 + - MIB: NETGEAR-SWITCHING-MIB
17 + symbol:
18 + name: memory.total
19 + OID: 1.3.6.1.4.1.4526.10.1.1.4.2.0
20 + - MIB: NETGEAR-SWITCHING-MIB
21 + symbol:
22 + name: cpu.usage
23 + OID: 1.3.6.1.4.1.4526.10.1.1.4.9.0 # agentSwitchCpuProcessTotalUtilization.0
24 + extract_value: 60 Secs.*?([\d\.]+)
25 +metric_tags:
26 + - OID: 1.3.6.1.4.1.4526.10.1.1.1.3.0
27 + symbol: agentInventoryMachineModel
28 + tag: agent_inventory_machine_model
29 + - OID: 1.3.6.1.4.1.4526.10.1.1.1.13.0
30 + symbol: agentInventorySoftwareVersion
31 + tag: agent_inventory_software_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/netgear.yaml new
+11
@@ -0,0 +1,11 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +sysobjectid: 1.3.6.1.4.1.4526.*
6 +
7 +metadata:
8 + device:
9 + fields:
10 + vendor:
11 + value: "netgear"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/nvidia-cumulus-linux-switch.yaml new
+224
@@ -0,0 +1,224 @@
1 +extends:
2 + - _generic-host-resources-base.yaml
3 + - _generic-ucd.yaml
4 + - nvidia.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.40310
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "switch"
12 +metrics:
13 + - MIB: CUMULUS-RESOURCES-MIB
14 + symbol:
15 + name: cumulus.l3HostTableCurrentEntries
16 + OID: 1.3.6.1.4.1.40310.1.1.1.0
17 + - MIB: CUMULUS-RESOURCES-MIB
18 + symbol:
19 + name: cumulus.l3HostTableMaxEntries
20 + OID: 1.3.6.1.4.1.40310.1.1.2.0
21 + - MIB: CUMULUS-RESOURCES-MIB
22 + symbol:
23 + name: cumulus.l3RoutingTableCurrentEntries
24 + OID: 1.3.6.1.4.1.40310.1.1.3.0
25 + - MIB: CUMULUS-RESOURCES-MIB
26 + symbol:
27 + name: cumulus.l3RoutingTableMaxEntries
28 + OID: 1.3.6.1.4.1.40310.1.1.4.0
29 + - MIB: CUMULUS-RESOURCES-MIB
30 + symbol:
31 + name: cumulus.l3NextHopTableCurrentEntries
32 + OID: 1.3.6.1.4.1.40310.1.1.5.0
33 + - MIB: CUMULUS-RESOURCES-MIB
34 + symbol:
35 + name: cumulus.l3NextHopTableMaxEntries
36 + OID: 1.3.6.1.4.1.40310.1.1.6.0
37 + - MIB: CUMULUS-RESOURCES-MIB
38 + symbol:
39 + name: cumulus.l3EcmpNextHopTableCurrentEntries
40 + OID: 1.3.6.1.4.1.40310.1.1.9.0
41 + - MIB: CUMULUS-RESOURCES-MIB
42 + symbol:
43 + name: cumulus.l3EcmpNextHopTableMaxEntries
44 + OID: 1.3.6.1.4.1.40310.1.1.10.0
45 + - MIB: CUMULUS-RESOURCES-MIB
46 + symbol:
47 + name: cumulus.ingressAclCurrentEntries
48 + OID: 1.3.6.1.4.1.40310.1.1.11.0
49 + - MIB: CUMULUS-RESOURCES-MIB
50 + symbol:
51 + name: cumulus.ingressAclMaxEntries
52 + OID: 1.3.6.1.4.1.40310.1.1.12.0
53 + - MIB: CUMULUS-RESOURCES-MIB
54 + symbol:
55 + name: cumulus.ingressAclCurrentCounters
56 + OID: 1.3.6.1.4.1.40310.1.1.13.0
57 + - MIB: CUMULUS-RESOURCES-MIB
58 + symbol:
59 + name: cumulus.ingressAclMaxCounters
60 + OID: 1.3.6.1.4.1.40310.1.1.14.0
61 + - MIB: CUMULUS-RESOURCES-MIB
62 + symbol:
63 + name: cumulus.ingressAclCurrentMeters
64 + OID: 1.3.6.1.4.1.40310.1.1.15.0
65 + - MIB: CUMULUS-RESOURCES-MIB
66 + symbol:
67 + name: cumulus.ingressAclMaxMeters
68 + OID: 1.3.6.1.4.1.40310.1.1.16.0
69 + - MIB: CUMULUS-RESOURCES-MIB
70 + symbol:
71 + name: cumulus.ingressAclCurrentSlices
72 + OID: 1.3.6.1.4.1.40310.1.1.17.0
73 + - MIB: CUMULUS-RESOURCES-MIB
74 + symbol:
75 + name: cumulus.ingressAclMaxSlices
76 + OID: 1.3.6.1.4.1.40310.1.1.18.0
77 + - MIB: CUMULUS-RESOURCES-MIB
78 + symbol:
79 + name: cumulus.egressAclCurrentEntries
80 + OID: 1.3.6.1.4.1.40310.1.1.19.0
81 + - MIB: CUMULUS-RESOURCES-MIB
82 + symbol:
83 + name: cumulus.egressAclMaxEntries
84 + OID: 1.3.6.1.4.1.40310.1.1.20.0
85 + - MIB: CUMULUS-RESOURCES-MIB
86 + symbol:
87 + name: cumulus.egressAclCurrentCounters
88 + OID: 1.3.6.1.4.1.40310.1.1.21.0
89 + - MIB: CUMULUS-RESOURCES-MIB
90 + symbol:
91 + name: cumulus.egressAclMaxCounters
92 + OID: 1.3.6.1.4.1.40310.1.1.22.0
93 + - MIB: CUMULUS-RESOURCES-MIB
94 + symbol:
95 + name: cumulus.egressAclCurrentMeters
96 + OID: 1.3.6.1.4.1.40310.1.1.23.0
97 + - MIB: CUMULUS-RESOURCES-MIB
98 + symbol:
99 + name: cumulus.egressAclMaxMeters
100 + OID: 1.3.6.1.4.1.40310.1.1.24.0
101 + - MIB: CUMULUS-RESOURCES-MIB
102 + symbol:
103 + name: cumulus.egressAclCurrentSlices
104 + OID: 1.3.6.1.4.1.40310.1.1.25.0
105 + - MIB: CUMULUS-RESOURCES-MIB
106 + symbol:
107 + name: cumulus.egressAclMaxSlices
108 + OID: 1.3.6.1.4.1.40310.1.1.26.0
109 + - MIB: CUMULUS-RESOURCES-MIB
110 + symbol:
111 + name: cumulus.l2MacTableCurrentEntries
112 + OID: 1.3.6.1.4.1.40310.1.2.1.0
113 + - MIB: CUMULUS-RESOURCES-MIB
114 + symbol:
115 + name: cumulus.l2MacTableMaxEntries
116 + OID: 1.3.6.1.4.1.40310.1.2.2.0
117 + - MIB: CUMULUS-COUNTERS-MIB
118 + table:
119 + name: discardClCountersTable
120 + OID: 1.3.6.1.4.1.40310.2.1.2
121 + symbols:
122 + - name: cumulus.clL3v4InDiscards
123 + OID: 1.3.6.1.4.1.40310.2.1.2.1.2
124 + - name: cumulus.clBufferOverflowDiscards
125 + OID: 1.3.6.1.4.1.40310.2.1.2.1.3
126 + - name: cumulus.clL3AclDiscards
127 + OID: 1.3.6.1.4.1.40310.2.1.2.1.4
128 + - name: cumulus.clEgressQOverflowDiscards
129 + OID: 1.3.6.1.4.1.40310.2.1.2.1.6
130 + - name: cumulus.clEgressNonQDiscards
131 + OID: 1.3.6.1.4.1.40310.2.1.2.1.7
132 + metric_tags:
133 + - symbol:
134 + name: cumulus.clPortName
135 + OID: 1.3.6.1.4.1.40310.2.1.2.1.1
136 + tag: cumulus_cl_port_name
137 + - MIB: CUMULUS-COUNTERS-MIB
138 + table:
139 + name: interfaceClCountersTable
140 + OID: 1.3.6.1.4.1.40310.2.2.2
141 + symbols:
142 + - name: cumulus.clIntInOctets
143 + OID: 1.3.6.1.4.1.40310.2.2.2.1.2
144 + - name: cumulus.clIntInUcastPkts
145 + OID: 1.3.6.1.4.1.40310.2.2.2.1.3
146 + - name: cumulus.clIntInBcastPkts
147 + OID: 1.3.6.1.4.1.40310.2.2.2.1.4
148 + - name: cumulus.clIntInMcastPkts
149 + OID: 1.3.6.1.4.1.40310.2.2.2.1.5
150 + - name: cumulus.clIntOutOctets
151 + OID: 1.3.6.1.4.1.40310.2.2.2.1.6
152 + - name: cumulus.clIntOutUcastPkts
153 + OID: 1.3.6.1.4.1.40310.2.2.2.1.7
154 + - name: cumulus.clIntOutBcastPkts
155 + OID: 1.3.6.1.4.1.40310.2.2.2.1.8
156 + - name: cumulus.clIntOutMcastPkts
157 + OID: 1.3.6.1.4.1.40310.2.2.2.1.9
158 + metric_tags:
159 + - symbol:
160 + name: cumulus.clIntPortName
161 + OID: 1.3.6.1.4.1.40310.2.2.2.1.1
162 + tag: cumulus_cl_int_port_name
163 + - MIB: CUMULUS-COUNTERS-MIB
164 + table:
165 + name: pfcClCountersTable
166 + OID: 1.3.6.1.4.1.40310.2.2.3
167 + symbols:
168 + - name: cumulus.clIntInPausePkt
169 + OID: 1.3.6.1.4.1.40310.2.2.3.1.2
170 + - name: cumulus.clIntOutPausePkt
171 + OID: 1.3.6.1.4.1.40310.2.2.3.1.3
172 + - name: cumulus.clIntInPfc0Pkt
173 + OID: 1.3.6.1.4.1.40310.2.2.3.1.4
174 + - name: cumulus.clIntOutPfc0Pkt
175 + OID: 1.3.6.1.4.1.40310.2.2.3.1.5
176 + - name: cumulus.clIntInPfc1Pkt
177 + OID: 1.3.6.1.4.1.40310.2.2.3.1.6
178 + - name: cumulus.clIntOutPfc1Pkt
179 + OID: 1.3.6.1.4.1.40310.2.2.3.1.7
180 + - name: cumulus.clIntInPfc2Pkt
181 + OID: 1.3.6.1.4.1.40310.2.2.3.1.8
182 + - name: cumulus.clIntOutPfc2Pkt
183 + OID: 1.3.6.1.4.1.40310.2.2.3.1.9
184 + - name: cumulus.clIntInPfc3Pkt
185 + OID: 1.3.6.1.4.1.40310.2.2.3.1.10
186 + - name: cumulus.clIntOutPfc3Pkt
187 + OID: 1.3.6.1.4.1.40310.2.2.3.1.11
188 + - name: cumulus.clIntInPfc4Pkt
189 + OID: 1.3.6.1.4.1.40310.2.2.3.1.12
190 + - name: cumulus.clIntOutPfc4Pkt
191 + OID: 1.3.6.1.4.1.40310.2.2.3.1.13
192 + - name: cumulus.clIntInPfc5Pkt
193 + OID: 1.3.6.1.4.1.40310.2.2.3.1.14
194 + - name: cumulus.clIntOutPfc5Pkt
195 + OID: 1.3.6.1.4.1.40310.2.2.3.1.15
196 + - name: cumulus.clIntInPfc6Pkt
197 + OID: 1.3.6.1.4.1.40310.2.2.3.1.16
198 + - name: cumulus.clIntOutPfc6Pkt
199 + OID: 1.3.6.1.4.1.40310.2.2.3.1.17
200 + - name: cumulus.clIntInPfc7Pkt
201 + OID: 1.3.6.1.4.1.40310.2.2.3.1.18
202 + - name: cumulus.clIntOutPfc7Pkt
203 + OID: 1.3.6.1.4.1.40310.2.2.3.1.19
204 + metric_tags:
205 + - symbol:
206 + name: cumulus.clIntPfcPortName
207 + OID: 1.3.6.1.4.1.40310.2.2.3.1.1
208 + tag: cumulus_cl_int_pfc_port_name
209 + - MIB: CUMULUS-POE-MIB
210 + symbol:
211 + name: cumulus.poeTotalSystemPower
212 + OID: 1.3.6.1.4.1.40310.3.1.1.0
213 + - MIB: CUMULUS-POE-MIB
214 + symbol:
215 + name: cumulus.poeTotalUsedPower
216 + OID: 1.3.6.1.4.1.40310.3.1.2.0
217 + - MIB: CUMULUS-POE-MIB
218 + symbol:
219 + name: cumulus.poeTotalAvailablePower
220 + OID: 1.3.6.1.4.1.40310.3.1.3.0
221 + - MIB: CUMULUS-POE-MIB
222 + symbol:
223 + name: cumulus.poeLastUpdateTime
224 + OID: 1.3.6.1.4.1.40310.3.1.4.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/nvidia-mellanox-switchx.yaml new
+63
@@ -0,0 +1,63 @@
1 +extends:
2 + - _generic-host-resources.yaml
3 + - nvidia.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.33049.1.1.1.1012
6 + - 1.3.6.1.4.1.33049.1.1.1.10121
7 + - 1.3.6.1.4.1.33049.1.1.1.1016
8 + - 1.3.6.1.4.1.33049.1.1.1.1024
9 + - 1.3.6.1.4.1.33049.1.1.1.1035
10 + - 1.3.6.1.4.1.33049.1.1.1.1036
11 + - 1.3.6.1.4.1.33049.1.1.1.1400
12 + - 1.3.6.1.4.1.33049.1.1.1.1410
13 + - 1.3.6.1.4.1.33049.1.1.1.1700
14 + - 1.3.6.1.4.1.33049.1.1.1.1710
15 + - 1.3.6.1.4.1.33049.1.1.1.2010
16 + - 1.3.6.1.4.1.33049.1.1.1.2100
17 + - 1.3.6.1.4.1.33049.1.1.1.2101
18 + - 1.3.6.1.4.1.33049.1.1.1.2410
19 + - 1.3.6.1.4.1.33049.1.1.1.2700
20 + - 1.3.6.1.4.1.33049.1.1.1.27002
21 + - 1.3.6.1.4.1.33049.1.1.1.2701
22 + - 1.3.6.1.4.1.33049.1.1.1.2740
23 + - 1.3.6.1.4.1.33049.1.1.1.3420
24 + - 1.3.6.1.4.1.33049.1.1.1.3700
25 + - 1.3.6.1.4.1.33049.1.1.1.370013
26 + - 1.3.6.1.4.1.33049.1.1.1.3800
27 + - 1.3.6.1.4.1.33049.1.1.1.4600
28 + - 1.3.6.1.4.1.33049.1.1.1.460013
29 + - 1.3.6.1.4.1.33049.1.1.1.4700
30 + - 1.3.6.1.4.1.33049.1.1.1.6000
31 + - 1.3.6.1.4.1.33049.1.1.1.6012
32 + - 1.3.6.1.4.1.33049.1.1.1.6018
33 + - 1.3.6.1.4.1.33049.1.1.1.60181
34 + - 1.3.6.1.4.1.33049.1.1.1.6036
35 + - 1.3.6.1.4.1.33049.1.1.1.60361
36 + - 1.3.6.1.4.1.33049.1.1.1.6100
37 + - 1.3.6.1.4.1.33049.1.1.1.6240
38 + - 1.3.6.1.4.1.33049.1.1.1.6280
39 + - 1.3.6.1.4.1.33049.1.1.1.6506
40 + - 1.3.6.1.4.1.33049.1.1.1.6512
41 + - 1.3.6.1.4.1.33049.1.1.1.6518
42 + - 1.3.6.1.4.1.33049.1.1.1.6536
43 + - 1.3.6.1.4.1.33049.1.1.1.6700
44 + - 1.3.6.1.4.1.33049.1.1.1.6710
45 + - 1.3.6.1.4.1.33049.1.1.1.67101
46 + - 1.3.6.1.4.1.33049.1.1.1.6720
47 + - 1.3.6.1.4.1.33049.1.1.1.6730
48 + - 1.3.6.1.4.1.33049.1.1.1.7500
49 + - 1.3.6.1.4.1.33049.1.1.1.7510
50 + - 1.3.6.1.4.1.33049.1.1.1.7520
51 + - 1.3.6.1.4.1.33049.1.1.1.7700
52 + - 1.3.6.1.4.1.33049.1.1.1.7780
53 + - 1.3.6.1.4.1.33049.1.1.1.7800
54 + - 1.3.6.1.4.1.33049.1.1.1.7880
55 + - 1.3.6.1.4.1.33049.1.1.1.8100
56 + - 1.3.6.1.4.1.33049.1.1.1.8200
57 + - 1.3.6.1.4.1.33049.1.1.1.8500
58 + - 1.3.6.1.4.1.33049.1.1.1.8700
59 +metadata:
60 + device:
61 + fields:
62 + type:
63 + value: "switch"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/nvidia.yaml new
+11
@@ -0,0 +1,11 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-entity-sensor.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "nvidia"
11 +
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/omron-cj-ethernet-ip.yaml new
+13
@@ -0,0 +1,13 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "omron"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.16838.1.* # Omron
13 + - 1.3.6.1.4.1.16838.1.1025.5 # Omron Ethernet-IP Unit
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/opengear-console-manager.yaml new
+151
@@ -0,0 +1,151 @@
1 +extends:
2 + - _generic-entity-sensor.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 + - _generic-ucd.yaml
6 + - _opengear.yaml
7 +sysobjectid:
8 + - 1.3.6.1.4.1.25049.1.* # Open Gear Console Managers
9 + - 1.3.6.1.4.1.25049.1.10 # CM41xx series Console Managers
10 + - 1.3.6.1.4.1.25049.1.11 # CM71xx series Console Managers
11 +metrics:
12 + - MIB: OG-STATUSv2-MIB
13 + table:
14 + name: ogSerialPortTable
15 + OID: 1.3.6.1.4.1.25049.17.2
16 + symbols:
17 + - name: ogSerialPortRxBytes
18 + OID: 1.3.6.1.4.1.25049.17.2.1.10
19 + metric_type: monotonic_count
20 + - name: ogSerialPortTxBytes
21 + OID: 1.3.6.1.4.1.25049.17.2.1.11
22 + metric_type: monotonic_count
23 + metric_tags:
24 + - index: 1 # ogSerialPortIndex
25 + tag: og_serial_port_index
26 + - symbol:
27 + name: ogSerialPortLabel
28 + OID: 1.3.6.1.4.1.25049.17.2.1.2
29 + tag: og_serial_port_label
30 + - symbol:
31 + name: ogSerialPortSpeed
32 + OID: 1.3.6.1.4.1.25049.17.2.1.3
33 + tag: og_serial_port_speed
34 + - symbol:
35 + name: ogSerialPortDataBits
36 + OID: 1.3.6.1.4.1.25049.17.2.1.4
37 + tag: og_serial_port_data_bits
38 + - symbol:
39 + name: ogSerialPortParity
40 + OID: 1.3.6.1.4.1.25049.17.2.1.5
41 + tag: og_serial_port_parity
42 + mapping:
43 + 1: none
44 + 2: odd
45 + 3: even
46 + 4: mark
47 + 5: space
48 + - symbol:
49 + name: ogSerialPortStopBits
50 + OID: 1.3.6.1.4.1.25049.17.2.1.6
51 + tag: og_serial_port_stop_bits
52 + mapping:
53 + 1: one
54 + 2: two
55 + 3: one_and_a_half
56 + - symbol:
57 + name: ogSerialPortFlowControl
58 + OID: 1.3.6.1.4.1.25049.17.2.1.7
59 + tag: og_serial_port_flow_control
60 + mapping:
61 + 1: none
62 + 2: hardware
63 + 3: software
64 + - symbol:
65 + name: ogSerialPortMode
66 + OID: 1.3.6.1.4.1.25049.17.2.1.8
67 + tag: og_serial_port_mode
68 + mapping:
69 + 1: none
70 + 2: console
71 + 3: sdt
72 + 4: terminal
73 + 5: bridge
74 + - symbol:
75 + name: ogSerialPortLogLevel
76 + OID: 1.3.6.1.4.1.25049.17.2.1.9
77 + tag: og_serial_port_log_level
78 + mapping:
79 + 1: disabled
80 + 2: connect
81 + 3: input_and_output
82 + 4: input_only
83 + 5: output_only
84 + - symbol:
85 + name: ogSerialPortDCD
86 + OID: 1.3.6.1.4.1.25049.17.2.1.16
87 + tag: og_serial_port_dcd
88 + mapping:
89 + 1: on
90 + 2: off
91 + - symbol:
92 + name: ogSerialPortDTR
93 + OID: 1.3.6.1.4.1.25049.17.2.1.17
94 + tag: og_serial_port_dtr
95 + mapping:
96 + 1: on
97 + 2: off
98 + - symbol:
99 + name: ogSerialPortDSR
100 + OID: 1.3.6.1.4.1.25049.17.2.1.18
101 + tag: og_serial_port_dsr
102 + mapping:
103 + 1: on
104 + 2: off
105 + - symbol:
106 + name: ogSerialPortCTS
107 + OID: 1.3.6.1.4.1.25049.17.2.1.19
108 + tag: og_serial_port_cts
109 + mapping:
110 + 1: on
111 + 2: off
112 + - symbol:
113 + name: ogSerialPortRTS
114 + OID: 1.3.6.1.4.1.25049.17.2.1.20
115 + tag: og_serial_port_rts
116 + mapping:
117 + 1: on
118 + 2: off
119 + - MIB: OG-STATUSv2-MIB
120 + table:
121 + name: ogCellModemTable
122 + OID: 1.3.6.1.4.1.25049.17.17
123 + symbols:
124 + - name: ogCellModemCounter
125 + OID: 1.3.6.1.4.1.25049.17.17.1.16
126 + metric_type: monotonic_count
127 + metric_tags:
128 + - index: 1 # ogCellModemIndex
129 + tag: og_cell_modem_index
130 + - symbol:
131 + name: ogCellModemVendor
132 + OID: 1.3.6.1.4.1.25049.17.17.1.2
133 + tag: og_cell_modem_vendor
134 + - symbol:
135 + name: ogCellModemModel
136 + OID: 1.3.6.1.4.1.25049.17.17.1.3
137 + tag: og_cell_modem_model
138 + - symbol:
139 + name: ogCellModemEnabled
140 + OID: 1.3.6.1.4.1.25049.17.17.1.4
141 + tag: og_cell_modem_enabled
142 + mapping:
143 + 1: enabled
144 + 2: disabled
145 + - symbol:
146 + OID: 1.3.6.1.4.1.25049.17.17.1.5
147 + name: ogCellModemConnected
148 + tag: og_cell_modem_connected
149 + mapping:
150 + 1: connected
151 + 2: disconnected
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/opengear-infrastructure-manager.yaml new
+97
@@ -0,0 +1,97 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _generic-ucd.yaml
4 + - _opengear.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.25049.1.60 # IM4200
7 + - 1.3.6.1.4.1.25049.1.61 # IM7200
8 +metrics:
9 + - MIB: OG-STATUS-MIB
10 + table:
11 + name: ogSerialPortStatusTable
12 + OID: 1.3.6.1.4.1.25049.16.1
13 + symbols:
14 + - name: ogSerialPortStatusRxBytes
15 + OID: 1.3.6.1.4.1.25049.16.1.1.3
16 + metric_type: monotonic_count
17 + - name: ogSerialPortStatusTxBytes
18 + OID: 1.3.6.1.4.1.25049.16.1.1.4
19 + metric_type: monotonic_count
20 + metric_tags:
21 + - symbol:
22 + name: ogSerialPortStatusPort
23 + OID: 1.3.6.1.4.1.25049.16.1.1.2
24 + tag: og_serial_port_status_port
25 + - symbol:
26 + name: ogSerialPortStatusSpeed
27 + OID: 1.3.6.1.4.1.25049.16.1.1.5
28 + tag: og_serial_port_status_speed
29 + - symbol:
30 + name: ogSerialPortStatusLabel
31 + OID: 1.3.6.1.4.1.25049.16.1.1.11
32 + tag: og_serial_port_status_label
33 + - symbol:
34 + OID: 1.3.6.1.4.1.25049.16.1.1.6
35 + name: ogSerialPortStatusDCD
36 + tag: og_serial_port_status_dcd
37 + mapping:
38 + 0: off
39 + 1: on
40 + - symbol:
41 + OID: 1.3.6.1.4.1.25049.16.1.1.7
42 + name: ogSerialPortStatusDTR
43 + tag: og_serial_port_status_dtr
44 + mapping:
45 + 0: off
46 + 1: on
47 + - symbol:
48 + OID: 1.3.6.1.4.1.25049.16.1.1.8
49 + name: ogSerialPortStatusDSR
50 + tag: og_serial_port_status_dsr
51 + mapping:
52 + 0: off
53 + 1: on
54 + - symbol:
55 + OID: 1.3.6.1.4.1.25049.16.1.1.9
56 + name: ogSerialPortStatusCTS
57 + tag: og_serial_port_status_cts
58 + mapping:
59 + 0: off
60 + 1: on
61 + - symbol:
62 + OID: 1.3.6.1.4.1.25049.16.1.1.10
63 + name: ogSerialPortStatusRTS
64 + tag: og_serial_port_status_rts
65 + mapping:
66 + 0: off
67 + 1: on
68 + - MIB: OG-STATUS-MIB
69 + table:
70 + name: ogRpcStatusTable
71 + OID: 1.3.6.1.4.1.25049.16.3
72 + symbols:
73 + - name: ogRpcStatusMaxTemp
74 + OID: 1.3.6.1.4.1.25049.16.3.1.3
75 + - name: ogRpcStatusAlertCount
76 + OID: 1.3.6.1.4.1.25049.16.3.1.4
77 + metric_tags:
78 + - symbol:
79 + name: ogRpcStatusName
80 + OID: 1.3.6.1.4.1.25049.16.3.1.2
81 + tag: og_rpc_status_name
82 + - MIB: OG-STATUS-MIB
83 + table:
84 + name: ogEmdStatusTable
85 + OID: 1.3.6.1.4.1.25049.16.4
86 + symbols:
87 + - name: ogEmdStatusTemp
88 + OID: 1.3.6.1.4.1.25049.16.4.1.3
89 + - name: ogEmdStatusHumidity
90 + OID: 1.3.6.1.4.1.25049.16.4.1.4
91 + - name: ogEmdStatusAlertCount
92 + OID: 1.3.6.1.4.1.25049.16.4.1.5
93 + metric_tags:
94 + - symbol:
95 + name: ogEmdStatusName
96 + OID: 1.3.6.1.4.1.25049.16.4.1.2
97 + tag: og_emd_status_name
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/palo-alto-cloudgenix.yaml new
+19
@@ -0,0 +1,19 @@
1 +extends:
2 + - _palo-alto.yaml
3 + - _generic-if.yaml
4 + - _generic-host-resources-base.yaml
5 + - _generic-ucd.yaml
6 +
7 +sysobjectid:
8 + - 1.3.6.1.4.1.50114.11.1.10.1000 # ION 1000
9 + - 1.3.6.1.4.1.50114.11.1.10.2000 # ION 2000
10 + - 1.3.6.1.4.1.50114.11.1.10.3000 # ION 3000
11 + - 1.3.6.1.4.1.50114.11.1.10.7000 # ION 7000
12 + - 1.3.6.1.4.1.50114.11.1.10.9000 # ION 9000
13 + - 1.3.6.1.4.1.50114.11.1.10.*
14 +
15 +metadata:
16 + device:
17 + fields:
18 + type:
19 + value: "SD-WAN"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/palo-alto.yaml new
+164
@@ -0,0 +1,164 @@
1 +# Profile for Palo Alto devices
2 +
3 +# https://docs.paloaltonetworks.com/pan-os/9-1/pan-os-admin/monitoring/snmp-monitoring-and-traps/supported-mibs/pan-common-mibmy.html#idaeaa4a59-0bf4-4f66-90cf-9c0096c6f8a4
4 +# https://docs.paloaltonetworks.com/content/dam/techdocs/en_US/pdf/pan-os/9-1/pan-os-admin/pan-os-admin.pdf
5 +
6 +# Example sysDescr:
7 +# - Palo Alto Networks VM-Series firewall
8 +# - Palo Alto Networks PA-220 series firewall
9 +# - Palo Alto Networks PA-800 series firewall
10 +# - Palo Alto Networks PA-3200 series firewall
11 +# - Palo Alto Networks WildFire Appliance
12 +# - Palo Alto Networks PA-800 series firewall
13 +# - Palo Alto Networks PA-3000 series firewall
14 +
15 +extends:
16 + - _palo-alto.yaml
17 + - _generic-if.yaml
18 + - _generic-host-resources.yaml
19 + - _generic-ospf.yaml
20 + - _generic-tcp.yaml
21 + - _generic-udp.yaml
22 + - _generic-ip.yaml
23 +
24 +device:
25 + vendor: "paloaltonetworks"
26 +
27 +# All Palo Alto Networks sysObjectID start with `1.3.6.1.4.1.25461.2.3` (panMibs)
28 +sysobjectid: 1.3.6.1.4.1.25461.2.3.*
29 +
30 +# Note related to use of index `1` of entPhysicalTable columns:
31 +# Based on snmpwalks of Palo Alto Networks devices, the main/chassis hardware have the index `1`
32 +# Librennms is also using index `1`: https://github.com/librenms/librenms/blob/1ac60e3b1d90616119f3c4adc28213e3c35c2477/includes/definitions/discovery/arista_eos.yaml#L4
33 +metadata:
34 + device:
35 + fields:
36 + serial_number:
37 + symbol:
38 + OID: 1.3.6.1.4.1.25461.2.1.2.1.3.0
39 + name: panSysSerialNumber # The serial number of the unit. If not available, an empty string is returned.
40 + version:
41 + symbol:
42 + OID: 1.3.6.1.4.1.25461.2.1.2.1.1.0
43 + name: panSysSwVersion # Full software version. The first two components of the full version are the major
44 + # and minor versions. The third component indicates the maintenance release number
45 + # and the fourth, the build number.
46 + product_name:
47 + symbol:
48 + OID: 1.3.6.1.2.1.1.1.0
49 + name: sysDescr
50 + match_pattern: 'Palo Alto Networks\s+(PA-\d+ series firewall|WildFire Appliance|VM-Series firewall)'
51 + match_value: '$1'
52 + # Examples:
53 + # - Palo Alto Networks VM-Series firewall
54 + # - Palo Alto Networks PA-3200 series firewall
55 + # - Palo Alto Networks WildFire Appliance
56 + model:
57 + symbol:
58 + OID: 1.3.6.1.4.1.25461.2.1.2.2.1.0
59 + name: panChassisType
60 + # Examples:
61 + # - PA-3020
62 + os_name:
63 + # "PAN‑OS® is the software that runs all Palo Alto Networks® next-generation firewalls."
64 + # Source https://docs.paloaltonetworks.com/pan-os.html
65 + value: 'PAN-OS'
66 + os_version:
67 + symbol:
68 + OID: 1.3.6.1.4.1.25461.2.1.2.1.1.0
69 + name: panSysSwVersion # Full software version. The first two components of the full version are the major
70 + # and minor versions. The third component indicates the maintenance release number
71 + # and the fourth, the build number.
72 +
73 +metrics:
74 + #
75 + # Session Utilization Metrics
76 + #
77 +
78 + - MIB: PAN-COMMON-MIB
79 + symbol:
80 + OID: 1.3.6.1.4.1.25461.2.1.2.3.1.0
81 + name: panSessionUtilization
82 + - MIB: PAN-COMMON-MIB
83 + symbol:
84 + OID: 1.3.6.1.4.1.25461.2.1.2.3.2.0
85 + name: panSessionMax
86 + - MIB: PAN-COMMON-MIB
87 + symbol:
88 + OID: 1.3.6.1.4.1.25461.2.1.2.3.3.0
89 + name: panSessionActive
90 + - MIB: PAN-COMMON-MIB
91 + symbol:
92 + OID: 1.3.6.1.4.1.25461.2.1.2.3.4.0
93 + name: panSessionActiveTcp
94 + - MIB: PAN-COMMON-MIB
95 + symbol:
96 + OID: 1.3.6.1.4.1.25461.2.1.2.3.5.0
97 + name: panSessionActiveUdp
98 + - MIB: PAN-COMMON-MIB
99 + symbol:
100 + OID: 1.3.6.1.4.1.25461.2.1.2.3.6.0
101 + name: panSessionActiveICMP
102 + - MIB: PAN-COMMON-MIB
103 + symbol:
104 + OID: 1.3.6.1.4.1.25461.2.1.2.3.7.0
105 + name: panSessionActiveSslProxy
106 + - MIB: PAN-COMMON-MIB
107 + symbol:
108 + OID: 1.3.6.1.4.1.25461.2.1.2.3.8.0
109 + name: panSessionSslProxyUtilization
110 +
111 + #
112 + # GlobalProtect gateway utilization
113 + #
114 + - MIB: PAN-COMMON-MIB
115 + symbol:
116 + OID: 1.3.6.1.4.1.25461.2.1.2.5.1.1.0
117 + name: panGPGWUtilizationPct
118 + - MIB: PAN-COMMON-MIB
119 + symbol:
120 + OID: 1.3.6.1.4.1.25461.2.1.2.5.1.2.0
121 + name: panGPGWUtilizationMaxTunnels
122 + - MIB: PAN-COMMON-MIB
123 + symbol:
124 + OID: 1.3.6.1.4.1.25461.2.1.2.5.1.3.0
125 + name: panGPGWUtilizationActiveTunnels
126 + - MIB: PAN-ENTITY-EXT-MIB
127 + symbol:
128 + OID: 1.3.6.1.4.1.25461.1.1.7.1.1.2.0
129 + name: panEntityTotalPowerUsed
130 + - MIB: PAN-ENTITY-EXT-MIB
131 + symbol:
132 + OID: 1.3.6.1.4.1.25461.1.1.7.1.1.1.0
133 + name: panEntityTotalPowerAvail
134 + - MIB: PAN-ENTITY-EXT-MIB
135 + table:
136 + OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1
137 + name: panEntityFRUModuleTable
138 + symbols:
139 + - OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1.1.1
140 + name: panEntryFRUModulePowerUsed
141 + - OID: 1.3.6.1.4.1.25461.1.1.7.1.2.1.1.2
142 + name: panEntryFRUModuleNumPorts
143 + metric_tags:
144 + - MIB: ENTITY-MIB
145 + symbol:
146 + OID: 1.3.6.1.2.1.47.1.1.1.1.2
147 + name: entPhysicalDescr
148 + table: entPhysicalTable
149 + tag: ent_descr
150 +
151 + - MIB: PAN-ENTITY-EXT-MIB
152 + table:
153 + OID: 1.3.6.1.4.1.25461.1.1.7.1.3.1
154 + name: panEntityFanTrayTable
155 + symbols:
156 + - OID: 1.3.6.1.4.1.25461.1.1.7.1.3.1.1.1
157 + name: panEntryFanTrayPowerUsed
158 + metric_tags:
159 + - MIB: ENTITY-MIB
160 + symbol:
161 + OID: 1.3.6.1.2.1.47.1.1.1.1.2
162 + name: entPhysicalDescr
163 + table: entPhysicalTable
164 + tag: ent_descr
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/peplink.yaml new
+166
@@ -0,0 +1,166 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.23695
8 + - 1.3.6.1.4.1.23695.*
9 +
10 +metadata:
11 + device:
12 + fields:
13 + vendor:
14 + value: "peplink"
15 + type:
16 + value: "router"
17 +
18 +metrics:
19 + - MIB: PEPLINK-DEVICE
20 + symbol:
21 + name: cpu.usage
22 + OID: 1.3.6.1.4.1.23695.200.1.1.1.3.1.0
23 + - MIB: PEPLINK-DEVICE
24 + symbol:
25 + name: memory.total
26 + OID: 1.3.6.1.4.1.23695.200.1.1.1.3.2.0
27 + - MIB: PEPLINK-DEVICE
28 + symbol:
29 + name: memory.usage
30 + OID: 1.3.6.1.4.1.23695.200.1.1.1.3.3.0
31 + - MIB: PEPLINK-DEVICE
32 + symbol:
33 + name: peplink.deviceTemperatureCelsius
34 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.4.1.0
35 + - MIB: PEPLINK-DEVICE
36 + symbol:
37 + name: peplink.deviceTemperatureFahrenheit
38 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.4.2.0
39 + - MIB: PEPLINK-DEVICE
40 + table:
41 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.1
42 + name: devicePSUTable
43 + symbols:
44 + - name: peplink.devicePSUPercentage
45 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.1.1.5
46 + metric_tags:
47 + - symbol:
48 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.1.1.1
49 + name: devicePSUId
50 + tag: device_psu_id
51 + - symbol:
52 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.1.1.2
53 + name: devicePSUStatus
54 + tag: device_psu_status
55 + mapping:
56 + 0: error
57 + 1: on
58 + - MIB: PEPLINK-DEVICE
59 + table:
60 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.2
61 + name: deviceFanTable
62 + symbols:
63 + - name: peplink.deviceFanSpeed
64 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.2.1.3
65 + metric_tags:
66 + - symbol:
67 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.2.1.1
68 + name: deviceFanId
69 + tag: device_fan_id
70 + - symbol:
71 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.2.1.2
72 + name: deviceFanStatus
73 + tag: device_fan_status
74 + mapping:
75 + 0: error
76 + 1: on
77 + - MIB: PEPLINK-DEVICE
78 + table:
79 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.3
80 + name: devicePowerSourceTable
81 + symbols:
82 + - name: peplink.devicePowerSource
83 + constant_value_one: true
84 + metric_tags:
85 + - symbol:
86 + name: devicePowerSourceId
87 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.3.1.1
88 + tag: device_power_source_id
89 + - symbol:
90 + name: devicePowerSourceName
91 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.3.1.2
92 + tag: device_power_source_name
93 + - symbol:
94 + OID: 1.3.6.1.4.1.23695.200.1.1.1.4.3.1.3
95 + name: devicePowerSourceStatus
96 + tag: device_power_source_status
97 + mapping:
98 + 0: no_cable_detected
99 + 1: connected
100 + # - MIB: PEPLINK-BALANCE-MIB # TODO: Handle string for "up"/"down"
101 + # symbol:
102 + # name: peplink.balLanStatus
103 + # OID: 1.3.6.1.4.1.23695.1.1.1.6.1
104 + # format: TODO_handle_conversion_to_one
105 + - MIB: PEPLINK-BALANCE-MIB
106 + table:
107 + OID: 1.3.6.1.4.1.23695.1.1.2.2
108 + name: linkTable
109 + symbols:
110 + - name: peplink.linkThroughputIn
111 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.4
112 + metric_type: monotonic_count
113 + - name: peplink.linkThroughputOut
114 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.5
115 + metric_type: monotonic_count
116 + - name: peplink.linkDataTransferred
117 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.6
118 + metric_type: monotonic_count
119 + metric_tags:
120 + - symbol:
121 + name: linkConnNum
122 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.1
123 + tag: link_conn_num
124 + - symbol:
125 + name: linkName
126 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.2
127 + tag: link_name
128 + - symbol:
129 + OID: 1.3.6.1.4.1.23695.1.1.2.2.1.3
130 + name: linkStatus
131 + tag: link_status
132 + - MIB: PEPLINK-BALANCE-MIB
133 + table:
134 + OID: 1.3.6.1.4.1.23695.1.1.3
135 + name: wanUsageTable
136 + symbols:
137 + - name: peplink.wanUsageThroughputIn
138 + OID: 1.3.6.1.4.1.23695.1.1.3.1.2
139 + metric_type: monotonic_count
140 + - name: peplink.wanUsageThroughputOut
141 + OID: 1.3.6.1.4.1.23695.1.1.3.1.3
142 + metric_type: monotonic_count
143 + - name: peplink.wanUsageDataTransferred
144 + OID: 1.3.6.1.4.1.23695.1.1.3.1.4
145 + metric_type: monotonic_count
146 + metric_tags:
147 + - symbol:
148 + name: wanUsageIndex
149 + OID: 1.3.6.1.4.1.23695.1.1.3.1.1
150 + tag: wan_usage_index
151 +metric_tags:
152 + - OID: 1.3.6.1.4.1.23695.200.1.1.1.1.1
153 + symbol: deviceModel
154 + tag: peplink_device_model
155 + - tag: peplink_device_serial_number
156 + OID: 1.3.6.1.4.1.23695.200.1.1.1.1.2
157 + symbol: deviceSerialNumber
158 + - OID: 1.3.6.1.4.1.23695.200.1.1.1.1.3
159 + symbol: deviceFirmwareVersion
160 + tag: peplink_device_firmware_version
161 + - tag: peplink_bal_firmware
162 + OID: 1.3.6.1.4.1.23695.1.1.1.1
163 + symbol: balFirmware
164 + - OID: 1.3.6.1.4.1.23695.1.1.1.2
165 + symbol: balSerialNumber
166 + tag: peplink_bal_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/pf-sense.yaml new
+13
@@ -0,0 +1,13 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 + - _generic-ucd.yaml
6 +
7 +sysobjectid: 1.3.6.1.4.1.12325.*
8 +
9 +metadata:
10 + device:
11 + fields:
12 + vendor:
13 + value: "pfSense"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/raritan-dominion.yaml new
+62
@@ -0,0 +1,62 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "raritan"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.13742.* # Raritan Devices
13 + - 1.3.6.1.4.1.13742.3.2.10 # Raritan Dominion SXII DSX2-32
14 +metrics:
15 + - MIB: RemoteKVMDevice-MIB
16 + symbol:
17 + name: memory.usage
18 + OID: 1.3.6.1.4.1.13742.3.1.1.0
19 + - MIB: RemoteKVMDevice-MIB
20 + symbol:
21 + name: cpu.usage
22 + OID: 1.3.6.1.4.1.13742.3.1.2.0
23 + - MIB: RemoteKVMDevice-MIB
24 + table:
25 + name: systemPowerSupplyTable
26 + OID: 1.3.6.1.4.1.13742.3.1.3
27 + symbols:
28 + - name: raritan.remotekvm.systemPowerSupply
29 + constant_value_one: true
30 + metric_tags:
31 + - symbol:
32 + OID: 1.3.6.1.4.1.13742.3.1.3.1.2
33 + name: raritan.remotekvm.systemPowerSupplyPowerOn
34 + tag: raritan_remotekvm_system_power_supply_power_on
35 + mapping:
36 + 1: 'true'
37 + 2: 'false'
38 + - MIB: RemoteKVMDevice-MIB
39 + table:
40 + name: portDataTable
41 + OID: 1.3.6.1.4.1.13742.3.1.4
42 + symbols:
43 + - name: raritan.remotekvm.portData
44 + constant_value_one: true
45 + metric_tags:
46 + - symbol:
47 + OID: 1.3.6.1.4.1.13742.3.1.4.1.3
48 + name: raritan.remotekvm.portDataName
49 + tag: raritan_remotekvm_port_data_name
50 + - symbol:
51 + OID: 1.3.6.1.4.1.13742.3.1.4.1.4
52 + name: raritan.remotekvm.portDataType
53 + tag: raritan_remotekvm_port_data_type
54 + - symbol:
55 + OID: 1.3.6.1.4.1.13742.3.1.4.1.5
56 + name: raritan.remotekvm.portDataStatus
57 + tag: raritan_remotekvm_port_data_status
58 + mapping:
59 + 1: inactive
60 + 2: available
61 + 3: connected
62 + 4: busy
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/riverbed-interceptor.yaml new
+63
@@ -0,0 +1,63 @@
1 +extends:
2 + - riverbed.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.17163.1.3 # Steelhead Interceptor 9200
6 +metrics:
7 + - MIB: HOST-RESOURCES-MIB
8 + symbol:
9 + name: memory.total
10 + OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1 (hrStorageSize at index 1)
11 + - MIB: HOST-RESOURCES-MIB
12 + symbol:
13 + name: memory.used
14 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 (hrStorageUsed at index 1)
15 + - MIB: INTERCEPTOR-MIB
16 + symbol:
17 + name: cpu.usage
18 + OID: 1.3.6.1.4.1.17163.1.3.5.1.4.0
19 + # - MIB: INTERCEPTOR-MIB
20 + # symbol:
21 + # name: riverbed.interceptor.health
22 + # OID: 1.3.6.1.4.1.17163.1.3.2.2.0
23 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
24 + # - MIB: INTERCEPTOR-MIB
25 + # symbol:
26 + # name: riverbed.interceptor.serviceStatus
27 + # OID: 1.3.6.1.4.1.17163.1.3.2.3.0
28 + # scalar string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
29 + - MIB: INTERCEPTOR-MIB
30 + table:
31 + name: procTable
32 + OID: 1.3.6.1.4.1.17163.1.3.2.5
33 + symbols:
34 + - name: riverbed.interceptor.proc
35 + constant_value_one: true
36 + metric_tags:
37 + - symbol:
38 + name: riverbed.interceptor.procName
39 + OID: 1.3.6.1.4.1.17163.1.3.2.5.1.2
40 + tag: riverbed_interceptor_proc_name
41 + - symbol:
42 + OID: 1.3.6.1.4.1.17163.1.3.2.5.1.3
43 + name: riverbed.interceptor.procStatus
44 + tag: riverbed_interceptor_proc_status
45 + - MIB: INTERCEPTOR-MIB
46 + table:
47 + name: neighborTable
48 + OID: 1.3.6.1.4.1.17163.1.3.2.6
49 + symbols:
50 + - name: riverbed.interceptor.neighborConnectionCount
51 + OID: 1.3.6.1.4.1.17163.1.3.2.6.1.4
52 + metric_tags:
53 + - symbol:
54 + name: riverbed.interceptor.neighborName
55 + OID: 1.3.6.1.4.1.17163.1.3.2.6.1.3
56 + tag: riverbed_interceptor_neighbor_name
57 +metric_tags:
58 + - OID: 1.3.6.1.4.1.17163.1.3.1.1.0
59 + symbol: model
60 + tag: riverbed_interceptor_model
61 + - OID: 1.3.6.1.4.1.17163.1.3.1.2.0
62 + symbol: serialNumber
63 + tag: riverbed_interceptor_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/riverbed-steelhead.yaml new
+46
@@ -0,0 +1,46 @@
1 +extends:
2 + - riverbed.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.17163.1.1 # Steelhead MODULE-IDENTITY
6 +metrics:
7 + - MIB: HOST-RESOURCES-MIB
8 + symbol:
9 + name: memory.total
10 + OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1 (hrStorageSize at index 1)
11 + - MIB: HOST-RESOURCES-MIB
12 + symbol:
13 + name: memory.used
14 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 (hrStorageUsed at index 1)
15 + - MIB: STEELHEAD-MIB
16 + symbol:
17 + name: cpu.usage
18 + OID: 1.3.6.1.4.1.17163.1.1.5.1.1.0
19 + - MIB: STEELHEAD-MIB
20 + symbol:
21 + name: riverbed.steelhead.optimizedConnections
22 + OID: 1.3.6.1.4.1.17163.1.1.5.2.1.0
23 + - MIB: STEELHEAD-MIB
24 + symbol:
25 + name: riverbed.steelhead.passthroughConnections
26 + OID: 1.3.6.1.4.1.17163.1.1.5.2.2.0
27 + - MIB: STEELHEAD-MIB
28 + symbol:
29 + name: riverbed.steelhead.halfOpenedConnections
30 + OID: 1.3.6.1.4.1.17163.1.1.5.2.3.0
31 + - MIB: STEELHEAD-MIB
32 + symbol:
33 + name: riverbed.steelhead.halfClosedConnections
34 + OID: 1.3.6.1.4.1.17163.1.1.5.2.4.0
35 + - MIB: STEELHEAD-MIB
36 + symbol:
37 + name: riverbed.steelhead.establishedConnections
38 + OID: 1.3.6.1.4.1.17163.1.1.5.2.5.0
39 + - MIB: STEELHEAD-MIB
40 + symbol:
41 + name: riverbed.steelhead.activeConnections
42 + OID: 1.3.6.1.4.1.17163.1.1.5.2.6.0
43 + - MIB: STEELHEAD-MIB
44 + symbol:
45 + name: riverbed.steelhead.totalConnections
46 + OID: 1.3.6.1.4.1.17163.1.1.5.2.7.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/riverbed.yaml new
+12
@@ -0,0 +1,12 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "riverbed"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.17163.1.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ruckus-unleashed.yaml new
+81
@@ -0,0 +1,81 @@
1 +extends:
2 + - ruckus.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.25053.3.1.5.* # Ruckus ZoneDirector
6 + - 1.3.6.1.4.1.25053.3.1.5.1 # Ruckus ZD1000
7 + - 1.3.6.1.4.1.25053.3.1.5.2 # Ruckus ZD1100
8 + - 1.3.6.1.4.1.25053.3.1.5.3 # Ruckus ZD3000
9 + - 1.3.6.1.4.1.25053.3.1.5.8 # Ruckus ZD5000
10 + - 1.3.6.1.4.1.25053.3.1.5.15 # Ruckus ZD1200
11 +metadata:
12 + device:
13 + fields:
14 + type:
15 + value: "WLC"
16 +metrics:
17 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
18 + symbol:
19 + name: cpu.usage
20 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.13.0
21 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
22 + symbol:
23 + name: memory.usage
24 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.14.0
25 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
26 + symbol:
27 + name: ruckusUnleashedSystemStatsNumRegisteredAP
28 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.15.0
29 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
30 + symbol:
31 + name: ruckusUnleashedSystemStatsNumAP
32 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.1.0
33 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
34 + symbol:
35 + name: ruckusUnleashedSystemStatsWLANTotalRxPkts
36 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.5.0
37 + metric_type: monotonic_count
38 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
39 + symbol:
40 + name: ruckusUnleashedSystemStatsWLANTotalRxBytes
41 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.6.0
42 + metric_type: monotonic_count
43 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
44 + symbol:
45 + name: ruckusUnleashedSystemStatsWLANTotalTxPkts
46 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.8.0
47 + metric_type: monotonic_count
48 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
49 + symbol:
50 + name: ruckusUnleashedSystemStatsWLANTotalTxBytes
51 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.9.0
52 + metric_type: monotonic_count
53 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
54 + symbol:
55 + name: ruckusUnleashedSystemStatsWLANTotalTxFail
56 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.11.0
57 + metric_type: monotonic_count
58 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
59 + symbol:
60 + name: ruckusUnleashedSystemStatsWLANTotalTxRetry
61 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.12.0
62 + metric_type: monotonic_count
63 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
64 + symbol:
65 + name: ruckusUnleashedSystemStatsWLANTotalAssocFail
66 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.16.0
67 + metric_type: monotonic_count
68 + - MIB: RUCKUS-UNLEASHED-SYSTEM-MIB
69 + symbol:
70 + name: ruckusUnleashedSystemStatsAllNumSta
71 + OID: 1.3.6.1.4.1.25053.1.15.1.1.1.15.30.0
72 +metric_tags:
73 + - OID: 1.3.6.1.4.1.25053.1.15.1.1.1.1.9.0
74 + symbol: ruckusUnleashedSystemModel
75 + tag: ruckus_unleashed_system_model
76 + - OID: 1.3.6.1.4.1.25053.1.15.1.1.1.1.12.0
77 + symbol: ruckusUnleashedSystemLicensedAPs
78 + tag: ruckus_unleashed_system_licensed_aps
79 + - OID: 1.3.6.1.4.1.25053.1.15.1.1.1.1.15.0
80 + symbol: ruckusUnleashedSystemSerialNumber
81 + tag: ruckus_unleashed_system_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ruckus-wap.yaml new
+20
@@ -0,0 +1,20 @@
1 +extends:
2 + - ruckus.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.25053.3.1.4.* # Ruckus Wireless
6 + - 1.3.6.1.4.1.25053.3.1.4.91 # Ruckus R510
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "access_point"
12 +metrics:
13 + - MIB: RUCKUS-SYSTEM-MIB
14 + symbol:
15 + name: cpu.usage
16 + OID: 1.3.6.1.4.1.25053.1.1.11.1.1.1.1.0
17 + - MIB: RUCKUS-SYSTEM-MIB
18 + symbol:
19 + name: memory.usage
20 + OID: 1.3.6.1.4.1.25053.1.1.11.1.1.1.2.0
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ruckus.yaml new
+13
@@ -0,0 +1,13 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-ucd.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "ruckus"
11 +
12 +sysobjectid:
13 + - 1.3.6.1.4.1.25053.3.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/server-iron-switch.yaml new
+15
@@ -0,0 +1,15 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "server_iron"
11 + type:
12 + value: "load_balancer"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.1991.1.3.3.2 # Server Iron XL switches
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/servertech-pdu3.yaml new
+301
@@ -0,0 +1,301 @@
1 +extends:
2 + - servertech.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.1718.3 # Sentry 3rd Gen PDU
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "PDU"
11 +metrics:
12 + - MIB: SENTRY3-MIB
13 + symbol:
14 + name: servertech.sentry3.systemTotalPower
15 + OID: 1.3.6.1.4.1.1718.3.1.6.0
16 + - MIB: SENTRY3-MIB
17 + symbol:
18 + name: servertech.sentry3.systemConfigModifiedCount
19 + OID: 1.3.6.1.4.1.1718.3.1.15.0
20 + - MIB: SENTRY3-MIB
21 + table:
22 + name: towerTable
23 + OID: 1.3.6.1.4.1.1718.3.2.1
24 + symbols:
25 + - name: servertech.sentry3.towerInfeedCount
26 + OID: 1.3.6.1.4.1.1718.3.2.1.1.5
27 + - name: servertech.sentry3.towerVACapacity
28 + OID: 1.3.6.1.4.1.1718.3.2.1.1.9
29 + - name: servertech.sentry3.towerVACapacityUsed
30 + OID: 1.3.6.1.4.1.1718.3.2.1.1.10
31 + - name: servertech.sentry3.towerActivePower
32 + OID: 1.3.6.1.4.1.1718.3.2.1.1.11
33 + - name: servertech.sentry3.towerApparentPower
34 + OID: 1.3.6.1.4.1.1718.3.2.1.1.12
35 + - name: servertech.sentry3.towerPowerFactor
36 + OID: 1.3.6.1.4.1.1718.3.2.1.1.13
37 + - name: servertech.sentry3.towerEnergy
38 + OID: 1.3.6.1.4.1.1718.3.2.1.1.14
39 + - name: servertech.sentry3.towerLineFrequency
40 + OID: 1.3.6.1.4.1.1718.3.2.1.1.15
41 + metric_tags:
42 + - symbol:
43 + name: servertech.sentry3.towerID
44 + OID: 1.3.6.1.4.1.1718.3.2.1.1.2
45 + tag: servertech_sentry3_tower_id
46 + - symbol:
47 + name: servertech.sentry3.towerName
48 + OID: 1.3.6.1.4.1.1718.3.2.1.1.3
49 + tag: servertech_sentry3_tower_name
50 + - symbol:
51 + name: servertech.sentry3.towerProductSN
52 + OID: 1.3.6.1.4.1.1718.3.2.1.1.6
53 + tag: servertech_sentry3_tower_product_sn
54 + - symbol:
55 + name: servertech.sentry3.towerModelNumber
56 + OID: 1.3.6.1.4.1.1718.3.2.1.1.7
57 + tag: servertech_sentry3_tower_model_number
58 + - symbol:
59 + OID: 1.3.6.1.4.1.1718.3.2.1.1.4
60 + name: servertech.sentry3.towerStatus
61 + tag: servertech_sentry3_tower_status
62 + mapping:
63 + 0: normal
64 + 1: no_comm
65 + 2: fan_fail
66 + 3: over_temp
67 + 4: nvm_fail
68 + 5: out_of_balance
69 + - MIB: SENTRY3-MIB
70 + table:
71 + name: infeedTable
72 + OID: 1.3.6.1.4.1.1718.3.2.2
73 + symbols:
74 + - name: servertech.sentry3.infeedLoadValue
75 + OID: 1.3.6.1.4.1.1718.3.2.2.1.7
76 + - name: servertech.sentry3.infeedOutletCount
77 + OID: 1.3.6.1.4.1.1718.3.2.2.1.9
78 + - name: servertech.sentry3.infeedCapacity
79 + OID: 1.3.6.1.4.1.1718.3.2.2.1.10
80 + - name: servertech.sentry3.infeedVoltage
81 + OID: 1.3.6.1.4.1.1718.3.2.2.1.11
82 + - name: servertech.sentry3.infeedPower
83 + OID: 1.3.6.1.4.1.1718.3.2.2.1.12
84 + - name: servertech.sentry3.infeedEnergy
85 + OID: 1.3.6.1.4.1.1718.3.2.2.1.16
86 + - name: servertech.sentry3.infeedPhaseVoltage
87 + OID: 1.3.6.1.4.1.1718.3.2.2.1.18
88 + - name: servertech.sentry3.infeedPhaseCurrent
89 + OID: 1.3.6.1.4.1.1718.3.2.2.1.19
90 + - name: servertech.sentry3.infeedCapacityUsed
91 + OID: 1.3.6.1.4.1.1718.3.2.2.1.20
92 + metric_tags:
93 + - symbol:
94 + name: servertech.sentry3.infeedID
95 + OID: 1.3.6.1.4.1.1718.3.2.2.1.2
96 + tag: servertech_sentry3_infeed_id
97 + - symbol:
98 + name: servertech.sentry3.infeedName
99 + OID: 1.3.6.1.4.1.1718.3.2.2.1.3
100 + tag: servertech_sentry3_infeed_name
101 + - symbol:
102 + name: servertech.sentry3.infeedLineID
103 + OID: 1.3.6.1.4.1.1718.3.2.2.1.21
104 + tag: servertech_sentry3_infeed_line_id
105 + - symbol:
106 + name: servertech.sentry3.infeedLineToLineID
107 + OID: 1.3.6.1.4.1.1718.3.2.2.1.22
108 + tag: servertech_sentry3_infeed_line_to_line_id
109 + - symbol:
110 + name: servertech.sentry3.infeedPhaseID
111 + OID: 1.3.6.1.4.1.1718.3.2.2.1.23
112 + tag: servertech_sentry3_infeed_phase_id
113 + - symbol:
114 + OID: 1.3.6.1.4.1.1718.3.2.2.1.5
115 + name: servertech.sentry3.infeedStatus
116 + tag: servertech_sentry3_infeed_status
117 + mapping:
118 + 0: off
119 + 1: on
120 + 2: off_wait
121 + 3: on_wait
122 + 4: off_error
123 + 5: on_error
124 + 6: no_comm
125 + 7: reading
126 + 8: off_fuse
127 + 9: on_fuse
128 + - symbol:
129 + OID: 1.3.6.1.4.1.1718.3.2.2.1.6
130 + name: servertech.sentry3.infeedLoadStatus
131 + tag: servertech_sentry3_infeed_load_status
132 + mapping:
133 + 0: normal
134 + 1: not_on
135 + 2: reading
136 + 3: load_low
137 + 4: load_high
138 + 5: over_load
139 + 6: read_error
140 + 7: no_comm
141 + - symbol:
142 + OID: 1.3.6.1.4.1.1718.3.2.2.1.17
143 + name: servertech.sentry3.infeedReactance
144 + tag: servertech_sentry3_infeed_reactance
145 + mapping:
146 + 0: unknown
147 + 1: capacitive
148 + 2: inductive
149 + 3: resistive
150 + - MIB: SENTRY3-MIB
151 + table:
152 + name: outletTable
153 + OID: 1.3.6.1.4.1.1718.3.2.3
154 + symbols:
155 + - name: servertech.sentry3.outlet
156 + constant_value_one: true
157 + metric_tags:
158 + - symbol:
159 + name: servertech.sentry3.outletID
160 + OID: 1.3.6.1.4.1.1718.3.2.3.1.2
161 + tag: servertech_sentry3_outlet_id
162 + - symbol:
163 + name: servertech.sentry3.outletName
164 + OID: 1.3.6.1.4.1.1718.3.2.3.1.3
165 + tag: servertech_sentry3_outlet_name
166 + - symbol:
167 + OID: 1.3.6.1.4.1.1718.3.2.3.1.5
168 + name: servertech.sentry3.outletStatus
169 + tag: servertech_sentry3_outlet_status
170 + mapping:
171 + 0: off
172 + 1: on
173 + 2: off_wait
174 + 3: on_wait
175 + 4: off_error
176 + 5: on_error
177 + 6: no_comm
178 + 7: reading
179 + 8: off_fuse
180 + 9: on_fuse
181 + - symbol:
182 + OID: 1.3.6.1.4.1.1718.3.2.3.1.10
183 + name: servertech.sentry3.outletControlState
184 + tag: servertech_sentry3_outlet_control_state
185 + mapping:
186 + 0: idle_off
187 + 1: idle_on
188 + 2: wake_off
189 + 3: wake_on
190 + 4: off
191 + 5: on
192 + 6: locked_off
193 + 7: locked_on
194 + 8: reboot
195 + 9: shutdown
196 + 10: pend_on
197 + 11: pend_off
198 + 12: minimum_off
199 + 13: minimum_on
200 + 14: event_off
201 + 15: event_on
202 + 16: event_reboot
203 + 17: event_shutdown
204 + - symbol:
205 + OID: 1.3.6.1.4.1.1718.3.2.3.1.19
206 + name: servertech.sentry3.outletWakeupState
207 + tag: servertech_sentry3_outlet_wakeup_state
208 + mapping:
209 + 1: last
210 + 2: off
211 + 3: on
212 + - MIB: SENTRY3-MIB
213 + table:
214 + name: envMonTable
215 + OID: 1.3.6.1.4.1.1718.3.2.4
216 + symbols:
217 + - name: servertech.sentry3.envMon
218 + constant_value_one: true
219 + metric_tags:
220 + - symbol:
221 + name: servertech.sentry3.envMonID
222 + OID: 1.3.6.1.4.1.1718.3.2.4.1.2
223 + tag: servertech_sentry3_env_mon_id
224 + - symbol:
225 + name: servertech.sentry3.envMonName
226 + OID: 1.3.6.1.4.1.1718.3.2.4.1.3
227 + tag: servertech_sentry3_env_mon_name
228 + - symbol:
229 + OID: 1.3.6.1.4.1.1718.3.2.4.1.4
230 + name: servertech.sentry3.envMonStatus
231 + tag: servertech_sentry3_env_mon_status
232 + mapping:
233 + 0: normal
234 + 1: no_comm
235 + - MIB: SENTRY3-MIB
236 + table:
237 + name: tempHumidSensorTable
238 + OID: 1.3.6.1.4.1.1718.3.2.5
239 + symbols:
240 + - name: servertech.sentry3.tempHumidSensorTempValue
241 + OID: 1.3.6.1.4.1.1718.3.2.5.1.6
242 + - name: servertech.sentry3.tempHumidSensorHumidValue
243 + OID: 1.3.6.1.4.1.1718.3.2.5.1.10
244 + metric_tags:
245 + - symbol:
246 + name: servertech.sentry3.tempHumidSensorID
247 + OID: 1.3.6.1.4.1.1718.3.2.5.1.2
248 + tag: servertech_sentry3_temp_humid_sensor_id
249 + - symbol:
250 + name: servertech.sentry3.tempHumidSensorName
251 + OID: 1.3.6.1.4.1.1718.3.2.5.1.3
252 + tag: servertech_sentry3_temp_humid_sensor_name
253 + - symbol:
254 + OID: 1.3.6.1.4.1.1718.3.2.5.1.4
255 + name: servertech.sentry3.tempHumidSensorStatus
256 + tag: servertech_sentry3_temp_humid_sensor_status
257 + mapping:
258 + 0: found
259 + 1: not_found
260 + 2: lost
261 + 3: no_comm
262 + - symbol:
263 + OID: 1.3.6.1.4.1.1718.3.2.5.1.5
264 + name: servertech.sentry3.tempHumidSensorTempStatus
265 + tag: servertech_sentry3_temp_humid_sensor_temp_status
266 + mapping:
267 + 0: normal
268 + 1: not_found
269 + 2: reading
270 + 3: temp_low
271 + 4: temp_high
272 + 5: read_error
273 + 6: lost
274 + 7: no_comm
275 + - symbol:
276 + OID: 1.3.6.1.4.1.1718.3.2.5.1.9
277 + name: servertech.sentry3.tempHumidSensorHumidStatus
278 + tag: servertech_sentry3_temp_humid_sensor_humid_status
279 + mapping:
280 + 0: normal
281 + 1: not_found
282 + 2: reading
283 + 3: humid_low
284 + 4: humid_high
285 + 5: read_error
286 + 6: lost
287 + 7: no_comm
288 + - symbol:
289 + OID: 1.3.6.1.4.1.1718.3.2.5.1.13
290 + name: servertech.sentry3.tempHumidSensorTempScale
291 + tag: servertech_sentry3_temp_humid_sensor_temp_scale
292 + mapping:
293 + 0: celsius
294 + 1: fahrenheit
295 +metric_tags:
296 + - OID: 1.3.6.1.4.1.1718.3.1.1.0
297 + symbol: systemVersion
298 + tag: servertech_sentry3_system_version
299 + - OID: 1.3.6.1.4.1.1718.3.1.2.0
300 + symbol: systemNICSerialNumber
301 + tag: servertech_sentry3_system_nic_serial_number
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/servertech-pdu4.yaml new
+861
@@ -0,0 +1,861 @@
1 +extends:
2 + - servertech.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.1718.4 # Sentry 4th Gen PDU
6 +metadata:
7 + device:
8 + fields:
9 + type:
10 + value: "PDU"
11 +metrics:
12 + - MIB: SENTRY4-MIB
13 + table:
14 + name: servertech.sentry4.st4UnitMonitorTable
15 + OID: 1.3.6.1.4.1.1718.4.1.2.3
16 + symbols:
17 + - name: servertech.sentry4.st4UnitMonitor
18 + constant_value_one: true
19 + metric_tags:
20 + - symbol:
21 + name: servertech.sentry4.st4UnitID
22 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.2
23 + tag: servertech_sentry4_st4_unit_id
24 + - symbol:
25 + name: servertech.sentry4.st4UnitName
26 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.3
27 + tag: servertech_sentry4_st4_unit_name
28 + - symbol:
29 + name: servertech.sentry4.st4UnitProductSN
30 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.4
31 + tag: servertech_sentry4_st4_unit_product_sn
32 + - symbol:
33 + name: servertech.sentry4.st4UnitModel
34 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.5
35 + tag: servertech_sentry4_st4_unit_model
36 + - symbol:
37 + name: servertech.sentry4.st4UnitAssetTag
38 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.6
39 + tag: servertech_sentry4_st4_unit_asset_tag
40 + - symbol:
41 + name: servertech.sentry4.st4UnitType
42 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.7
43 + tag: servertech_sentry4_st4_unit_type
44 + mapping:
45 + 0: master_pdu
46 + 1: link_pdu
47 + 2: controller
48 + 3: emcu
49 + - symbol:
50 + name: servertech.sentry4.st4UnitProductMfrDate
51 + OID: 1.3.6.1.4.1.1718.4.1.2.2.1.9
52 + tag: servertech_sentry4_st4_unit_product_mfr_date
53 + - symbol:
54 + OID: 1.3.6.1.4.1.1718.4.1.2.3.1.1
55 + name: servertech.sentry4.st4UnitStatus
56 + tag: servertech_sentry4_st4_unit_status
57 + mapping:
58 + 0: normal
59 + 1: disabled
60 + 2: purged
61 + 5: reading
62 + 6: settle
63 + 7: not_found
64 + 8: lost
65 + 9: read_error
66 + 10: no_comm
67 + 11: pwr_error
68 + 12: breaker_tripped
69 + 13: fuse_blown
70 + 14: low_alarm
71 + 15: low_warning
72 + 16: high_warning
73 + 17: high_alarm
74 + 18: alarm
75 + 19: under_limit
76 + 20: over_limit
77 + 21: nvm_fail
78 + 22: profile_error
79 + 23: conflict
80 + - MIB: SENTRY4-MIB
81 + table:
82 + name: servertech.sentry4.st4InputCordMonitorTable
83 + OID: 1.3.6.1.4.1.1718.4.1.3.3
84 + symbols:
85 + - name: servertech.sentry4.st4InputCordActivePower
86 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.3
87 + - name: servertech.sentry4.st4InputCordApparentPower
88 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.5
89 + - name: servertech.sentry4.st4InputCordPowerUtilized
90 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.7
91 + - name: servertech.sentry4.st4InputCordPowerFactor
92 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.8
93 + - name: servertech.sentry4.st4InputCordEnergy
94 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.10
95 + - name: servertech.sentry4.st4InputCordFrequency
96 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.11
97 + - name: servertech.sentry4.st4InputCordOutOfBalance
98 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.12
99 + metric_tags:
100 + - symbol:
101 + name: servertech.sentry4.st4InputCordID
102 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.2
103 + tag: servertech_sentry4_st4_input_cord_id
104 + - symbol:
105 + name: servertech.sentry4.st4InputCordName
106 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.3
107 + tag: servertech_sentry4_st4_input_cord_name
108 + - symbol:
109 + name: servertech.sentry4.st4InputCordInletType
110 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.6
111 + tag: servertech_sentry4_st4_input_cord_inlet_type
112 + - symbol:
113 + name: servertech.sentry4.st4InputCordNominalVoltage
114 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.7
115 + tag: servertech_sentry4_st4_input_cord_nominal_voltage
116 + - symbol:
117 + name: servertech.sentry4.st4InputCordNominalVoltageMin
118 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.8
119 + tag: servertech_sentry4_st4_input_cord_nominal_voltage_min
120 + - symbol:
121 + name: servertech.sentry4.st4InputCordNominalVoltageMax
122 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.9
123 + tag: servertech_sentry4_st4_input_cord_nominal_voltage_max
124 + - symbol:
125 + name: servertech.sentry4.st4InputCordCurrentCapacity
126 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.10
127 + tag: servertech_sentry4_st4_input_cord_current_capacity
128 + - symbol:
129 + name: servertech.sentry4.st4InputCordCurrentCapacityMax
130 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.11
131 + tag: servertech_sentry4_st4_input_cord_current_capacity_max
132 + - symbol:
133 + name: servertech.sentry4.st4InputCordPowerCapacity
134 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.12
135 + tag: servertech_sentry4_st4_input_cord_power_capacity
136 + - symbol:
137 + name: servertech.sentry4.st4InputCordLineCount
138 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.20
139 + tag: servertech_sentry4_st4_input_cord_line_count
140 + - symbol:
141 + name: servertech.sentry4.st4InputCordPhaseCount
142 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.21
143 + tag: servertech_sentry4_st4_input_cord_phase_count
144 + - symbol:
145 + name: servertech.sentry4.st4InputCordOcpCount
146 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.22
147 + tag: servertech_sentry4_st4_input_cord_ocp_count
148 + - symbol:
149 + name: servertech.sentry4.st4InputCordBranchCount
150 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.23
151 + tag: servertech_sentry4_st4_input_cord_branch_count
152 + - symbol:
153 + name: servertech.sentry4.st4InputCordOutletCount
154 + OID: 1.3.6.1.4.1.1718.4.1.3.2.1.24
155 + tag: servertech_sentry4_st4_input_cord_outlet_count
156 + - symbol:
157 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.1
158 + name: servertech.sentry4.st4InputCordState
159 + tag: servertech_sentry4_st4_input_cord_state
160 + mapping:
161 + 0: unknown
162 + 1: on
163 + 2: off
164 + - symbol:
165 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.2
166 + name: servertech.sentry4.st4InputCordStatus
167 + tag: servertech_sentry4_st4_input_cord_status
168 + mapping:
169 + 0: normal
170 + 1: disabled
171 + 2: purged
172 + 5: reading
173 + 6: settle
174 + 7: not_found
175 + 8: lost
176 + 9: read_error
177 + 10: no_comm
178 + 11: pwr_error
179 + 12: breaker_tripped
180 + 13: fuse_blown
181 + 14: low_alarm
182 + 15: low_warning
183 + 16: high_warning
184 + 17: high_alarm
185 + 18: alarm
186 + 19: under_limit
187 + 20: over_limit
188 + 21: nvm_fail
189 + 22: profile_error
190 + 23: conflict
191 + - symbol:
192 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.4
193 + name: servertech.sentry4.st4InputCordActivePowerStatus
194 + tag: servertech_sentry4_st4_input_cord_active_power_status
195 + mapping:
196 + 0: normal
197 + 1: disabled
198 + 2: purged
199 + 5: reading
200 + 6: settle
201 + 7: not_found
202 + 8: lost
203 + 9: read_error
204 + 10: no_comm
205 + 11: pwr_error
206 + 12: breaker_tripped
207 + 13: fuse_blown
208 + 14: low_alarm
209 + 15: low_warning
210 + 16: high_warning
211 + 17: high_alarm
212 + 18: alarm
213 + 19: under_limit
214 + 20: over_limit
215 + 21: nvm_fail
216 + 22: profile_error
217 + 23: conflict
218 + - symbol:
219 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.6
220 + name: servertech.sentry4.st4InputCordApparentPowerStatus
221 + tag: servertech_sentry4_st4_input_cord_apparent_power_status
222 + mapping:
223 + 0: normal
224 + 1: disabled
225 + 2: purged
226 + 5: reading
227 + 6: settle
228 + 7: not_found
229 + 8: lost
230 + 9: read_error
231 + 10: no_comm
232 + 11: pwr_error
233 + 12: breaker_tripped
234 + 13: fuse_blown
235 + 14: low_alarm
236 + 15: low_warning
237 + 16: high_warning
238 + 17: high_alarm
239 + 18: alarm
240 + 19: under_limit
241 + 20: over_limit
242 + 21: nvm_fail
243 + 22: profile_error
244 + 23: conflict
245 + - symbol:
246 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.9
247 + name: servertech.sentry4.st4InputCordPowerFactorStatus
248 + tag: servertech_sentry4_st4_input_cord_power_factor_status
249 + mapping:
250 + 0: normal
251 + 1: disabled
252 + 2: purged
253 + 5: reading
254 + 6: settle
255 + 7: not_found
256 + 8: lost
257 + 9: read_error
258 + 10: no_comm
259 + 11: pwr_error
260 + 12: breaker_tripped
261 + 13: fuse_blown
262 + 14: low_alarm
263 + 15: low_warning
264 + 16: high_warning
265 + 17: high_alarm
266 + 18: alarm
267 + 19: under_limit
268 + 20: over_limit
269 + 21: nvm_fail
270 + 22: profile_error
271 + 23: conflict
272 + - symbol:
273 + OID: 1.3.6.1.4.1.1718.4.1.3.3.1.13
274 + name: servertech.sentry4.st4InputCordOutOfBalanceStatus
275 + tag: servertech_sentry4_st4_input_cord_out_of_balance_status
276 + mapping:
277 + 0: normal
278 + 1: disabled
279 + 2: purged
280 + 5: reading
281 + 6: settle
282 + 7: not_found
283 + 8: lost
284 + 9: read_error
285 + 10: no_comm
286 + 11: pwr_error
287 + 12: breaker_tripped
288 + 13: fuse_blown
289 + 14: low_alarm
290 + 15: low_warning
291 + 16: high_warning
292 + 17: high_alarm
293 + 18: alarm
294 + 19: under_limit
295 + 20: over_limit
296 + 21: nvm_fail
297 + 22: profile_error
298 + 23: conflict
299 + - MIB: SENTRY4-MIB
300 + table:
301 + name: servertech.sentry4.st4LineMonitorTable
302 + OID: 1.3.6.1.4.1.1718.4.1.4.3
303 + symbols:
304 + - name: servertech.sentry4.st4LineCurrent
305 + OID: 1.3.6.1.4.1.1718.4.1.4.3.1.3
306 + - name: servertech.sentry4.st4LineCurrentUtilized
307 + OID: 1.3.6.1.4.1.1718.4.1.4.3.1.5
308 + metric_tags:
309 + - symbol:
310 + name: servertech.sentry4.st4LineID
311 + OID: 1.3.6.1.4.1.1718.4.1.4.2.1.2
312 + tag: servertech_sentry4_st4_line_id
313 + - symbol:
314 + name: servertech.sentry4.st4LineLabel
315 + OID: 1.3.6.1.4.1.1718.4.1.4.2.1.4
316 + tag: servertech_sentry4_st4_line_label
317 + - symbol:
318 + name: servertech.sentry4.st4LineCurrentCapacity
319 + OID: 1.3.6.1.4.1.1718.4.1.4.2.1.6
320 + tag: servertech_sentry4_st4_line_current_capacity
321 + - symbol:
322 + OID: 1.3.6.1.4.1.1718.4.1.4.3.1.1
323 + name: servertech.sentry4.st4LineState
324 + tag: servertech_sentry4_st4_line_state
325 + mapping:
326 + 0: unknown
327 + 1: on
328 + 2: off
329 + - symbol:
330 + OID: 1.3.6.1.4.1.1718.4.1.4.3.1.2
331 + name: servertech.sentry4.st4LineStatus
332 + tag: servertech_sentry4_st4_line_status
333 + mapping:
334 + 0: normal
335 + 1: disabled
336 + 2: purged
337 + 5: reading
338 + 6: settle
339 + 7: not_found
340 + 8: lost
341 + 9: read_error
342 + 10: no_comm
343 + 11: pwr_error
344 + 12: breaker_tripped
345 + 13: fuse_blown
346 + 14: low_alarm
347 + 15: low_warning
348 + 16: high_warning
349 + 17: high_alarm
350 + 18: alarm
351 + 19: under_limit
352 + 20: over_limit
353 + 21: nvm_fail
354 + 22: profile_error
355 + 23: conflict
356 + - symbol:
357 + OID: 1.3.6.1.4.1.1718.4.1.4.3.1.4
358 + name: servertech.sentry4.st4LineCurrentStatus
359 + tag: servertech_sentry4_st4_line_current_status
360 + mapping:
361 + 0: normal
362 + 1: disabled
363 + 2: purged
364 + 5: reading
365 + 6: settle
366 + 7: not_found
367 + 8: lost
368 + 9: read_error
369 + 10: no_comm
370 + 11: pwr_error
371 + 12: breaker_tripped
372 + 13: fuse_blown
373 + 14: low_alarm
374 + 15: low_warning
375 + 16: high_warning
376 + 17: high_alarm
377 + 18: alarm
378 + 19: under_limit
379 + 20: over_limit
380 + 21: nvm_fail
381 + 22: profile_error
382 + 23: conflict
383 + - MIB: SENTRY4-MIB
384 + table:
385 + name: servertech.sentry4.st4PhaseMonitorTable
386 + OID: 1.3.6.1.4.1.1718.4.1.5.3
387 + symbols:
388 + - name: servertech.sentry4.st4PhaseVoltage
389 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.3
390 + - name: servertech.sentry4.st4PhaseVoltageDeviation
391 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.5
392 + - name: servertech.sentry4.st4PhaseCurrent
393 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.6
394 + - name: servertech.sentry4.st4PhaseCurrentCrestFactor
395 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.7
396 + - name: servertech.sentry4.st4PhaseActivePower
397 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.8
398 + - name: servertech.sentry4.st4PhaseApparentPower
399 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.9
400 + - name: servertech.sentry4.st4PhasePowerFactor
401 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.10
402 + - name: servertech.sentry4.st4PhaseEnergy
403 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.13
404 + metric_tags:
405 + - symbol:
406 + name: servertech.sentry4.st4PhaseID
407 + OID: 1.3.6.1.4.1.1718.4.1.5.2.1.2
408 + tag: servertech_sentry4_st4_phase_id
409 + - symbol:
410 + name: servertech.sentry4.st4PhaseLabel
411 + OID: 1.3.6.1.4.1.1718.4.1.5.2.1.4
412 + tag: servertech_sentry4_st4_phase_label
413 + - symbol:
414 + name: servertech.sentry4.st4PhaseNominalVoltage
415 + OID: 1.3.6.1.4.1.1718.4.1.5.2.1.6
416 + tag: servertech_sentry4_st4_phase_nominal_voltage
417 + - symbol:
418 + name: servertech.sentry4.st4PhaseOutletCount
419 + OID: 1.3.6.1.4.1.1718.4.1.5.2.1.21
420 + tag: servertech_sentry4_st4_phase_outlet_count
421 + - symbol:
422 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.1
423 + name: servertech.sentry4.st4PhaseState
424 + tag: servertech_sentry4_st4_phase_state
425 + mapping:
426 + 0: unknown
427 + 1: on
428 + 2: off
429 + - symbol:
430 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.2
431 + name: servertech.sentry4.st4PhaseStatus
432 + tag: servertech_sentry4_st4_phase_status
433 + mapping:
434 + 0: normal
435 + 1: disabled
436 + 2: purged
437 + 5: reading
438 + 6: settle
439 + 7: not_found
440 + 8: lost
441 + 9: read_error
442 + 10: no_comm
443 + 11: pwr_error
444 + 12: breaker_tripped
445 + 13: fuse_blown
446 + 14: low_alarm
447 + 15: low_warning
448 + 16: high_warning
449 + 17: high_alarm
450 + 18: alarm
451 + 19: under_limit
452 + 20: over_limit
453 + 21: nvm_fail
454 + 22: profile_error
455 + 23: conflict
456 + - symbol:
457 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.4
458 + name: servertech.sentry4.st4PhaseVoltageStatus
459 + tag: servertech_sentry4_st4_phase_voltage_status
460 + mapping:
461 + 0: normal
462 + 1: disabled
463 + 2: purged
464 + 5: reading
465 + 6: settle
466 + 7: not_found
467 + 8: lost
468 + 9: read_error
469 + 10: no_comm
470 + 11: pwr_error
471 + 12: breaker_tripped
472 + 13: fuse_blown
473 + 14: low_alarm
474 + 15: low_warning
475 + 16: high_warning
476 + 17: high_alarm
477 + 18: alarm
478 + 19: under_limit
479 + 20: over_limit
480 + 21: nvm_fail
481 + 22: profile_error
482 + 23: conflict
483 + - symbol:
484 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.11
485 + name: servertech.sentry4.st4PhasePowerFactorStatus
486 + tag: servertech_sentry4_st4_phase_power_factor_status
487 + mapping:
488 + 0: normal
489 + 1: disabled
490 + 2: purged
491 + 5: reading
492 + 6: settle
493 + 7: not_found
494 + 8: lost
495 + 9: read_error
496 + 10: no_comm
497 + 11: pwr_error
498 + 12: breaker_tripped
499 + 13: fuse_blown
500 + 14: low_alarm
501 + 15: low_warning
502 + 16: high_warning
503 + 17: high_alarm
504 + 18: alarm
505 + 19: under_limit
506 + 20: over_limit
507 + 21: nvm_fail
508 + 22: profile_error
509 + 23: conflict
510 + - symbol:
511 + OID: 1.3.6.1.4.1.1718.4.1.5.3.1.12
512 + name: servertech.sentry4.st4PhaseReactance
513 + tag: servertech_sentry4_st4_phase_reactance
514 + mapping:
515 + 0: unknown
516 + 1: capacitive
517 + 2: inductive
518 + 3: resistive
519 + - MIB: SENTRY4-MIB
520 + table:
521 + name: servertech.sentry4.st4OcpMonitorTable
522 + OID: 1.3.6.1.4.1.1718.4.1.6.3
523 + symbols:
524 + - name: servertech.sentry4.st4OcpMonitor
525 + constant_value_one: true
526 + metric_tags:
527 + - symbol:
528 + name: servertech.sentry4.st4OcpID
529 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.2
530 + tag: servertech_sentry4_st4_ocp_id
531 + - symbol:
532 + name: servertech.sentry4.st4OcpLabel
533 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.4
534 + tag: servertech_sentry4_st4_ocp_label
535 + - symbol:
536 + name: servertech.sentry4.st4OcpType
537 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.6
538 + tag: servertech_sentry4_st4_ocp_type
539 + mapping:
540 + 0: fuse
541 + 1: breaker
542 + - symbol:
543 + name: servertech.sentry4.st4OcpCurrentCapacity
544 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.7
545 + tag: servertech_sentry4_st4_ocp_current_capacity
546 + - symbol:
547 + name: servertech.sentry4.st4OcpCurrentCapacityMax
548 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.8
549 + tag: servertech_sentry4_st4_ocp_current_capacity_max
550 + - symbol:
551 + name: servertech.sentry4.st4OcpBranchCount
552 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.20
553 + tag: servertech_sentry4_st4_ocp_branch_count
554 + - symbol:
555 + name: servertech.sentry4.st4OcpOutletCount
556 + OID: 1.3.6.1.4.1.1718.4.1.6.2.1.21
557 + tag: servertech_sentry4_st4_ocp_outlet_count
558 + - symbol:
559 + OID: 1.3.6.1.4.1.1718.4.1.6.3.1.1
560 + name: servertech.sentry4.st4OcpStatus
561 + tag: servertech_sentry4_st4_ocp_status
562 + mapping:
563 + 0: normal
564 + 1: disabled
565 + 2: purged
566 + 5: reading
567 + 6: settle
568 + 7: not_found
569 + 8: lost
570 + 9: read_error
571 + 10: no_comm
572 + 11: pwr_error
573 + 12: breaker_tripped
574 + 13: fuse_blown
575 + 14: low_alarm
576 + 15: low_warning
577 + 16: high_warning
578 + 17: high_alarm
579 + 18: alarm
580 + 19: under_limit
581 + 20: over_limit
582 + 21: nvm_fail
583 + 22: profile_error
584 + 23: conflict
585 + - MIB: SENTRY4-MIB
586 + table:
587 + name: servertech.sentry4.st4BranchMonitorTable
588 + OID: 1.3.6.1.4.1.1718.4.1.7.3
589 + symbols:
590 + - name: servertech.sentry4.st4BranchCurrent
591 + OID: 1.3.6.1.4.1.1718.4.1.7.3.1.3
592 + - name: servertech.sentry4.st4BranchCurrentUtilized
593 + OID: 1.3.6.1.4.1.1718.4.1.7.3.1.5
594 + metric_tags:
595 + - symbol:
596 + name: servertech.sentry4.st4BranchID
597 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.2
598 + tag: servertech_sentry4_st4_branch_id
599 + - symbol:
600 + name: servertech.sentry4.st4BranchLabel
601 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.4
602 + tag: servertech_sentry4_st4_branch_label
603 + - symbol:
604 + name: servertech.sentry4.st4BranchCurrentCapacity
605 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.6
606 + tag: servertech_sentry4_st4_branch_current_capacity
607 + - symbol:
608 + name: servertech.sentry4.st4BranchPhaseID
609 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.20
610 + tag: servertech_sentry4_st4_branch_phase_id
611 + - symbol:
612 + name: servertech.sentry4.st4BranchOcpID
613 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.21
614 + tag: servertech_sentry4_st4_branch_ocp_id
615 + - symbol:
616 + name: servertech.sentry4.st4BranchOutletCount
617 + OID: 1.3.6.1.4.1.1718.4.1.7.2.1.30
618 + tag: servertech_sentry4_st4_branch_outlet_count
619 + - symbol:
620 + OID: 1.3.6.1.4.1.1718.4.1.7.3.1.1
621 + name: servertech.sentry4.st4BranchState
622 + tag: servertech_sentry4_st4_branch_state
623 + mapping:
624 + 0: unknown
625 + 1: on
626 + 2: off
627 + - symbol:
628 + OID: 1.3.6.1.4.1.1718.4.1.7.3.1.2
629 + name: servertech.sentry4.st4BranchStatus
630 + tag: servertech_sentry4_st4_branch_status
631 + mapping:
632 + 0: normal
633 + 1: disabled
634 + 2: purged
635 + 5: reading
636 + 6: settle
637 + 7: not_found
638 + 8: lost
639 + 9: read_error
640 + 10: no_comm
641 + 11: pwr_error
642 + 12: breaker_tripped
643 + 13: fuse_blown
644 + 14: low_alarm
645 + 15: low_warning
646 + 16: high_warning
647 + 17: high_alarm
648 + 18: alarm
649 + 19: under_limit
650 + 20: over_limit
651 + 21: nvm_fail
652 + 22: profile_error
653 + 23: conflict
654 + - symbol:
655 + OID: 1.3.6.1.4.1.1718.4.1.7.3.1.4
656 + name: servertech.sentry4.st4BranchCurrentStatus
657 + tag: servertech_sentry4_st4_branch_current_status
658 + mapping:
659 + 0: normal
660 + 1: disabled
661 + 2: purged
662 + 5: reading
663 + 6: settle
664 + 7: not_found
665 + 8: lost
666 + 9: read_error
667 + 10: no_comm
668 + 11: pwr_error
669 + 12: breaker_tripped
670 + 13: fuse_blown
671 + 14: low_alarm
672 + 15: low_warning
673 + 16: high_warning
674 + 17: high_alarm
675 + 18: alarm
676 + 19: under_limit
677 + 20: over_limit
678 + 21: nvm_fail
679 + 22: profile_error
680 + 23: conflict
681 + - MIB: SENTRY4-MIB
682 + table:
683 + name: servertech.sentry4.st4OutletMonitorTable
684 + OID: 1.3.6.1.4.1.1718.4.1.8.3
685 + symbols:
686 + - name: servertech.sentry4.st4OutletMonitor
687 + constant_value_one: true
688 + metric_tags:
689 + - symbol:
690 + name: servertech.sentry4.st4OutletID
691 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.2
692 + tag: servertech_sentry4_st4_outlet_id
693 + - symbol:
694 + name: servertech.sentry4.st4OutletName
695 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.3
696 + tag: servertech_sentry4_st4_outlet_name
697 + - symbol:
698 + name: servertech.sentry4.st4OutletSocketType
699 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.6
700 + tag: servertech_sentry4_st4_outlet_socket_type
701 + - symbol:
702 + name: servertech.sentry4.st4OutletCurrentCapacity
703 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.7
704 + tag: servertech_sentry4_st4_outlet_current_capacity
705 + - symbol:
706 + name: servertech.sentry4.st4OutletPowerCapacity
707 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.8
708 + tag: servertech_sentry4_st4_outlet_power_capacity
709 + - symbol:
710 + name: servertech.sentry4.st4OutletWakeupState
711 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.20
712 + tag: servertech_sentry4_st4_outlet_wakeup_state
713 + mapping:
714 + 0: on
715 + 1: off
716 + 2: last
717 + - symbol:
718 + name: servertech.sentry4.st4OutletPostOnDelay
719 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.21
720 + tag: servertech_sentry4_st4_outlet_post_on_delay
721 + - symbol:
722 + name: servertech.sentry4.st4OutletPhaseID
723 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.30
724 + tag: servertech_sentry4_st4_outlet_phase_id
725 + - symbol:
726 + name: servertech.sentry4.st4OutletOcpID
727 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.31
728 + tag: servertech_sentry4_st4_outlet_ocp_id
729 + - symbol:
730 + name: servertech.sentry4.st4OutletBranchID
731 + OID: 1.3.6.1.4.1.1718.4.1.8.2.1.32
732 + tag: servertech_sentry4_st4_outlet_branch_id
733 + - symbol:
734 + OID: 1.3.6.1.4.1.1718.4.1.8.3.1.1
735 + name: servertech.sentry4.st4OutletState
736 + tag: servertech_sentry4_st4_outlet_state
737 + mapping:
738 + 0: unknown
739 + 1: on
740 + 2: off
741 + - symbol:
742 + OID: 1.3.6.1.4.1.1718.4.1.8.3.1.2
743 + name: servertech.sentry4.st4OutletStatus
744 + tag: servertech_sentry4_st4_outlet_status
745 + mapping:
746 + 0: normal
747 + 1: disabled
748 + 2: purged
749 + 5: reading
750 + 6: settle
751 + 7: not_found
752 + 8: lost
753 + 9: read_error
754 + 10: no_comm
755 + 11: pwr_error
756 + 12: breaker_tripped
757 + 13: fuse_blown
758 + 14: low_alarm
759 + 15: low_warning
760 + 16: high_warning
761 + 17: high_alarm
762 + 18: alarm
763 + 19: under_limit
764 + 20: over_limit
765 + 21: nvm_fail
766 + 22: profile_error
767 + 23: conflict
768 + - MIB: SENTRY4-MIB
769 + table:
770 + name: servertech.sentry4.st4TempSensorMonitorTable
771 + OID: 1.3.6.1.4.1.1718.4.1.9.3
772 + symbols:
773 + - name: servertech.sentry4.st4TempSensorValue
774 + OID: 1.3.6.1.4.1.1718.4.1.9.3.1.1
775 + metric_tags:
776 + - symbol:
777 + name: servertech.sentry4.st4TempSensorID
778 + OID: 1.3.6.1.4.1.1718.4.1.9.2.1.2
779 + tag: servertech_sentry4_st4_temp_sensor_id
780 + - symbol:
781 + name: servertech.sentry4.st4TempSensorName
782 + OID: 1.3.6.1.4.1.1718.4.1.9.2.1.3
783 + tag: servertech_sentry4_st4_temp_sensor_name
784 + - symbol:
785 + name: servertech.sentry4.st4TempSensorValueMin
786 + OID: 1.3.6.1.4.1.1718.4.1.9.2.1.4
787 + tag: servertech_sentry4_st4_temp_sensor_value_min
788 + - symbol:
789 + name: servertech.sentry4.st4TempSensorValueMax
790 + OID: 1.3.6.1.4.1.1718.4.1.9.2.1.5
791 + tag: servertech_sentry4_st4_temp_sensor_value_max
792 + - symbol:
793 + OID: 1.3.6.1.4.1.1718.4.1.9.3.1.2
794 + name: servertech.sentry4.st4TempSensorStatus
795 + tag: servertech_sentry4_st4_temp_sensor_status
796 + mapping:
797 + 0: normal
798 + 1: disabled
799 + 2: purged
800 + 5: reading
801 + 6: settle
802 + 7: not_found
803 + 8: lost
804 + 9: read_error
805 + 10: no_comm
806 + 11: pwr_error
807 + 12: breaker_tripped
808 + 13: fuse_blown
809 + 14: low_alarm
810 + 15: low_warning
811 + 16: high_warning
812 + 17: high_alarm
813 + 18: alarm
814 + 19: under_limit
815 + 20: over_limit
816 + 21: nvm_fail
817 + 22: profile_error
818 + 23: conflict
819 + - MIB: SENTRY4-MIB
820 + table:
821 + name: servertech.sentry4.st4HumidSensorMonitorTable
822 + OID: 1.3.6.1.4.1.1718.4.1.10.3
823 + symbols:
824 + - name: servertech.sentry4.st4HumidSensorValue
825 + OID: 1.3.6.1.4.1.1718.4.1.10.3.1.1
826 + metric_tags:
827 + - symbol:
828 + name: servertech.sentry4.st4HumidSensorID
829 + OID: 1.3.6.1.4.1.1718.4.1.10.2.1.2
830 + tag: servertech_sentry4_st4_humid_sensor_id
831 + - symbol:
832 + name: servertech.sentry4.st4HumidSensorName
833 + OID: 1.3.6.1.4.1.1718.4.1.10.2.1.3
834 + tag: servertech_sentry4_st4_humid_sensor_name
835 + - symbol:
836 + OID: 1.3.6.1.4.1.1718.4.1.10.3.1.2
837 + name: servertech.sentry4.st4HumidSensorStatus
838 + tag: servertech_sentry4_st4_humid_sensor_status
839 + mapping:
840 + 0: normal
841 + 1: disabled
842 + 2: purged
843 + 5: reading
844 + 6: settle
845 + 7: not_found
846 + 8: lost
847 + 9: read_error
848 + 10: no_comm
849 + 11: pwr_error
850 + 12: breaker_tripped
851 + 13: fuse_blown
852 + 14: low_alarm
853 + 15: low_warning
854 + 16: high_warning
855 + 17: high_alarm
856 + 18: alarm
857 + 19: under_limit
858 + 20: over_limit
859 + 21: nvm_fail
860 + 22: profile_error
861 + 23: conflict
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/servertech.yaml new
+11
@@ -0,0 +1,11 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "servertech"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.1718.*
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/silverpeak-edgeconnect.yaml new
+99
@@ -0,0 +1,99 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "silverpeak"
10 + serial_number:
11 + symbol:
12 + MIB: SILVERPEAK-MGMT-MIB
13 + OID: 1.3.6.1.4.1.23867.3.1.1.1.6.0
14 + name: spsSystemSerial
15 + os_version:
16 + symbol:
17 + MIB: SILVERPEAK-MGMT-MIB
18 + OID: 1.3.6.1.4.1.23867.3.1.1.1.1.0
19 + name: spsSystemVersion
20 + product_name:
21 + symbol:
22 + MIB: SILVERPEAK-MGMT-MIB
23 + OID: 1.3.6.1.4.1.23867.3.1.1.1.2.0
24 + name: spsProductModel
25 + type:
26 + value: "SD-WAN"
27 +
28 +sysobjectid: 1.3.6.1.4.1.23867.1.2.* # Silverpeak devices
29 +metrics:
30 + - MIB: SILVERPEAK-MGMT-MIB
31 + symbol:
32 + OID: 1.3.6.1.4.1.23867.3.1.1.1.4.0
33 + name: silverpeak.mgmt.spsActiveAlarmCount
34 + - MIB: SILVERPEAK-MGMT-MIB
35 + table:
36 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1
37 + name: spsActiveAlarmTable
38 + symbols:
39 + - name: silverpeak.mgmt.spsActiveAlarm
40 + constant_value_one: true
41 + metric_tags:
42 + - symbol:
43 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.4
44 + name: silverpeak.mgmt.spsActiveAlarmName
45 + tag: silverpeak_mgmt_sps_active_alarm_name
46 + - symbol:
47 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.5
48 + name: silverpeak.mgmt.spsActiveAlarmDescr
49 + tag: silverpeak_mgmt_sps_active_alarm_descr
50 + - symbol:
51 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.6
52 + name: silverpeak.mgmt.spsActiveAlarmSource
53 + tag: silverpeak_mgmt_sps_active_alarm_source
54 + - symbol:
55 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.7
56 + name: silverpeak.mgmt.spsActiveAlarmType
57 + tag: silverpeak_mgmt_sps_active_alarm_type
58 + - symbol:
59 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.3
60 + name: silverpeak.mgmt.spsActiveAlarmSeverity
61 + tag: silverpeak_mgmt_sps_active_alarm_severity
62 + mapping:
63 + 0: info
64 + 1: warning
65 + 2: minor
66 + 3: major
67 + 4: critical
68 + 5: cleared
69 + 6: acknowledged
70 + 7: unacknowledged
71 + 8: indeterminate
72 + - symbol:
73 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.8
74 + name: silverpeak.mgmt.spsActiveAlarmAcked
75 + tag: silverpeak_mgmt_sps_active_alarm_acked
76 + mapping:
77 + 0: no
78 + 1: yes
79 + - symbol:
80 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.9
81 + name: silverpeak.mgmt.spsActiveAlarmActive
82 + tag: silverpeak_mgmt_sps_active_alarm_active
83 + mapping:
84 + 0: no
85 + 1: yes
86 + - symbol:
87 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.10
88 + name: silverpeak.mgmt.spsActiveAlarmClearable
89 + tag: silverpeak_mgmt_sps_active_alarm_clearable
90 + mapping:
91 + 0: no
92 + 1: yes
93 + - symbol:
94 + OID: 1.3.6.1.4.1.23867.3.1.1.2.1.1.12
95 + name: silverpeak.mgmt.spsActiveAlarmServiceAffect
96 + tag: silverpeak_mgmt_sps_active_alarm_service_affect
97 + mapping:
98 + 0: no
99 + 1: yes
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/sinetica-eagle-i.yaml new
+131
@@ -0,0 +1,131 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "sinetica"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.3711.24 # Sinetica Eagle-i
12 +metrics:
13 + - MIB: HAWK-I2-MIB
14 + table:
15 + name: ipTHATable
16 + OID: 1.3.6.1.4.1.3711.24.1.1.1.2.2
17 + symbols:
18 + - name: hawk.i2.ipTHAValue
19 + OID: 1.3.6.1.4.1.3711.24.1.1.1.2.2.1.7
20 + metric_tags:
21 + - symbol:
22 + name: hawk.i2.ipTHAName
23 + OID: 1.3.6.1.4.1.3711.24.1.1.1.2.2.1.3
24 + tag: hawk_i2_ip_tha_name
25 + - symbol:
26 + name: hawk.i2.ipTHALocn
27 + OID: 1.3.6.1.4.1.3711.24.1.1.1.2.2.1.4
28 + tag: hawk_i2_ip_tha_locn
29 + - MIB: HAWK-I2-MIB
30 + table:
31 + name: ipContTable
32 + OID: 1.3.6.1.4.1.3711.24.1.1.1.3.1
33 + symbols:
34 + - name: hawk.i2.ipCont
35 + constant_value_one: true
36 + metric_tags:
37 + - symbol:
38 + name: hawk.i2.ipContName
39 + OID: 1.3.6.1.4.1.3711.24.1.1.1.3.1.1.3
40 + tag: hawk_i2_ip_cont_name
41 + - symbol:
42 + name: hawk.i2.ipContLocn
43 + OID: 1.3.6.1.4.1.3711.24.1.1.1.3.1.1.4
44 + tag: hawk_i2_ip_cont_locn
45 + - symbol:
46 + name: hawk.i2.ipContNormState
47 + OID: 1.3.6.1.4.1.3711.24.1.1.1.3.1.1.6
48 + tag: hawk_i2_ip_cont_norm_state
49 + mapping:
50 + 1: open
51 + 2: closed
52 + - symbol:
53 + OID: 1.3.6.1.4.1.3711.24.1.1.1.3.1.1.7
54 + name: hawk.i2.ipContCurrState
55 + tag: hawk_i2_ip_cont_curr_state
56 + mapping:
57 + 1: open
58 + 2: closed
59 + 3: armed
60 + 4: triggered
61 + - MIB: HAWK-I2-MIB
62 + table:
63 + name: opTable
64 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2
65 + symbols:
66 + - name: hawk.i2.op
67 + constant_value_one: true
68 + metric_tags:
69 + - symbol:
70 + name: hawk.i2.opName
71 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2.1.3
72 + tag: hawk_i2_op_name
73 + - symbol:
74 + name: hawk.i2.opLocn
75 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2.1.4
76 + tag: hawk_i2_op_locn
77 + - symbol:
78 + name: hawk.i2.opNormState
79 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2.1.5
80 + tag: hawk_i2_op_norm_state
81 + mapping:
82 + 1: on
83 + 2: off
84 + - symbol:
85 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2.1.6
86 + name: hawk.i2.opCurrState
87 + tag: hawk_i2_op_curr_state
88 + mapping:
89 + 1: on
90 + 2: off
91 + - symbol:
92 + OID: 1.3.6.1.4.1.3711.24.1.1.2.2.1.12
93 + name: hawk.i2.opControlState
94 + tag: hawk_i2_op_control_state
95 + mapping:
96 + 1: activate
97 + 2: deactivate
98 + 3: logic
99 + - MIB: HAWK-I2-MIB
100 + table:
101 + name: pduMonTable
102 + OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1
103 + symbols:
104 + - name: hawk.i2.pduRMSVoltsValue
105 + OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.3
106 + - name: hawk.i2.pduRMSAmpsValue
107 + OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.4
108 + - name: hawk.i2.pduTotalEnergyValue
109 + OID: 1.3.6.1.4.1.3711.24.1.1.7.3.1.1.5
110 + metric_tags:
111 + - symbol:
112 + name: hawk.i2.pduName
113 + OID: 1.3.6.1.4.1.3711.24.1.1.7.1.2.1.3
114 + tag: hawk_i2_pdu_name
115 +metric_tags:
116 + - OID: 1.3.6.1.4.1.3711.24.1.1.99.9.0
117 + symbol: invHwRevision
118 + tag: hawk_i2_inv_hw_revision
119 + - OID: 1.3.6.1.4.1.3711.24.1.1.99.10.0
120 + symbol: invFwRevision
121 + tag: hawk_i2_inv_fw_revision
122 + - OID: 1.3.6.1.4.1.3711.24.1.1.99.11.0
123 + symbol: invSerialNum
124 + tag: hawk_i2_inv_serial_num
125 + - OID: 1.3.6.1.4.1.3711.24.1.1.1.2.1.0
126 + symbol: ipTempScaleFlag
127 + tag: hawk_i2_ip_temp_scale_flag
128 + mapping:
129 + 1: celsius
130 + 2: fahrenheit
131 + 3: kelvin
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/sophos-xgs-firewall.yaml new
+629
@@ -0,0 +1,629 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +sysobjectid:
5 + - 1.3.6.1.4.1.2604.5
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "sophos"
11 + type:
12 + value: "firewall"
13 +metrics:
14 + - MIB: HOST-RESOURCES-MIB
15 + symbol:
16 + name: cpu.usage
17 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608
18 + - MIB: SFOS-FIREWALL-MIB
19 + symbol:
20 + name: memory.usage
21 + OID: 1.3.6.1.4.1.2604.5.1.2.5.2.0
22 + - MIB: SFOS-FIREWALL-MIB
23 + symbol:
24 + name: memory.total
25 + OID: 1.3.6.1.4.1.2604.5.1.2.5.1.0
26 + - MIB: SFOS-FIREWALL-MIB
27 + symbol:
28 + name: sfosDiskCapacity
29 + OID: 1.3.6.1.4.1.2604.5.1.2.4.1.0
30 + - MIB: SFOS-FIREWALL-MIB
31 + symbol:
32 + name: sfosDiskPercentUsage
33 + OID: 1.3.6.1.4.1.2604.5.1.2.4.2.0
34 + - MIB: SFOS-FIREWALL-MIB
35 + symbol:
36 + name: sfosSwapCapacity
37 + OID: 1.3.6.1.4.1.2604.5.1.2.5.3.0
38 + - MIB: SFOS-FIREWALL-MIB
39 + symbol:
40 + name: sfosSwapPercentUsage
41 + OID: 1.3.6.1.4.1.2604.5.1.2.5.4.0
42 + - MIB: SFOS-FIREWALL-MIB
43 + symbol:
44 + name: sfosLiveUsersCount
45 + OID: 1.3.6.1.4.1.2604.5.1.2.6.0
46 + - MIB: SFOS-FIREWALL-MIB
47 + symbol:
48 + name: sfosHTTPHits
49 + OID: 1.3.6.1.4.1.2604.5.1.2.7.0
50 + metric_type: monotonic_count
51 + - MIB: SFOS-FIREWALL-MIB
52 + symbol:
53 + name: sfosFTPHits
54 + OID: 1.3.6.1.4.1.2604.5.1.2.8.0
55 + metric_type: monotonic_count
56 + - MIB: SFOS-FIREWALL-MIB
57 + symbol:
58 + name: sfosPOP3Hits
59 + OID: 1.3.6.1.4.1.2604.5.1.2.9.1.0
60 + metric_type: monotonic_count
61 + - MIB: SFOS-FIREWALL-MIB
62 + symbol:
63 + name: sfosImapHits
64 + OID: 1.3.6.1.4.1.2604.5.1.2.9.2.0
65 + metric_type: monotonic_count
66 + - MIB: SFOS-FIREWALL-MIB
67 + symbol:
68 + name: sfosSmtpHits
69 + OID: 1.3.6.1.4.1.2604.5.1.2.9.3.0
70 + metric_type: monotonic_count
71 +# - MIB: SFOS-FIREWALL-MIB
72 +# symbol:
73 +# name: sfosPoP3Service
74 +# OID: 1.3.6.1.4.1.2604.5.1.3.1.0
75 +# enum:
76 +# untouched: 0
77 +# stopped: 1
78 +# initializing: 2
79 +# running: 3
80 +# exiting: 4
81 +# dead: 5
82 +# frozen: 6
83 +# unregistered: 7
84 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
85 +# comment in profile until it's fixed)
86 +# - MIB: SFOS-FIREWALL-MIB
87 +# symbol:
88 +# name: sfosImap4Service
89 +# OID: 1.3.6.1.4.1.2604.5.1.3.2.0
90 +# enum:
91 +# untouched: 0
92 +# stopped: 1
93 +# initializing: 2
94 +# running: 3
95 +# exiting: 4
96 +# dead: 5
97 +# frozen: 6
98 +# unregistered: 7
99 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
100 +# comment in profile until it's fixed)
101 +# - MIB: SFOS-FIREWALL-MIB
102 +# symbol:
103 +# name: sfosSmtpService
104 +# OID: 1.3.6.1.4.1.2604.5.1.3.3.0
105 +# enum:
106 +# untouched: 0
107 +# stopped: 1
108 +# initializing: 2
109 +# running: 3
110 +# exiting: 4
111 +# dead: 5
112 +# frozen: 6
113 +# unregistered: 7
114 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
115 +# comment in profile until it's fixed)
116 +# - MIB: SFOS-FIREWALL-MIB
117 +# symbol:
118 +# name: sfosFtpService
119 +# OID: 1.3.6.1.4.1.2604.5.1.3.4.0
120 +# enum:
121 +# untouched: 0
122 +# stopped: 1
123 +# initializing: 2
124 +# running: 3
125 +# exiting: 4
126 +# dead: 5
127 +# frozen: 6
128 +# unregistered: 7
129 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
130 +# comment in profile until it's fixed)
131 +# - MIB: SFOS-FIREWALL-MIB
132 +# symbol:
133 +# name: sfosHttpService
134 +# OID: 1.3.6.1.4.1.2604.5.1.3.5.0
135 +# enum:
136 +# untouched: 0
137 +# stopped: 1
138 +# initializing: 2
139 +# running: 3
140 +# exiting: 4
141 +# dead: 5
142 +# frozen: 6
143 +# unregistered: 7
144 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
145 +# comment in profile until it's fixed)
146 +# - MIB: SFOS-FIREWALL-MIB
147 +# symbol:
148 +# name: sfosAVService
149 +# OID: 1.3.6.1.4.1.2604.5.1.3.6.0
150 +# enum:
151 +# untouched: 0
152 +# stopped: 1
153 +# initializing: 2
154 +# running: 3
155 +# exiting: 4
156 +# dead: 5
157 +# frozen: 6
158 +# unregistered: 7
159 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
160 +# comment in profile until it's fixed)
161 +# - MIB: SFOS-FIREWALL-MIB
162 +# symbol:
163 +# name: sfosASService
164 +# OID: 1.3.6.1.4.1.2604.5.1.3.7.0
165 +# enum:
166 +# untouched: 0
167 +# stopped: 1
168 +# initializing: 2
169 +# running: 3
170 +# exiting: 4
171 +# dead: 5
172 +# frozen: 6
173 +# unregistered: 7
174 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
175 +# comment in profile until it's fixed)
176 +# - MIB: SFOS-FIREWALL-MIB
177 +# symbol:
178 +# name: sfosDNSService
179 +# OID: 1.3.6.1.4.1.2604.5.1.3.8.0
180 +# enum:
181 +# untouched: 0
182 +# stopped: 1
183 +# initializing: 2
184 +# running: 3
185 +# exiting: 4
186 +# dead: 5
187 +# frozen: 6
188 +# unregistered: 7
189 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
190 +# comment in profile until it's fixed)
191 +# - MIB: SFOS-FIREWALL-MIB
192 +# symbol:
193 +# name: sfosHAService
194 +# OID: 1.3.6.1.4.1.2604.5.1.3.9.0
195 +# enum:
196 +# untouched: 0
197 +# stopped: 1
198 +# initializing: 2
199 +# running: 3
200 +# exiting: 4
201 +# dead: 5
202 +# frozen: 6
203 +# unregistered: 7
204 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
205 +# comment in profile until it's fixed)
206 +# - MIB: SFOS-FIREWALL-MIB
207 +# symbol:
208 +# name: sfosIPSService
209 +# OID: 1.3.6.1.4.1.2604.5.1.3.10.0
210 +# enum:
211 +# untouched: 0
212 +# stopped: 1
213 +# initializing: 2
214 +# running: 3
215 +# exiting: 4
216 +# dead: 5
217 +# frozen: 6
218 +# unregistered: 7
219 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
220 +# comment in profile until it's fixed)
221 +# - MIB: SFOS-FIREWALL-MIB
222 +# symbol:
223 +# name: sfosApacheService
224 +# OID: 1.3.6.1.4.1.2604.5.1.3.11.0
225 +# enum:
226 +# untouched: 0
227 +# stopped: 1
228 +# initializing: 2
229 +# running: 3
230 +# exiting: 4
231 +# dead: 5
232 +# frozen: 6
233 +# unregistered: 7
234 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
235 +# comment in profile until it's fixed)
236 +# - MIB: SFOS-FIREWALL-MIB
237 +# symbol:
238 +# name: sfosNtpService
239 +# OID: 1.3.6.1.4.1.2604.5.1.3.12.0
240 +# enum:
241 +# untouched: 0
242 +# stopped: 1
243 +# initializing: 2
244 +# running: 3
245 +# exiting: 4
246 +# dead: 5
247 +# frozen: 6
248 +# unregistered: 7
249 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
250 +# comment in profile until it's fixed)
251 +# - MIB: SFOS-FIREWALL-MIB
252 +# symbol:
253 +# name: sfosTomcatService
254 +# OID: 1.3.6.1.4.1.2604.5.1.3.13.0
255 +# enum:
256 +# untouched: 0
257 +# stopped: 1
258 +# initializing: 2
259 +# running: 3
260 +# exiting: 4
261 +# dead: 5
262 +# frozen: 6
263 +# unregistered: 7
264 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
265 +# comment in profile until it's fixed)
266 +# - MIB: SFOS-FIREWALL-MIB
267 +# symbol:
268 +# name: sfosSSLVpnService
269 +# OID: 1.3.6.1.4.1.2604.5.1.3.14.0
270 +# enum:
271 +# untouched: 0
272 +# stopped: 1
273 +# initializing: 2
274 +# running: 3
275 +# exiting: 4
276 +# dead: 5
277 +# frozen: 6
278 +# unregistered: 7
279 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
280 +# comment in profile until it's fixed)
281 +# - MIB: SFOS-FIREWALL-MIB
282 +# symbol:
283 +# name: sfosIPSecVpnService
284 +# OID: 1.3.6.1.4.1.2604.5.1.3.15.0
285 +# enum:
286 +# untouched: 0
287 +# stopped: 1
288 +# initializing: 2
289 +# running: 3
290 +# exiting: 4
291 +# dead: 5
292 +# frozen: 6
293 +# unregistered: 7
294 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
295 +# comment in profile until it's fixed)
296 +# - MIB: SFOS-FIREWALL-MIB
297 +# symbol:
298 +# name: sfosDatabaseService
299 +# OID: 1.3.6.1.4.1.2604.5.1.3.16.0
300 +# enum:
301 +# untouched: 0
302 +# stopped: 1
303 +# initializing: 2
304 +# running: 3
305 +# exiting: 4
306 +# dead: 5
307 +# frozen: 6
308 +# unregistered: 7
309 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
310 +# comment in profile until it's fixed)
311 +# - MIB: SFOS-FIREWALL-MIB
312 +# symbol:
313 +# name: sfosNetworkService
314 +# OID: 1.3.6.1.4.1.2604.5.1.3.17.0
315 +# enum:
316 +# untouched: 0
317 +# stopped: 1
318 +# initializing: 2
319 +# running: 3
320 +# exiting: 4
321 +# dead: 5
322 +# frozen: 6
323 +# unregistered: 7
324 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
325 +# comment in profile until it's fixed)
326 +# - MIB: SFOS-FIREWALL-MIB
327 +# symbol:
328 +# name: sfosGarnerService
329 +# OID: 1.3.6.1.4.1.2604.5.1.3.18.0
330 +# enum:
331 +# untouched: 0
332 +# stopped: 1
333 +# initializing: 2
334 +# running: 3
335 +# exiting: 4
336 +# dead: 5
337 +# frozen: 6
338 +# unregistered: 7
339 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
340 +# comment in profile until it's fixed)
341 +# - MIB: SFOS-FIREWALL-MIB
342 +# symbol:
343 +# name: sfosDroutingService
344 +# OID: 1.3.6.1.4.1.2604.5.1.3.19.0
345 +# enum:
346 +# untouched: 0
347 +# stopped: 1
348 +# initializing: 2
349 +# running: 3
350 +# exiting: 4
351 +# dead: 5
352 +# frozen: 6
353 +# unregistered: 7
354 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
355 +# comment in profile until it's fixed)
356 +# - MIB: SFOS-FIREWALL-MIB
357 +# symbol:
358 +# name: sfosSSHdService
359 +# OID: 1.3.6.1.4.1.2604.5.1.3.20.0
360 +# enum:
361 +# untouched: 0
362 +# stopped: 1
363 +# initializing: 2
364 +# running: 3
365 +# exiting: 4
366 +# dead: 5
367 +# frozen: 6
368 +# unregistered: 7
369 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
370 +# comment in profile until it's fixed)
371 +# - MIB: SFOS-FIREWALL-MIB
372 +# symbol:
373 +# name: sfosDgdService
374 +# OID: 1.3.6.1.4.1.2604.5.1.3.21.0
375 +# enum:
376 +# untouched: 0
377 +# stopped: 1
378 +# initializing: 2
379 +# running: 3
380 +# exiting: 4
381 +# dead: 5
382 +# frozen: 6
383 +# unregistered: 7
384 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
385 +# comment in profile until it's fixed)
386 +# - MIB: SFOS-FIREWALL-MIB
387 +# symbol:
388 +# name: sfosHAStatus
389 +# OID: 1.3.6.1.4.1.2604.5.1.4.1.0
390 +# enum:
391 +# disabled: 0
392 +# enabled: 1
393 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
394 +# comment in profile until it's fixed)
395 +# - MIB: SFOS-FIREWALL-MIB
396 +# symbol:
397 +# name: sfosDeviceCurrentHAState
398 +# OID: 1.3.6.1.4.1.2604.5.1.4.4.0
399 +# enum:
400 +# notApplicable: 0
401 +# auxiliary: 1
402 +# standAlone: 2
403 +# primary: 3
404 +# faulty: 4
405 +# ready: 5
406 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
407 +# comment in profile until it's fixed)
408 +# - MIB: SFOS-FIREWALL-MIB
409 +# symbol:
410 +# name: sfosDevicePeerHAState
411 +# OID: 1.3.6.1.4.1.2604.5.1.4.5.0
412 +# enum:
413 +# notApplicable: 0
414 +# auxiliary: 1
415 +# standAlone: 2
416 +# primary: 3
417 +# faulty: 4
418 +# ready: 5
419 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
420 +# comment in profile until it's fixed)
421 +# - MIB: SFOS-FIREWALL-MIB
422 +# symbol:
423 +# name: sfosBaseFWLicRegStatus
424 +# OID: 1.3.6.1.4.1.2604.5.1.5.1.1.0
425 +# enum:
426 +# trial: 1
427 +# unsubscribed: 2
428 +# subscribed: 3
429 +# expired: 4
430 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
431 +# comment in profile until it's fixed)
432 +
433 +# Commented since the value is not a numerical value but a DisplayString
434 +# - MIB: SFOS-FIREWALL-MIB
435 +# symbol:
436 +# name: sfosBaseFWLicExpiryDate
437 +# OID: 1.3.6.1.4.1.2604.5.1.5.1.2.0
438 +
439 +# - MIB: SFOS-FIREWALL-MIB
440 +# symbol:
441 +# name: sfosNetProtectionLicRegStatus
442 +# OID: 1.3.6.1.4.1.2604.5.1.5.2.1.0
443 +# enum:
444 +# trial: 1
445 +# unsubscribed: 2
446 +# subscribed: 3
447 +# expired: 4
448 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
449 +# comment in profile until it's fixed)
450 +
451 +# Commented since the value is not a numerical value but a DisplayString
452 +# - MIB: SFOS-FIREWALL-MIB
453 +# symbol:
454 +# name: sfosNetProtectionLicExpiryDate
455 +# OID: 1.3.6.1.4.1.2604.5.1.5.2.2.0
456 +
457 +# - MIB: SFOS-FIREWALL-MIB
458 +# symbol:
459 +# name: sfosWebProtectionLicRegStatus
460 +# OID: 1.3.6.1.4.1.2604.5.1.5.3.1.0
461 +# enum:
462 +# trial: 1
463 +# unsubscribed: 2
464 +# subscribed: 3
465 +# expired: 4
466 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
467 +# comment in profile until it's fixed)
468 +
469 +# Commented since the value is not a numerical value but a DisplayString
470 +# - MIB: SFOS-FIREWALL-MIB
471 +# symbol:
472 +# name: sfosWebProtectionLicExpiryDate
473 +# OID: 1.3.6.1.4.1.2604.5.1.5.3.2.0
474 +
475 +# - MIB: SFOS-FIREWALL-MIB
476 +# symbol:
477 +# name: sfosMailProtectionLicRegStatus
478 +# OID: 1.3.6.1.4.1.2604.5.1.5.4.1.0
479 +# enum:
480 +# trial: 1
481 +# unsubscribed: 2
482 +# subscribed: 3
483 +# expired: 4
484 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
485 +# comment in profile until it's fixed)
486 +
487 +# Commented since the value is not a numerical value but a DisplayString
488 +# - MIB: SFOS-FIREWALL-MIB
489 +# symbol:
490 +# name: sfosMailProtectionLicExpiryDate
491 +# OID: 1.3.6.1.4.1.2604.5.1.5.4.2.0
492 +# - MIB: SFOS-FIREWALL-MIB
493 +# symbol:
494 +# name: sfosWebServerProtectionLicRegStatus
495 +# OID: 1.3.6.1.4.1.2604.5.1.5.5.1.0
496 +# enum:
497 +# trial: 1
498 +# unsubscribed: 2
499 +# subscribed: 3
500 +# expired: 4
501 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
502 +# comment in profile until it's fixed)
503 +
504 +# Commented since the value is not a numerical value but a DisplayString
505 +# - MIB: SFOS-FIREWALL-MIB
506 +# symbol:
507 +# name: sfosWebServerProtectionLicExpiryDate
508 +# OID: 1.3.6.1.4.1.2604.5.1.5.5.2.0
509 +
510 +# - MIB: SFOS-FIREWALL-MIB
511 +# symbol:
512 +# name: sfosSandstromLicRegStatus
513 +# OID: 1.3.6.1.4.1.2604.5.1.5.6.1.0
514 +# enum:
515 +# trial: 1
516 +# unsubscribed: 2
517 +# subscribed: 3
518 +# expired: 4
519 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
520 +# comment in profile until it's fixed)
521 +
522 +# Commented since the value is not a numerical value but a DisplayString
523 +# - MIB: SFOS-FIREWALL-MIB
524 +# symbol:
525 +# name: sfosSandstromLicExpiryDate
526 +# OID: 1.3.6.1.4.1.2604.5.1.5.6.2.0
527 +
528 +# - MIB: SFOS-FIREWALL-MIB
529 +# symbol:
530 +# name: sfosEnhancedSupportLicRegStatus
531 +# OID: 1.3.6.1.4.1.2604.5.1.5.7.1.0
532 +# enum:
533 +# trial: 1
534 +# unsubscribed: 2
535 +# subscribed: 3
536 +# expired: 4
537 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
538 +# comment in profile until it's fixed)
539 +
540 +# Commented since the value is not a numerical value but a DisplayString
541 +# - MIB: SFOS-FIREWALL-MIB
542 +# symbol:
543 +# name: sfosEnhancedSupportLicExpiryDate
544 +# OID: 1.3.6.1.4.1.2604.5.1.5.7.2.0
545 +
546 +# - MIB: SFOS-FIREWALL-MIB
547 +# symbol:
548 +# name: sfosEnhancedPlusLicRegStatus
549 +# OID: 1.3.6.1.4.1.2604.5.1.5.8.1.0
550 +# enum:
551 +# trial: 1
552 +# unsubscribed: 2
553 +# subscribed: 3
554 +# expired: 4
555 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
556 +# comment in profile until it's fixed)
557 +
558 +# Commented since the value is not a numerical value but a DisplayString
559 +# - MIB: SFOS-FIREWALL-MIB
560 +# symbol:
561 +# name: sfosEnhancedPlusLicExpiryDate
562 +# OID: 1.3.6.1.4.1.2604.5.1.5.8.2.0
563 +
564 +# - MIB: SFOS-FIREWALL-MIB
565 +# symbol:
566 +# name: sfosCentralOrchestrationLicRegStatus
567 +# OID: 1.3.6.1.4.1.2604.5.1.5.9.1.0
568 +# enum:
569 +# trial: 1
570 +# unsubscribed: 2
571 +# subscribed: 3
572 +# expired: 4
573 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
574 +# comment in profile until it's fixed)
575 +
576 +# Commented since the value is not a numerical value but a DisplayString
577 +# - MIB: SFOS-FIREWALL-MIB
578 +# symbol:
579 +# name: sfosCentralOrchestrationLicExpiryDate
580 +# OID: 1.3.6.1.4.1.2604.5.1.5.9.2.0
581 +
582 + - MIB: SFOS-FIREWALL-MIB
583 + table:
584 + name: sfosIPSecVpnTunnelTable
585 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1
586 + symbols:
587 + - name: sfosIPSecVpnTunnel
588 + constant_value_one: true
589 + - name: sfosIPSecVpnActiveTunnel
590 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8
591 + metric_tags:
592 + - symbol:
593 + name: sfosIPSecVpnConnName
594 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2
595 + tag: sfos_ip_sec_vpn_conn_name
596 + - symbol:
597 + name: sfosIPSecVpnConnDes
598 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3
599 + tag: sfos_ip_sec_vpn_conn_des
600 + - symbol:
601 + name: sfosIPSecVpnPolicyName
602 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4
603 + tag: sfos_ip_sec_vpn_policy_name
604 + - symbol:
605 + name: sfosIPSecVpnConnMode
606 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5
607 + tag: sfos_ip_sec_vpn_conn_mode
608 + - symbol:
609 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6
610 + name: sfosIPSecVpnConnType
611 + tag: sfos_ip_sec_vpn_conn_type
612 + mapping:
613 + 1: host-to-host
614 + 2: site-to-site
615 + - symbol:
616 + name: sfosIPSecVpnLocalgwPort
617 + OID: 1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7
618 + tag: sfos_ip_sec_vpn_localgw_port
619 +
620 +metric_tags:
621 + - OID: 1.3.6.1.4.1.2604.5.1.1.2.0
622 + symbol: sfosDeviceType
623 + tag: sfos_device_type
624 + - OID: 1.3.6.1.4.1.2604.5.1.1.3.0
625 + symbol: sfosDeviceFWVersion
626 + tag: sfos_device_fw_version
627 + - OID: 1.3.6.1.4.1.2604.5.1.1.6.0
628 + symbol: sfosIPSVersion
629 + tag: sfos_ips_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/synology-disk-station.yaml new
+269
@@ -0,0 +1,269 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "synology"
10 + type:
11 + value: "storage"
12 +
13 +sysobjectid: 1.3.6.1.4.1.6574.*
14 +metrics:
15 + - MIB: UCD-SNMP-MIB
16 + symbol:
17 + name: cpu.usage
18 + OID: 1.3.6.1.4.1.2021.10.1.5.1
19 + - MIB: HOST-RESOURCES-MIB
20 + symbol:
21 + name: memory.total
22 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1 = Physical memory
23 + - MIB: HOST-RESOURCES-MIB
24 + symbol:
25 + OID: 1.3.6.1.2.1.25.2.3.1.6.6 # hrStorageUsed.6 = Memory buffers
26 + name: hrMemoryBuffers
27 + - MIB: HOST-RESOURCES-MIB
28 + symbol:
29 + OID: 1.3.6.1.2.1.25.2.3.1.6.7 # hrStorageUsed.7 = Cached memory
30 + name: hrCachedMemory
31 +# - MIB: SYNOLOGY-SYSTEM-MIB
32 +# symbol:
33 +# name: synology.system.systemStatus
34 +# OID: 1.3.6.1.4.1.6574.1.1.0
35 +# enum:
36 +# normal: 1
37 +# failed: 2
38 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
39 +# comment in profile until it's fixed)
40 + - MIB: SYNOLOGY-SYSTEM-MIB
41 + symbol:
42 + name: synology.system.temperature
43 + OID: 1.3.6.1.4.1.6574.1.2.0
44 +# - MIB: SYNOLOGY-SYSTEM-MIB
45 +# symbol:
46 +# name: synology.system.powerStatus
47 +# OID: 1.3.6.1.4.1.6574.1.3.0
48 +# enum:
49 +# normal: 1
50 +# failed: 2
51 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
52 +# comment in profile until it's fixed)
53 +# - MIB: SYNOLOGY-SYSTEM-MIB
54 +# symbol:
55 +# name: synology.system.systemFanStatus
56 +# OID: 1.3.6.1.4.1.6574.1.4.1.0
57 +# enum:
58 +# normal: 1
59 +# failed: 2
60 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
61 +# comment in profile until it's fixed)
62 +# - MIB: SYNOLOGY-SYSTEM-MIB
63 +# symbol:
64 +# name: synology.system.cpuFanStatus
65 +# OID: 1.3.6.1.4.1.6574.1.4.2.0
66 +# enum:
67 +# normal: 1
68 +# failed: 2
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: SYNOLOGY-SYSTEM-MIB
72 +# symbol:
73 +# name: synology.system.upgradeAvailable
74 +# OID: 1.3.6.1.4.1.6574.1.5.4.0
75 +# enum:
76 +# available: 1
77 +# unavailable: 2
78 +# connecting: 3
79 +# disconnected: 4
80 +# others: 5
81 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
82 +# comment in profile until it's fixed)
83 + - MIB: SYNOLOGY-DISK-MIB
84 + table:
85 + name: diskTable
86 + OID: 1.3.6.1.4.1.6574.2.1
87 + symbols:
88 + - name: synology.diskTemperature
89 + OID: 1.3.6.1.4.1.6574.2.1.1.6
90 + metric_tags:
91 + - symbol:
92 + name: synology.diskID
93 + OID: 1.3.6.1.4.1.6574.2.1.1.2
94 + tag: synology_disk_id
95 + - symbol:
96 + name: synology.diskModel
97 + OID: 1.3.6.1.4.1.6574.2.1.1.3
98 + tag: synology_disk_model
99 + - symbol:
100 + name: synology.diskType
101 + OID: 1.3.6.1.4.1.6574.2.1.1.4
102 + tag: synology_disk_type
103 + - symbol:
104 + OID: 1.3.6.1.4.1.6574.2.1.1.5
105 + name: synology.diskStatus
106 + tag: synology_disk_status
107 + mapping:
108 + 1: normal
109 + 2: initialized
110 + 3: not_initialized
111 + 4: system_partition_failed
112 + 5: crashed
113 + # mapping in the metric description
114 + - MIB: SYNOLOGY-RAID-MIB
115 + table:
116 + name: raidTable
117 + OID: 1.3.6.1.4.1.6574.3.1
118 + symbols:
119 + - name: synology.raidFreeSize
120 + OID: 1.3.6.1.4.1.6574.3.1.1.4
121 + metric_type: monotonic_count
122 + - name: synology.raidTotalSize
123 + OID: 1.3.6.1.4.1.6574.3.1.1.5
124 + metric_type: monotonic_count
125 + metric_tags:
126 + - symbol:
127 + name: synology.raid.raidName
128 + OID: 1.3.6.1.4.1.6574.3.1.1.2
129 + tag: synology_raid_name
130 + - symbol:
131 + OID: 1.3.6.1.4.1.6574.3.1.1.3
132 + name: synology.raid.raidStatus
133 + tag: synology_raid_status
134 + mapping:
135 + 1: normal
136 + 2: repairing
137 + 3: migrating
138 + 4: expanding
139 + 5: deleting
140 + 6: creating
141 + 7: raid_syncing
142 + 8: raid_parity_checking
143 + 9: raid_assembling
144 + 10: canceling
145 + 11: degrade
146 + 12: crashed
147 + 13: data_scrubbing
148 + 14: raid_deploying
149 + 15: raid_un_deploying
150 + 16: raid_mount_cache
151 + 17: raid_unmount_cache
152 + 18: raid_expanding_unfinished_shr
153 + 19: raid_convert_shr_to_pool
154 + 20: raid_migrate_shr1_to_shr2
155 + 21: raid_unknown_status
156 + # full list of mappings here https://global.download.synology.com/download/Document/Software/DeveloperGuide/Firmware/DSM/All/enu/Synology_DiskStation_MIB_Guide.pdf
157 + - MIB: SYNOLOGY-SMART-MIB
158 + table:
159 + name: diskSMARTTable
160 + OID: 1.3.6.1.4.1.6574.5.1
161 + symbols:
162 + - name: synology.diskSMARTAttrCurrent
163 + OID: 1.3.6.1.4.1.6574.5.1.1.5
164 + - name: synology.diskSMARTAttrThreshold
165 + OID: 1.3.6.1.4.1.6574.5.1.1.7
166 + metric_tags:
167 + - symbol:
168 + name: synology.diskSMARTInfoDevName
169 + OID: 1.3.6.1.4.1.6574.5.1.1.2
170 + tag: synology_disk_smart_info_dev_name
171 + - symbol:
172 + name: synology.diskSMARTAttrName
173 + OID: 1.3.6.1.4.1.6574.5.1.1.3
174 + tag: synology_disk_smart_attr_name
175 + - symbol:
176 + name: synology.diskSMARTAttrId
177 + OID: 1.3.6.1.4.1.6574.5.1.1.4
178 + tag: synology_disk_smart_attr_id
179 + - symbol:
180 + OID: 1.3.6.1.4.1.6574.5.1.1.9
181 + name: synology.diskSMARTAttrStatus
182 + tag: synology_disk_smart_attr_status
183 + - MIB: SYNOLOGY-SERVICES-MIB
184 + table:
185 + name: serviceTable
186 + OID: 1.3.6.1.4.1.6574.6.1
187 + symbols:
188 + - name: synology.serviceUsers
189 + OID: 1.3.6.1.4.1.6574.6.1.1.3
190 + metric_tags:
191 + - symbol:
192 + name: synology.serviceName
193 + OID: 1.3.6.1.4.1.6574.6.1.1.2
194 + tag: synology_service_name
195 + - MIB: SYNOLOGY-STORAGEIO-MIB
196 + table:
197 + name:
198 + OID: 1.3.6.1.4.1.6574.101.1
199 + symbols:
200 + - name: synology.storageIOReads
201 + OID: 1.3.6.1.4.1.6574.101.1.1.5
202 + metric_type: monotonic_count
203 + - name: synology.storageIOWrites
204 + OID: 1.3.6.1.4.1.6574.101.1.1.6
205 + metric_type: monotonic_count
206 + - name: synology.storageIOLA
207 + OID: 1.3.6.1.4.1.6574.101.1.1.8
208 + - name: synology.storageIONReadX
209 + OID: 1.3.6.1.4.1.6574.101.1.1.12
210 + metric_type: monotonic_count
211 + - name: synology.storageIONWrittenX
212 + OID: 1.3.6.1.4.1.6574.101.1.1.13
213 + metric_type: monotonic_count
214 + metric_tags:
215 + - symbol:
216 + name: synology.storageIODevice
217 + OID: 1.3.6.1.4.1.6574.101.1.1.2
218 + tag: synology_storage_io_device
219 + - MIB: SYNOLOGY-SPACEIO-MIB
220 + table:
221 + name:
222 + OID: 1.3.6.1.4.1.6574.102.1
223 + symbols:
224 + - name: synology.spaceIOReads
225 + OID: 1.3.6.1.4.1.6574.102.1.1.5
226 + metric_type: monotonic_count
227 + - name: synology.spaceIOWrites
228 + OID: 1.3.6.1.4.1.6574.102.1.1.6
229 + metric_type: monotonic_count
230 + - name: synology.spaceIOLA
231 + OID: 1.3.6.1.4.1.6574.102.1.1.8
232 + - name: synology.spaceIONReadX
233 + OID: 1.3.6.1.4.1.6574.102.1.1.12
234 + metric_type: monotonic_count
235 + - name: synology.spaceIONWrittenX
236 + OID: 1.3.6.1.4.1.6574.102.1.1.13
237 + metric_type: monotonic_count
238 + metric_tags:
239 + - symbol:
240 + name: synology.spaceIODevice
241 + OID: 1.3.6.1.4.1.6574.102.1.1.2
242 + tag: synology_space_io_device
243 +# - MIB: SYNOLOGY-GPUINFO-MIB
244 +# symbol:
245 +# name: synology.system.gpuInfoSupported
246 +# OID: 1.3.6.1.4.1.6574.108.1.0
247 +# enum:
248 +# supported: 0
249 +# unsupported: 1
250 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
251 +# comment in profile until it's fixed)
252 + - MIB: SYNOLOGY-GPUINFO-MIB
253 + symbol:
254 + name: synology.gpuUtilization
255 + OID: 1.3.6.1.4.1.6574.108.2.0
256 + - MIB: SYNOLOGY-GPUINFO-MIB
257 + symbol:
258 + name: synology.gpuMemoryUtilization
259 + OID: 1.3.6.1.4.1.6574.108.3.0
260 +metric_tags:
261 + - OID: 1.3.6.1.4.1.6574.1.5.1.0
262 + symbol: modelName
263 + tag: synology_model_name
264 + - OID: 1.3.6.1.4.1.6574.1.5.2.0
265 + symbol: serialNumber
266 + tag: synology_serial_number
267 + - OID: 1.3.6.1.4.1.6574.1.5.3.0
268 + symbol: version
269 + tag: synology_version
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/tp-link.yaml new
+38
@@ -0,0 +1,38 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "TP-Link"
10 +
11 +sysobjectid:
12 + - 1.3.6.1.4.1.11863.1.* # TP-Link switch
13 + - 1.3.6.1.4.1.11863.5.* # TP-Link products
14 +metrics:
15 + - MIB: TPLINK-SYSMONITOR-MIB
16 + table:
17 + name: tpSysMonitorCpuTable
18 + OID: 1.3.6.1.4.1.11863.6.4.1.1.1
19 + symbols:
20 + - name: cpu.usage
21 + OID: 1.3.6.1.4.1.11863.6.4.1.1.1.1.3
22 + metric_tags:
23 + - symbol:
24 + OID: 1.3.6.1.4.1.11863.6.4.1.1.1.1.4
25 + name: tpSysMonitorCpu5Minutes
26 + tag: tp_sys_monitor_cpu_5_minutes
27 + - index: 1 # tpSysMonitorCpuUnitNumber
28 + tag: cpu
29 + - MIB: TPLINK-SYSMONITOR-MIB
30 + table:
31 + name: tpSysMonitorMemoryTable
32 + OID: 1.3.6.1.4.1.11863.6.4.1.2.1
33 + symbols:
34 + - name: memory.usage
35 + OID: 1.3.6.1.4.1.11863.6.4.1.2.1.1.2
36 + metric_tags:
37 + - index: 1 # tpSysMonitorMemoryUnitNumber
38 + tag: mem
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/tripplite-pdu.yaml new
+217
@@ -0,0 +1,217 @@
1 +extends:
2 + - tripplite.yaml
3 +
4 +sysobjectid:
5 + - 1.3.6.1.4.1.850.1.1.1 # Tripp Lite PDU
6 +
7 +metadata:
8 + device:
9 + fields:
10 + type:
11 + value: "PDU"
12 +
13 +metrics:
14 + - MIB: TRIPPLITE-PRODUCTS
15 + table:
16 + OID: 1.3.6.1.4.1.850.1.1.1.2
17 + name: tlpDeviceTable
18 + symbols:
19 + - name: tlpDevice
20 + constant_value_one: true
21 + metric_tags:
22 + - symbol:
23 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.4
24 + name: tlpDeviceManufacturer
25 + tag: tlp_device_manufacturer
26 + - symbol:
27 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.5
28 + name: tlpDeviceModel
29 + tag: tlp_device_model
30 + - symbol:
31 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.6
32 + name: tlpDeviceName
33 + tag: tlp_device_name
34 + - symbol:
35 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.8
36 + name: tlpDeviceLocation
37 + tag: tlp_device_location
38 + - symbol:
39 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.9
40 + name: tlpDeviceRegion
41 + tag: tlp_device_region
42 + - symbol:
43 + OID: 1.3.6.1.4.1.850.1.1.1.2.1.10
44 + name: tlpDeviceStatus
45 + tag: tlp_device_status
46 + mapping:
47 + 0: none
48 + 1: critical
49 + 2: warning
50 + 3: info
51 + 4: status
52 + 5: offline
53 + 6: custom
54 + 7: configuration
55 + - MIB: TRIPPLITE-PRODUCTS
56 + table:
57 + OID: 1.3.6.1.4.1.850.1.1.2.1
58 + name: tlpDeviceIdentTable
59 + symbols:
60 + - name: tlpDeviceIdent
61 + constant_value_one: true
62 + metric_tags:
63 + - symbol:
64 + OID: 1.3.6.1.4.1.850.1.1.2.1.1.5
65 + name: tlpDeviceIdentSerialNum
66 + tag: tlp_device_ident_serial_num
67 + - symbol:
68 + OID: 1.3.6.1.4.1.850.1.1.2.1.1.6
69 + name: tlpDeviceIdentDateInstalled
70 + tag: tlp_device_ident_date_installed
71 + - MIB: TRIPPLITE-PRODUCTS
72 + table:
73 + OID: 1.3.6.1.4.1.850.1.1.3.2.2.1
74 + name: tlpPduDeviceTable
75 + symbols:
76 + - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.6
77 + name: tlpPduDeviceTemperatureC
78 + - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.7
79 + name: tlpPduDeviceTemperatureF
80 + - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.8
81 + name: tlpPduDevicePhaseImbalance
82 + - OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.9
83 + name: tlpPduDeviceOutputPowerTotal
84 + metric_tags:
85 + - index: 1 # tlpDeviceIndex
86 + tag: tlp_device_index
87 + - symbol:
88 + OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.11
89 + name: tlpPduDeviceOutputCurrentPrecision
90 + tag: tlp_pdu_device_output_current_precision
91 + mapping:
92 + 0: whole_number
93 + 1: tenths
94 + 2: hundredths
95 + - symbol:
96 + OID: 1.3.6.1.4.1.850.1.1.3.2.2.1.1.1
97 + name: tlpPduDeviceMainLoadState
98 + tag: tlp_pdu_device_main_load_state
99 + mapping:
100 + 0: unknown
101 + 1: off
102 + 2: on
103 + - MIB: TRIPPLITE-PRODUCTS
104 + table:
105 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1
106 + name: tlpPduOutputTable
107 + symbols:
108 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.4
109 + name: tlpPduOutputVoltage
110 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.5
111 + name: tlpPduOutputCurrent
112 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.10
113 + name: tlpPduOutputSource
114 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.11
115 + name: tlpPduOutputFrequency
116 + metric_tags:
117 + - index: 1 # tlpDeviceIndex
118 + tag: tlp_device_index
119 + - index: 2 # tlpPduOutputIndex
120 + tag: tlp_pdu_output_index
121 + - symbol:
122 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.2
123 + name: tlpPduOutputPhase
124 + tag: tlp_pdu_output_phase
125 + mapping:
126 + 1: phase1
127 + 2: phase2
128 + 3: phase3
129 + - symbol:
130 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.2.1.1.3
131 + name: tlpPduOutputPhaseType
132 + tag: tlp_pdu_output_phase_type
133 + mapping:
134 + 0: phase_to_neutral
135 + 1: phase_to_phase
136 + - MIB: TRIPPLITE-PRODUCTS
137 + table:
138 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1
139 + name: tlpPduOutletTable
140 + symbols:
141 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.4
142 + name: tlpPduOutletState
143 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.7
144 + name: tlpPduOutletVoltage
145 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.8
146 + name: tlpPduOutletCurrent
147 + - OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.9
148 + name: tlpPduOutletPower
149 + metric_tags:
150 + - symbol:
151 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.2
152 + name: tlpPduOutletName
153 + tag: tlp_pdu_outlet_name
154 + - symbol:
155 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.3.1.1.3
156 + name: tlpPduOutletDescription
157 + tag: tlp_pdu_outlet_description
158 + - MIB: TRIPPLITE-PRODUCTS
159 + table:
160 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.5.1
161 + name: tlpPduBreakerTable
162 + symbols:
163 + - name: tlpPduBreaker
164 + constant_value_one: true
165 + metric_tags:
166 + - index: 1 # tlpDeviceIndex
167 + tag: tlp_device_index
168 + - index: 2 # tlpPduBreakerIndex
169 + tag: tlp_pdu_breaker_index
170 + - symbol:
171 + OID: 1.3.6.1.4.1.850.1.1.3.2.3.5.1.1.2
172 + name: tlpPduBreakerStatus
173 + tag: tlp_pdu_breaker_status
174 + mapping:
175 + 0: open
176 + 1: closed
177 + 2: not_installed
178 + - MIB: TRIPPLITE-PRODUCTS
179 + symbol:
180 + OID: 1.3.6.1.4.1.850.1.3.1.0
181 + name: tlpAlarmsPresent
182 + - MIB: TRIPPLITE-PRODUCTS
183 + table:
184 + OID: 1.3.6.1.4.1.850.1.3.2
185 + name: tlpAlarmTable
186 + symbols:
187 + - name: tlpAlarm
188 + constant_value_one: true
189 + metric_tags:
190 + - index: 1 # tlpAlarmId
191 + tag: tlp_alarm_id
192 + - symbol:
193 + OID: 1.3.6.1.4.1.850.1.3.2.1.2
194 + name: tlpAlarmDescr
195 + tag: tlp_alarm_descr
196 + - symbol:
197 + OID: 1.3.6.1.4.1.850.1.3.2.1.3
198 + name: tlpAlarmTime
199 + tag: tlp_alarm_time
200 + - symbol:
201 + OID: 1.3.6.1.4.1.850.1.3.2.1.6
202 + name: tlpAlarmDetail
203 + tag: tlp_alarm_detail
204 + - symbol:
205 + OID: 1.3.6.1.4.1.850.1.3.2.1.8
206 + name: tlpAlarmState
207 + tag: tlp_alarm_state
208 + mapping:
209 + 1: active
210 + 2: inactive
211 + - symbol:
212 + OID: 1.3.6.1.4.1.850.1.3.2.1.9
213 + name: tlpAlarmAcknowledged
214 + tag: tlp_alarm_acknowledged
215 + mapping:
216 + 1: not_acknowledged
217 + 2: acknowledged
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/tripplite-ups.yaml new
+199
@@ -0,0 +1,199 @@
1 +extends:
2 + - _generic-ups.yaml
3 + - tripplite.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.850.1.1.3.1 # tlpHardware.tlpDeviceTypes.tlpUps
7 +
8 +metadata:
9 + device:
10 + fields:
11 + type:
12 + value: "UPS"
13 +
14 +metrics:
15 +# - MIB: TRIPPLITE-12X
16 +# symbol:
17 +# OID: 1.3.6.1.4.1.850.100.1.12.1.0
18 +# name: tlUpsMainOutletState
19 +# enum:
20 +# unknown: 0
21 +# off: 1
22 +# on: 2
23 +# mixed: 3
24 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
25 +# comment in profile until it's fixed)
26 + - MIB: TRIPPLITE-12X
27 + symbol:
28 + OID: 1.3.6.1.4.1.850.100.1.13.1.0
29 + name: tlUpsTemperature
30 + - MIB: TRIPPLITE-12X
31 + symbol:
32 + OID: 1.3.6.1.4.1.850.100.1.2.1.0
33 + name: tlUpsBatteryAge # The age of the battery in years.
34 + - MIB: TRIPPLITE-12X
35 + symbol:
36 + OID: 1.3.6.1.4.1.850.100.1.2.2.0
37 + name: tlUpsTemperatureF
38 + - MIB: TRIPPLITE-12X
39 + symbol:
40 + OID: 1.3.6.1.4.1.850.100.1.2.3.0
41 + name: tlUpsExternalBatteryAge # The age of the battery in years.
42 + - MIB: TRIPPLITE-12X
43 + symbol:
44 + OID: 1.3.6.1.4.1.850.100.1.6.1.0
45 + name: tlUpsAlarmsPresent
46 +# - MIB: TRIPPLITE-12X
47 +# symbol:
48 +# OID: 1.3.6.1.4.1.850.100.1.7.1.0
49 +# name: tlUpsTestDate # The date of the last self-test run on the ups, in the format YYYYMMDD.
50 +# TODO: this is not a numerical value and possibly not suitable as global metric tags since it might have high cardinality
51 +# - MIB: TRIPPLITE-12X
52 +# symbol:
53 +# OID: 1.3.6.1.4.1.850.100.1.7.2.0
54 +# name: tlUpsTestResultsDetail
55 +# TODO: this is not a numerical value
56 +# - MIB: TRIPPLITE-12X
57 +# symbol:
58 +# OID: 1.3.6.1.4.1.850.100.1.9.1.0
59 +# name: tlUpsConfigBattReplDate # The date on which the battery was last replaced, in the format YYYYMMDD.
60 +# TODO: this is not a numerical value and possibly not suitable as global metric tags since it might have high cardinality
61 +# - MIB: TRIPPLITE-12X
62 +# symbol:
63 +# OID: 1.3.6.1.4.1.850.100.1.9.5.0
64 +# name: tlUpsConfigExternalBattReplDate # The date on which the external battery was last replaced, in the format YYYYMMDD.
65 +# TODO: this is not a numerical value and possibly not suitable as global metric tags since it might have high cardinality
66 + - MIB: TRIPPLITE-12X
67 + symbol:
68 + OID: 1.3.6.1.4.1.850.101.1.1.1.0
69 + name: tlEnvTemperatureC
70 + - MIB: TRIPPLITE-12X
71 + symbol:
72 + OID: 1.3.6.1.4.1.850.101.1.1.2.0
73 + name: tlEnvTemperatureF
74 +# - MIB: TRIPPLITE-12X
75 +# symbol:
76 +# OID: 1.3.6.1.4.1.850.101.1.1.5.0
77 +# name: tlEnvTemperatureInAlarm
78 +# enum:
79 +# true: 1
80 +# false: 2
81 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
82 +# comment in profile until it's fixed)
83 + - MIB: TRIPPLITE-12X
84 + symbol:
85 + OID: 1.3.6.1.4.1.850.101.1.2.1.0
86 + name: tlEnvHumidity
87 +# - MIB: TRIPPLITE-12X
88 +# symbol:
89 +# OID: 1.3.6.1.4.1.850.101.1.2.4.0
90 +# name: tlEnvHumidityInAlarm
91 +# enum:
92 +# true: 1
93 +# false: 2
94 +# TODO: enum in scalar metric is not supported yet (keep this metric and this
95 +# comment in profile until it's fixed)
96 + - MIB: TRIPPLITE-12X
97 + table:
98 + OID: 1.3.6.1.4.1.850.100.1.3.2
99 + name: tlUpsInputVoltageTable
100 + symbols:
101 + - OID: 1.3.6.1.4.1.850.100.1.3.2.1.3
102 + name: tlUpsInputVoltage
103 + metric_tags:
104 + - symbol:
105 + OID: 1.3.6.1.4.1.850.100.1.3.2.1.1
106 + name: tlUpsInputVoltageIndex
107 + tag: tl_ups_input_voltage_index
108 + - symbol:
109 + OID: 1.3.6.1.4.1.850.100.1.3.2.1.2
110 + name: tlUpsInputVoltageType
111 + tag: tl_ups_input_voltage_type
112 + mapping:
113 + 0: phase_to_neutral
114 + 1: phase_to_phase
115 + - MIB: TRIPPLITE-12X
116 + table:
117 + OID: 1.3.6.1.4.1.850.100.1.4.7
118 + name: tlUpsOutputCircuitTable
119 + symbols:
120 + - OID: 1.3.6.1.4.1.850.100.1.4.7.1.3
121 + name: tlUpsOutputCircuitLoadCurrent
122 + - OID: 1.3.6.1.4.1.850.100.1.4.7.1.4
123 + name: tlUpsOutputCircuitVoltage
124 + - OID: 1.3.6.1.4.1.850.100.1.4.7.1.5
125 + name: tlUpsOutputCircuitPower
126 + metric_tags:
127 + - index: 1
128 + tag: tl_ups_output_circuit_index
129 + - symbol:
130 + OID: 1.3.6.1.4.1.850.100.1.4.7.1.2
131 + name: tlUpsOutputCircuitStatus
132 + tag: tl_ups_output_circuit_status
133 + mapping:
134 + 0: open
135 + 1: closed
136 + - MIB: TRIPPLITE-12X
137 + table:
138 + OID: 1.3.6.1.4.1.850.101.2.1
139 + name: tlEnvContactTable
140 + symbols:
141 + - name: tlEnvContact
142 + constant_value_one: true
143 + metric_tags:
144 + - symbol:
145 + OID: 1.3.6.1.4.1.850.101.2.1.1.2
146 + name: tlEnvContactName
147 + tag: tl_env_contact_name
148 + - symbol:
149 + OID: 1.3.6.1.4.1.850.101.2.1.1.4
150 + name: tlEnvContactConfig
151 + tag: tl_env_contact_config
152 + mapping:
153 + 0: normally_open
154 + 1: normally_closed
155 + - symbol:
156 + OID: 1.3.6.1.4.1.850.101.2.1.1.3
157 + name: tlEnvContactStatus
158 + tag: tl_env_contact_status
159 + mapping:
160 + 0: normal
161 + 1: alarm
162 + - MIB: TRIPPLITE-12X
163 + table:
164 + OID: 1.3.6.1.4.1.850.100.1.10.2
165 + name: tlUpsOutletTable
166 + symbols:
167 + - name: tlUpsOutlet
168 + constant_value_one: true
169 + metric_tags:
170 + - symbol:
171 + OID: 1.3.6.1.4.1.850.100.1.11.2.1.3
172 + name: tlUpsOutletGroupName
173 + tag: tl_ups_outlet_group_name
174 + - symbol:
175 + OID: 1.3.6.1.4.1.850.100.1.11.2.1.4
176 + name: tlUpsOutletGroupDesc
177 + tag: tl_ups_outlet_group_desc
178 + - symbol:
179 + OID: 1.3.6.1.4.1.850.100.1.11.2.1.5
180 + name: tlUpsOutletGroupState
181 + tag: tl_ups_outlet_group_state
182 + mapping:
183 + 0: unknown
184 + 1: off
185 + 2: on
186 + 3: mixed
187 +metric_tags:
188 + - tag: tl_ups_ident_serial_num
189 + OID: 1.3.6.1.4.1.850.100.1.1.2.0
190 + symbol: tlUpsIdentSerialNum
191 + - OID: 1.3.6.1.4.1.850.100.1.1.3.0
192 + symbol: tlUpsIdentID
193 + tag: tl_ups_ident_id
194 + - OID: 1.3.6.1.4.1.850.100.1.1.4.0
195 + symbol: tlUpsSnmpCardSerialNum
196 + tag: tl_ups_snmp_card_serial_num
197 + - OID: 1.3.6.1.4.1.850.100.1.1.6.0
198 + symbol: tlUpsLocation
199 + tag: tl_ups_location
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/tripplite.yaml new
+11
@@ -0,0 +1,11 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "tripplite"
9 +
10 +sysobjectid:
11 + - 1.3.6.1.4.1.850.1.* # tlpProducts: all tripplite products
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ubiquiti-unifi-security-gateway.yaml new
+6
@@ -0,0 +1,6 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _generic-ucd.yaml
4 + - _ubiquiti.yaml
5 +sysobjectid:
6 + - 1.3.6.1.4.1.41112.1.5 # Ubiquiti EdgeMax
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/ubiquiti-unifi.yaml new
+65
@@ -0,0 +1,65 @@
1 +extends:
2 + - _generic-if.yaml
3 + - _ubiquiti.yaml
4 +
5 +sysobjectid:
6 + - 1.3.6.1.4.1.41112 # Ubiquiti Networks, Inc.
7 +
8 +metrics:
9 + - MIB: FROGFOOT-RESOURCES-MIB
10 + symbol:
11 + OID: 1.3.6.1.4.1.10002.1.1.1.1.1.0
12 + name: memory.total
13 + - MIB: FROGFOOT-RESOURCES-MIB
14 + symbol:
15 + OID: 1.3.6.1.4.1.10002.1.1.1.1.2.0
16 + name: memory.free
17 +# TODO: Update once we support matching on specific tag (`match_attributes`)
18 +# - MIB: FROGFOOT-RESOURCES-MIB
19 +# table:
20 +# OID: 1.3.6.1.4.1.10002.1.1.1.4.2
21 +# name: loadTable
22 +# symbols:
23 +# - OID: 1.3.6.1.4.1.10002.1.1.1.4.2.1.3.1
24 +# name: cpu.usage
25 +# metric_tags:
26 +# - index: 1
27 +# tag: cpu
28 +# - symbol:
29 +# OID: 1.3.6.1.4.1.10002.1.1.1.4.2.1.2.1
30 +# name: loadDescr
31 +# match_attributes:
32 +# - 1 Minute Average
33 +# tag: load_descr
34 + - MIB: UBNT-UniFi-MIB
35 + table:
36 + OID: 1.3.6.1.4.1.41112.1.6.1.1
37 + name: unifiRadioTable
38 + symbols:
39 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.4
40 + name: ubiquiti.unifiRadioRxPackets
41 + metric_type: monotonic_count
42 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.5
43 + name: ubiquiti.unifiRadioTxPackets
44 + metric_type: monotonic_count
45 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.6
46 + name: ubiquiti.unifiRadioCuTotal
47 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.7
48 + name: ubiquiti.unifiRadioCuSelfRx
49 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.8
50 + name: ubiquiti.unifiRadioCuSelfTx
51 + - OID: 1.3.6.1.4.1.41112.1.6.1.1.1.9
52 + name: ubiquiti.unifiRadioOtherBss
53 + metric_tags:
54 + - symbol:
55 + OID: 1.3.6.1.4.1.41112.1.6.1.1.1.1
56 + name: ubiquiti.unifiRadioIndex
57 + tag: ubiquiti_unifi_radio_index
58 + - symbol:
59 + OID: 1.3.6.1.4.1.41112.1.6.1.1.1.2
60 + name: ubiquiti.unifiRadioName
61 + tag: ubiquiti_unifi_radio_name
62 + - symbol:
63 + OID: 1.3.6.1.4.1.41112.1.6.1.1.1.3
64 + name: ubiquiti.unifiRadioRadio
65 + tag: ubiquiti_unifi_radio_radio
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/velocloud-edge.yaml new
+28
@@ -0,0 +1,28 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "velocloud"
11 + type:
12 + value: "SD-WAN"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.45346.1.1 # VeloCloud EDGE
16 +metrics:
17 + - MIB: HOST-RESOURCES-MIB
18 + symbol:
19 + name: memory.total
20 + OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1
21 + - MIB: HOST-RESOURCES-MIB
22 + symbol:
23 + name: memory.used
24 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1
25 + - MIB: HOST-RESOURCES-MIB
26 + symbol:
27 + name: cpu.usage
28 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/vertiv-liebert-ac.yaml new
+64
@@ -0,0 +1,64 @@
1 +extends:
2 + - _vertiv.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.476.1.42 # liebertGlobalProducts
5 +metrics:
6 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
7 + symbol:
8 + OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.1.0
9 + name: lgpEnvTemperatureSettingDegF
10 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
11 + symbol:
12 + OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.2.0
13 + name: lgpEnvTemperatureToleranceDegF
14 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
15 + table:
16 + OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.3
17 + name: lgpEnvTemperatureTableDegF
18 + symbols:
19 + - OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.3.1.3
20 + name: lgpEnvTemperatureMeasurementDegF
21 + - OID: 1.3.6.1.4.1.476.1.42.3.4.1.3.3.1.3
22 + name: lgpEnvTemperatureMeasurementDegC
23 + - OID: 1.3.6.1.4.1.476.1.42.3.4.2.2.3.1.3
24 + name: lgpEnvHumidityMeasurementRel
25 + metric_tags:
26 + - symbol:
27 + OID: 1.3.6.1.4.1.476.1.42.3.4.1.2.3.1.2 # OID index
28 + name: lgpEnvTemperatureDescrDegF
29 + tag: lgp_env_temperature_descr_deg_f
30 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
31 + symbol:
32 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.1.0
33 + name: lgpEnvStatisticsComp1RunHr
34 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
35 + symbol:
36 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.2.0
37 + name: lgpEnvStatisticsComp2RunHr
38 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
39 + symbol:
40 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.3.0
41 + name: lgpEnvStatisticsFanRunHr
42 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
43 + symbol:
44 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.4.0
45 + name: lgpEnvStatisticsHumRunHr
46 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
47 + symbol:
48 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.7.0
49 + name: lgpEnvStatisticsReheat1RunHr
50 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
51 + symbol:
52 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.8.0
53 + name: lgpEnvStatisticsReheat2RunHr
54 + - MIB: LIEBERT-GP-ENVIRONMENTAL-MIB
55 + symbol:
56 + OID: 1.3.6.1.4.1.476.1.42.3.4.6.9.0
57 + name: lgpEnvStatisticsReheat3RunHr
58 +metric_tags:
59 + - tag: lgp_agent_ident_model
60 + OID: 1.3.6.1.4.1.476.1.42.2.1.2.0
61 + symbol: lgpAgentIdentModel
62 + - tag: lgp_agent_ident_serial_number
63 + OID: 1.3.6.1.4.1.476.1.42.2.1.4.0
64 + symbol: lgpAgentIdentSerialNumber
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/vertiv-watchdog.yaml new
+81
@@ -0,0 +1,81 @@
1 +extends:
2 + - _vertiv.yaml
3 +sysobjectid:
4 + - 1.3.6.1.4.1.21239.5.1 # watchdog100
5 +metadata:
6 + device:
7 + fields:
8 + type:
9 + value: "sensor"
10 +metrics:
11 + - MIB: VERTIV-BB-MIB
12 + table:
13 + name: internalTable
14 + OID: 1.3.6.1.4.1.21239.5.1.2
15 + symbols:
16 + - OID: 1.3.6.1.4.1.21239.5.1.2.1.5
17 + name: vertiv.internalTemp
18 + - OID: 1.3.6.1.4.1.21239.5.1.2.1.6
19 + name: vertiv.internalHumidity
20 + - OID: 1.3.6.1.4.1.21239.5.1.2.1.7
21 + name: vertiv.internalDewPoint
22 + metric_tags:
23 + - symbol:
24 + OID: 1.3.6.1.4.1.21239.5.1.2.1.2
25 + name: vertiv.internalSerial
26 + tag: vertiv_internal_serial
27 +# - symbol:
28 +# OID: 1.3.6.1.4.1.21239.5.1.1.7.0
29 +# name: vertiv.temperatureUnits
30 +# tag: vertiv_temperature_units
31 +# mapping:
32 +# 0: fahrenheit
33 +# 1: celsius
34 +# TODO : Add this tag back when tagging by scalar symbol is implemented NDM-2247
35 + - symbol:
36 + OID: 1.3.6.1.4.1.21239.5.1.2.1.4
37 + name: vertiv.internalAvail
38 + tag: vertiv_internal_avail
39 + mapping:
40 + 0: unavailable
41 + 1: available
42 + 2: partially_unavailable
43 + # mapping in the metric description
44 + - MIB: VERTIV-BB-MIB
45 + table:
46 + name: tempSensorTable
47 + OID: 1.3.6.1.4.1.21239.5.1.4
48 + symbols:
49 + - OID: 1.3.6.1.4.1.21239.5.1.4.1.5
50 + name: vertiv.tempSensorTemp
51 + metric_tags:
52 + - symbol:
53 + OID: 1.3.6.1.4.1.21239.5.1.4.1.2
54 + name: vertiv.tempSensorSerial
55 + tag: vertiv_temp_sensor_serial
56 + - symbol:
57 + OID: 1.3.6.1.4.1.21239.5.1.4.1.3
58 + name: vertiv.tempSensorLabel
59 + tag: vertiv_temp_sensor_label
60 + - symbol:
61 + OID: 1.3.6.1.4.1.21239.5.1.4.1.4
62 + name: vertiv.tempSensorAvail
63 + tag: vertiv_temp_sensor_avail
64 + mapping:
65 + 0: unavailable
66 + 1: available
67 + 2: partially_unavailable
68 + # mapping in the metric description
69 +metric_tags:
70 + - OID: 1.3.6.1.4.1.21239.5.1.1.1.0
71 + symbol: productTitle
72 + tag: vertiv_product_title
73 + - OID: 1.3.6.1.4.1.21239.5.1.1.2.0
74 + symbol: productVersion
75 + tag: vertiv_product_version
76 + - OID: 1.3.6.1.4.1.21239.5.1.1.3.0
77 + symbol: productFriendlyName
78 + tag: vertiv_product_friendly_name
79 + - OID: 1.3.6.1.4.1.21239.5.1.1.4.0
80 + symbol: productMacAddress
81 + tag: vertiv_product_mac_address
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/vmware-esx.yaml new
+72
@@ -0,0 +1,72 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "vmware"
11 + type:
12 + value: "server"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.6876.4.1
16 +
17 +metrics:
18 + - MIB: VMWARE-RESOURCES-MIB
19 + table:
20 + OID: 1.3.6.1.4.1.6876.3.5.2
21 + name: vmwHostBusAdapterTable
22 + symbols:
23 + - name: vmwHostBusAdapter
24 + constant_value_one: true
25 + metric_tags:
26 + - symbol:
27 + name: vmwHbaDeviceName
28 + OID: 1.3.6.1.4.1.6876.3.5.2.1.2
29 + tag: vmw_hba_device_name
30 + - symbol:
31 + OID: 1.3.6.1.4.1.6876.3.5.2.1.4
32 + name: vmwHbaStatus
33 + tag: vmw_hba_status
34 + mapping:
35 + 1: unknown
36 + 2: normal
37 + 3: marginal
38 + 4: critical
39 + 5: failed
40 + - MIB: VMWARE-ENV-MIB
41 + table:
42 + OID: 1.3.6.1.4.1.6876.4.20.3
43 + name: vmwEnvTable
44 + symbols:
45 + - name: vmwEnv
46 + constant_value_one: true
47 + metric_tags:
48 + - symbol:
49 + name: vmwSubsystemType
50 + OID: 1.3.6.1.4.1.6876.4.20.3.1.2
51 + tag: vmw_subsystem_type
52 + mapping:
53 + 1: unknown
54 + 2: chassis
55 + 3: power_supply
56 + 4: fan
57 + 5: cpu
58 + 6: memory
59 + 7: battery
60 + 8: temperature_sensor
61 + 9: raid_controller
62 + 10: voltage
63 + - symbol:
64 + OID: 1.3.6.1.4.1.6876.4.20.3.1.3
65 + name: vmwHardwareStatus
66 + tag: vmw_hardware_status
67 + mapping:
68 + 1: unknown
69 + 2: normal
70 + 3: marginal
71 + 4: critical
72 + 5: failed
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/watchguard.yaml new
+15
@@ -0,0 +1,15 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 + - _generic-host-resources-base.yaml
5 +
6 +sysobjectid:
7 + - 1.3.6.1.4.1.3097.1.5.*
8 +
9 +metadata:
10 + device:
11 + fields:
12 + vendor:
13 + value: "watchguard"
14 + type:
15 + value: "firewall"
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/western-digital-mycloud-ex2-ultra.yaml new
+157
@@ -0,0 +1,157 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-host-resources-base.yaml
4 + - _generic-if.yaml
5 +
6 +metadata:
7 + device:
8 + fields:
9 + vendor:
10 + value: "western-digital"
11 + type:
12 + value: "storage"
13 +
14 +sysobjectid:
15 + - 1.3.6.1.4.1.5127.1.1.1.8
16 +
17 +metrics:
18 + - MIB: HOST-RESOURCES-MIB
19 + symbol:
20 + name: memory.total
21 + OID: 1.3.6.1.2.1.25.2.3.1.5.1 # hrStorageSize.1
22 +
23 + - MIB: HOST-RESOURCES-MIB
24 + symbol:
25 + name: memory.used
26 + OID: 1.3.6.1.2.1.25.2.3.1.6.1 # hrStorageUsed.1
27 + - MIB: HOST-RESOURCES-MIB
28 + symbol:
29 + name: cpu.usage
30 + OID: 1.3.6.1.2.1.25.3.3.1.2.196608 # hrProcessorLoad.196608
31 +# - MIB: WDMYCLOUDEX2-MIB
32 +# symbol:
33 +# name: wdmycloudex2Temperature
34 +# OID: 1.3.6.1.4.1.5127.1.1.1.2.1.7.0
35 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
36 +# - MIB: WDMYCLOUDEX2-MIB
37 +# symbol:
38 +# name: wdmycloudex2FanStatus
39 +# OID: 1.3.6.1.4.1.5127.1.1.1.8.1.8.0
40 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
41 + - MIB: WDMYCLOUDEX2-MIB
42 + table:
43 + name: wdmycloudex2VolumeTable
44 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9
45 + symbols:
46 + - name: wdmycloudex2Volume
47 + constant_value_one: true
48 +# - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.5
49 +# name: wdmycloudex2VolumeSize
50 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
51 +# - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.6
52 +# name: wdmycloudex2VolumeFreeSpace
53 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
54 + metric_tags:
55 + - symbol:
56 + name: wdmycloudex2VolumeNum
57 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.1
58 + tag: wdmycloudex2_volume_num
59 + - symbol:
60 + name: wdmycloudex2VolumeName
61 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.2
62 + tag: wdmycloudex2_volume_name
63 + - symbol:
64 + name: wdmycloudex2VolumeFsType
65 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.3
66 + tag: wdmycloudex2_volume_fs_type
67 + - symbol:
68 + name: wdmycloudex2VolumeRaidLevel
69 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.9.1.4
70 + tag: wdmycloudex2_volume_raid_level
71 + - MIB: WDMYCLOUDEX2-MIB
72 + table:
73 + name: wdmycloudex2DiskTable
74 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10
75 + symbols:
76 +# - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.5
77 +# name: wdmycloudex2DiskTemperature
78 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
79 + - name: wdmycloudex2Disk
80 + constant_value_one: true
81 + metric_tags:
82 + - symbol:
83 + name: wdmycloudex2DiskNum
84 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.1
85 + tag: wdmycloudex2_disk_num
86 + - symbol:
87 + name: wdmycloudex2DiskVendor
88 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.2
89 + tag: wdmycloudex2_disk_vendor
90 + - symbol:
91 + name: wdmycloudex2DiskModel
92 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.3
93 + tag: wdmycloudex2_disk_model
94 + - symbol:
95 + name: wdmycloudex2DiskSerialNumber
96 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.4
97 + tag: wdmycloudex2_disk_serial_number
98 + - symbol:
99 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.10.1.6
100 + name: wdmycloudex2DiskCapacity
101 + tag: wdmycloudex2_disk_capacity
102 + - MIB: WDMYCLOUDEX2-MIB
103 + table:
104 + name: wdmycloudex2UPSTable
105 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11
106 + symbols:
107 + - name: wdmycloudex2UPS
108 + constant_value_one: true
109 +# - name: wdmycloudex2UPSBatteryCharge
110 +# OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.5
111 +# string metric is not supported yet (keep this metric and this comment in profile until it's fixed)
112 + metric_tags:
113 + - symbol:
114 + name: wdmycloudex2UPSNum
115 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.1.1
116 + tag: wdmycloudex2_ups_num
117 + - symbol:
118 + name: wdmycloudex2UPSMode
119 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.1.2
120 + tag: wdmycloudex2_ups_mode
121 + - symbol:
122 + name: wdmycloudex2UPSManufacturer
123 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.1.3
124 + tag: wdmycloudex2_ups_manufacturer
125 + - symbol:
126 + name: wdmycloudex2UPSProduct
127 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.1.4
128 + tag: wdmycloudex2_ups_product
129 + - symbol:
130 + name: wdmycloudex2UPSStatus
131 + OID: 1.3.6.1.4.1.5127.1.1.1.8.1.11.1.6
132 + tag: wdmycloudex2_ups_status
133 +
134 +metric_tags:
135 + - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.1.0
136 + symbol: wdmycloudex2AgentVer
137 + tag: wdmycloudex2_agent_ver
138 + - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.2.0
139 + symbol: wdmycloudex2SoftwareVersion
140 + tag: wdmycloudex2_software_version
141 + - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.3.0
142 + symbol: wdmycloudex2HostName
143 + tag: wdmycloudex2_host_name
144 + - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.5.0
145 + symbol: wdmycloudex2FTPServer
146 + tag: wdmycloudex2_ftp_server
147 + mapping:
148 + 0: disable
149 + 1: enable
150 + # mapping in the metric description
151 + - OID: 1.3.6.1.4.1.5127.1.1.1.8.1.6.0
152 + symbol: wdmycloudex2NetType
153 + tag: wdmycloudex2_net_type
154 + mapping:
155 + 0: workgroup
156 + 1: active_directory
157 + # mapping in the metric description
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/zebra-printer.yaml new
+94
@@ -0,0 +1,94 @@
1 +extends:
2 + - _base.yaml
3 +
4 +metadata:
5 + device:
6 + fields:
7 + vendor:
8 + value: "zebra"
9 + version:
10 + symbol:
11 + MIB: ZEBRA-MIB
12 + OID: 1.3.6.1.4.1.10642.1.2.0
13 + name: zbrGeneralFirmwareVersion
14 + model:
15 + symbol:
16 + MIB: ZEBRA-MIB
17 + OID: 1.3.6.1.4.1.10642.1.1.0
18 + name: zbrGeneralModel
19 + os_version:
20 + symbol:
21 + MIB: ZEBRA-MIB
22 + OID: 1.3.6.1.4.1.10642.1.18.0
23 + name: zbrGeneralLINKOSVersion
24 + type:
25 + value: "printer"
26 +
27 +sysobjectid:
28 + - 1.3.6.1.4.1.10642.1.1 # ZT410-203dpi ZPL
29 +metrics:
30 + - MIB: ZEBRA-MIB
31 + table:
32 + name: zbrTrackedAlertsTable
33 + OID: 1.3.6.1.4.1.10642.10.31
34 + symbols:
35 + - name: zbrTrackedAlerts
36 + constant_value_one: true
37 + metric_tags:
38 + - symbol:
39 + OID: 1.3.6.1.4.1.10642.10.31.1.2
40 + name: zbrTrackedAlertsSeverity
41 + tag: zbr_tracked_alerts_severity
42 + mapping:
43 + 1: other
44 + 3: critical
45 + 4: warning
46 + - symbol:
47 + OID: 1.3.6.1.4.1.10642.10.31.1.3
48 + name: zbrTrackedAlertsTrainingLevel
49 + tag: zbr_tracked_alerts_training_level
50 + mapping:
51 + 1: other
52 + 2: unknown
53 + 3: untrained
54 + 4: trained
55 + 5: field_service
56 + 6: management
57 + - symbol:
58 + OID: 1.3.6.1.4.1.10642.10.31.1.4
59 + name: zbrTrackedAlertsGroup
60 + tag: zbr_tracked_alerts_group
61 + mapping:
62 + 1: system
63 + 2: media
64 + 3: ribbon
65 + 4: printhead
66 + 5: rewinder
67 + 6: cutter
68 + 7: zbi
69 + 8: battery
70 + 9: rfid
71 + - symbol:
72 + OID: 1.3.6.1.4.1.10642.10.31.1.5
73 + name: zbrTrackedAlertsCode
74 + tag: zbr_tracked_alerts_code
75 + mapping:
76 + 1: paper-out
77 + 2: ribbon-out
78 + 3: head-too-hot
79 + 4: head-under-temp
80 + 5: head-open
81 + 6: power-supply-over-temp
82 + 7: motor-over-temp
83 + 8: ribbon-in
84 + 9: rewind-fault
85 + 10: cutter-jammed
86 + 11: printer-paused
87 + 12: head-element-bad
88 + 13: basic-runtime
89 + 14: basic-forced
90 + 15: power-on
91 + 16: battery-low
92 + 17: rfid-error
93 + 18: cold-start
94 + 19: ribbon-auth-error
src/go/plugin/go.d/config/go.d/snmp.profiles.d/default/zyxel-switch.yaml new
+40
@@ -0,0 +1,40 @@
1 +extends:
2 + - _base.yaml
3 + - _generic-if.yaml
4 +
5 +metadata:
6 + device:
7 + fields:
8 + vendor:
9 + value: "zyxel"
10 + type:
11 + value: "switch"
12 +
13 +sysobjectid:
14 + - 1.3.6.1.4.1.890.1.15 # ZyWALL Switch (Generic)
15 +metrics:
16 + - MIB: ZYXEL-ES-COMMON
17 + symbol:
18 + name: cpu.usage
19 + OID: 1.3.6.1.4.1.890.1.15.3.2.4.0
20 + - MIB: ZYXEL-ES-COMMON
21 + symbol:
22 + name: memory.usage
23 + OID: 1.3.6.1.4.1.890.1.15.3.2.5.0
24 +metric_tags:
25 + - OID: 1.3.6.1.4.1.890.1.15.3.1.1.0
26 + symbol: sysSwPlatform
27 + tag: zyxel_sys_sw_platform
28 + mapping:
29 + 1: other
30 + 2: zynos
31 + 3: zld
32 + - OID: 1.3.6.1.4.1.890.1.15.3.1.6.0
33 + symbol: sysSwVersionString
34 + tag: zyxel_sys_sw_version_string
35 + - OID: 1.3.6.1.4.1.890.1.15.3.1.11.0
36 + symbol: sysProductModel
37 + tag: zyxel_sys_product_model
38 + - OID: 1.3.6.1.4.1.890.1.15.3.1.12.0
39 + symbol: sysProductSerialNumber
40 + tag: zyxel_sys_product_serial_number