diff --git a/.circleci/config.yml b/.circleci/config.yml index 797c77adb..e896be2b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -50,7 +50,7 @@ jobs: working_dir: ~/project/generator environment: - MIBDIRS: mibs:/usr/share/snmp/mibs + MIBDIRS: mibs steps: - checkout: path: ~/project diff --git a/generator/README.md b/generator/README.md index 7a0f45081..f98cb20cd 100644 --- a/generator/README.md +++ b/generator/README.md @@ -94,8 +94,8 @@ modules: # with that value. - source_indexes: [bsnDot11EssIndex] lookup: bsnDot11EssSsid - keep_source_indexes: false # If true, don't delete source index labels for this lookup. - # This is useful when the new index has duplicates. + drop_source_indexes: false # If true, delete source index labels for this lookup. + # This avoids label clutter when the new index is unique. overrides: # Allows for per-module overrides of bits of MIBs metricName: diff --git a/generator/config.go b/generator/config.go index 0e285f271..460808b16 100644 --- a/generator/config.go +++ b/generator/config.go @@ -55,5 +55,5 @@ type ModuleConfig struct { type Lookup struct { SourceIndexes []string `yaml:"source_indexes"` Lookup string `yaml:"lookup"` - KeepSourceIndexes bool `yaml:"keep_source_indexes,omitempty"` + DropSourceIndexes bool `yaml:"drop_source_indexes,omitempty"` } diff --git a/generator/generator.yml b/generator/generator.yml index 0b80d04f0..6c7d97cd5 100644 --- a/generator/generator.yml +++ b/generator/generator.yml @@ -2,22 +2,11 @@ modules: # Default IF-MIB interfaces table with ifIndex. if_mib: walk: [sysUpTime, interfaces, ifXTable] - # Interfaces if ifAlias is unique. - if_mib_ifalias: - walk: [sysUpTime, interfaces, ifXTable] lookups: - source_indexes: [ifIndex] lookup: ifAlias - # Interfaces if ifDescr is unique. - if_mib_ifdescr: - walk: [sysUpTime, interfaces, ifXTable] - lookups: - source_indexes: [ifIndex] lookup: ifDescr - # Interfaces if ifName is unique. - if_mib_ifname: - walk: [sysUpTime, interfaces, ifXTable] - lookups: - source_indexes: [ifIndex] # Use OID to avoid conflict with Netscaler NS-ROOT-MIB. lookup: 1.3.6.1.2.1.31.1.1.1.1 # ifName @@ -37,8 +26,10 @@ modules: lookups: - source_indexes: [bsnDot11EssIndex] lookup: bsnDot11EssSsid + drop_source_indexes: true - source_indexes: [bsnAPDot3MacAddress] lookup: bsnAPName + drop_source_indexes: true # APC/Schneider UPS Network Management Cards # @@ -70,8 +61,10 @@ modules: lookups: - source_indexes: [upsOutletGroupStatusIndex] lookup: upsOutletGroupStatusName + drop_source_indexes: true - source_indexes: [iemStatusProbeIndex] lookup: iemStatusProbeName + drop_source_indexes: true # ServerTech Sentry 3 MIB # @@ -161,21 +154,29 @@ modules: lookups: - source_indexes: [spaceIOIndex] lookup: spaceIODevice + drop_source_indexes: true - source_indexes: [storageIOIndex] lookup: storageIODevice + drop_source_indexes: true - source_indexes: [serviceInfoIndex] lookup: serviceName + drop_source_indexes: true - source_indexes: [ifIndex] # Use OID to avoid conflict with Netscaler NS-ROOT-MIB. lookup: 1.3.6.1.2.1.31.1.1.1.1 # ifName + drop_source_indexes: true - source_indexes: [diskIndex] lookup: diskID + drop_source_indexes: true - source_indexes: [raidIndex] lookup: raidName + drop_source_indexes: true - source_indexes: [laIndex] lookup: laNames + drop_source_indexes: true - source_indexes: [hrStorageIndex] lookup: hrStorageDescr + drop_source_indexes: true # DD-WRT # @@ -197,8 +198,10 @@ modules: lookups: - source_indexes: [ifIndex] lookup: ifDescr + drop_source_indexes: true - source_indexes: [laIndex] lookup: laNames + drop_source_indexes: true # Ubiquiti / AirMAX # diff --git a/generator/tree.go b/generator/tree.go index 0acccf571..eef92454d 100644 --- a/generator/tree.go +++ b/generator/tree.go @@ -407,7 +407,7 @@ func generateConfigModule(cfg *ModuleConfig, node *Node, nameToNode map[string]* } else { needToWalk[indexNode.Oid] = struct{}{} } - if !lookup.KeepSourceIndexes { + if lookup.DropSourceIndexes { // Avoid leaving the old labelname around. toDelete = append(toDelete, lookup.SourceIndexes...) } diff --git a/generator/tree_test.go b/generator/tree_test.go index 50f89475b..122571f50 100644 --- a/generator/tree_test.go +++ b/generator/tree_test.go @@ -955,9 +955,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"octetIndex"}, - Lookup: "octetDesc", - KeepSourceIndexes: true, + SourceIndexes: []string{"octetIndex"}, + Lookup: "octetDesc", }, }, }, @@ -1003,8 +1002,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"octetIndex"}, - Lookup: "octetDesc", + SourceIndexes: []string{"octetIndex"}, + Lookup: "octetDesc", + DropSourceIndexes: true, }, }, }, @@ -1053,8 +1053,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"octetIndex"}, - Lookup: "1.1.1.2", + SourceIndexes: []string{"octetIndex"}, + Lookup: "1.1.1.2", + DropSourceIndexes: true, }, }, }, @@ -1104,8 +1105,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"octetIndex", "octetIndex2"}, - Lookup: "octetDesc", + SourceIndexes: []string{"octetIndex", "octetIndex2"}, + Lookup: "octetDesc", + DropSourceIndexes: true, }, }, }, @@ -1184,8 +1186,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octet^Foo"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"octet&Index"}, - Lookup: "1.1.1.2", + SourceIndexes: []string{"octet&Index"}, + Lookup: "1.1.1.2", + DropSourceIndexes: true, }, }, }, @@ -1346,8 +1349,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"1.1.1.2.100", "1.1.1.4.100", "1.1.1.2.200"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"tableIndex"}, - Lookup: "tableDesc", + SourceIndexes: []string{"tableIndex"}, + Lookup: "tableDesc", + DropSourceIndexes: true, }, }, }, @@ -1419,8 +1423,9 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"1.1.1.2.100", "1.1.1.3"}, Lookups: []*Lookup{ { - SourceIndexes: []string{"tableIndex"}, - Lookup: "tableDesc", + SourceIndexes: []string{"tableIndex"}, + Lookup: "tableDesc", + DropSourceIndexes: true, }, }, }, diff --git a/snmp.yml b/snmp.yml index cbefce3d9..f1ddd604e 100644 --- a/snmp.yml +++ b/snmp.yml @@ -3580,6 +3580,10 @@ ddwrt: type: counter help: The number of 'ticks' (typically 1/100s) spent by the CPU to run a niced virtual CPU (guest) - 1.3.6.1.4.1.2021.11.66 + - name: ssCpuNumCpus + oid: 1.3.6.1.4.1.2021.11.67 + type: gauge + help: The number of processors, as counted by the agent - 1.3.6.1.4.1.2021.11.67 - name: memIndex oid: 1.3.6.1.4.1.2021.4.1 type: gauge @@ -3649,1683 +3653,26 @@ ddwrt: help: The total amount of real or virtual memory currently allocated for use as cached memory - 1.3.6.1.4.1.2021.4.15 - name: memUsedSwapTXT - oid: 1.3.6.1.4.1.2021.4.16 - type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.16 - - name: memUsedRealTXT - oid: 1.3.6.1.4.1.2021.4.17 - type: gauge - help: The amount of real/physical memory currently being used by text pages on - this host - 1.3.6.1.4.1.2021.4.17 - - name: memSwapError - oid: 1.3.6.1.4.1.2021.4.100 - type: gauge - help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 - - name: memSwapErrorMsg - oid: 1.3.6.1.4.1.2021.4.101 - type: DisplayString - help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 -if_mib: - walk: - - 1.3.6.1.2.1.2 - - 1.3.6.1.2.1.31.1.1 - get: - - 1.3.6.1.2.1.1.3.0 - metrics: - - name: sysUpTime - oid: 1.3.6.1.2.1.1.3 - type: gauge - help: The time (in hundredths of a second) since the network management portion - of the system was last re-initialized. - 1.3.6.1.2.1.1.3 - - name: ifNumber - oid: 1.3.6.1.2.1.2.1 - type: gauge - help: The number of network interfaces (regardless of their current state) present - on this system. - 1.3.6.1.2.1.2.1 - - name: ifIndex - oid: 1.3.6.1.2.1.2.2.1.1 - type: gauge - help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 - indexes: - - labelname: ifIndex - type: gauge - - name: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 - indexes: - - labelname: ifIndex - type: gauge - - name: ifType - oid: 1.3.6.1.2.1.2.2.1.3 - type: gauge - help: The type of interface - 1.3.6.1.2.1.2.2.1.3 - indexes: - - labelname: ifIndex - type: gauge - - name: ifMtu - oid: 1.3.6.1.2.1.2.2.1.4 - type: gauge - help: The size of the largest packet which can be sent/received on the interface, - specified in octets - 1.3.6.1.2.1.2.2.1.4 - indexes: - - labelname: ifIndex - type: gauge - - name: ifSpeed - oid: 1.3.6.1.2.1.2.2.1.5 - type: gauge - help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5 - indexes: - - labelname: ifIndex - type: gauge - - name: ifPhysAddress - oid: 1.3.6.1.2.1.2.2.1.6 - type: PhysAddress48 - help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 - indexes: - - labelname: ifIndex - type: gauge - - name: ifAdminStatus - oid: 1.3.6.1.2.1.2.2.1.7 - type: gauge - help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOperStatus - oid: 1.3.6.1.2.1.2.2.1.8 - type: gauge - help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 - indexes: - - labelname: ifIndex - type: gauge - - name: ifLastChange - oid: 1.3.6.1.2.1.2.2.1.9 - type: gauge - help: The value of sysUpTime at the time the interface entered its current operational - state - 1.3.6.1.2.1.2.2.1.9 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInOctets - oid: 1.3.6.1.2.1.2.2.1.10 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.10 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInUcastPkts - oid: 1.3.6.1.2.1.2.2.1.11 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.11 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.12 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.12 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInDiscards - oid: 1.3.6.1.2.1.2.2.1.13 - type: counter - help: The number of inbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being deliverable to a higher-layer - protocol - 1.3.6.1.2.1.2.2.1.13 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInErrors - oid: 1.3.6.1.2.1.2.2.1.14 - type: counter - help: For packet-oriented interfaces, the number of inbound packets that contained - errors preventing them from being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInUnknownProtos - oid: 1.3.6.1.2.1.2.2.1.15 - type: counter - help: For packet-oriented interfaces, the number of packets received via the interface - which were discarded because of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutOctets - oid: 1.3.6.1.2.1.2.2.1.16 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.16 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutUcastPkts - oid: 1.3.6.1.2.1.2.2.1.17 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.18 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutDiscards - oid: 1.3.6.1.2.1.2.2.1.19 - type: counter - help: The number of outbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutErrors - oid: 1.3.6.1.2.1.2.2.1.20 - type: counter - help: For packet-oriented interfaces, the number of outbound packets that could - not be transmitted because of errors - 1.3.6.1.2.1.2.2.1.20 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutQLen - oid: 1.3.6.1.2.1.2.2.1.21 - type: gauge - help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 - indexes: - - labelname: ifIndex - type: gauge - - name: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.2 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2 - indexes: - - labelname: ifIndex - type: gauge - - name: ifInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.3 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.4 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 - indexes: - - labelname: ifIndex - type: gauge - - name: ifOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.5 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCInOctets - oid: 1.3.6.1.2.1.31.1.1.1.6 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.6 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCInUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.7 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.31.1.1.1.7 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.8 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.9 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCOutOctets - oid: 1.3.6.1.2.1.31.1.1.1.10 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.10 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCOutUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.11 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.12 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHCOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.13 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 - indexes: - - labelname: ifIndex - type: gauge - - name: ifLinkUpDownTrapEnable - oid: 1.3.6.1.2.1.31.1.1.1.14 - type: gauge - help: Indicates whether linkUp/linkDown traps should be generated for this interface - - 1.3.6.1.2.1.31.1.1.1.14 - indexes: - - labelname: ifIndex - type: gauge - - name: ifHighSpeed - oid: 1.3.6.1.2.1.31.1.1.1.15 - type: gauge - help: An estimate of the interface's current bandwidth in units of 1,000,000 bits - per second - 1.3.6.1.2.1.31.1.1.1.15 - indexes: - - labelname: ifIndex - type: gauge - - name: ifPromiscuousMode - oid: 1.3.6.1.2.1.31.1.1.1.16 - type: gauge - help: This object has a value of false(2) if this interface only accepts packets/frames - that are addressed to this station - 1.3.6.1.2.1.31.1.1.1.16 - indexes: - - labelname: ifIndex - type: gauge - - name: ifConnectorPresent - oid: 1.3.6.1.2.1.31.1.1.1.17 - type: gauge - help: This object has the value 'true(1)' if the interface sublayer has a physical - connector and the value 'false(2)' otherwise. - 1.3.6.1.2.1.31.1.1.1.17 - indexes: - - labelname: ifIndex - type: gauge - - name: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - help: This object is an 'alias' name for the interface as specified by a network - manager, and provides a non-volatile 'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18 - indexes: - - labelname: ifIndex - type: gauge - - name: ifCounterDiscontinuityTime - oid: 1.3.6.1.2.1.31.1.1.1.19 - type: gauge - help: The value of sysUpTime on the most recent occasion at which any one or more - of this interface's counters suffered a discontinuity - 1.3.6.1.2.1.31.1.1.1.19 - indexes: - - labelname: ifIndex - type: gauge -if_mib_ifalias: - walk: - - 1.3.6.1.2.1.2 - - 1.3.6.1.2.1.31.1.1 - get: - - 1.3.6.1.2.1.1.3.0 - metrics: - - name: sysUpTime - oid: 1.3.6.1.2.1.1.3 - type: gauge - help: The time (in hundredths of a second) since the network management portion - of the system was last re-initialized. - 1.3.6.1.2.1.1.3 - - name: ifNumber - oid: 1.3.6.1.2.1.2.1 - type: gauge - help: The number of network interfaces (regardless of their current state) present - on this system. - 1.3.6.1.2.1.2.1 - - name: ifIndex - oid: 1.3.6.1.2.1.2.2.1.1 - type: gauge - help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifType - oid: 1.3.6.1.2.1.2.2.1.3 - type: gauge - help: The type of interface - 1.3.6.1.2.1.2.2.1.3 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifMtu - oid: 1.3.6.1.2.1.2.2.1.4 - type: gauge - help: The size of the largest packet which can be sent/received on the interface, - specified in octets - 1.3.6.1.2.1.2.2.1.4 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifSpeed - oid: 1.3.6.1.2.1.2.2.1.5 - type: gauge - help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifPhysAddress - oid: 1.3.6.1.2.1.2.2.1.6 - type: PhysAddress48 - help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifAdminStatus - oid: 1.3.6.1.2.1.2.2.1.7 - type: gauge - help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOperStatus - oid: 1.3.6.1.2.1.2.2.1.8 - type: gauge - help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifLastChange - oid: 1.3.6.1.2.1.2.2.1.9 - type: gauge - help: The value of sysUpTime at the time the interface entered its current operational - state - 1.3.6.1.2.1.2.2.1.9 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInOctets - oid: 1.3.6.1.2.1.2.2.1.10 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.10 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInUcastPkts - oid: 1.3.6.1.2.1.2.2.1.11 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.11 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.12 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.12 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInDiscards - oid: 1.3.6.1.2.1.2.2.1.13 - type: counter - help: The number of inbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being deliverable to a higher-layer - protocol - 1.3.6.1.2.1.2.2.1.13 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInErrors - oid: 1.3.6.1.2.1.2.2.1.14 - type: counter - help: For packet-oriented interfaces, the number of inbound packets that contained - errors preventing them from being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInUnknownProtos - oid: 1.3.6.1.2.1.2.2.1.15 - type: counter - help: For packet-oriented interfaces, the number of packets received via the interface - which were discarded because of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutOctets - oid: 1.3.6.1.2.1.2.2.1.16 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.16 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutUcastPkts - oid: 1.3.6.1.2.1.2.2.1.17 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.18 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutDiscards - oid: 1.3.6.1.2.1.2.2.1.19 - type: counter - help: The number of outbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutErrors - oid: 1.3.6.1.2.1.2.2.1.20 - type: counter - help: For packet-oriented interfaces, the number of outbound packets that could - not be transmitted because of errors - 1.3.6.1.2.1.2.2.1.20 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutQLen - oid: 1.3.6.1.2.1.2.2.1.21 - type: gauge - help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.2 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.3 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.4 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.5 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInOctets - oid: 1.3.6.1.2.1.31.1.1.1.6 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.6 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.7 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.31.1.1.1.7 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.8 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.9 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutOctets - oid: 1.3.6.1.2.1.31.1.1.1.10 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.10 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.11 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.12 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.13 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifLinkUpDownTrapEnable - oid: 1.3.6.1.2.1.31.1.1.1.14 - type: gauge - help: Indicates whether linkUp/linkDown traps should be generated for this interface - - 1.3.6.1.2.1.31.1.1.1.14 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHighSpeed - oid: 1.3.6.1.2.1.31.1.1.1.15 - type: gauge - help: An estimate of the interface's current bandwidth in units of 1,000,000 bits - per second - 1.3.6.1.2.1.31.1.1.1.15 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifPromiscuousMode - oid: 1.3.6.1.2.1.31.1.1.1.16 - type: gauge - help: This object has a value of false(2) if this interface only accepts packets/frames - that are addressed to this station - 1.3.6.1.2.1.31.1.1.1.16 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifConnectorPresent - oid: 1.3.6.1.2.1.31.1.1.1.17 - type: gauge - help: This object has the value 'true(1)' if the interface sublayer has a physical - connector and the value 'false(2)' otherwise. - 1.3.6.1.2.1.31.1.1.1.17 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - help: This object is an 'alias' name for the interface as specified by a network - manager, and provides a non-volatile 'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifCounterDiscontinuityTime - oid: 1.3.6.1.2.1.31.1.1.1.19 - type: gauge - help: The value of sysUpTime on the most recent occasion at which any one or more - of this interface's counters suffered a discontinuity - 1.3.6.1.2.1.31.1.1.1.19 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: [] - labelname: ifIndex -if_mib_ifdescr: - walk: - - 1.3.6.1.2.1.2 - - 1.3.6.1.2.1.31.1.1 - get: - - 1.3.6.1.2.1.1.3.0 - metrics: - - name: sysUpTime - oid: 1.3.6.1.2.1.1.3 - type: gauge - help: The time (in hundredths of a second) since the network management portion - of the system was last re-initialized. - 1.3.6.1.2.1.1.3 - - name: ifNumber - oid: 1.3.6.1.2.1.2.1 - type: gauge - help: The number of network interfaces (regardless of their current state) present - on this system. - 1.3.6.1.2.1.2.1 - - name: ifIndex - oid: 1.3.6.1.2.1.2.2.1.1 - type: gauge - help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifType - oid: 1.3.6.1.2.1.2.2.1.3 - type: gauge - help: The type of interface - 1.3.6.1.2.1.2.2.1.3 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifMtu - oid: 1.3.6.1.2.1.2.2.1.4 - type: gauge - help: The size of the largest packet which can be sent/received on the interface, - specified in octets - 1.3.6.1.2.1.2.2.1.4 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifSpeed - oid: 1.3.6.1.2.1.2.2.1.5 - type: gauge - help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifPhysAddress - oid: 1.3.6.1.2.1.2.2.1.6 - type: PhysAddress48 - help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifAdminStatus - oid: 1.3.6.1.2.1.2.2.1.7 - type: gauge - help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOperStatus - oid: 1.3.6.1.2.1.2.2.1.8 - type: gauge - help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifLastChange - oid: 1.3.6.1.2.1.2.2.1.9 - type: gauge - help: The value of sysUpTime at the time the interface entered its current operational - state - 1.3.6.1.2.1.2.2.1.9 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInOctets - oid: 1.3.6.1.2.1.2.2.1.10 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.10 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInUcastPkts - oid: 1.3.6.1.2.1.2.2.1.11 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.11 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.12 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.12 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInDiscards - oid: 1.3.6.1.2.1.2.2.1.13 - type: counter - help: The number of inbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being deliverable to a higher-layer - protocol - 1.3.6.1.2.1.2.2.1.13 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInErrors - oid: 1.3.6.1.2.1.2.2.1.14 - type: counter - help: For packet-oriented interfaces, the number of inbound packets that contained - errors preventing them from being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInUnknownProtos - oid: 1.3.6.1.2.1.2.2.1.15 - type: counter - help: For packet-oriented interfaces, the number of packets received via the interface - which were discarded because of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutOctets - oid: 1.3.6.1.2.1.2.2.1.16 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.2.2.1.16 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutUcastPkts - oid: 1.3.6.1.2.1.2.2.1.17 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.18 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutDiscards - oid: 1.3.6.1.2.1.2.2.1.19 - type: counter - help: The number of outbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutErrors - oid: 1.3.6.1.2.1.2.2.1.20 - type: counter - help: For packet-oriented interfaces, the number of outbound packets that could - not be transmitted because of errors - 1.3.6.1.2.1.2.2.1.20 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutQLen - oid: 1.3.6.1.2.1.2.2.1.21 - type: gauge - help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.2 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.3 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.4 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.5 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInOctets - oid: 1.3.6.1.2.1.31.1.1.1.6 - type: counter - help: The total number of octets received on the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.6 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.7 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.31.1.1.1.7 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.8 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCInBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.9 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutOctets - oid: 1.3.6.1.2.1.31.1.1.1.10 - type: counter - help: The total number of octets transmitted out of the interface, including framing - characters - 1.3.6.1.2.1.31.1.1.1.10 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.11 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.12 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHCOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.13 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifLinkUpDownTrapEnable - oid: 1.3.6.1.2.1.31.1.1.1.14 - type: gauge - help: Indicates whether linkUp/linkDown traps should be generated for this interface - - 1.3.6.1.2.1.31.1.1.1.14 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifHighSpeed - oid: 1.3.6.1.2.1.31.1.1.1.15 - type: gauge - help: An estimate of the interface's current bandwidth in units of 1,000,000 bits - per second - 1.3.6.1.2.1.31.1.1.1.15 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifPromiscuousMode - oid: 1.3.6.1.2.1.31.1.1.1.16 - type: gauge - help: This object has a value of false(2) if this interface only accepts packets/frames - that are addressed to this station - 1.3.6.1.2.1.31.1.1.1.16 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifConnectorPresent - oid: 1.3.6.1.2.1.31.1.1.1.17 - type: gauge - help: This object has the value 'true(1)' if the interface sublayer has a physical - connector and the value 'false(2)' otherwise. - 1.3.6.1.2.1.31.1.1.1.17 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - help: This object is an 'alias' name for the interface as specified by a network - manager, and provides a non-volatile 'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex - - name: ifCounterDiscontinuityTime - oid: 1.3.6.1.2.1.31.1.1.1.19 + oid: 1.3.6.1.4.1.2021.4.16 type: gauge - help: The value of sysUpTime on the most recent occasion at which any one or more - of this interface's counters suffered a discontinuity - 1.3.6.1.2.1.31.1.1.1.19 - indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: [] - labelname: ifIndex -if_mib_ifname: + help: The amount of swap space or virtual memory currently being used by text + pages on this host - 1.3.6.1.4.1.2021.4.16 + - name: memUsedRealTXT + oid: 1.3.6.1.4.1.2021.4.17 + type: gauge + help: The amount of real/physical memory currently being used by text pages on + this host - 1.3.6.1.4.1.2021.4.17 + - name: memSwapError + oid: 1.3.6.1.4.1.2021.4.100 + type: gauge + help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), + is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 + - name: memSwapErrorMsg + oid: 1.3.6.1.4.1.2021.4.101 + type: DisplayString + help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), + is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 +if_mib: walk: - 1.3.6.1.2.1.2 - 1.3.6.1.2.1.31.1.1 @@ -5350,13 +3697,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifDescr oid: 1.3.6.1.2.1.2.2.1.2 type: DisplayString @@ -5365,13 +3720,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifType oid: 1.3.6.1.2.1.2.2.1.3 type: gauge @@ -5380,13 +3743,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifMtu oid: 1.3.6.1.2.1.2.2.1.4 type: gauge @@ -5396,13 +3767,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifSpeed oid: 1.3.6.1.2.1.2.2.1.5 type: gauge @@ -5411,13 +3790,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifPhysAddress oid: 1.3.6.1.2.1.2.2.1.6 type: PhysAddress48 @@ -5426,13 +3813,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifAdminStatus oid: 1.3.6.1.2.1.2.2.1.7 type: gauge @@ -5441,13 +3836,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOperStatus oid: 1.3.6.1.2.1.2.2.1.8 type: gauge @@ -5456,13 +3859,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifLastChange oid: 1.3.6.1.2.1.2.2.1.9 type: gauge @@ -5472,13 +3883,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInOctets oid: 1.3.6.1.2.1.2.2.1.10 type: counter @@ -5488,13 +3907,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInUcastPkts oid: 1.3.6.1.2.1.2.2.1.11 type: counter @@ -5505,13 +3932,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInNUcastPkts oid: 1.3.6.1.2.1.2.2.1.12 type: counter @@ -5522,13 +3957,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInDiscards oid: 1.3.6.1.2.1.2.2.1.13 type: counter @@ -5539,13 +3982,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInErrors oid: 1.3.6.1.2.1.2.2.1.14 type: counter @@ -5555,13 +4006,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInUnknownProtos oid: 1.3.6.1.2.1.2.2.1.15 type: counter @@ -5571,13 +4030,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutOctets oid: 1.3.6.1.2.1.2.2.1.16 type: counter @@ -5587,13 +4054,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutUcastPkts oid: 1.3.6.1.2.1.2.2.1.17 type: counter @@ -5604,13 +4079,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutNUcastPkts oid: 1.3.6.1.2.1.2.2.1.18 type: counter @@ -5621,13 +4104,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutDiscards oid: 1.3.6.1.2.1.2.2.1.19 type: counter @@ -5637,13 +4128,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutErrors oid: 1.3.6.1.2.1.2.2.1.20 type: counter @@ -5653,13 +4152,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutQLen oid: 1.3.6.1.2.1.2.2.1.21 type: gauge @@ -5668,13 +4175,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString @@ -5683,13 +4198,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInMulticastPkts oid: 1.3.6.1.2.1.31.1.1.1.2 type: counter @@ -5699,13 +4222,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifInBroadcastPkts oid: 1.3.6.1.2.1.31.1.1.1.3 type: counter @@ -5715,13 +4246,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutMulticastPkts oid: 1.3.6.1.2.1.31.1.1.1.4 type: counter @@ -5732,13 +4271,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifOutBroadcastPkts oid: 1.3.6.1.2.1.31.1.1.1.5 type: counter @@ -5749,13 +4296,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCInOctets oid: 1.3.6.1.2.1.31.1.1.1.6 type: counter @@ -5765,13 +4320,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCInUcastPkts oid: 1.3.6.1.2.1.31.1.1.1.7 type: counter @@ -5782,13 +4345,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCInMulticastPkts oid: 1.3.6.1.2.1.31.1.1.1.8 type: counter @@ -5798,13 +4369,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCInBroadcastPkts oid: 1.3.6.1.2.1.31.1.1.1.9 type: counter @@ -5814,13 +4393,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCOutOctets oid: 1.3.6.1.2.1.31.1.1.1.10 type: counter @@ -5830,13 +4417,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCOutUcastPkts oid: 1.3.6.1.2.1.31.1.1.1.11 type: counter @@ -5847,13 +4442,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCOutMulticastPkts oid: 1.3.6.1.2.1.31.1.1.1.12 type: counter @@ -5864,13 +4467,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHCOutBroadcastPkts oid: 1.3.6.1.2.1.31.1.1.1.13 type: counter @@ -5881,13 +4492,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifLinkUpDownTrapEnable oid: 1.3.6.1.2.1.31.1.1.1.14 type: gauge @@ -5897,13 +4516,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifHighSpeed oid: 1.3.6.1.2.1.31.1.1.1.15 type: gauge @@ -5913,13 +4540,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifPromiscuousMode oid: 1.3.6.1.2.1.31.1.1.1.16 type: gauge @@ -5929,13 +4564,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifConnectorPresent oid: 1.3.6.1.2.1.31.1.1.1.17 type: gauge @@ -5945,13 +4588,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifAlias oid: 1.3.6.1.2.1.31.1.1.1.18 type: DisplayString @@ -5961,13 +4612,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex - name: ifCounterDiscontinuityTime oid: 1.3.6.1.2.1.31.1.1.1.19 type: gauge @@ -5977,13 +4636,21 @@ if_mib_ifname: - labelname: ifIndex type: gauge lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString - labels: - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: ifIndex keepalived: walk: - 1.3.6.1.4.1.9586.100.5.2.1