From cbeddc827aa40f7221f8b14575e1ed3e38dc9dfa Mon Sep 17 00:00:00 2001 From: Brian Brazil Date: Tue, 25 Sep 2018 14:38:15 +0100 Subject: [PATCH] Support multi-index lookups. This changes old_index to be old_indexes in generator.yml. Signed-off-by: Brian Brazil --- config/config.go | 4 +- generator/README.md | 2 +- generator/config.go | 4 +- generator/generator.yml | 34 +- generator/tree.go | 72 +- generator/tree_test.go | 78 +- snmp.yml | 1650 ++++++++++++++++++++++++++------------- 7 files changed, 1231 insertions(+), 613 deletions(-) diff --git a/config/config.go b/config/config.go index 0ce7588a..4fb3814d 100644 --- a/config/config.go +++ b/config/config.go @@ -189,8 +189,8 @@ type Index struct { type Lookup struct { Labels []string `yaml:"labels"` Labelname string `yaml:"labelname"` - Oid string `yaml:"oid"` - Type string `yaml:"type"` + Oid string `yaml:"oid,omitempty"` + Type string `yaml:"type,omitempty"` } // Secret is a string that must not be revealed on marshaling. diff --git a/generator/README.md b/generator/README.md index c9e46e59..c37ae581 100644 --- a/generator/README.md +++ b/generator/README.md @@ -88,7 +88,7 @@ modules: # on the resulting metrics from that table. Instead, use the index to # lookup the bsnDot11EssSsid table entry and create a bsnDot11EssSsid label # with that value. - - old_index: bsnDot11EssIndex + - old_indexes: [bsnDot11EssIndex] new_index: bsnDot11EssSsid overrides: # Allows for per-module overrides of bits of MIBs diff --git a/generator/config.go b/generator/config.go index c32fb004..109a7415 100644 --- a/generator/config.go +++ b/generator/config.go @@ -53,6 +53,6 @@ type ModuleConfig struct { } type Lookup struct { - OldIndex string `yaml:"old_index"` - NewIndex string `yaml:"new_index"` + OldIndexes []string `yaml:"old_indexes"` + NewIndex string `yaml:"new_index"` } diff --git a/generator/generator.yml b/generator/generator.yml index db3bfbd4..9e32c0f1 100644 --- a/generator/generator.yml +++ b/generator/generator.yml @@ -6,19 +6,19 @@ modules: if_mib_ifalias: walk: [sysUpTime, interfaces, ifXTable] lookups: - - old_index: ifIndex + - old_indexes: [ifIndex] new_index: ifAlias # Interfaces if ifDescr is unique. if_mib_ifdescr: walk: [sysUpTime, interfaces, ifXTable] lookups: - - old_index: ifIndex + - old_indexes: [ifIndex] new_index: ifDescr # Interfaces if ifName is unique. if_mib_ifname: walk: [sysUpTime, interfaces, ifXTable] lookups: - - old_index: ifIndex + - old_indexes: [ifIndex] # Use OID to avoid conflict with Netscaler NS-ROOT-MIB. new_index: 1.3.6.1.2.1.31.1.1.1.1 # ifName @@ -35,9 +35,9 @@ modules: - 1.3.6.1.4.1.14179.2.2.13.1.3 # bsnAPIfLoadChannelUtilization - 1.3.6.1.4.1.14179.2.2.15.1.21 # bsnAPIfDBNoisePower lookups: - - old_index: bsnDot11EssIndex + - old_indexes: [bsnDot11EssIndex] new_index: bsnDot11EssSsid - - old_index: bsnAPDot3MacAddress + - old_indexes: [bsnAPDot3MacAddress] new_index: bsnAPName # APC/Schneider UPS Network Management Cards @@ -68,9 +68,9 @@ modules: - 1.3.6.1.4.1.318.1.1.1.12 # upsOutletGroups - 1.3.6.1.4.1.318.1.1.10.2.3.2 # iemStatusProbesTable lookups: - - old_index: upsOutletGroupStatusIndex + - old_indexes: [upsOutletGroupStatusIndex] new_index: upsOutletGroupStatusName - - old_index: iemStatusProbeIndex + - old_indexes: [iemStatusProbeIndex] new_index: iemStatusProbeName # ServerTech Sentry 3 MIB @@ -159,22 +159,22 @@ modules: - 1.3.6.1.4.1.6574.102 # spaceIO - 1.3.6.1.4.1.6574.104 # synologyiSCSILUN lookups: - - old_index: spaceIOIndex + - old_indexes: [spaceIOIndex] new_index: spaceIODevice - - old_index: storageIOIndex + - old_indexes: [storageIOIndex] new_index: storageIODevice - - old_index: serviceInfoIndex + - old_indexes: [serviceInfoIndex] new_index: serviceName - - old_index: ifIndex + - old_indexes: [ifIndex] # Use OID to avoid conflict with Netscaler NS-ROOT-MIB. new_index: 1.3.6.1.2.1.31.1.1.1.1 # ifName - - old_index: diskIndex + - old_indexes: [diskIndex] new_index: diskID - - old_index: raidIndex + - old_indexes: [raidIndex] new_index: raidName - - old_index: laIndex + - old_indexes: [laIndex] new_index: laNames - - old_index: hrStorageIndex + - old_indexes: [hrStorageIndex] new_index: hrStorageDescr # DD-WRT @@ -195,9 +195,9 @@ modules: - 1.3.6.1.4.1.2021.10.1.5 # laLoadInt - 1.3.6.1.4.1.2021.11 # systemStats lookups: - - old_index: ifIndex + - old_indexes: [ifIndex] new_index: ifDescr - - old_index: laIndex + - old_indexes: [laIndex] new_index: laNames # Ubiquiti / AirMAX diff --git a/generator/tree.go b/generator/tree.go index f95d112c..8a968be9 100644 --- a/generator/tree.go +++ b/generator/tree.go @@ -369,43 +369,53 @@ func generateConfigModule(cfg *ModuleConfig, node *Node, nameToNode map[string]* } // Apply lookups. - for _, lookup := range cfg.Lookups { - for _, metric := range out.Metrics { - toDelete := []string{} + for _, metric := range out.Metrics { + toDelete := []string{} + for _, lookup := range cfg.Lookups { + foundIndexes := 0 + // See if all lookup indexes are present. for _, index := range metric.Indexes { - if index.Labelname == lookup.OldIndex { - if _, ok := nameToNode[lookup.NewIndex]; !ok { - log.Fatalf("Unknown index '%s'", lookup.NewIndex) - } - indexNode := nameToNode[lookup.NewIndex] - // Avoid leaving the old labelname around. - toDelete = append(toDelete, lookup.OldIndex) - typ, ok := metricType(indexNode.Type) - if !ok { - log.Fatalf("Unknown index type %s for %s", indexNode.Type, lookup.NewIndex) - } - metric.Lookups = append(metric.Lookups, &config.Lookup{ - Labels: []string{sanitizeLabelName(index.Labelname)}, - Labelname: sanitizeLabelName(indexNode.Label), - Type: typ, - Oid: indexNode.Oid, - }) - // Make sure we walk the lookup OID(s). - if len(tableInstances[metric.Oid]) > 0 { - for _, index := range tableInstances[metric.Oid] { - needToWalk[indexNode.Oid+index+"."] = struct{}{} - } - } else { - needToWalk[indexNode.Oid] = struct{}{} + for _, lookupIndex := range lookup.OldIndexes { + if index.Labelname == lookupIndex { + foundIndexes++ } } } - for _, l := range toDelete { - metric.Lookups = append(metric.Lookups, &config.Lookup{ - Labelname: sanitizeLabelName(l), - }) + if foundIndexes == len(lookup.OldIndexes) { + if _, ok := nameToNode[lookup.NewIndex]; !ok { + log.Fatalf("Unknown index '%s'", lookup.NewIndex) + } + indexNode := nameToNode[lookup.NewIndex] + typ, ok := metricType(indexNode.Type) + if !ok { + log.Fatalf("Unknown index type %s for %s", indexNode.Type, lookup.NewIndex) + } + l := &config.Lookup{ + Labelname: sanitizeLabelName(indexNode.Label), + Type: typ, + Oid: indexNode.Oid, + } + for _, oldIndex := range lookup.OldIndexes { + l.Labels = append(l.Labels, sanitizeLabelName(oldIndex)) + } + metric.Lookups = append(metric.Lookups, l) + // Make sure we walk the lookup OID(s). + if len(tableInstances[metric.Oid]) > 0 { + for _, index := range tableInstances[metric.Oid] { + needToWalk[indexNode.Oid+index+"."] = struct{}{} + } + } else { + needToWalk[indexNode.Oid] = struct{}{} + } + // Avoid leaving the old labelname around. + toDelete = append(toDelete, lookup.OldIndexes...) } } + for _, l := range toDelete { + metric.Lookups = append(metric.Lookups, &config.Lookup{ + Labelname: sanitizeLabelName(l), + }) + } } // Ensure index label names are sane. diff --git a/generator/tree_test.go b/generator/tree_test.go index 1f31832a..a91a9e6e 100644 --- a/generator/tree_test.go +++ b/generator/tree_test.go @@ -955,8 +955,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - OldIndex: "octetIndex", - NewIndex: "octetDesc", + OldIndexes: []string{"octetIndex"}, + NewIndex: "octetDesc", }, }, }, @@ -1005,8 +1005,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octetFoo"}, Lookups: []*Lookup{ { - OldIndex: "octetIndex", - NewIndex: "1.1.1.2", + OldIndexes: []string{"octetIndex"}, + NewIndex: "1.1.1.2", }, }, }, @@ -1040,6 +1040,64 @@ func TestGenerateConfigModule(t *testing.T) { }, }, }, + // Multi-index table lookup, lookup not walked. + { + node: &Node{Oid: "1", Label: "root", + Children: []*Node{ + {Oid: "1.1", Label: "octet", + Children: []*Node{ + {Oid: "1.1.1", Label: "octetEntry", Indexes: []string{"octetIndex", "octetIndex2"}, + Children: []*Node{ + {Oid: "1.1.1.1", Access: "ACCESS_READONLY", Label: "octetIndex", Type: "INTEGER"}, + {Oid: "1.1.1.2", Access: "ACCESS_READONLY", Label: "octetIndex2", Type: "INTEGER"}, + {Oid: "1.1.1.3", Access: "ACCESS_READONLY", Label: "octetDesc", Type: "OCTETSTR"}, + {Oid: "1.1.1.4", Access: "ACCESS_READONLY", Label: "octetFoo", Type: "INTEGER"}}}}}}}, + cfg: &ModuleConfig{ + Walk: []string{"octetFoo"}, + Lookups: []*Lookup{ + { + OldIndexes: []string{"octetIndex", "octetIndex2"}, + NewIndex: "octetDesc", + }, + }, + }, + out: &config.Module{ + // Walk is expanded to include the lookup OID. + Walk: []string{"1.1.1.3", "1.1.1.4"}, + Metrics: []*config.Metric{ + { + Name: "octetFoo", + Oid: "1.1.1.4", + Help: " - 1.1.1.4", + Type: "gauge", + Indexes: []*config.Index{ + { + Labelname: "octetIndex", + Type: "gauge", + }, + { + Labelname: "octetIndex2", + Type: "gauge", + }, + }, + Lookups: []*config.Lookup{ + { + Labels: []string{"octetIndex", "octetIndex2"}, + Labelname: "octetDesc", + Type: "OctetString", + Oid: "1.1.1.3", + }, + { + Labelname: "octetIndex", + }, + { + Labelname: "octetIndex2", + }, + }, + }, + }, + }, + }, // Validate metric names. { node: &Node{Oid: "1", Label: "root", @@ -1078,8 +1136,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"octet^Foo"}, Lookups: []*Lookup{ { - OldIndex: "octet&Index", - NewIndex: "1.1.1.2", + OldIndexes: []string{"octet&Index"}, + NewIndex: "1.1.1.2", }, }, }, @@ -1240,8 +1298,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"1.1.1.2.100", "1.1.1.4.100", "1.1.1.2.200"}, Lookups: []*Lookup{ { - OldIndex: "tableIndex", - NewIndex: "tableDesc", + OldIndexes: []string{"tableIndex"}, + NewIndex: "tableDesc", }, }, }, @@ -1313,8 +1371,8 @@ func TestGenerateConfigModule(t *testing.T) { Walk: []string{"1.1.1.2.100", "1.1.1.3"}, Lookups: []*Lookup{ { - OldIndex: "tableIndex", - NewIndex: "tableDesc", + OldIndexes: []string{"tableIndex"}, + NewIndex: "tableDesc", }, }, }, diff --git a/snmp.yml b/snmp.yml index 4b383a72..0a4e4844 100644 --- a/snmp.yml +++ b/snmp.yml @@ -195,81 +195,93 @@ apcups: type: gauge help: The index to the outlet group entry. - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.1 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString help: The name of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupStatusGroupState oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3 type: gauge help: Getting this variable will return the outlet group state - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupStatusCommandPending oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.4 type: gauge help: Getting this variable will return the command pending state of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.4 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupStatusOutletType oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.5 type: gauge help: Getting this variable will return the type of outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.5 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupStatusGroupFullState oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.6 type: DisplayString help: An ASCII string containing the 32 flags representing the current state(s) of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.6 indexes: - - labelname: upsOutletGroupStatusName + - labelname: upsOutletGroupStatusIndex type: gauge lookups: - labels: - - upsOutletGroupStatusName + - upsOutletGroupStatusIndex labelname: upsOutletGroupStatusName oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2 type: DisplayString + - labels: [] + labelname: upsOutletGroupStatusIndex - name: upsOutletGroupConfigTableSize oid: 1.3.6.1.4.1.318.1.1.1.12.2.1 type: gauge @@ -2302,37 +2314,41 @@ cisco_wlc: type: counter help: No of Mobile Stations currently associated with the WLAN. - 1.3.6.1.4.1.14179.2.1.1.1.38 indexes: - - labelname: bsnDot11EssSsid + - labelname: bsnDot11EssIndex type: gauge lookups: - labels: - - bsnDot11EssSsid + - bsnDot11EssIndex labelname: bsnDot11EssSsid oid: 1.3.6.1.4.1.14179.2.1.1.1.2 type: DisplayString + - labels: [] + labelname: bsnDot11EssIndex - name: bsnAPIfLoadChannelUtilization oid: 1.3.6.1.4.1.14179.2.2.13.1.3 type: gauge help: Channel Utilization - 1.3.6.1.4.1.14179.2.2.13.1.3 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDBNoisePower oid: 1.3.6.1.4.1.14179.2.2.15.1.21 type: gauge help: This is the average noise power in dBm on each channel that is available to Airespace AP - 1.3.6.1.4.1.14179.2.2.15.1.21 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId @@ -2341,58 +2357,66 @@ cisco_wlc: type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnApIfNoOfUsers oid: 1.3.6.1.4.1.14179.2.2.2.1.15 type: counter help: No of Users associated with this radio. - 1.3.6.1.4.1.14179.2.2.2.1.15 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfType oid: 1.3.6.1.4.1.14179.2.2.2.1.2 type: gauge help: The type of this interface - 1.3.6.1.4.1.14179.2.2.2.1.2 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfPhyChannelNumber oid: 1.3.6.1.4.1.14179.2.2.2.1.4 type: gauge help: Current channel number of the AP Interface - 1.3.6.1.4.1.14179.2.2.2.1.4 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11TransmittedFragmentCount oid: 1.3.6.1.4.1.14179.2.2.6.1.1 type: counter @@ -2400,203 +2424,227 @@ cisco_wlc: address in the address 1 field or an MPDU with a multicast address in the address 1 field of type Data or Management. - 1.3.6.1.4.1.14179.2.2.6.1.1 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MulticastTransmittedFrameCount oid: 1.3.6.1.4.1.14179.2.2.6.1.2 type: counter help: This counter shall increment only when the multicast bit is set in the destination MAC address of a successfully transmitted MSDU - 1.3.6.1.4.1.14179.2.2.6.1.2 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RetryCount oid: 1.3.6.1.4.1.14179.2.2.6.1.3 type: counter help: This counter shall increment when an MSDU is successfully transmitted after one or more retransmissions. - 1.3.6.1.4.1.14179.2.2.6.1.3 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MultipleRetryCount oid: 1.3.6.1.4.1.14179.2.2.6.1.4 type: counter help: This counter shall increment when an MSDU is successfully transmitted after more than one retransmission. - 1.3.6.1.4.1.14179.2.2.6.1.4 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FrameDuplicateCount oid: 1.3.6.1.4.1.14179.2.2.6.1.5 type: counter help: This counter shall increment when a frame is received that the Sequence Control field indicates is a duplicate. - 1.3.6.1.4.1.14179.2.2.6.1.5 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RTSSuccessCount oid: 1.3.6.1.4.1.14179.2.2.6.1.6 type: counter help: This counter shall increment when a CTS is received in response to an RTS. - 1.3.6.1.4.1.14179.2.2.6.1.6 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RTSFailureCount oid: 1.3.6.1.4.1.14179.2.2.6.1.7 type: counter help: This counter shall increment when a CTS is not received in response to an RTS. - 1.3.6.1.4.1.14179.2.2.6.1.7 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11ACKFailureCount oid: 1.3.6.1.4.1.14179.2.2.6.1.8 type: counter help: This counter shall increment when an ACK is not received when expected. - 1.3.6.1.4.1.14179.2.2.6.1.8 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11ReceivedFragmentCount oid: 1.3.6.1.4.1.14179.2.2.6.1.9 type: counter help: This counter shall be incremented for each successfully received MPDU of type Data or Management. - 1.3.6.1.4.1.14179.2.2.6.1.9 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MulticastReceivedFrameCount oid: 1.3.6.1.4.1.14179.2.2.6.1.10 type: counter help: This counter shall increment when a MSDU is received with the multicast bit set in the destination MAC address. - 1.3.6.1.4.1.14179.2.2.6.1.10 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FCSErrorCount oid: 1.3.6.1.4.1.14179.2.2.6.1.11 type: counter help: This counter shall increment when an FCS error is detected in a received MPDU. - 1.3.6.1.4.1.14179.2.2.6.1.11 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11TransmittedFrameCount oid: 1.3.6.1.4.1.14179.2.2.6.1.12 type: counter help: This counter shall increment for each successfully transmitted MSDU. - 1.3.6.1.4.1.14179.2.2.6.1.12 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11WEPUndecryptableCount oid: 1.3.6.1.4.1.14179.2.2.6.1.13 type: counter @@ -2606,17 +2654,19 @@ cisco_wlc: or that frame is discarded due to the receiving STA not implementing the privacy option. - 1.3.6.1.4.1.14179.2.2.6.1.13 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FailedCount oid: 1.3.6.1.4.1.14179.2.2.6.1.33 type: counter @@ -2624,17 +2674,19 @@ cisco_wlc: due to the number of transmit attempts exceeding either the bsnAPIfDot11ShortRetryLimit or dot11LongRetryLimit. - 1.3.6.1.4.1.14179.2.2.6.1.33 indexes: - - labelname: bsnAPName + - labelname: bsnAPDot3MacAddress type: PhysAddress48 fixed_size: 6 - labelname: bsnAPIfSlotId type: gauge lookups: - labels: - - bsnAPName + - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 type: OctetString + - labels: [] + labelname: bsnAPDot3MacAddress ddwrt: walk: - 1.3.6.1.2.1.2 @@ -2663,134 +2715,154 @@ ddwrt: type: gauge help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 indexes: - - labelname: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -2798,14 +2870,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -2813,14 +2887,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -2828,56 +2904,64 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -2885,14 +2969,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -2900,55 +2986,63 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - ifIndex labelname: ifDescr oid: 1.3.6.1.2.1.2.2.1.2 type: DisplayString + - labels: [] + labelname: ifIndex - name: hrMemorySize oid: 1.3.6.1.2.1.25.2.2 type: gauge @@ -3005,42 +3099,48 @@ ddwrt: type: DisplayString help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1 indexes: - - labelname: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3048,14 +3148,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3063,28 +3165,32 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3092,56 +3198,64 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3149,14 +3263,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3164,14 +3280,16 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -3179,137 +3297,157 @@ ddwrt: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - ifIndex labelname: ifDescr oid: 1.3.6.1.2.1.2.2.1.2 type: DisplayString + - labels: [] + labelname: ifIndex - name: laIndex oid: 1.3.6.1.4.1.2021.10.1.1 type: gauge help: reference index/row number for each observed loadave. - 1.3.6.1.4.1.2021.10.1.1 indexes: - - labelname: laNames + - labelname: laIndex type: gauge lookups: - labels: - - laNames + - laIndex labelname: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString + - labels: [] + labelname: laIndex - name: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString help: The list of loadave names we're watching. - 1.3.6.1.4.1.2021.10.1.2 indexes: - - labelname: laNames + - labelname: laIndex type: gauge lookups: - labels: - - laNames + - laIndex labelname: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString + - labels: [] + labelname: laIndex - name: laLoadInt oid: 1.3.6.1.4.1.2021.10.1.5 type: gauge help: The 1,5 and 15 minute load averages as an integer - 1.3.6.1.4.1.2021.10.1.5 indexes: - - labelname: laNames + - labelname: laIndex type: gauge lookups: - labels: - - laNames + - laIndex labelname: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString + - labels: [] + labelname: laIndex - name: ssIndex oid: 1.3.6.1.4.1.2021.11.1 type: gauge @@ -3894,134 +4032,154 @@ if_mib_ifalias: type: gauge help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 indexes: - - labelname: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4029,14 +4187,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4044,14 +4204,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4059,56 +4221,64 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4116,14 +4286,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4131,96 +4303,110 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4228,14 +4414,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4243,28 +4431,32 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4272,56 +4464,64 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4329,14 +4529,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4344,14 +4546,16 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4359,98 +4563,112 @@ if_mib_ifalias: 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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: ifAlias + - labelname: ifIndex type: gauge lookups: - labels: - - ifAlias + - 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 @@ -4473,134 +4691,154 @@ if_mib_ifdescr: type: gauge help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 indexes: - - labelname: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4608,14 +4846,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4623,14 +4863,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4638,56 +4880,64 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4695,14 +4945,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4710,96 +4962,110 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4807,14 +5073,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4822,28 +5090,32 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4851,56 +5123,64 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4908,14 +5188,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4923,14 +5205,16 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 @@ -4938,98 +5222,112 @@ if_mib_ifdescr: 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - 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 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: ifDescr + - labelname: ifIndex type: gauge lookups: - labels: - - ifDescr + - ifIndex labelname: ifDescr oid: 1.3.6.1.2.1.2.2.1.2 type: DisplayString + - labels: [] + labelname: ifIndex if_mib_ifname: walk: - 1.3.6.1.2.1.2 @@ -5052,134 +5350,154 @@ if_mib_ifname: type: gauge help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The type of interface - 1.3.6.1.2.1.2.2.1.3 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5187,14 +5505,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5202,14 +5522,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5217,56 +5539,64 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5274,14 +5604,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5289,96 +5621,110 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The textual name of the interface - 1.3.6.1.2.1.31.1.1.1.1 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5386,14 +5732,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5401,28 +5749,32 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5430,56 +5782,64 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5487,14 +5847,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5502,14 +5864,16 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -5517,98 +5881,112 @@ if_mib_ifname: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString + - labels: [] + labelname: ifIndex paloalto_fw: walk: - 1.3.6.1.2.1.2 @@ -6943,134 +7321,154 @@ synology: type: gauge help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The type of interface - 1.3.6.1.2.1.2.2.1.3 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7078,14 +7476,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7093,14 +7493,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7108,56 +7510,64 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7165,14 +7575,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7180,55 +7592,63 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 indexes: - - labelname: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString + - labels: [] + labelname: ifIndex - name: hrMemorySize oid: 1.3.6.1.2.1.25.2.2 type: gauge @@ -7239,124 +7659,142 @@ synology: type: gauge help: A unique value for each logical storage area contained by the host. - 1.3.6.1.2.1.25.2.3.1.1 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - name: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString help: A description of the type and instance of the storage described by this entry. - 1.3.6.1.2.1.25.2.3.1.3 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - name: hrStorageAllocationUnits oid: 1.3.6.1.2.1.25.2.3.1.4 type: gauge help: The size, in bytes, of the data objects allocated from this pool - 1.3.6.1.2.1.25.2.3.1.4 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - name: hrStorageSize oid: 1.3.6.1.2.1.25.2.3.1.5 type: gauge help: The size of the storage represented by this entry, in units of hrStorageAllocationUnits - 1.3.6.1.2.1.25.2.3.1.5 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - name: hrStorageUsed oid: 1.3.6.1.2.1.25.2.3.1.6 type: gauge help: The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. - 1.3.6.1.2.1.25.2.3.1.6 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - name: hrStorageAllocationFailures oid: 1.3.6.1.2.1.25.2.3.1.7 type: counter help: The number of requests for storage represented by this entry that could not be honored due to not enough storage - 1.3.6.1.2.1.25.2.3.1.7 indexes: - - labelname: hrStorageDescr + - labelname: hrStorageIndex type: gauge lookups: - labels: - - hrStorageDescr + - hrStorageIndex labelname: hrStorageDescr oid: 1.3.6.1.2.1.25.2.3.1.3 type: DisplayString + - labels: [] + labelname: hrStorageIndex - 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7364,14 +7802,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7379,28 +7819,32 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7408,56 +7852,64 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7465,14 +7917,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7480,14 +7934,16 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 @@ -7495,124 +7951,142 @@ synology: 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - 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 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: ifName + - labelname: ifIndex type: gauge lookups: - labels: - - ifName + - ifIndex labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString + - labels: [] + labelname: ifIndex - name: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString help: The list of loadave names we're watching. - 1.3.6.1.4.1.2021.10.1.2 indexes: - - labelname: laNames + - labelname: laIndex type: gauge lookups: - labels: - - laNames + - laIndex labelname: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString + - labels: [] + labelname: laIndex - name: laLoadInt oid: 1.3.6.1.4.1.2021.10.1.5 type: gauge help: The 1,5 and 15 minute load averages as an integer - 1.3.6.1.4.1.2021.10.1.5 indexes: - - labelname: laNames + - labelname: laIndex type: gauge lookups: - labels: - - laNames + - laIndex labelname: laNames oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString + - labels: [] + labelname: laIndex - name: ssCpuSystem oid: 1.3.6.1.4.1.2021.11.10 type: gauge @@ -7763,313 +8237,361 @@ synology: type: gauge help: Reference index for each observed device. - 1.3.6.1.4.1.6574.101.1.1.1 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString help: The name of the device we are counting/checking. - 1.3.6.1.4.1.6574.101.1.1.2 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIONRead oid: 1.3.6.1.4.1.6574.101.1.1.3 type: counter help: The number of bytes read from this device since boot. - 1.3.6.1.4.1.6574.101.1.1.3 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIONWritten oid: 1.3.6.1.4.1.6574.101.1.1.4 type: counter help: The number of bytes written to this device since boot. - 1.3.6.1.4.1.6574.101.1.1.4 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOReads oid: 1.3.6.1.4.1.6574.101.1.1.5 type: counter help: The number of read accesses from this device since boot. - 1.3.6.1.4.1.6574.101.1.1.5 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOWrites oid: 1.3.6.1.4.1.6574.101.1.1.6 type: counter help: The number of write accesses to this device since boot. - 1.3.6.1.4.1.6574.101.1.1.6 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOLA oid: 1.3.6.1.4.1.6574.101.1.1.8 type: gauge help: The load of disk (%) - 1.3.6.1.4.1.6574.101.1.1.8 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOLA1 oid: 1.3.6.1.4.1.6574.101.1.1.9 type: gauge help: The 1 minute average load of disk (%) - 1.3.6.1.4.1.6574.101.1.1.9 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOLA5 oid: 1.3.6.1.4.1.6574.101.1.1.10 type: gauge help: The 5 minute average load of disk (%) - 1.3.6.1.4.1.6574.101.1.1.10 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIOLA15 oid: 1.3.6.1.4.1.6574.101.1.1.11 type: gauge help: The 15 minute average load of disk (%) - 1.3.6.1.4.1.6574.101.1.1.11 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIONReadX oid: 1.3.6.1.4.1.6574.101.1.1.12 type: counter help: The number of bytes read from this device since boot. - 1.3.6.1.4.1.6574.101.1.1.12 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: storageIONWrittenX oid: 1.3.6.1.4.1.6574.101.1.1.13 type: counter help: The number of bytes written to this device since boot. - 1.3.6.1.4.1.6574.101.1.1.13 indexes: - - labelname: storageIODevice + - labelname: storageIOIndex type: gauge lookups: - labels: - - storageIODevice + - storageIOIndex labelname: storageIODevice oid: 1.3.6.1.4.1.6574.101.1.1.2 type: DisplayString + - labels: [] + labelname: storageIOIndex - name: spaceIOIndex oid: 1.3.6.1.4.1.6574.102.1.1.1 type: gauge help: Reference index for each observed device. - 1.3.6.1.4.1.6574.102.1.1.1 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString help: The name of the device we are counting/checking. - 1.3.6.1.4.1.6574.102.1.1.2 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIONRead oid: 1.3.6.1.4.1.6574.102.1.1.3 type: counter help: The number of bytes read from this device since boot. - 1.3.6.1.4.1.6574.102.1.1.3 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIONWritten oid: 1.3.6.1.4.1.6574.102.1.1.4 type: counter help: The number of bytes written to this device since boot. - 1.3.6.1.4.1.6574.102.1.1.4 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOReads oid: 1.3.6.1.4.1.6574.102.1.1.5 type: counter help: The number of read accesses from this device since boot. - 1.3.6.1.4.1.6574.102.1.1.5 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOWrites oid: 1.3.6.1.4.1.6574.102.1.1.6 type: counter help: The number of write accesses to this device since boot. - 1.3.6.1.4.1.6574.102.1.1.6 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOLA oid: 1.3.6.1.4.1.6574.102.1.1.8 type: gauge help: The load of disk (%) - 1.3.6.1.4.1.6574.102.1.1.8 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOLA1 oid: 1.3.6.1.4.1.6574.102.1.1.9 type: gauge help: The 1 minute average load of disk (%) - 1.3.6.1.4.1.6574.102.1.1.9 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOLA5 oid: 1.3.6.1.4.1.6574.102.1.1.10 type: gauge help: The 5 minute average load of disk (%) - 1.3.6.1.4.1.6574.102.1.1.10 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIOLA15 oid: 1.3.6.1.4.1.6574.102.1.1.11 type: gauge help: The 15 minute average load of disk (%) - 1.3.6.1.4.1.6574.102.1.1.11 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIONReadX oid: 1.3.6.1.4.1.6574.102.1.1.12 type: counter help: The number of bytes read from this device since boot. - 1.3.6.1.4.1.6574.102.1.1.12 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: spaceIONWrittenX oid: 1.3.6.1.4.1.6574.102.1.1.13 type: counter help: The number of bytes written to this device since boot. - 1.3.6.1.4.1.6574.102.1.1.13 indexes: - - labelname: spaceIODevice + - labelname: spaceIOIndex type: gauge lookups: - labels: - - spaceIODevice + - spaceIOIndex labelname: spaceIODevice oid: 1.3.6.1.4.1.6574.102.1.1.2 type: DisplayString + - labels: [] + labelname: spaceIOIndex - name: iSCSILUNInfoIndex oid: 1.3.6.1.4.1.6574.104.1.1.1 type: gauge @@ -8194,148 +8716,170 @@ synology: type: gauge help: The index of disk table - 1.3.6.1.4.1.6574.2.1.1.1 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString help: Synology disk ID The ID of disk is assigned by disk Station. - 1.3.6.1.4.1.6574.2.1.1.2 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: diskModel oid: 1.3.6.1.4.1.6574.2.1.1.3 type: OctetString help: Synology disk model name The disk model name will be showed here. - 1.3.6.1.4.1.6574.2.1.1.3 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: diskType oid: 1.3.6.1.4.1.6574.2.1.1.4 type: OctetString help: Synology disk type The type of disk will be showed here, including SATA, SSD and so on. - 1.3.6.1.4.1.6574.2.1.1.4 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: diskStatus oid: 1.3.6.1.4.1.6574.2.1.1.5 type: gauge help: Synology disk status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.2.1.1.5 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: diskTemperature oid: 1.3.6.1.4.1.6574.2.1.1.6 type: gauge help: Synology disk temperature The temperature of each disk uses Celsius degree. - 1.3.6.1.4.1.6574.2.1.1.6 indexes: - - labelname: diskID + - labelname: diskIndex type: gauge lookups: - labels: - - diskID + - diskIndex labelname: diskID oid: 1.3.6.1.4.1.6574.2.1.1.2 type: OctetString + - labels: [] + labelname: diskIndex - name: raidIndex oid: 1.3.6.1.4.1.6574.3.1.1.1 type: gauge help: The index of raid table - 1.3.6.1.4.1.6574.3.1.1.1 indexes: - - labelname: raidName + - labelname: raidIndex type: gauge lookups: - labels: - - raidName + - raidIndex labelname: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString + - labels: [] + labelname: raidIndex - name: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString help: Synology raid name The name of each raid will be showed here. - 1.3.6.1.4.1.6574.3.1.1.2 indexes: - - labelname: raidName + - labelname: raidIndex type: gauge lookups: - labels: - - raidName + - raidIndex labelname: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString + - labels: [] + labelname: raidIndex - name: raidStatus oid: 1.3.6.1.4.1.6574.3.1.1.3 type: gauge help: Synology Raid status Each meanings of status represented describe below - 1.3.6.1.4.1.6574.3.1.1.3 indexes: - - labelname: raidName + - labelname: raidIndex type: gauge lookups: - labels: - - raidName + - raidIndex labelname: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString + - labels: [] + labelname: raidIndex - name: raidFreeSize oid: 1.3.6.1.4.1.6574.3.1.1.4 type: counter help: Synology raid freesize Free space in bytes. - 1.3.6.1.4.1.6574.3.1.1.4 indexes: - - labelname: raidName + - labelname: raidIndex type: gauge lookups: - labels: - - raidName + - raidIndex labelname: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString + - labels: [] + labelname: raidIndex - name: raidTotalSize oid: 1.3.6.1.4.1.6574.3.1.1.5 type: counter help: Synology raid totalsize Total space in bytes. - 1.3.6.1.4.1.6574.3.1.1.5 indexes: - - labelname: raidName + - labelname: raidIndex type: gauge lookups: - labels: - - raidName + - raidIndex labelname: raidName oid: 1.3.6.1.4.1.6574.3.1.1.2 type: OctetString + - labels: [] + labelname: raidIndex - name: upsDeviceModel oid: 1.3.6.1.4.1.6574.4.1.1 type: DisplayString @@ -8897,40 +9441,46 @@ synology: type: gauge help: Service info index - 1.3.6.1.4.1.6574.6.1.1.1 indexes: - - labelname: serviceName + - labelname: serviceInfoIndex type: gauge lookups: - labels: - - serviceName + - serviceInfoIndex labelname: serviceName oid: 1.3.6.1.4.1.6574.6.1.1.2 type: OctetString + - labels: [] + labelname: serviceInfoIndex - name: serviceName oid: 1.3.6.1.4.1.6574.6.1.1.2 type: OctetString help: Service name - 1.3.6.1.4.1.6574.6.1.1.2 indexes: - - labelname: serviceName + - labelname: serviceInfoIndex type: gauge lookups: - labels: - - serviceName + - serviceInfoIndex labelname: serviceName oid: 1.3.6.1.4.1.6574.6.1.1.2 type: OctetString + - labels: [] + labelname: serviceInfoIndex - name: serviceUsers oid: 1.3.6.1.4.1.6574.6.1.1.3 type: gauge help: Number of users using this service - 1.3.6.1.4.1.6574.6.1.1.3 indexes: - - labelname: serviceName + - labelname: serviceInfoIndex type: gauge lookups: - labels: - - serviceName + - serviceInfoIndex labelname: serviceName oid: 1.3.6.1.4.1.6574.6.1.1.2 type: OctetString + - labels: [] + labelname: serviceInfoIndex ubiquiti_airmax: walk: - 1.3.6.1.2.1.2