diff --git a/CHANGELOG.md b/CHANGELOG.md index 79631948dd..0f5d830895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,8 @@ Main (unreleased) - Add livedebugging support for `prometheus.remote_write` (@ravishankar15) +- Bump snmp_exporter and embedded modules to 0.27.0. Add support for multi-module handling by comma separation and expose argument to increase SNMP polling concurrency for `prometheus.exporter.snmp`. (@v-zhuravlev) + v1.6.1 ----------------- diff --git a/docs/sources/_index.md b/docs/sources/_index.md index 57dfa192ea..8dedaaa9b0 100644 --- a/docs/sources/_index.md +++ b/docs/sources/_index.md @@ -7,7 +7,7 @@ cascade: ALLOY_RELEASE: v1.7.0 OTEL_VERSION: v0.116.0 PROM_WIN_EXP_VERSION: v0.27.3 - SNMP_VERSION: v0.26.0 + SNMP_VERSION: v0.27.0 FULL_PRODUCT_NAME: Grafana Alloy PRODUCT_NAME: Alloy hero: diff --git a/docs/sources/_index.md.t b/docs/sources/_index.md.t index 526e5bbc34..a2149170ee 100644 --- a/docs/sources/_index.md.t +++ b/docs/sources/_index.md.t @@ -7,7 +7,7 @@ cascade: ALLOY_RELEASE: $ALLOY_VERSION OTEL_VERSION: v0.116.0 PROM_WIN_EXP_VERSION: v0.27.3 - SNMP_VERSION: v0.26.0 + SNMP_VERSION: v0.27.0 FULL_PRODUCT_NAME: Grafana Alloy PRODUCT_NAME: Alloy hero: diff --git a/docs/sources/reference/components/prometheus/prometheus.exporter.snmp.md b/docs/sources/reference/components/prometheus/prometheus.exporter.snmp.md index 664263dcad..da7caaa8bd 100644 --- a/docs/sources/reference/components/prometheus/prometheus.exporter.snmp.md +++ b/docs/sources/reference/components/prometheus/prometheus.exporter.snmp.md @@ -45,6 +45,7 @@ Omitted fields take their default values. | ------------- | -------------------- | ------------------------------------------------ | ------- | -------- | | `config_file` | `string` | SNMP configuration file defining custom modules. | | no | | `config` | `string` or `secret` | SNMP configuration as inline string. | | no | +| `concurrency` | `int` | SNMP exporter concurrency. | `1` | no | | `targets` | `list(map(string))` | SNMP targets. | | no | The `config_file` argument points to a YAML file defining which snmp_exporter modules to use. @@ -61,7 +62,7 @@ The `targets` argument is an alternative to the [target][] block. This is useful The following labels can be set to a target: * `name`: The name of the target (required). * `address` or `__address__`: The address of SNMP device (required). -* `module`: The SNMP module to use for polling. +* `module`: SNMP modules to use for polling, separated by comma. * `auth`: The SNMP authentication profile to use. * `walk_params`: The config to use for this target. @@ -88,7 +89,7 @@ The `target` block may be specified multiple times to define multiple targets. T | Name | Type | Description | Default | Required | |----------------|---------------|-----------------------------------------------------------------------| ------- | -------- | | `address` | `string` | The address of SNMP device. | | yes | -| `module` | `string` | SNMP module to use for polling. | `""` | no | +| `module` | `string` | SNMP modules to use for polling, separated by comma. | `""` | no | | `auth` | `string` | SNMP authentication profile to use. | `""` | no | | `walk_params` | `string` | Config to use for this target. | `""` | no | | `snmp_context` | `string` | Override the `context_name` parameter in the SNMP configuration file. | `""` | no | @@ -138,7 +139,7 @@ prometheus.exporter.snmp "example" { target "network_switch_1" { address = "192.168.1.2" - module = "if_mib" + module = "system,if_mib" walk_params = "public" labels = { "env" = "dev", @@ -147,7 +148,7 @@ prometheus.exporter.snmp "example" { target "network_router_2" { address = "192.168.1.3" - module = "mikrotik" + module = "system,if_mib,mikrotik" walk_params = "private" } @@ -180,13 +181,13 @@ prometheus.exporter.snmp "example" { target "network_switch_1" { address = "192.168.1.2" - module = "if_mib" + module = "system,if_mib" walk_params = "public" } target "network_router_2" { address = "192.168.1.3" - module = "mikrotik" + module = "system,if_mib,mikrotik" walk_params = "private" } @@ -232,14 +233,14 @@ prometheus.exporter.snmp "example" { { "name" = "network_switch_1", "address" = "192.168.1.2", - "module" = "if_mib", + "module" = "system,if_mib", "walk_params" = "public", "env" = "dev", }, { "name" = "network_router_2", "address" = "192.168.1.3", - "module" = "mikrotik", + "module" = "system,if_mib,mikrotik", "walk_params" = "private", }, ] diff --git a/go.mod b/go.mod index ff201ca436..d072c0656d 100644 --- a/go.mod +++ b/go.mod @@ -170,7 +170,7 @@ require ( github.com/prometheus/node_exporter v1.6.0 github.com/prometheus/procfs v0.15.1 github.com/prometheus/prometheus v0.55.1 // a.k.a. v2.51.2 - github.com/prometheus/snmp_exporter v0.26.0 // if you update the snmp_exporter version, make sure to update the SNMP_VERSION in _index + github.com/prometheus/snmp_exporter v0.27.0 // if you update the snmp_exporter version, make sure to update the SNMP_VERSION in _index github.com/prometheus/statsd_exporter v0.22.8 github.com/richardartoul/molecule v1.0.1-0.20221107223329-32cfee06a052 github.com/rogpeppe/go-internal v1.13.1 @@ -541,7 +541,7 @@ require ( github.com/googleapis/gax-go/v2 v2.12.5 // indirect github.com/gophercloud/gophercloud v1.13.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect - github.com/gosnmp/gosnmp v1.37.0 // indirect + github.com/gosnmp/gosnmp v1.38.0 // indirect github.com/grafana/go-offsets-tracker v0.1.7 // indirect github.com/grafana/gomemcache v0.0.0-20231204155601-7de47a8c3cb0 // indirect github.com/grafana/jfr-parser v0.9.2 // indirect @@ -709,7 +709,7 @@ require ( github.com/prometheus-community/go-runit v0.1.0 // indirect github.com/prometheus-community/prom-label-proxy v0.6.0 // indirect github.com/prometheus/alertmanager v0.27.0 // indirect - github.com/prometheus/exporter-toolkit v0.13.1 // indirect + github.com/prometheus/exporter-toolkit v0.13.2 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/relvacode/iso8601 v1.6.0 // indirect github.com/remeh/sizedwaitgroup v1.0.0 // indirect @@ -882,6 +882,7 @@ require ( github.com/containerd/typeurl/v2 v2.2.0 // indirect github.com/containers/common v0.61.0 // indirect github.com/deneonet/benc v1.1.2 // indirect + github.com/itchyny/timefmt-go v0.1.6 // indirect github.com/onsi/ginkgo/v2 v2.21.0 // indirect github.com/onsi/gomega v1.35.1 // indirect go.etcd.io/bbolt v1.3.11 // indirect diff --git a/go.sum b/go.sum index 1a54954087..129499e92f 100644 --- a/go.sum +++ b/go.sum @@ -1854,6 +1854,8 @@ github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWm github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gosnmp/gosnmp v1.37.0 h1:/Tf8D3b9wrnNuf/SfbvO+44mPrjVphBhRtcGg22V07Y= github.com/gosnmp/gosnmp v1.37.0/go.mod h1:GDH9vNqpsD7f2HvZhKs5dlqSEcAS6s6Qp099oZRCR+M= +github.com/gosnmp/gosnmp v1.38.0 h1:I5ZOMR8kb0DXAFg/88ACurnuwGwYkXWq3eLpJPHMEYc= +github.com/gosnmp/gosnmp v1.38.0/go.mod h1:FE+PEZvKrFz9afP9ii1W3cprXuVZ17ypCcyyfYuu5LY= github.com/gotestyourself/gotestyourself v2.2.0+incompatible/go.mod h1:zZKM6oeNM8k+FRljX1mnzVYeS8wiGgQyvST1/GafPbY= github.com/grafana/alloy-remote-config v0.0.9 h1:gy34SxZ8Iq/HrDTIFZi80+8BlT+FnJhKiP9mryHNEUE= github.com/grafana/alloy-remote-config v0.0.9/go.mod h1:kHE1usYo2WAVCikQkIXuoG1Clz8BSdiz3kF+DZSCQ4k= @@ -2169,6 +2171,8 @@ github.com/influxdata/toml v0.0.0-20190415235208-270119a8ce65/go.mod h1:zApaNFpP github.com/influxdata/wlog v0.0.0-20160411224016-7c63b0a71ef8/go.mod h1:/2NMgWB1DHM1ti/gqhOlg+LJeBVk6FqR5aVGYY0hlwI= github.com/ionos-cloud/sdk-go/v6 v6.1.11 h1:J/uRN4UWO3wCyGOeDdMKv8LWRzKu6UIkLEaes38Kzh8= github.com/ionos-cloud/sdk-go/v6 v6.1.11/go.mod h1:EzEgRIDxBELvfoa/uBN0kOQaqovLjUWEB7iW4/Q+t4k= +github.com/itchyny/timefmt-go v0.1.6 h1:ia3s54iciXDdzWzwaVKXZPbiXzxxnv1SPGFfM/myJ5Q= +github.com/itchyny/timefmt-go v0.1.6/go.mod h1:RRDZYC5s9ErkjQvTvvU7keJjxUYzIISJGxm9/mAERQg= github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= @@ -2945,8 +2949,8 @@ github.com/prometheus/memcached_exporter v0.13.0 h1:d246RYODFCXy39XA8S2PBrqp5jLC github.com/prometheus/memcached_exporter v0.13.0/go.mod h1:fp7Wk6v0RFijeP3Syvd1TShBSJoCG5iFfvPdi5dCMEU= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= -github.com/prometheus/snmp_exporter v0.26.0 h1:7THSh/mAIMmHkiVhmsrAwiH1XNGiFelhPCKBe8PXg8U= -github.com/prometheus/snmp_exporter v0.26.0/go.mod h1:GJEhIONojqxbjn3eyCykWeGVXQJg9pdYSX2scFLpEA0= +github.com/prometheus/snmp_exporter v0.27.0 h1:ZQDMq/bXZnl6azn6EhZg6YTX8+Bzwm520Wg0KNJG8J8= +github.com/prometheus/snmp_exporter v0.27.0/go.mod h1:rxdBALtsEnTVlnvdgUKvCTrs6cS35W3NGlxKEumK3Ww= github.com/prometheus/statsd_exporter v0.22.8 h1:Qo2D9ZzaQG+id9i5NYNGmbf1aa/KxKbB9aKfMS+Yib0= github.com/prometheus/statsd_exporter v0.22.8/go.mod h1:/DzwbTEaFTE0Ojz5PqcSk6+PFHOPWGxdXVr6yC8eFOM= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= diff --git a/internal/cmd/integration-tests/tests/snmp/config.alloy b/internal/cmd/integration-tests/tests/snmp/config.alloy index 2f528758a4..a3b3116142 100644 --- a/internal/cmd/integration-tests/tests/snmp/config.alloy +++ b/internal/cmd/integration-tests/tests/snmp/config.alloy @@ -43,11 +43,11 @@ prometheus.remote_write "snmp_metrics" { } queue_config { max_samples_per_send = 100 - } + } } external_labels = { test_name = "snmp_metrics", - } + } } prometheus.exporter.snmp "snmp_metrics2" { @@ -92,10 +92,71 @@ prometheus.remote_write "snmp_metrics2" { } queue_config { max_samples_per_send = 100 - } + } } external_labels = { test_name = "snmp_metrics2", - } + } +} + +prometheus.exporter.snmp "snmp_metrics3" { + config = ` +auths: + public_v2: + community: public + security_level: noAuthNoPriv + auth_protocol: MD5 + priv_protocol: DES + version: 2 +modules: + default: + walk: + - 1.3.6.1.2.1.1 # OID for system + - 1.3.6.1.2.1.2 # OID for interfaces + metrics: + - name: sysDescr + oid: 1.3.6.1.2.1.1.1.0 + type: DisplayString + help: "A textual description of the entity." + hrDevice: + walk: + - 1.3.6.1.2.1.25.3 + metrics: + - name: hrDeviceIndex + oid: 1.3.6.1.2.1.25.3.2.1.1 + type: gauge + help: A unique value for each device contained by the host - 1.3.6.1.2.1.25.3.2.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge +` + concurrency = 2 + target "t1" { + address = "localhost:161" + module = "default,hrDevice" + auth = "public_v2" + } +} + +prometheus.scrape "snmp_metrics3" { + targets = prometheus.exporter.snmp.snmp_metrics3.targets + forward_to = [prometheus.remote_write.snmp_metrics3.receiver] + scrape_interval = "1s" + scrape_timeout = "500ms" +} + +prometheus.remote_write "snmp_metrics3" { + endpoint { + url = "http://localhost:9009/api/v1/push" + metadata_config { + send_interval = "1s" + } + queue_config { + max_samples_per_send = 100 + } + } + external_labels = { + test_name = "snmp_metrics3", + } } diff --git a/internal/cmd/integration-tests/tests/snmp/snmp_metrics_test.go b/internal/cmd/integration-tests/tests/snmp/snmp_metrics_test.go index 9fe5937c54..dc7fbb6ec1 100644 --- a/internal/cmd/integration-tests/tests/snmp/snmp_metrics_test.go +++ b/internal/cmd/integration-tests/tests/snmp/snmp_metrics_test.go @@ -29,6 +29,28 @@ func TestSNMPMetrics(t *testing.T) { "sysDescr", "up", } + var SNMPMetrics3 = []string{ + "scrape_duration_seconds", + "scrape_samples_post_metric_relabeling", + "scrape_samples_scraped", + "scrape_series_added", + "snmp_packet_duration_seconds_bucket", + "snmp_packet_duration_seconds_count", + "snmp_packet_duration_seconds_sum", + "snmp_packet_retries_total", + "snmp_packets_total", + "snmp_request_in_flight", + "snmp_scrape_duration_seconds", + "snmp_scrape_packets_retried", + "snmp_scrape_packets_sent", + "snmp_scrape_pdus_returned", + "snmp_scrape_walk_duration_seconds", + "snmp_unexpected_pdu_type_total", + "sysDescr", + "hrDeviceIndex", + "up", + } common.MimirMetricsTest(t, SNMPMetrics, []string{}, "snmp_metrics") common.MimirMetricsTest(t, SNMPMetrics, []string{}, "snmp_metrics2") + common.MimirMetricsTest(t, SNMPMetrics3, []string{}, "snmp_metrics3") } diff --git a/internal/component/prometheus/exporter/snmp/snmp.go b/internal/component/prometheus/exporter/snmp/snmp.go index 556c7229b3..0f89195828 100644 --- a/internal/component/prometheus/exporter/snmp/snmp.go +++ b/internal/component/prometheus/exporter/snmp/snmp.go @@ -129,12 +129,24 @@ func (w WalkParams) Convert() map[string]snmp_config.WalkParams { return walkParams } +// DefaultArguments holds non-zero default options for Arguments when it is +// unmarshaled from Alloy. +var DefaultArguments = Arguments{ + SnmpConcurrency: 1, +} + +// SetToDefault implements syntax.Defaulter. +func (a *Arguments) SetToDefault() { + *a = DefaultArguments +} + type Arguments struct { - ConfigFile string `alloy:"config_file,attr,optional"` - Config alloytypes.OptionalSecret `alloy:"config,attr,optional"` - Targets TargetBlock `alloy:"target,block,optional"` - WalkParams WalkParams `alloy:"walk_param,block,optional"` - ConfigStruct snmp_config.Config + ConfigFile string `alloy:"config_file,attr,optional"` + SnmpConcurrency int `alloy:"concurrency,attr,optional"` + Config alloytypes.OptionalSecret `alloy:"config,attr,optional"` + Targets TargetBlock `alloy:"target,block,optional"` + WalkParams WalkParams `alloy:"walk_param,block,optional"` + ConfigStruct snmp_config.Config // New way of passing targets. This allows the component to receive targets from other components. TargetsList TargetsList `alloy:"targets,attr,optional"` @@ -194,6 +206,9 @@ func (t TargetsList) convert() []SNMPTarget { // UnmarshalAlloy implements Alloy unmarshalling for Arguments. func (a *Arguments) UnmarshalAlloy(f func(interface{}) error) error { + + a.SetToDefault() + type args Arguments if err := f((*args)(a)); err != nil { return err @@ -233,10 +248,11 @@ func (a *Arguments) Convert() *snmp_exporter.Config { targets = a.TargetsList.Convert() } return &snmp_exporter.Config{ - SnmpConfigFile: a.ConfigFile, - SnmpTargets: targets, - WalkParams: a.WalkParams.Convert(), - SnmpConfig: a.ConfigStruct, + SnmpConfigFile: a.ConfigFile, + SnmpConcurrency: a.SnmpConcurrency, + SnmpTargets: targets, + WalkParams: a.WalkParams.Convert(), + SnmpConfig: a.ConfigStruct, } } diff --git a/internal/component/prometheus/exporter/snmp/snmp_test.go b/internal/component/prometheus/exporter/snmp/snmp_test.go index 677d27e813..1f8e34279e 100644 --- a/internal/component/prometheus/exporter/snmp/snmp_test.go +++ b/internal/component/prometheus/exporter/snmp/snmp_test.go @@ -16,6 +16,7 @@ import ( func TestUnmarshalAlloy(t *testing.T) { alloyCfg := ` config_file = "modules.yml" + concurrency = 2 target "network_switch_1" { address = "192.168.1.2" module = "if_mib" @@ -25,7 +26,7 @@ func TestUnmarshalAlloy(t *testing.T) { } target "network_router_2" { address = "192.168.1.3" - module = "mikrotik" + module = "system,mikrotik" walk_params = "private" } walk_param "private" { @@ -38,6 +39,7 @@ func TestUnmarshalAlloy(t *testing.T) { var args Arguments err := syntax.Unmarshal([]byte(alloyCfg), &args) require.NoError(t, err) + require.Equal(t, 2, args.SnmpConcurrency) require.Equal(t, "modules.yml", args.ConfigFile) require.Equal(t, 2, len(args.Targets)) @@ -50,7 +52,7 @@ func TestUnmarshalAlloy(t *testing.T) { require.Contains(t, "network_router_2", args.Targets[1].Name) require.Contains(t, "192.168.1.3", args.Targets[1].Target) - require.Contains(t, "mikrotik", args.Targets[1].Module) + require.Contains(t, "system,mikrotik", args.Targets[1].Module) require.Contains(t, "private", args.Targets[1].WalkParams) require.Empty(t, args.Targets[1].Auth) @@ -90,6 +92,7 @@ func TestUnmarshalAlloyTargets(t *testing.T) { var args Arguments err := syntax.Unmarshal([]byte(alloyCfg), &args) require.NoError(t, err) + require.Equal(t, 1, args.SnmpConcurrency) require.Equal(t, "modules.yml", args.ConfigFile) require.Equal(t, 2, len(args.TargetsList)) diff --git a/internal/converter/internal/staticconvert/internal/build/snmp_exporter.go b/internal/converter/internal/staticconvert/internal/build/snmp_exporter.go index b6250cfce5..5a8cd28ac8 100644 --- a/internal/converter/internal/staticconvert/internal/build/snmp_exporter.go +++ b/internal/converter/internal/staticconvert/internal/build/snmp_exporter.go @@ -50,10 +50,11 @@ func toSnmpExporter(config *snmp_exporter.Config) *snmp.Arguments { } return &snmp.Arguments{ - ConfigFile: config.SnmpConfigFile, - Config: alloytypes.OptionalSecret{}, - TargetsList: targets, - WalkParams: walkParams, + ConfigFile: config.SnmpConfigFile, + Config: alloytypes.OptionalSecret{}, + SnmpConcurrency: config.SnmpConcurrency, + TargetsList: targets, + WalkParams: walkParams, ConfigStruct: snmp_config.Config{ Auths: config.SnmpConfig.Auths, Modules: config.SnmpConfig.Modules, @@ -99,10 +100,11 @@ func toSnmpExporterV2(config *snmp_exporter_v2.Config) *snmp.Arguments { } return &snmp.Arguments{ - ConfigFile: config.SnmpConfigFile, - Config: alloytypes.OptionalSecret{}, - TargetsList: targets, - WalkParams: walkParams, + ConfigFile: config.SnmpConfigFile, + Config: alloytypes.OptionalSecret{}, + SnmpConcurrency: config.SnmpConcurrency, + TargetsList: targets, + WalkParams: walkParams, ConfigStruct: snmp_config.Config{ Auths: config.SnmpConfig.Auths, Modules: config.SnmpConfig.Modules, diff --git a/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.alloy b/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.alloy index 712f63ae59..671533e150 100644 --- a/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.alloy +++ b/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.alloy @@ -721,7 +721,7 @@ prometheus.exporter.snmp "integrations_snmp" { }, { address = "192.168.1.3", auth = "private", - module = "mikrotik", + module = "system,mikrotik", name = "network_router_2", snmp_context = "dummyContext", walk_params = "private", diff --git a/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.yaml b/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.yaml index 60f032c650..c2d4b7af95 100644 --- a/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.yaml +++ b/internal/converter/internal/staticconvert/testdata-v2/integrations_v2.yaml @@ -213,7 +213,7 @@ integrations: snmp_context: dummyContext - name: network_router_2 address: 192.168.1.3 - module: mikrotik + module: system,mikrotik walk_params: private auth: private snmp_context: dummyContext diff --git a/internal/static/integrations/snmp_exporter/common/snmp.yml b/internal/static/integrations/snmp_exporter/common/snmp.yml index 254680c39e..75a268a92a 100644 --- a/internal/static/integrations/snmp_exporter/common/snmp.yml +++ b/internal/static/integrations/snmp_exporter/common/snmp.yml @@ -2373,26 +2373,8 @@ modules: type: gauge arista_sw: walk: - - 1.3.6.1.2.1.25.2.3.1.6 - - 1.3.6.1.2.1.25.3.3.1.2 - 1.3.6.1.4.1.30065.3.1.1 metrics: - - 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: hrStorageIndex - type: gauge - - name: hrProcessorLoad - oid: 1.3.6.1.2.1.25.3.3.1.2 - type: gauge - help: The average, over the last minute, of the percentage of time that this - processor was not idle - 1.3.6.1.2.1.25.3.3.1.2 - indexes: - - labelname: hrDeviceIndex - type: gauge - name: aristaSwFwdIpStatsIPVersion oid: 1.3.6.1.4.1.30065.3.1.1.1.1.1 type: gauge @@ -2946,6 +2928,73 @@ modules: 0: unknown 1: ipv4 2: ipv6 + cisco_imc: + walk: + - 1.3.6.1.4.1.9.9.719.1.1.1.1.11 + - 1.3.6.1.4.1.9.9.719.1.1.1.1.20 + - 1.3.6.1.4.1.9.9.719.1.45.1.1.6 + metrics: + - name: cucsFaultDescription + oid: 1.3.6.1.4.1.9.9.719.1.1.1.1.11 + type: DisplayString + help: Cisco UCS fault:Inst:descr managed object property - 1.3.6.1.4.1.9.9.719.1.1.1.1.11 + indexes: + - labelname: cucsFaultIndex + type: gauge + - name: cucsFaultSeverity + oid: 1.3.6.1.4.1.9.9.719.1.1.1.1.20 + type: gauge + help: Cisco UCS fault:Inst:severity managed object property - 1.3.6.1.4.1.9.9.719.1.1.1.1.20 + indexes: + - labelname: cucsFaultIndex + type: gauge + enum_values: + 0: cleared + 1: info + 3: warning + 4: minor + 5: major + 6: critical + - name: cucsStorageControllerOperState + oid: 1.3.6.1.4.1.9.9.719.1.45.1.1.6 + type: gauge + help: Cisco UCS storage:Controller:operState managed object property - 1.3.6.1.4.1.9.9.719.1.45.1.1.6 + indexes: + - labelname: cucsStorageControllerInstanceId + type: gauge + enum_values: + 0: unknown + 1: operable + 2: inoperable + 3: degraded + 4: poweredOff + 5: powerProblem + 6: removed + 7: voltageProblem + 8: thermalProblem + 9: performanceProblem + 10: accessibilityProblem + 11: identityUnestablishable + 12: biosPostTimeout + 13: disabled + 14: malformedFru + 15: backplanePortProblem + 16: chassisIntrusion + 51: fabricConnProblem + 52: fabricUnsupportedConn + 81: config + 82: equipmentProblem + 83: decomissioning + 84: chassisLimitExceeded + 100: notSupported + 101: discovery + 102: discoveryFailed + 103: identify + 104: postFailure + 105: upgradeProblem + 106: peerCommProblem + 107: autoUpgrade + 108: linkActivateBlocked cisco_wlc: walk: - 1.3.6.1.4.1.14179.2.1.1.1.2 @@ -2988,7 +3037,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDBNoisePower @@ -3009,7 +3058,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnApIfNoOfUsers @@ -3027,7 +3076,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfType @@ -3045,13 +3094,15 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress enum_values: 1: dot11b 2: dot11a 4: uwb + 6: dot116ghz + 7: dot11xor56ghz - name: bsnAPIfPhyChannelNumber oid: 1.3.6.1.4.1.14179.2.2.2.1.4 type: gauge @@ -3067,7 +3118,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress enum_values: @@ -3138,7 +3189,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MulticastTransmittedFrameCount @@ -3157,7 +3208,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RetryCount @@ -3176,7 +3227,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MultipleRetryCount @@ -3195,7 +3246,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FrameDuplicateCount @@ -3214,7 +3265,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RTSSuccessCount @@ -3233,7 +3284,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11RTSFailureCount @@ -3252,7 +3303,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11ACKFailureCount @@ -3271,7 +3322,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11ReceivedFragmentCount @@ -3290,7 +3341,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11MulticastReceivedFrameCount @@ -3309,7 +3360,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FCSErrorCount @@ -3328,7 +3379,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11TransmittedFrameCount @@ -3347,7 +3398,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11WEPUndecryptableCount @@ -3369,7 +3420,7 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress - name: bsnAPIfDot11FailedCount @@ -3389,13 +3440,14 @@ modules: - bsnAPDot3MacAddress labelname: bsnAPName oid: 1.3.6.1.4.1.14179.2.2.1.1.3 - type: OctetString + type: DisplayString - labels: [] labelname: bsnAPDot3MacAddress cyberpower: walk: - 1.3.6.1.4.1.3808.1.1.1 - 1.3.6.1.4.1.3808.1.1.4 + - 1.3.6.1.4.1.3808.1.1.5 - 1.3.6.1.4.1.3808.1.1.6 metrics: - name: upsBaseIdentModel @@ -3757,6 +3809,11 @@ modules: enum_values: 1: noOperation 2: reset + - name: upsAdvanceConfigBatteryRuntimeThreshold + oid: 1.3.6.1.4.1.3808.1.1.1.5.2.20 + type: gauge + help: When the UPS supplies battery power and the remaining runtime is lower + than this threshold, the UPS will sound an alarm - 1.3.6.1.4.1.3808.1.1.1.5.2.20 - name: upsBaseControlConserveBattery oid: 1.3.6.1.4.1.3808.1.1.1.6.1.1 type: gauge @@ -4284,7083 +4341,20632 @@ modules: enum_values: 1: normalOpen 2: normalClose - - name: ePDU2Role - oid: 1.3.6.1.4.1.3808.1.1.6.1 + - name: atsIdentName + oid: 1.3.6.1.4.1.3808.1.1.5.1.1 + type: DisplayString + help: The name of the ATS - 1.3.6.1.4.1.3808.1.1.5.1.1 + - name: atsIdentModelName + oid: 1.3.6.1.4.1.3808.1.1.5.1.2 + type: DisplayString + help: A string identifying the model name of the Automatic Transfer Switch - + 1.3.6.1.4.1.3808.1.1.5.1.2 + - name: atsIdentHardwareRev + oid: 1.3.6.1.4.1.3808.1.1.5.1.3 + type: DisplayString + help: The hardware revision of the Automatic Transfer Switch - 1.3.6.1.4.1.3808.1.1.5.1.3 + - name: atsIdentFirmwareRev + oid: 1.3.6.1.4.1.3808.1.1.5.1.4 + type: DisplayString + help: A string identifying the Automatic Transfer Switch firmware revision. + - 1.3.6.1.4.1.3808.1.1.5.1.4 + - name: atsIdentSerialNumber + oid: 1.3.6.1.4.1.3808.1.1.5.1.5 + type: DisplayString + help: A string identifying the serial number of the Automatic Transfer Switch + - 1.3.6.1.4.1.3808.1.1.5.1.5 + - name: atsIdentDateOfManufacture + oid: 1.3.6.1.4.1.3808.1.1.5.1.6 + type: DisplayString + help: The date when the Automatic Transfer Switch was manufactured in mm/dd/yyyy + format - 1.3.6.1.4.1.3808.1.1.5.1.6 + - name: atsIdentDeviceRatingVoltage + oid: 1.3.6.1.4.1.3808.1.1.5.1.7 + type: DisplayString + help: A string identifing the Automatic Transfer Switch rating voltage. - 1.3.6.1.4.1.3808.1.1.5.1.7 + - name: atsIdentDeviceRatingCurrent + oid: 1.3.6.1.4.1.3808.1.1.5.1.8 type: gauge - help: Get this oid shows the role the PDU played on Daisy Chain Group - 1.3.6.1.4.1.3808.1.1.6.1 + help: This gives the device rating current in Amps - 1.3.6.1.4.1.3808.1.1.5.1.8 + - name: atsIdentDeviceOutletNum + oid: 1.3.6.1.4.1.3808.1.1.5.1.9 + type: gauge + help: This gives the outlet number of the device - 1.3.6.1.4.1.3808.1.1.5.1.9 + - name: atsIdentAgentModelName + oid: 1.3.6.1.4.1.3808.1.1.5.1.10 + type: DisplayString + help: A string identifying the model name of the Agent. - 1.3.6.1.4.1.3808.1.1.5.1.10 + - name: atsIdentAgentHardwareRevision + oid: 1.3.6.1.4.1.3808.1.1.5.1.11 + type: DisplayString + help: The hardware revision of the Agent. - 1.3.6.1.4.1.3808.1.1.5.1.11 + - name: atsIdentAgentFirmwareRevision + oid: 1.3.6.1.4.1.3808.1.1.5.1.12 + type: DisplayString + help: A string identifying the Agent firmware revision. - 1.3.6.1.4.1.3808.1.1.5.1.12 + - name: atsIdentAgentSerialNumber + oid: 1.3.6.1.4.1.3808.1.1.5.1.13 + type: DisplayString + help: A string identifying the serial number of the Agent. - 1.3.6.1.4.1.3808.1.1.5.1.13 + - name: atsStatusCommStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.1 + type: gauge + help: This variable returns the current communication status between the Automatic + Transfer Switch and the Agent. - 1.3.6.1.4.1.3808.1.1.5.2.1.1 enum_values: - 1: standalone - 2: host - 3: slave - - name: ePDU2IdentTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.2.1 + 1: atsNeverDiscovered + 2: atsCommEstablished + 3: atsCommLost + - name: atsStatusSelectedSource + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.2 type: gauge - help: PDU as a Host response total PDU ident number on daisy chain - 1.3.6.1.4.1.3808.1.1.6.2.1 - - name: ePDU2IdentIndex - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.1 + help: This variable returns the current source of power. - 1.3.6.1.4.1.3808.1.1.5.2.1.2 + enum_values: + 1: sourceA + 2: sourceB + - name: atsStatusRedundancyState + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.3 type: gauge - help: The index to the Rack PDU identification table entry. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.1 - indexes: - - labelname: ePDU2IdentIndex - type: gauge - - name: ePDU2IdentModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.2 + help: This variable returns the current redundancy state of the ATS - 1.3.6.1.4.1.3808.1.1.5.2.1.3 + enum_values: + 1: atsRedundancyLost + 2: atsFullyRedundant + - name: atsStatusPhaseSyncStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.4 type: gauge - help: The Rack PDU identification table entry numeric ID. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.2 - indexes: - - labelname: ePDU2IdentIndex - type: gauge - - name: ePDU2IdentName - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.3 - type: DisplayString - help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.3 + help: This variable returns the status of the phase sync. - 1.3.6.1.4.1.3808.1.1.5.2.1.4 + enum_values: + 1: inSync + 2: outOfSync + - name: atsStatusDevSourceRelayStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.5 + type: gauge + help: This variable returns the status of the source relay. - 1.3.6.1.4.1.3808.1.1.5.2.1.5 + enum_values: + 1: sourceRelayNormal + 2: sourceRelayFail + - name: atsStatusDevInRelayStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.6 + type: gauge + help: This variable returns the status of the input relay. - 1.3.6.1.4.1.3808.1.1.5.2.1.6 + enum_values: + 1: inputRelayNormal + 2: inputRelayFail + - name: atsStatusDevOutRelayStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.7 + type: gauge + help: This variable returns the status of the Output relay. - 1.3.6.1.4.1.3808.1.1.5.2.1.7 + enum_values: + 1: outputRelayNormal + 2: outputRelayFail + - name: atsStatusDevLCDCommStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.8 + type: gauge + help: This variable returns the communication status of the LCD. - 1.3.6.1.4.1.3808.1.1.5.2.1.8 + enum_values: + 1: lcdCommNormal + 2: lcdCommFail + - name: atsStatusDevDB9CommStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.9 + type: gauge + help: This variable returns the communication status of the DB9. - 1.3.6.1.4.1.3808.1.1.5.2.1.9 + enum_values: + 1: db9CommNormal + 2: db9CommFail + - name: atsStatusPowerSupplyTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.1 + type: gauge + help: The input identifier. - 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.1 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusPowerSupplyTableIndex type: gauge - - name: ePDU2IdentLocation - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.4 - type: DisplayString - help: A user-defined string identifying the location of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.4 + - name: atsStatusPowerSupplyInputSource + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.2 + type: gauge + help: The input source to the power supply. - 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.2 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusPowerSupplyTableIndex type: gauge - - name: ePDU2IdentContact - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.5 - type: DisplayString - help: A user-defined string identifying the person to contact of the Rack PDU. - - 1.3.6.1.4.1.3808.1.1.6.2.2.1.5 + enum_values: + 1: sourceA + 2: sourceB + - name: atsStatusPowerSupply12VStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.3 + type: gauge + help: This variable returns the status of the power supply A 12V in system. + - 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.3 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusPowerSupplyTableIndex type: gauge - - name: ePDU2IdentHardwareRev - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.6 - type: DisplayString - help: The Rack PDU hardware version. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.6 + enum_values: + 1: powerSupplyOK + 2: powerSupplyFailure + - name: atsStatusPowerSupply5VStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.4 + type: gauge + help: This variable returns the status of the power supply A 5V in system. - + 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.4 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusPowerSupplyTableIndex type: gauge - - name: ePDU2IdentFirmwareRev - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.7 - type: DisplayString - help: The Rack PDU firmware version. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.7 + enum_values: + 1: powerSupplyOK + 2: powerSupplyFailure + - name: atsStatusPowerSupply3p3VStatus + oid: 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.5 + type: gauge + help: This variable returns the status of the power supply A 3.3V in system. + - 1.3.6.1.4.1.3808.1.1.5.2.1.10.1.5 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusPowerSupplyTableIndex type: gauge - - name: ePDU2IdentDateOfManufacture - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.8 - type: DisplayString - help: The date the Rack PDU was manufactured in mm/dd/yyyy format. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.8 + enum_values: + 1: powerSupplyOK + 2: powerSupplyFailure + - name: atsStatusInputNum + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.1 + type: gauge + help: The number of input feeds to this device - 1.3.6.1.4.1.3808.1.1.5.2.2.1 + - name: atsStatusInputTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.1 + type: gauge + help: The input identifier. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.1 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2IdentModelName - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.9 + - name: atsStatusInputName + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.2 type: DisplayString - help: The Rack PDU model number. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.9 + help: A name given to a particular input. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.2 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2IdentSerialNumber - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.10 - type: DisplayString - help: The Rack PDU serial number. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.10 + - name: atsStatusNumInputPhase + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.3 + type: gauge + help: The number of input phases utilized in this device - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.3 indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2IdentIndicator - oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.11 + - name: atsStatusInputVoltageOrientation + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.4 type: gauge - help: PDU will perform a panel indicator test when the variable is set to testIndicators(2) - - 1.3.6.1.4.1.3808.1.1.6.2.2.1.11 + help: 'The input voltage orientation: 1: unknown for this Source 2: singlePhase + - phase 1 voltage is between Phase 1 and Neutral - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.4' indexes: - - labelname: ePDU2IdentIndex + - labelname: atsStatusInputTableIndex type: gauge enum_values: - 1: noTestIndicators - 2: testIndicators - - name: ePDU2DeviceTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.3.1 - type: gauge - help: A Host Rack PDU response total number of Rack PDUs on daisy chain - 1.3.6.1.4.1.3808.1.1.6.3.1 - - name: ePDU2DeviceConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.1 + 1: unknown + 2: singlePhase + 3: splitPhase + 4: threePhasePhaseToNeutral + 5: threePhasePhaseToPhase + - name: atsStatusInputVoltage + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.5 type: gauge - help: The index to the Rack PDU table entry. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.1 + help: The input voltage in 0.1 Volt. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.5 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2DeviceConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.2 + - name: atsStatusInputFrequency + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.6 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.2 + help: The input frequency in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.6 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2DeviceConfigName - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.3 - type: DisplayString - help: A user-defined string identifying the name of Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.3 + - name: atsStatusInputVolState + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.7 + type: gauge + help: The input voltage status. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.7 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2DeviceConfigLocation - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.4 - type: DisplayString - help: A user-defined string identifying the location of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.4 + enum_values: + 1: normal + 2: overVoltage + 3: underVoltage + - name: atsStatusInputFreqState + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.8 + type: gauge + help: The input frequency status. - 1.3.6.1.4.1.3808.1.1.5.2.2.2.1.8 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputTableIndex type: gauge - - name: ePDU2DeviceConfigContact - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.5 - type: DisplayString - help: A user-defined string identifying the person to contact of the Rack PDU. - - 1.3.6.1.4.1.3808.1.1.6.3.2.1.5 + enum_values: + 1: normal + 2: overFrequency + 3: underFrequency + - name: atsStatusInputPhaseTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.1 + type: gauge + help: The input identifier. - 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.1 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigDisplayOrientation - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.6 + - labelname: atsStatusInputPhaseIndex + type: gauge + - name: atsStatusInputPhaseIndex + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.2 type: gauge - help: Getting this OID will return the intended physical orientation of the - Seven-Segment Display - 1.3.6.1.4.1.3808.1.1.6.3.2.1.6 + help: The input phase identifier. - 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.2 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputPhaseTableIndex type: gauge - enum_values: - 1: displayNormal - 2: displayReverse - 3: displayRotate90 - 4: displayRotate270 - 5: displayAuto - - name: ePDU2DeviceConfigColdstartDelay - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.7 + - labelname: atsStatusInputPhaseIndex + type: gauge + - name: atsStatusInputPhaseVoltage + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.3 type: gauge - help: The amount of delay, measured in seconds, between when power is provided - to the Rack PDU and when the Rack PDU provides basic master power to the outlets - - 1.3.6.1.4.1.3808.1.1.6.3.2.1.7 + help: The input voltage in VAC, or -1 if it's unsupported by this Source. - + 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.3 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigCurrentLowLoadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.8 + - labelname: atsStatusInputPhaseIndex + type: gauge + - name: atsStatusInputPhaseCurrent + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.4 type: gauge - help: User-defined low current draw alarm threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.8 + help: The input current in amperes, or -1 if it's unsupported by this Source. + - 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.4 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigCurrentNearOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.9 + - labelname: atsStatusInputPhaseIndex + type: gauge + - name: atsStatusInputPhasePower + oid: 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.5 type: gauge - help: User-defined near overload current threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.9 + help: The input power in Watts, or -1 if it's unsupported by this Source. - + 1.3.6.1.4.1.3808.1.1.5.2.2.3.1.5 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsStatusInputPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigCurrentOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.10 + - labelname: atsStatusInputPhaseIndex + type: gauge + - name: atsConfigPreferredSource + oid: 1.3.6.1.4.1.3808.1.1.5.3.1 type: gauge - help: User-defined current overload threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.10 + help: This variable returns the preferred source of power when both sources + are OK. - 1.3.6.1.4.1.3808.1.1.5.3.1 + enum_values: + 1: sourceA + 2: sourceB + 3: none + - name: atsConfigNominalVoltage + oid: 1.3.6.1.4.1.3808.1.1.5.3.2 + type: gauge + help: This variable returns the nominal voltage of the input. - 1.3.6.1.4.1.3808.1.1.5.3.2 + - name: atsConfigVoltageSensitivity + oid: 1.3.6.1.4.1.3808.1.1.5.3.3 + type: gauge + help: 'This variable defines the sensitivity to changes in voltage: high(1) + for best protection, low(3) for frequent small line voltage changes. - 1.3.6.1.4.1.3808.1.1.5.3.3' + enum_values: + 1: high + 2: medium + 3: low + - name: atsConfigTransferVoltageRange + oid: 1.3.6.1.4.1.3808.1.1.5.3.4 + type: gauge + help: This variable defines the range of acceptable voltage from a power source + - 1.3.6.1.4.1.3808.1.1.5.3.4 + enum_values: + 1: wide + 2: medium + 3: narrow + - name: atsConfigNarrowRangeValue + oid: 1.3.6.1.4.1.3808.1.1.5.3.5 + type: gauge + help: To configure the Narrow Range value of acceptable voltage from a power + source. - 1.3.6.1.4.1.3808.1.1.5.3.5 + - name: atsConfigMediumRangeValue + oid: 1.3.6.1.4.1.3808.1.1.5.3.6 + type: gauge + help: To configure the Medium Range value of acceptable voltage from a power + source. - 1.3.6.1.4.1.3808.1.1.5.3.6 + - name: atsConfigWideRangeValue + oid: 1.3.6.1.4.1.3808.1.1.5.3.7 + type: gauge + help: To configure the Wide Range value of acceptable voltage from a power source. + - 1.3.6.1.4.1.3808.1.1.5.3.7 + - name: atsConfigFrequencyDeviation + oid: 1.3.6.1.4.1.3808.1.1.5.3.8 + type: gauge + help: To configure the frequency deviation. - 1.3.6.1.4.1.3808.1.1.5.3.8 + - name: atsConfigDevLCDOffTime + oid: 1.3.6.1.4.1.3808.1.1.5.3.9 + type: gauge + help: The amount of time (in seconds) which LCD turn off automatically after + it remains idle for. - 1.3.6.1.4.1.3808.1.1.5.3.9 + - name: atsCtrlResetATS + oid: 1.3.6.1.4.1.3808.1.1.5.4.1 + type: gauge + help: Setting this variable will cause the Automatic Transfer Switch to reboot + or reset relative setting to default value. - 1.3.6.1.4.1.3808.1.1.5.4.1 + enum_values: + 1: none + 2: rboot + 3: reset + - name: atsCtrlClearEventCounts + oid: 1.3.6.1.4.1.3808.1.1.5.4.2 + type: gauge + help: Setting this variable will clear all event counts in Automatic Transfer + Switch - 1.3.6.1.4.1.3808.1.1.5.4.2 + enum_values: + 1: none + 2: clear + - name: atsLoadDevPhaseTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.1 + type: gauge + help: The size of the Phase Table. - 1.3.6.1.4.1.3808.1.1.5.5.1.1 + - name: atsLoadDevPhaseTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.1 + type: gauge + help: The index to ATS phase entry. - 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.1 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadDevPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigPeakLoadReset - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.11 + - name: atsLoadDevPhase + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.2 type: gauge - help: Setting this OID to resetAll (2) will cause the existing peak current - value of Rack PDU and its outlets to be replaced by the current load current - value - 1.3.6.1.4.1.3808.1.1.6.3.2.1.11 + help: For single phase devices, this object will always return phase1(1) - 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.2 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadDevPhaseTableIndex type: gauge enum_values: - 1: noOperation - 2: resetAll - 3: resetDevice - 4: resetOutlets - - name: ePDU2DeviceConfigEnergyReset - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.12 + 1: phase1 + 2: phase2 + 3: phase3 + 4: phase1-2 + 5: phase2-3 + 6: phase3-1 + - name: atsLoadDevPhaseMaxLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.3 type: gauge - help: Setting this OID to resetAll (2) will cause the device energy meter value - to be reset to zero - 1.3.6.1.4.1.3808.1.1.6.3.2.1.12 + help: Getting this OID will return the maximum rated power that each phase of + the ATS can provide - 1.3.6.1.4.1.3808.1.1.5.5.1.2.1.3 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadDevPhaseTableIndex type: gauge + - name: atsLoadDevBankTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.3 + type: gauge + help: The size of the Bank Table. - 1.3.6.1.4.1.3808.1.1.5.5.1.3 + - name: atsLoadDevBankTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.4.1.1 + type: gauge + help: The index to the ATS bank entry. - 1.3.6.1.4.1.3808.1.1.5.5.1.4.1.1 + indexes: + - labelname: atsLoadDevBankTableIndex + type: gauge + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 enum_values: - 1: noOperation - 2: resetAll - 3: resetDevice - 4: resetOutlets - - name: ePDU2DeviceConfigPowerLowLoadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.13 + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadDevBankMaxLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.1.4.1.2 type: gauge - help: User-defined low power draw alarm threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.13 + help: Getting this OID will return the maximum rated power that each bank of + the ATS can provide - 1.3.6.1.4.1.3808.1.1.5.5.1.4.1.2 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadDevBankTableIndex type: gauge - - name: ePDU2DeviceConfigPowerNearOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.14 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadStatusPhaseTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.1 type: gauge - help: User-defined near overload power threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.14 + help: The size of the Phase Table. - 1.3.6.1.4.1.3808.1.1.5.5.2.1 + - name: atsLoadStatusPhaseTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.1 + type: gauge + help: The index to ATS phase entry. - 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.1 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadStatusPhaseTableIndex type: gauge - - name: ePDU2DeviceConfigPowerOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.15 + - name: atsLoadStatusPhase + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.2 type: gauge - help: User-defined power overload threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.15 + help: For single phase devices, this object will always return phase1(1) - 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.2 indexes: - - labelname: ePDU2DeviceConfigIndex + - labelname: atsLoadStatusPhaseTableIndex type: gauge - - name: ePDU2DeviceInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.1 + enum_values: + 1: phase1 + 2: phase2 + 3: phase3 + 4: phase1-2 + 5: phase2-3 + 6: phase3-1 + - name: atsLoadStatusPhaseLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.3 type: gauge - help: The index to the Rack PDU Information table entry. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.1 + help: The output current in 0.1 amperes drawn by the load on the ATS - 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.3 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusPhaseTableIndex type: gauge - - name: ePDU2DeviceInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.2 + - name: atsLoadStatusPhaseLoadState + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.4 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.2 + help: Getting this OID will return the phase load state. - 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.4 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusPhaseTableIndex type: gauge - - name: ePDU2DeviceInfoName - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.3 - type: DisplayString - help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.3 + enum_values: + 1: normal + 2: lowLoad + 3: nearOverLoad + 4: overLoad + - name: atsLoadStatusPhasePower + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.5 + type: gauge + help: The output power in Watts. - 1.3.6.1.4.1.3808.1.1.5.5.2.2.1.5 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusPhaseTableIndex type: gauge - - name: ePDU2DeviceInfoRating - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.4 + - name: atsLoadStatusBankTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.3 type: gauge - help: The electrical rating of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.4 + help: The size of the Bank Table. - 1.3.6.1.4.1.3808.1.1.5.5.2.3 + - name: atsLoadStatusBankTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.1 + type: gauge + help: The index to ATS bank entry. - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.1 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoNumOutlets - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.5 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadStatusBankPhase + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.2 type: gauge - help: The number of outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.5 + help: Getting this OID will return the phase number. - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.2 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoSwitchedOutlets - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.6 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + enum_values: + 1: phase1 + 2: phase2 + 3: phase3 + 4: phase1-2 + 5: phase2-3 + 6: phase3-1 + - name: atsLoadStatusBankLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.3 type: gauge - help: The number of switched outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.6 + help: The output current in 0.1 amperes drawn by the load on the ATS - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.3 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoMeteredOutlets - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.7 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadStatusBankLoadState + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.4 type: gauge - help: The number of metered outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.7 + help: Getting this OID will return the bank load state. - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.4 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoNumPhases - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.8 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + enum_values: + 1: normal + 2: lowLoad + 3: nearOverLoad + 4: overLoad + - name: atsLoadStatusBankPower + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.5 type: gauge - help: The number of phases present in the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.8 + help: The output power in Watts. - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.5 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoNumBreakers - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.9 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadStatusBankEnergy + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.6 type: gauge - help: The number of metered banks present in the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.9 + help: Getting this OID will return the phase/bank apparent power measured in + 0.1 kilowatt-hours. - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.6 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoBreakerRating - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.10 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadStatusBankStartTime + oid: 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.7 type: gauge - help: The maximum current rating, measured in Amps, for the Rack PDU - 1.3.6.1.4.1.3808.1.1.6.3.3.1.10 + help: Getting this OID will return the date and time of the last energy meter + reset - 1.3.6.1.4.1.3808.1.1.5.5.2.4.1.7 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadStatusBankTableIndex type: gauge - - name: ePDU2DeviceInfoOrientation - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.11 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadCfgPhaseTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.1 type: gauge - help: Rack PDU orientation. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.11 + help: The size of the Phase Table. - 1.3.6.1.4.1.3808.1.1.5.5.3.1 + - name: atsLoadCfgPhaseTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.1 + type: gauge + help: The index to the ATS phase entry. - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.1 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge - enum_values: - 1: orientHorizontal - 2: orientVertical - - name: ePDU2DeviceInfoOutletLayout - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.12 + - name: atsLoadCfgPhase + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.2 type: gauge - help: Getting this OID will return outlet layout for the device - 1.3.6.1.4.1.3808.1.1.6.3.3.1.12 + help: For single phase devices, this object will always return phase1(1) - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.2 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge enum_values: - 1: seqPhaseToNeutral - 2: seqPhaseToPhase - 3: seqOther - - name: ePDU2DeviceInfoPowerLimit - oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.13 + 1: phase1 + 2: phase2 + 3: phase3 + 4: phase1-2 + 5: phase2-3 + 6: phase3-1 + - name: atsLoadCfgPhaseLowLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.3 type: gauge - help: The maximum power limit, measured in Watt, for the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.13 + help: A threshold that indicates the power consumption of the load is nearing + a low consumption condition - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.3 indexes: - - labelname: ePDU2DeviceInfoIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge - - name: ePDU2DeviceStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.1 + - name: atsLoadCfgPhaseNearOverLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.4 type: gauge - help: The index to the Rack PDU status table entry. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.1 + help: A threshold that indicates the power consumption of the load is nearing + an overload condition - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.4 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge - - name: ePDU2DeviceStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.2 + - name: atsLoadCfgPhaseOverLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.5 type: gauge - help: The Rack PDU numeric ID - 1.3.6.1.4.1.3808.1.1.6.3.4.1.2 + help: A threshold that indicates the power consumption of the load has entered + an overload condition - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.5 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge - - name: ePDU2DeviceStatusName - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.3 - type: DisplayString - help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.3 + - name: atsLoadCfgPhaseOutletRestriction + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.6 + type: gauge + help: This OID controls the behavior of a ATS phase when an overload condition + is possible and additional outlets are requested to be turned on - 1.3.6.1.4.1.3808.1.1.5.5.3.2.1.6 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgPhaseTableIndex type: gauge - - name: ePDU2DeviceStatusLoadState - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.4 + enum_values: + 1: alwaysAllowTurnON + 2: restrictOnNearOverload + 3: restrictOnOverload + - name: atsLoadCfgBankTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.3 type: gauge - help: Indicates the present load status of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.4 + help: The size of the Bank Table. - 1.3.6.1.4.1.3808.1.1.5.5.3.3 + - name: atsLoadCfgBankTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.1 + type: gauge + help: The index to the ATS bank entry. - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.1 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 enum_values: - 1: noLoadAlarm - 2: underCurrentAlarm - 3: nearOverCurrentAlarm - 4: overCurrentAlarm - - name: ePDU2DeviceStatusCurrentLoad - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.5 + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadCfgBankLowLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.2 type: gauge - help: The power consumption of the Rack PDU load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.5 + help: A threshold that indicates the power consumption of the load is nearing + a low consumption condition - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.2 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge - - name: ePDU2DeviceStatusCurrentPeakLoad - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.6 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadCfgBankNearOverLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.3 type: gauge - help: The peak power consumption of the Rack PDU load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.6 + help: A threshold that indicates the power consumption of the load is nearing + an overload condition - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.3 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge - - name: ePDU2DeviceStatusPeakLoadTimestamp - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.7 - type: DisplayString - help: Indicates the date and time that peak load occurred. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.7 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadCfgBankOverLoad + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.4 + type: gauge + help: A threshold that indicates the power consumption of the load has entered + an overload condition - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.4 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge - - name: ePDU2DeviceStatusPeakLoadStartTime - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.8 - type: DisplayString - help: Indicates the date and time of the last device peak load reset. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.8 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + - name: atsLoadCfgBankOutletRestriction + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.5 + type: gauge + help: This OID controls the behavior of a ATS phase when an overload condition + is possible and additional outlets are requested to be turned on - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.5 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge - - name: ePDU2DeviceStatusEnergy - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.9 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + enum_values: + 1: alwaysAllowTurnON + 2: restrictOnNearOverload + 3: restrictOnOverload + - name: atsLoadCfgBankEnergyReset + oid: 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.6 type: gauge - help: A user resettable energy meter measuring Rack PDU load energy consumption - in tenths of kilowatt-hours. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.9 + help: Setting this OID to reset (2) will cause the bank energy meter value to + be reset to zero - 1.3.6.1.4.1.3808.1.1.5.5.3.4.1.6 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsLoadCfgBankTableIndex type: gauge - - name: ePDU2DeviceStatusEnergyStartTime - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.10 + enum_values: + 1: total + 2: bank1 + 3: bank2 + 4: bank3 + enum_values: + 1: noOperation + 2: reset + - name: atsOutletDevTotalOutletNum + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.1 + type: gauge + help: The total number of outlets on the ATS. - 1.3.6.1.4.1.3808.1.1.5.6.1.1 + - name: atsOutletDevCtrlOutletNum + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.2 + type: gauge + help: The number of controlled outlets on the ATS. - 1.3.6.1.4.1.3808.1.1.5.6.1.2 + - name: atsOutletDevColdStartDelay + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.3 + type: gauge + help: The amount of delay, in seconds, between when power is provided to the + ATS and when the ATS provides basic master power to the outlets - 1.3.6.1.4.1.3808.1.1.5.6.1.3 + - name: atsOutletDevColdStartState + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.4 + type: gauge + help: The ATS outlet state after coldstart - 1.3.6.1.4.1.3808.1.1.5.6.1.4 + enum_values: + 1: allOn + 2: previous + - name: atsOutletDevLocalCtrl + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.5 + type: gauge + help: To configure enable or disable outlet local control function. - 1.3.6.1.4.1.3808.1.1.5.6.1.5 + enum_values: + 1: enable + 2: disable + - name: atsOutletDevCommand + oid: 1.3.6.1.4.1.3808.1.1.5.6.1.6 + type: gauge + help: Setting this OID to immediateAllOn (2) will turn all outlets on immediately + - 1.3.6.1.4.1.3808.1.1.5.6.1.6 + enum_values: + 1: noCommandAll + 2: immediateAllOn + 3: immediateAllOff + 4: immediateAllReboot + 5: delayedAllOn + 6: delayedAllOff + 7: delayedAllReboot + 8: cancelAllPendingCommands + - name: atsOutletStatusTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.6.2 + type: gauge + help: The size of the outlet status table. - 1.3.6.1.4.1.3808.1.1.5.6.2 + - name: atsOutletStatusTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.1 + type: gauge + help: The index to the outlet entry. - 1.3.6.1.4.1.3808.1.1.5.6.3.1.1 + indexes: + - labelname: atsOutletStatusTableIndex + type: gauge + - name: atsOutletStatusOutletName + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.2 type: DisplayString - help: Indicates the date and time of the last device energy meter reset. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.10 + help: The name of the outlet - 1.3.6.1.4.1.3808.1.1.5.6.3.1.2 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletStatusTableIndex type: gauge - - name: ePDU2DeviceStatusCommandPending - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.11 + - name: atsOutletStatusOutletState + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.3 type: gauge - help: Indicates whether or not the device is processing a pending command. - - 1.3.6.1.4.1.3808.1.1.6.3.4.1.11 + help: Getting this variable will return the outlet state - 1.3.6.1.4.1.3808.1.1.5.6.3.1.3 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletStatusTableIndex type: gauge enum_values: - 1: commandPending - 2: noCommandPending - - name: ePDU2DeviceStatusPowerSupplyAlarm - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.12 + 1: outletStatusOn + 2: outletStatusOff + - name: atsOutletStatusOutletCmdPending + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.4 type: gauge - help: Indicates a power supply alarm is active when value equals alarm (2). - - 1.3.6.1.4.1.3808.1.1.6.3.4.1.12 + help: Getting this variable will return the command pending state of the outlet + - 1.3.6.1.4.1.3808.1.1.5.6.3.1.4 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletStatusTableIndex type: gauge enum_values: - 1: normal - 2: alarm - - name: ePDU2DeviceStatusPowerSupply1Status - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.13 + 1: outletStatusCommandPending + 2: outletStatusNoCommandPending + - name: atsOutletStatusOutletPhase + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.5 type: gauge - help: Indicates whether or not an alarm is active in Power Supply 1. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.13 + help: The phase/s associated with this outlet - 1.3.6.1.4.1.3808.1.1.5.6.3.1.5 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletStatusTableIndex type: gauge enum_values: - 1: normal - 2: alarm - - name: ePDU2DeviceStatusPowerSupply2Status - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.14 + 1: phase1 + 2: phase2 + 3: phase3 + 4: phase1-2 + 5: phase2-3 + 6: phase3-1 + - name: atsOutletStatusOutletBank + oid: 1.3.6.1.4.1.3808.1.1.5.6.3.1.6 type: gauge - help: Indicates whether or not an alarm is active in Power Supply 2. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.14 + help: The bank associated with this outlet. - 1.3.6.1.4.1.3808.1.1.5.6.3.1.6 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletStatusTableIndex type: gauge - enum_values: - 1: normal - 2: alarm - - name: ePDU2DeviceStatusApparentPower - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.15 + - name: atsOutletCtrlTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.6.4 type: gauge - help: The apparent power consumption of the Rack PDU load in VoltAmps (VA). - - 1.3.6.1.4.1.3808.1.1.6.3.4.1.15 + help: The size of the outlet control table. - 1.3.6.1.4.1.3808.1.1.5.6.4 + - name: atsOutletCtrlTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.6.5.1.1 + type: gauge + help: The index to the outlet entry. - 1.3.6.1.4.1.3808.1.1.5.6.5.1.1 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletCtrlTableIndex type: gauge - - name: ePDU2DeviceStatusPowerFactor - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.16 - type: gauge - help: The power factor of the Rack PDU load in hundredths. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.16 + - name: atsOutletCtrlOutletName + oid: 1.3.6.1.4.1.3808.1.1.5.6.5.1.2 + type: DisplayString + help: The name of the outlet - 1.3.6.1.4.1.3808.1.1.5.6.5.1.2 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletCtrlTableIndex type: gauge - - name: ePDU2DeviceStatusRoleType - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.17 + - name: atsOutletCtrlCommand + oid: 1.3.6.1.4.1.3808.1.1.5.6.5.1.3 type: gauge - help: Get this oid shows the role the PDU played on Daisy Chain Group - 1.3.6.1.4.1.3808.1.1.6.3.4.1.17 + help: Getting this variable will return the outlet state - 1.3.6.1.4.1.3808.1.1.5.6.5.1.3 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletCtrlTableIndex type: gauge enum_values: - 1: standalone - 2: host - 3: slave - - name: ePDU2DeviceStatusPowerLoad - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.18 + 1: none + 2: immediateOn + 3: immediateOff + 4: immediateReboot + 5: delayedOn + 6: delayedOff + 7: delayedReboot + 8: cancelPendingCommand + - name: atsOutletCfgTableSize + oid: 1.3.6.1.4.1.3808.1.1.5.6.6 type: gauge - help: The power consumption of the Rack PDU load in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.18 - indexes: - - labelname: ePDU2DeviceStatusIndex - type: gauge - - name: ePDU2DeviceStatusPowerPeakLoad - oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.19 + help: The size of the outlet config table. - 1.3.6.1.4.1.3808.1.1.5.6.6 + - name: atsOutletCfgTableIndex + oid: 1.3.6.1.4.1.3808.1.1.5.6.7.1.1 type: gauge - help: The peak power consumption of the Rack PDU load in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.19 + help: The index to the outlet entry. - 1.3.6.1.4.1.3808.1.1.5.6.7.1.1 indexes: - - labelname: ePDU2DeviceStatusIndex + - labelname: atsOutletCfgTableIndex type: gauge - - name: ePDU2DeviceControlIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.1 - type: gauge - help: The index to the Rack PDU control table entry. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.1 + - name: atsOutletCfgOutletName + oid: 1.3.6.1.4.1.3808.1.1.5.6.7.1.2 + type: DisplayString + help: The name of the outlet - 1.3.6.1.4.1.3808.1.1.5.6.7.1.2 indexes: - - labelname: ePDU2DeviceControlIndex + - labelname: atsOutletCfgTableIndex type: gauge - - name: ePDU2DeviceControlModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.2 + - name: atsOutletCfgPowerOnTime + oid: 1.3.6.1.4.1.3808.1.1.5.6.7.1.3 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.2 + help: The amount of time (in seconds) the outlet will delay powering on at coldstart + or when a command that requires a turn-on delay is issued - 1.3.6.1.4.1.3808.1.1.5.6.7.1.3 indexes: - - labelname: ePDU2DeviceControlIndex + - labelname: atsOutletCfgTableIndex type: gauge - - name: ePDU2DeviceControlName - oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.3 - type: DisplayString - help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.3 + - name: atsOutletCfgPowerOffTime + oid: 1.3.6.1.4.1.3808.1.1.5.6.7.1.4 + type: gauge + help: The amount of time (in seconds) the outlet will delay powering off when + a command that requires a turn-off delay is issued - 1.3.6.1.4.1.3808.1.1.5.6.7.1.4 indexes: - - labelname: ePDU2DeviceControlIndex + - labelname: atsOutletCfgTableIndex type: gauge - - name: ePDU2DeviceControlCommand - oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.4 + - name: atsOutletCfgRebootDuration + oid: 1.3.6.1.4.1.3808.1.1.5.6.7.1.5 type: gauge - help: Setting this OID to immediateAllOn (1) will turn all outlets on immediately - - 1.3.6.1.4.1.3808.1.1.6.3.5.1.4 + help: During a reboot sequence, power is turned off and then back on - 1.3.6.1.4.1.3808.1.1.5.6.7.1.5 indexes: - - labelname: ePDU2DeviceControlIndex + - labelname: atsOutletCfgTableIndex type: gauge - enum_values: - 1: immediateAllOn - 2: immediateAllOff - 3: immediateAllReboot - 4: delayedAllOn - 5: delayedAllOff - 6: delayedAllReboot - 7: cancelAllPendingCommand - 8: noCommand - - name: ePDU2PhaseTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.4.1 + - name: ePDU2Role + oid: 1.3.6.1.4.1.3808.1.1.6.1 type: gauge - help: A Host Rack PDU response total phase number of Rack PDUs on daisy chain - - 1.3.6.1.4.1.3808.1.1.6.4.1 - - name: ePDU2PhaseConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.1 + help: Get this oid shows the role the PDU played on Daisy Chain Group - 1.3.6.1.4.1.3808.1.1.6.1 + enum_values: + 1: standalone + 2: host + 3: slave + - name: ePDU2IdentTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.2.1 type: gauge - help: The index to the Rack PDU phase configuration table entry. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.1 - indexes: - - labelname: ePDU2PhaseConfigIndex - type: gauge - - name: ePDU2PhaseConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.2 + help: PDU as a Host response total PDU ident number on daisy chain - 1.3.6.1.4.1.3808.1.1.6.2.1 + - name: ePDU2IdentIndex + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.1 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.2 + help: The index to the Rack PDU identification table entry. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.1 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseConfigNumber - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.3 + - name: ePDU2IdentModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.2 type: gauge - help: The numeric phase ID. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.3 + help: The Rack PDU identification table entry numeric ID. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.2 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseConfigOverloadRestriction - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.4 - type: gauge - help: This OID controls the behavior of a Switched Rack PDU phase when an overload - condition is possible and additional outlets are requested to be turned on - - 1.3.6.1.4.1.3808.1.1.6.4.2.1.4 + - name: ePDU2IdentName + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.3 + type: DisplayString + help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.3 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - enum_values: - -1: notSupported - 1: alwaysAllowTurnON - 2: restrictOnNearOverload - 3: restrictOnOverload - - name: ePDU2PhaseConfigLowLoadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.5 - type: gauge - help: User-defined low load phase current threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.5 + - name: ePDU2IdentLocation + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.4 + type: DisplayString + help: A user-defined string identifying the location of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.4 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseConfigNearOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.6 - type: gauge - help: User-defined near phase overload current warning threshold in Amps. - - 1.3.6.1.4.1.3808.1.1.6.4.2.1.6 + - name: ePDU2IdentContact + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.5 + type: DisplayString + help: A user-defined string identifying the person to contact of the Rack PDU. + - 1.3.6.1.4.1.3808.1.1.6.2.2.1.5 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseConfigOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.7 - type: gauge - help: User-defined phase overload current threshold in Amps - 1.3.6.1.4.1.3808.1.1.6.4.2.1.7 + - name: ePDU2IdentHardwareRev + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.6 + type: DisplayString + help: The Rack PDU hardware version. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.6 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseConfigPhasePeakLoadReset - oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.8 - type: gauge - help: Setting this OID to reset (2) will cause the existing peak current value - to be replaced by the present load current value - 1.3.6.1.4.1.3808.1.1.6.4.2.1.8 + - name: ePDU2IdentFirmwareRev + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.7 + type: DisplayString + help: The Rack PDU firmware version. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.7 indexes: - - labelname: ePDU2PhaseConfigIndex + - labelname: ePDU2IdentIndex type: gauge - enum_values: - 1: noOperation - 2: reset - - name: ePDU2PhaseStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.1 - type: gauge - help: The index to the Rack PDU phase status table entry. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.1 + - name: ePDU2IdentDateOfManufacture + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.8 + type: DisplayString + help: The date the Rack PDU was manufactured in mm/dd/yyyy format. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.8 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.2 - type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.2 + - name: ePDU2IdentModelName + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.9 + type: DisplayString + help: The Rack PDU model number. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.9 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseStatusNumber - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.3 - type: gauge - help: The numeric phase ID. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.3 + - name: ePDU2IdentSerialNumber + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.10 + type: DisplayString + help: The Rack PDU serial number. - 1.3.6.1.4.1.3808.1.1.6.2.2.1.10 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2IdentIndex type: gauge - - name: ePDU2PhaseStatusLoadState - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.4 + - name: ePDU2IdentIndicator + oid: 1.3.6.1.4.1.3808.1.1.6.2.2.1.11 type: gauge - help: Indicates the present load status of the Rack PDU phase being queried. - - 1.3.6.1.4.1.3808.1.1.6.4.4.1.4 + help: PDU will perform a panel indicator test when the variable is set to testIndicators(2) + - 1.3.6.1.4.1.3808.1.1.6.2.2.1.11 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2IdentIndex type: gauge enum_values: - 1: normal - 2: lowLoad - 3: nearOverload - 4: overload - - name: ePDU2PhaseStatusLoad - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.5 + 1: noTestIndicators + 2: testIndicators + - name: ePDU2DeviceTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.3.1 type: gauge - help: Indicates the current draw, in tenths of Amps, of the load on the Rack - PDU phase being queried. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.5 + help: A Host Rack PDU response total number of Rack PDUs on daisy chain - 1.3.6.1.4.1.3808.1.1.6.3.1 + - name: ePDU2DeviceConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.1 + type: gauge + help: The index to the Rack PDU table entry. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.1 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusVoltage - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.6 + - name: ePDU2DeviceConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.2 type: gauge - help: Indicates the Voltage, in tenths of Volts, of the Rack PDU phase being - queried. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.6 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.2 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusPower - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.7 - type: gauge - help: Indicates the load power, in watts, consumed on the Rack PDU phase being - queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.7 + - name: ePDU2DeviceConfigName + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.3 + type: DisplayString + help: A user-defined string identifying the name of Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.3 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusApparentPower - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.8 - type: gauge - help: Indicates the load apparent power, in VoltAmps (VA), consumed on the Rack - PDU phase being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.8 + - name: ePDU2DeviceConfigLocation + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.4 + type: DisplayString + help: A user-defined string identifying the location of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.4 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusPowerFactor - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.9 - type: gauge - help: Indicates the load power factor, in hundredths, of the Rack PDU phase - being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.9 + - name: ePDU2DeviceConfigContact + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.5 + type: DisplayString + help: A user-defined string identifying the person to contact of the Rack PDU. + - 1.3.6.1.4.1.3808.1.1.6.3.2.1.5 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusPeakLoad - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.10 + - name: ePDU2DeviceConfigDisplayOrientation + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.6 type: gauge - help: The peak current of the Rack PDU phase load in tenths of Amps - 1.3.6.1.4.1.3808.1.1.6.4.4.1.10 - indexes: - - labelname: ePDU2PhaseStatusIndex - type: gauge - - name: ePDU2PhaseStatusPeakLoadTimestamp - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.11 - type: DisplayString - help: Indicates the date and time the phase peak current occurred. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.11 + help: Getting this OID will return the intended physical orientation of the + Seven-Segment Display - 1.3.6.1.4.1.3808.1.1.6.3.2.1.6 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusPeakLoadStartTime - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.12 - type: DisplayString - help: Indicates the date and time of the last phase peak current reset. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.12 + enum_values: + 1: displayNormal + 2: displayReverse + 3: displayRotate90 + 4: displayRotate270 + 5: displayAuto + - name: ePDU2DeviceConfigColdstartDelay + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.7 + type: gauge + help: The amount of delay, measured in seconds, between when power is provided + to the Rack PDU and when the Rack PDU provides basic master power to the outlets + - 1.3.6.1.4.1.3808.1.1.6.3.2.1.7 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2PhaseStatusLineToLineVoltage - oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.13 + - name: ePDU2DeviceConfigCurrentLowLoadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.8 type: gauge - help: Indicates the Line to Line Voltage, in tenths of Volts, of the Rack PDU - phase being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.13 + help: User-defined low current draw alarm threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.8 indexes: - - labelname: ePDU2PhaseStatusIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.5.1 - type: gauge - help: A Host Rack PDU response total bank number of Rack PDUs on daisy chain - - 1.3.6.1.4.1.3808.1.1.6.5.1 - - name: ePDU2BankConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.1 + - name: ePDU2DeviceConfigCurrentNearOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.9 type: gauge - help: The index to the Rack PDU bank configuration table entry. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.1 + help: User-defined near overload current threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.9 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.2 + - name: ePDU2DeviceConfigCurrentOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.10 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.2 + help: User-defined current overload threshold, measured in Amps. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.10 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigNumber - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.3 + - name: ePDU2DeviceConfigPeakLoadReset + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.11 type: gauge - help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.3 + help: Setting this OID to resetAll (2) will cause the existing peak current + value of Rack PDU and its outlets to be replaced by the current load current + value - 1.3.6.1.4.1.3808.1.1.6.3.2.1.11 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigOverloadRestriction - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.4 + enum_values: + 1: noOperation + 2: resetAll + 3: resetDevice + 4: resetOutlets + - name: ePDU2DeviceConfigEnergyReset + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.12 type: gauge - help: This OID controls the behavior of a Switched Rack PDU bank when an overload - condition is possible and additional outlets are requested to be turned on - - 1.3.6.1.4.1.3808.1.1.6.5.2.1.4 + help: Setting this OID to resetAll (2) will cause the device energy meter value + to be reset to zero - 1.3.6.1.4.1.3808.1.1.6.3.2.1.12 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge enum_values: - 1: alwaysAllowTurnON - 2: restrictOnNearOverload - 3: restrictOnOverload - - name: ePDU2BankConfigLowLoadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.5 + 1: noOperation + 2: resetAll + 3: resetDevice + 4: resetOutlets + - name: ePDU2DeviceConfigPowerLowLoadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.13 type: gauge - help: User-defined low load bank current threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.5 + help: User-defined low power draw alarm threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.13 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigNearOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.6 + - name: ePDU2DeviceConfigPowerNearOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.14 type: gauge - help: User-defined near bank overload current warning threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.6 + help: User-defined near overload power threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.14 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.7 + - name: ePDU2DeviceConfigPowerOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.3.2.1.15 type: gauge - help: User-defined bank overload current threshold in Amps - 1.3.6.1.4.1.3808.1.1.6.5.2.1.7 + help: User-defined power overload threshold, measured in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.2.1.15 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceConfigIndex type: gauge - - name: ePDU2BankConfigPeakLoadReset - oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.8 + - name: ePDU2DeviceInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.1 type: gauge - help: Setting this OID to reset (2) will cause the existing peak current value - to be replaced by the present load current value - 1.3.6.1.4.1.3808.1.1.6.5.2.1.8 + help: The index to the Rack PDU Information table entry. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.1 indexes: - - labelname: ePDU2BankConfigIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - enum_values: - 1: noOperation - 2: reset - - name: ePDU2BankInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.1 + - name: ePDU2DeviceInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.2 type: gauge - help: The index to the Rack PDU bank properties table entry. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.1 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.2 indexes: - - labelname: ePDU2BankInfoIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.2 + - name: ePDU2DeviceInfoName + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.3 + type: DisplayString + help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.3 + indexes: + - labelname: ePDU2DeviceInfoIndex + type: gauge + - name: ePDU2DeviceInfoRating + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.4 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.2 + help: The electrical rating of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.4 indexes: - - labelname: ePDU2BankInfoIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankInfoNumber - oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.3 + - name: ePDU2DeviceInfoNumOutlets + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.5 type: gauge - help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.3 + help: The number of outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.5 indexes: - - labelname: ePDU2BankInfoIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.1 + - name: ePDU2DeviceInfoSwitchedOutlets + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.6 type: gauge - help: The index to the Rack PDU bank status table entry. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.1 + help: The number of switched outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.6 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.2 + - name: ePDU2DeviceInfoMeteredOutlets + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.7 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.2 + help: The number of metered outlets on the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.7 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusNumber - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.3 + - name: ePDU2DeviceInfoNumPhases + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.8 type: gauge - help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.3 + help: The number of phases present in the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.8 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusLoadState - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.4 + - name: ePDU2DeviceInfoNumBreakers + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.9 type: gauge - help: Indicates the present load status of the Rack PDU bank being queried. - - 1.3.6.1.4.1.3808.1.1.6.5.4.1.4 + help: The number of metered banks present in the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.9 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - enum_values: - 1: normal - 2: lowLoad - 3: nearOverload - 4: overload - - name: ePDU2BankStatusLoad - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.5 + - name: ePDU2DeviceInfoBreakerRating + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.10 type: gauge - help: Indicates the current draw, in tenths of Amps, of the load on the Rack - PDU bank being queried. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.5 + help: The maximum current rating, measured in Amps, for the Rack PDU - 1.3.6.1.4.1.3808.1.1.6.3.3.1.10 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusPeakLoad - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.6 + - name: ePDU2DeviceInfoOrientation + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.11 type: gauge - help: The peak current of the Rack PDU bank load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.6 + help: Rack PDU orientation. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.11 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2BankStatusPeakLoadTimestamp - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.7 - type: DisplayString - help: Indicates the date and time the bank peak current occurred. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.7 - indexes: - - labelname: ePDU2BankStatusIndex - type: gauge - - name: ePDU2BankStatusPeakLoadStartTime - oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.8 - type: DisplayString - help: Indicates the date and time of the last bank peak current reset. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.8 + enum_values: + 1: orientHorizontal + 2: orientVertical + - name: ePDU2DeviceInfoOutletLayout + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.12 + type: gauge + help: Getting this OID will return outlet layout for the device - 1.3.6.1.4.1.3808.1.1.6.3.3.1.12 indexes: - - labelname: ePDU2BankStatusIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2OutletSwitchedTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.1 - type: gauge - help: The number of switched outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.1.1 - - name: ePDU2OutletSwitchedConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.1 + enum_values: + 1: seqPhaseToNeutral + 2: seqPhaseToPhase + 3: seqOther + - name: ePDU2DeviceInfoPowerLimit + oid: 1.3.6.1.4.1.3808.1.1.6.3.3.1.13 type: gauge - help: The index to the Rack PDU switched outlet configuration table entry. - - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.1 + help: The maximum power limit, measured in Watt, for the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.3.1.13 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceInfoIndex type: gauge - - name: ePDU2OutletSwitchedConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.2 + - name: ePDU2DeviceStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.1 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.2 + help: The index to the Rack PDU status table entry. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.1 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedConfigNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.3 + - name: ePDU2DeviceStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.2 type: gauge - help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.3 + help: The Rack PDU numeric ID - 1.3.6.1.4.1.3808.1.1.6.3.4.1.2 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedConfigName - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.4 + - name: ePDU2DeviceStatusName + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.3 type: DisplayString - help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.4 + help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.3 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedConfigPowerOnTime - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.5 + - name: ePDU2DeviceStatusLoadState + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.4 type: gauge - help: The amount of time (in seconds) the outlet will delay powering on at coldstart - or when a command that requires a turn-on delay is issued - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.5 + help: Indicates the present load status of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.4 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedConfigPowerOffTime - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.6 + enum_values: + 1: noLoadAlarm + 2: underCurrentAlarm + 3: nearOverCurrentAlarm + 4: overCurrentAlarm + - name: ePDU2DeviceStatusCurrentLoad + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.5 type: gauge - help: The amount of time (in seconds) the outlet will delay powering off when - a command that requires a turn-off delay is issued - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.6 + help: The power consumption of the Rack PDU load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.5 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedConfigRebootDuration - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.7 + - name: ePDU2DeviceStatusCurrentPeakLoad + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.6 type: gauge - help: During a reboot sequence, power is turned off and then back on - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.7 + help: The peak power consumption of the Rack PDU load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.6 indexes: - - labelname: ePDU2OutletSwitchedConfigIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.1 - type: gauge - help: The index to the Rack PDU switched outlet information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.1 + - name: ePDU2DeviceStatusPeakLoadTimestamp + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.7 + type: DisplayString + help: Indicates the date and time that peak load occurred. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.7 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.2 - type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.2 + - name: ePDU2DeviceStatusPeakLoadStartTime + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.8 + type: DisplayString + help: Indicates the date and time of the last device peak load reset. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.8 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.3 + - name: ePDU2DeviceStatusEnergy + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.9 type: gauge - help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.3 + help: A user resettable energy meter measuring Rack PDU load energy consumption + in tenths of kilowatt-hours. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.9 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoName - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.4 + - name: ePDU2DeviceStatusEnergyStartTime + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.10 type: DisplayString - help: The numeric switched outlet name. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.4 + help: Indicates the date and time of the last device energy meter reset. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.10 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoPhaseLayout - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.5 + - name: ePDU2DeviceStatusCommandPending + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.11 type: gauge - help: 'This OID describes the phase connections of the referenced outlet as - follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase - 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.5' + help: Indicates whether or not the device is processing a pending command. - + 1.3.6.1.4.1.3808.1.1.6.3.4.1.11 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedInfoBank - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.6 + enum_values: + 1: commandPending + 2: noCommandPending + - name: ePDU2DeviceStatusPowerSupplyAlarm + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.12 type: gauge - help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.6 + help: Indicates a power supply alarm is active when value equals alarm (2). + - 1.3.6.1.4.1.3808.1.1.6.3.4.1.12 indexes: - - labelname: ePDU2OutletSwitchedInfoIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.1 + enum_values: + 1: normal + 2: alarm + - name: ePDU2DeviceStatusPowerSupply1Status + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.13 type: gauge - help: The index to the Rack PDU switched outlet status information table entry. - - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.1 + help: Indicates whether or not an alarm is active in Power Supply 1. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.13 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.2 + enum_values: + 1: normal + 2: alarm + - name: ePDU2DeviceStatusPowerSupply2Status + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.14 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.2 + help: Indicates whether or not an alarm is active in Power Supply 2. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.14 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedStatusNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.3 + enum_values: + 1: normal + 2: alarm + - name: ePDU2DeviceStatusApparentPower + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.15 type: gauge - help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.3 + help: The apparent power consumption of the Rack PDU load in VoltAmps (VA). + - 1.3.6.1.4.1.3808.1.1.6.3.4.1.15 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedStatusName - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.4 - type: DisplayString - help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.4 + - name: ePDU2DeviceStatusPowerFactor + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.16 + type: gauge + help: The power factor of the Rack PDU load in hundredths. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.16 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedStatusState - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5 + - name: ePDU2DeviceStatusRoleType + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.17 type: gauge - help: Indicates the present switch state of the Rack PDU switched outlet being - queried. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5 + help: Get this oid shows the role the PDU played on Daisy Chain Group - 1.3.6.1.4.1.3808.1.1.6.3.4.1.17 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge enum_values: - 1: outletStatusOn - 2: outletStatusOff - - name: ePDU2OutletSwitchedStatusCommandPending - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.6 + 1: standalone + 2: host + 3: slave + - name: ePDU2DeviceStatusPowerLoad + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.18 type: gauge - help: Getting this variable will return the command pending state of the outlet - - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.6 + help: The power consumption of the Rack PDU load in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.18 indexes: - - labelname: ePDU2OutletSwitchedStatusIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - enum_values: - 1: outletStatusCommandPending - 2: outletStatusNoCommandPending - - name: ePDU2OutletSwitchedControlIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.1 + - name: ePDU2DeviceStatusPowerPeakLoad + oid: 1.3.6.1.4.1.3808.1.1.6.3.4.1.19 type: gauge - help: The index to the Rack PDU switched outlet control data table entry. - - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.1 + help: The peak power consumption of the Rack PDU load in Watts. - 1.3.6.1.4.1.3808.1.1.6.3.4.1.19 indexes: - - labelname: ePDU2OutletSwitchedControlIndex + - labelname: ePDU2DeviceStatusIndex type: gauge - - name: ePDU2OutletSwitchedControlModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.2 + - name: ePDU2DeviceControlIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.1 type: gauge - help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.2 + help: The index to the Rack PDU control table entry. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.1 indexes: - - labelname: ePDU2OutletSwitchedControlIndex + - labelname: ePDU2DeviceControlIndex type: gauge - - name: ePDU2OutletSwitchedControlNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.3 + - name: ePDU2DeviceControlModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.2 type: gauge - help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.3 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.2 indexes: - - labelname: ePDU2OutletSwitchedControlIndex + - labelname: ePDU2DeviceControlIndex type: gauge - - name: ePDU2OutletSwitchedControlName - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.4 + - name: ePDU2DeviceControlName + oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.3 type: DisplayString - help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.4 + help: A user-defined string identifying the name of the Rack PDU. - 1.3.6.1.4.1.3808.1.1.6.3.5.1.3 indexes: - - labelname: ePDU2OutletSwitchedControlIndex + - labelname: ePDU2DeviceControlIndex type: gauge - - name: ePDU2OutletSwitchedControlCommand - oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.5 + - name: ePDU2DeviceControlCommand + oid: 1.3.6.1.4.1.3808.1.1.6.3.5.1.4 type: gauge - help: Getting this variable will return the outlet state - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.5 + help: Setting this OID to immediateAllOn (1) will turn all outlets on immediately + - 1.3.6.1.4.1.3808.1.1.6.3.5.1.4 indexes: - - labelname: ePDU2OutletSwitchedControlIndex + - labelname: ePDU2DeviceControlIndex type: gauge enum_values: - 1: immediateOn - 2: immediateOff - 3: immediateReboot - 4: delayedOn - 5: delayedOff - 6: delayedReboot - 7: cancelPendingCommand - 8: outletIdentify - - name: ePDU2OutletMeteredTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.1 + 1: immediateAllOn + 2: immediateAllOff + 3: immediateAllReboot + 4: delayedAllOn + 5: delayedAllOff + 6: delayedAllReboot + 7: cancelAllPendingCommand + 8: noCommand + - name: ePDU2PhaseTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.4.1 type: gauge - help: The number of metered outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.2.1 - - name: ePDU2OutletMeteredConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.1 + help: A Host Rack PDU response total phase number of Rack PDUs on daisy chain + - 1.3.6.1.4.1.3808.1.1.6.4.1 + - name: ePDU2PhaseConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.1 type: gauge - help: The index to the Rack PDU metered outlet configuration table entry. - - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.1 + help: The index to the Rack PDU phase configuration table entry. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.1 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.2 + - name: ePDU2PhaseConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.2 type: gauge - help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.2 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.2 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredConfigNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.3 + - name: ePDU2PhaseConfigNumber + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.3 type: gauge - help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.3 - indexes: - - labelname: ePDU2OutletMeteredConfigIndex - type: gauge - - name: ePDU2OutletMeteredConfigName - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.4 - type: DisplayString - help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.4 + help: The numeric phase ID. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.3 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredConfigLowLoadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.5 + - name: ePDU2PhaseConfigOverloadRestriction + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.4 type: gauge - help: User-defined outlet low load current threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.5 + help: This OID controls the behavior of a Switched Rack PDU phase when an overload + condition is possible and additional outlets are requested to be turned on + - 1.3.6.1.4.1.3808.1.1.6.4.2.1.4 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredConfigNearOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.6 + enum_values: + -1: notSupported + 1: alwaysAllowTurnON + 2: restrictOnNearOverload + 3: restrictOnOverload + - name: ePDU2PhaseConfigLowLoadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.5 type: gauge - help: User-defined outlet near overload warning threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.6 + help: User-defined low load phase current threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.4.2.1.5 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredConfigOverloadThreshold - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.7 + - name: ePDU2PhaseConfigNearOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.6 type: gauge - help: User-defined outlet overload current threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.7 + help: User-defined near phase overload current warning threshold in Amps. - + 1.3.6.1.4.1.3808.1.1.6.4.2.1.6 indexes: - - labelname: ePDU2OutletMeteredConfigIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.1 + - name: ePDU2PhaseConfigOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.7 type: gauge - help: The index to the Rack PDU metered information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.1 + help: User-defined phase overload current threshold in Amps - 1.3.6.1.4.1.3808.1.1.6.4.2.1.7 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.2 + - name: ePDU2PhaseConfigPhasePeakLoadReset + oid: 1.3.6.1.4.1.3808.1.1.6.4.2.1.8 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.2 + help: Setting this OID to reset (2) will cause the existing peak current value + to be replaced by the present load current value - 1.3.6.1.4.1.3808.1.1.6.4.2.1.8 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseConfigIndex type: gauge - - name: ePDU2OutletMeteredInfoNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.3 + enum_values: + 1: noOperation + 2: reset + - name: ePDU2PhaseInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.3.1.1 type: gauge - help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.3 + help: The index to the Rack PDU phase properties table entry. - 1.3.6.1.4.1.3808.1.1.6.4.3.1.1 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseInfoIndex type: gauge - - name: ePDU2OutletMeteredInfoName - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.4 - type: DisplayString - help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.4 + - name: ePDU2PhaseInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.3.1.2 + type: gauge + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.4.3.1.2 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseInfoIndex type: gauge - - name: ePDU2OutletMeteredInfoLayout - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.5 + - name: ePDU2PhaseInfoNumber + oid: 1.3.6.1.4.1.3808.1.1.6.4.3.1.3 type: gauge - help: 'This OID describes the phase connections of the referenced outlet as - follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase - 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.5' + help: The numeric phase ID. - 1.3.6.1.4.1.3808.1.1.6.4.3.1.3 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseInfoIndex type: gauge - - name: ePDU2OutletMeteredInfoRating - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.6 + - name: ePDU2PhaseStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.1 type: gauge - help: Maximum power rating of Rack PDU metered outlet. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.6 + help: The index to the Rack PDU phase status table entry. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.1 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredInfoBank - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.7 + - name: ePDU2PhaseStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.2 type: gauge - help: This outlet's numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.7 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.2 indexes: - - labelname: ePDU2OutletMeteredInfoIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.1 + - name: ePDU2PhaseStatusNumber + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.3 type: gauge - help: The index to the Rack PDU metered status table entry. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.1 + help: The numeric phase ID. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.3 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.2 + - name: ePDU2PhaseStatusLoadState + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.4 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.2 + help: Indicates the present load status of the Rack PDU phase being queried. + - 1.3.6.1.4.1.3808.1.1.6.4.4.1.4 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.3 + enum_values: + 1: normal + 2: lowLoad + 3: nearOverload + 4: overload + - name: ePDU2PhaseStatusLoad + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.5 type: gauge - help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.3 + help: Indicates the current draw, in tenths of Amps, of the load on the Rack + PDU phase being queried. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.5 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusName - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.4 - type: DisplayString - help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.4 + - name: ePDU2PhaseStatusVoltage + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.6 + type: gauge + help: Indicates the Voltage, in tenths of Volts, of the Rack PDU phase being + queried. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.6 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusAlarm - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.5 + - name: ePDU2PhaseStatusPower + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.7 type: gauge - help: Getting this OID will return the current outlet alarm. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.5 + help: Indicates the load power, in watts, consumed on the Rack PDU phase being + queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.7 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - enum_values: - 1: noLoadAlarm - 2: underCurrentAlarm - 3: nearOverCurrentAlarm - 4: overCurrentAlarm - - name: ePDU2OutletMeteredStatusLoad - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.6 + - name: ePDU2PhaseStatusApparentPower + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.8 type: gauge - help: Getting this OID will return the measured Outlet load for an Outlet Monitored - Rack PDU in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.6 + help: Indicates the load apparent power, in VoltAmps (VA), consumed on the Rack + PDU phase being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.8 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusActivePower - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.7 + - name: ePDU2PhaseStatusPowerFactor + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.9 type: gauge - help: Getting this OID will return the measured Outlet load for an Outlet Monitored - Rack PDU in watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.7 + help: Indicates the load power factor, in hundredths, of the Rack PDU phase + being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.9 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusPeakPower - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.8 + - name: ePDU2PhaseStatusPeakLoad + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.10 type: gauge - help: The peak power consumption of the Rack PDU load in watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.8 + help: The peak current of the Rack PDU phase load in tenths of Amps - 1.3.6.1.4.1.3808.1.1.6.4.4.1.10 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusPeakPowerTimestamp - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.9 + - name: ePDU2PhaseStatusPeakLoadTimestamp + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.11 type: DisplayString - help: Get this oid shows the date and time that peak power consumption occurred. - - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.9 + help: Indicates the date and time the phase peak current occurred. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.11 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusPeakPowerStartTime - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.10 + - name: ePDU2PhaseStatusPeakLoadStartTime + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.12 type: DisplayString - help: Get this oid shows the date and time that peak power consumption started. - - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.10 + help: Indicates the date and time of the last phase peak current reset. - 1.3.6.1.4.1.3808.1.1.6.4.4.1.12 indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMeteredStatusEnergy - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.11 + - name: ePDU2PhaseStatusLineToLineVoltage + oid: 1.3.6.1.4.1.3808.1.1.6.4.4.1.13 type: gauge - help: Energy meter measuring Rack PDU load energy consumption in tenths of kilowatt-hours. - - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.11 + help: Indicates the Line to Line Voltage, in tenths of Volts, of the Rack PDU + phase being queried - 1.3.6.1.4.1.3808.1.1.6.4.4.1.13 indexes: - - labelname: ePDU2OutletMeteredStatusIndex - type: gauge - - name: ePDU2OutletMeteredStatusEnergyStart - oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.12 - type: DisplayString - help: Indicates the date and time of the last device energy meter reset. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.12 - indexes: - - labelname: ePDU2OutletMeteredStatusIndex + - labelname: ePDU2PhaseStatusIndex type: gauge - - name: ePDU2OutletMonitoredTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.1 + - name: ePDU2BankTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.5.1 type: gauge - help: The number of monitored outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.3.1 - - name: ePDU2OutletMonitoredConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.1 + help: A Host Rack PDU response total bank number of Rack PDUs on daisy chain + - 1.3.6.1.4.1.3808.1.1.6.5.1 + - name: ePDU2BankConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.1 type: gauge - help: The index to the Rack PDU monitored outlet configuration table entry. - - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.1 + help: The index to the Rack PDU bank configuration table entry. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.1 indexes: - - labelname: ePDU2OutletMonitoredConfigIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.2 + - name: ePDU2BankConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.2 type: gauge - help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.2 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.2 indexes: - - labelname: ePDU2OutletMonitoredConfigIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredConfigNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.3 + - name: ePDU2BankConfigNumber + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.3 type: gauge - help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.3 + help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.3 indexes: - - labelname: ePDU2OutletMonitoredConfigIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredConfigName - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.4 - type: DisplayString - help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.4 + - name: ePDU2BankConfigOverloadRestriction + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.4 + type: gauge + help: This OID controls the behavior of a Switched Rack PDU bank when an overload + condition is possible and additional outlets are requested to be turned on + - 1.3.6.1.4.1.3808.1.1.6.5.2.1.4 indexes: - - labelname: ePDU2OutletMonitoredConfigIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.1 + enum_values: + 1: alwaysAllowTurnON + 2: restrictOnNearOverload + 3: restrictOnOverload + - name: ePDU2BankConfigLowLoadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.5 type: gauge - help: The index to the Rack PDU monitored information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.1 + help: User-defined low load bank current threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.5 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.2 + - name: ePDU2BankConfigNearOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.6 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.2 + help: User-defined near bank overload current warning threshold in Amps. - 1.3.6.1.4.1.3808.1.1.6.5.2.1.6 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredInfoNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.3 + - name: ePDU2BankConfigOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.7 type: gauge - help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.3 + help: User-defined bank overload current threshold in Amps - 1.3.6.1.4.1.3808.1.1.6.5.2.1.7 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredInfoName - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.4 - type: DisplayString - help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.4 + - name: ePDU2BankConfigPeakLoadReset + oid: 1.3.6.1.4.1.3808.1.1.6.5.2.1.8 + type: gauge + help: Setting this OID to reset (2) will cause the existing peak current value + to be replaced by the present load current value - 1.3.6.1.4.1.3808.1.1.6.5.2.1.8 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankConfigIndex type: gauge - - name: ePDU2OutletMonitoredInfoLayout - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.5 + enum_values: + 1: noOperation + 2: reset + - name: ePDU2BankInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.1 type: gauge - help: 'This OID describes the phase connections of the referenced outlet as - follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase - 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.5' + help: The index to the Rack PDU bank properties table entry. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.1 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankInfoIndex type: gauge - - name: ePDU2OutletMonitoredInfoRating - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.6 + - name: ePDU2BankInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.2 type: gauge - help: Maximum power rating of Rack PDU monitored outlet. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.6 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.2 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankInfoIndex type: gauge - - name: ePDU2OutletMonitoredInfoBank - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.7 + - name: ePDU2BankInfoNumber + oid: 1.3.6.1.4.1.3808.1.1.6.5.3.1.3 type: gauge - help: This outlet's numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.7 + help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.3.1.3 indexes: - - labelname: ePDU2OutletMonitoredInfoIndex + - labelname: ePDU2BankInfoIndex type: gauge - - name: ePDU2OutletMonitoredStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.1 + - name: ePDU2BankStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.1 type: gauge - help: The index to the Rack PDU monitored status table entry. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.1 + help: The index to the Rack PDU bank status table entry. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.1 indexes: - - labelname: ePDU2OutletMonitoredStatusIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2OutletMonitoredStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.2 + - name: ePDU2BankStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.2 type: gauge - help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.2 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.2 indexes: - - labelname: ePDU2OutletMonitoredStatusIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2OutletMonitoredStatusNumber - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.3 + - name: ePDU2BankStatusNumber + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.3 type: gauge - help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.3 + help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.3 indexes: - - labelname: ePDU2OutletMonitoredStatusIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2OutletMonitoredStatusName - oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.4 - type: DisplayString - help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.4 + - name: ePDU2BankStatusLoadState + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.4 + type: gauge + help: Indicates the present load status of the Rack PDU bank being queried. + - 1.3.6.1.4.1.3808.1.1.6.5.4.1.4 indexes: - - labelname: ePDU2OutletMonitoredStatusIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2GroupNumberOfDevices - oid: 1.3.6.1.4.1.3808.1.1.6.8.1 - type: gauge - help: Getting this OID will return the number of Rack PDU devices contributing - to the Daisy Chain group power and energy values - 1.3.6.1.4.1.3808.1.1.6.8.1 - - name: ePDU2GroupTotalPower - oid: 1.3.6.1.4.1.3808.1.1.6.8.2 - type: gauge - help: Getting this OID will return the total power consumption of the Rack PDU - Daisy Chain group devices in watts - 1.3.6.1.4.1.3808.1.1.6.8.2 - - name: ePDU2GroupTotalEnergy - oid: 1.3.6.1.4.1.3808.1.1.6.8.3 - type: gauge - help: Getting this OID will return the total energy consumption of the Rack - PDU Daisy Chain group devices in tenths of kilowatt-hours - 1.3.6.1.4.1.3808.1.1.6.8.3 - - name: ePDU2GroupEnergyReset - oid: 1.3.6.1.4.1.3808.1.1.6.8.4 - type: gauge - help: Setting this OID to reset (2) will cause the device energy meter value - on each device in the Rack PDU Daisy Chain group to be reset to zero - 1.3.6.1.4.1.3808.1.1.6.8.4 enum_values: - 1: noOperation - 2: reset - - name: ePDU2GroupPeakRecordReset - oid: 1.3.6.1.4.1.3808.1.1.6.8.5 - type: gauge - help: Setting this OID to reset (2) will cause the device peak record value - on each device in the Rack PDU Daisy Chain group to be reset to current load/power - - 1.3.6.1.4.1.3808.1.1.6.8.5 - enum_values: - 1: noOperation - 2: reset - - name: ePDU2SourceTableSize - oid: 1.3.6.1.4.1.3808.1.1.6.9.1 - type: gauge - help: A Host Automatic Transfer Switch response total number of Automatic Transfer - Switches on daisy chain - 1.3.6.1.4.1.3808.1.1.6.9.1 - - name: ePDU2SourceConfigIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.1 + 1: normal + 2: lowLoad + 3: nearOverload + 4: overload + - name: ePDU2BankStatusLoad + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.5 type: gauge - help: The index to the Automatic Transfer Switch table entry. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.1 + help: Indicates the current draw, in tenths of Amps, of the load on the Rack + PDU bank being queried. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.5 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2SourceConfigModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.2 + - name: ePDU2BankStatusPeakLoad + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.6 type: gauge - help: The Automatic Transfer Switch numeric ID. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.2 + help: The peak current of the Rack PDU bank load in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.6 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2SourceConfigPreferredSource - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.3 - type: gauge - help: This variable returns the preferred source of power when both sources - are OK - 1.3.6.1.4.1.3808.1.1.6.9.2.1.3 + - name: ePDU2BankStatusPeakLoadTimestamp + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.7 + type: DisplayString + help: Indicates the date and time the bank peak current occurred. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.7 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2BankStatusIndex type: gauge - enum_values: - 1: sourceA - 2: sourceB - 3: none - - name: ePDU2SourceConfigFrequencyDeviation - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.4 - type: gauge - help: To configure the frequency deviation. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.4 + - name: ePDU2BankStatusPeakLoadStartTime + oid: 1.3.6.1.4.1.3808.1.1.6.5.4.1.8 + type: DisplayString + help: Indicates the date and time of the last bank peak current reset. - 1.3.6.1.4.1.3808.1.1.6.5.4.1.8 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2BankStatusIndex type: gauge - - name: ePDU2SourceConfigVoltageSensitivity - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.5 + - name: ePDU2OutletSwitchedTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.1 type: gauge - help: 'This variable defines the sensitivity to changes in voltage: high(1) - for best protection, low(3) for frequent small line voltage changes. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.5' + help: The number of switched outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.1.1 + - name: ePDU2OutletSwitchedConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.1 + type: gauge + help: The index to the Rack PDU switched outlet configuration table entry. - + 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.1 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - enum_values: - 1: high - 2: medium - 3: low - - name: ePDU2SourceConfigNominalVoltage - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.6 + - name: ePDU2OutletSwitchedConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.2 type: gauge - help: This variable returns the nominal voltage of the input. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.6 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.2 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - - name: ePDU2SourceConfigTransferVoltageRange - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.7 + - name: ePDU2OutletSwitchedConfigNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.3 type: gauge - help: This variable defines the range of acceptable voltage from a power source - - 1.3.6.1.4.1.3808.1.1.6.9.2.1.7 + help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.3 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - enum_values: - 1: wide - 2: medium - 3: narrow - - name: ePDU2SourceConfigNarrowRangeValue - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.8 - type: gauge - help: To configure the Narrow Range value of acceptable voltage from a power - source. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.8 + - name: ePDU2OutletSwitchedConfigName + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.4 + type: DisplayString + help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.4 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - - name: ePDU2SourceConfigMediumRangeValue - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.9 + - name: ePDU2OutletSwitchedConfigPowerOnTime + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.5 type: gauge - help: To configure the Medium Range value of acceptable voltage from a power - source. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.9 + help: The amount of time (in seconds) the outlet will delay powering on at coldstart + or when a command that requires a turn-on delay is issued - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.5 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - - name: ePDU2SourceConfigWideRangeValue - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.10 + - name: ePDU2OutletSwitchedConfigPowerOffTime + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.6 type: gauge - help: To configure the Wide Range value of acceptable voltage from a power source. - - 1.3.6.1.4.1.3808.1.1.6.9.2.1.10 + help: The amount of time (in seconds) the outlet will delay powering off when + a command that requires a turn-off delay is issued - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.6 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - - name: ePDU2EventCountsReset - oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.11 + - name: ePDU2OutletSwitchedConfigRebootDuration + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.7 type: gauge - help: Setting this variable will clear all event counts in Automatic Transfer - Switch. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.11 + help: During a reboot sequence, power is turned off and then back on - 1.3.6.1.4.1.3808.1.1.6.6.1.2.1.7 indexes: - - labelname: ePDU2SourceConfigIndex + - labelname: ePDU2OutletSwitchedConfigIndex type: gauge - enum_values: - 1: none - 2: clear - - name: ePDU2SourceInfoIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.1 + - name: ePDU2OutletSwitchedInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.1 type: gauge - help: The index to the Automatic Transfer Switch Information table entry. - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.1 + help: The index to the Rack PDU switched outlet information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.1 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.2 + - name: ePDU2OutletSwitchedInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.2 type: gauge - help: The Automatic Transfer Switch numeric ID. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.2 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.2 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoSourceSwitch - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.3 + - name: ePDU2OutletSwitchedInfoNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.3 type: gauge - help: The Source Switch event counts of Automatic Transfer Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.3 + help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.3 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoSourcePreferenceChange - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.4 - type: gauge - help: The Source Preference Change event counts of Automatic Transfer Switch. - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.4 + - name: ePDU2OutletSwitchedInfoName + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.4 + type: DisplayString + help: The numeric switched outlet name. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.4 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoPreferredSourceFreqOutofRange - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.5 + - name: ePDU2OutletSwitchedInfoPhaseLayout + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.5 type: gauge - help: The Preferred Source Frequency Out of Range event counts of Automatic - Transfer Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.5 + help: 'This OID describes the phase connections of the referenced outlet as + follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase + 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.5' indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoPreferredSourceVoltOutofRange - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.6 + - name: ePDU2OutletSwitchedInfoBank + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.6 type: gauge - help: The Preferred Source Voltage Out of Range event counts of Automatic Transfer - Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.6 + help: The numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.3.1.6 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedInfoIndex type: gauge - - name: ePDU2SourceInfoDeviceCurrentOverload - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.7 + - name: ePDU2OutletSwitchedStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.1 type: gauge - help: The Device Current Overload event counts of Automatic Transfer Switch. - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.7 + help: The index to the Rack PDU switched outlet status information table entry. + - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.1 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceInfoBank1Overload - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.8 + - name: ePDU2OutletSwitchedStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.2 type: gauge - help: The Bank 1 Current Overload event counts of Automatic Transfer Switch - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.8 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.2 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceInfoBank2Overload - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.9 + - name: ePDU2OutletSwitchedStatusNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.3 type: gauge - help: The Bank 2 Current Overload event counts of Automatic Transfer Switch - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.9 + help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.3 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceInfoBank3Overload - oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.10 - type: gauge - help: The Bank 3 Current Overload event counts of Automatic Transfer Switch - - 1.3.6.1.4.1.3808.1.1.6.9.3.1.10 + - name: ePDU2OutletSwitchedStatusName + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.4 + type: DisplayString + help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.4 indexes: - - labelname: ePDU2SourceInfoIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceStatusIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.1 + - name: ePDU2OutletSwitchedStatusState + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5 type: gauge - help: The index to the Automatic Transfer Switch status table entry. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.1 + help: Indicates the present switch state of the Rack PDU switched outlet being + queried. - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.5 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceStatusModuleIndex - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.2 + enum_values: + 1: outletStatusOn + 2: outletStatusOff + - name: ePDU2OutletSwitchedStatusCommandPending + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.6 type: gauge - help: The Automatic Transfer Switch numeric ID - 1.3.6.1.4.1.3808.1.1.6.9.4.1.2 + help: Getting this variable will return the command pending state of the outlet + - 1.3.6.1.4.1.3808.1.1.6.6.1.4.1.6 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedStatusIndex type: gauge - - name: ePDU2SourceStatusSelectedSource - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.3 + enum_values: + 1: outletStatusCommandPending + 2: outletStatusNoCommandPending + - name: ePDU2OutletSwitchedControlIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.1 type: gauge - help: This variable returns the current source of power. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.3 + help: The index to the Rack PDU switched outlet control data table entry. - + 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.1 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedControlIndex type: gauge - enum_values: - 1: sourceA - 2: sourceB - 3: none - - name: ePDU2SourceStatusNominalFrequency - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.4 + - name: ePDU2OutletSwitchedControlModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.2 type: gauge - help: The Nominal Frequency in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.4 + help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.2 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedControlIndex type: gauge - - name: ePDU2SourceStatusSourceAVoltage - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.5 + - name: ePDU2OutletSwitchedControlNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.3 type: gauge - help: The input voltage of source A in 0.1 Volt. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.5 + help: The numeric switched outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.3 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedControlIndex type: gauge - - name: ePDU2SourceStatusSourceBVoltage - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.6 - type: gauge - help: The input voltage of source B in 0.1 Volt. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.6 + - name: ePDU2OutletSwitchedControlName + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.4 + type: DisplayString + help: The user-defined switched outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.4 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedControlIndex type: gauge - - name: ePDU2SourceStatusSourceAFrequency - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.7 + - name: ePDU2OutletSwitchedControlCommand + oid: 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.5 type: gauge - help: The input frequency of source A in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.7 + help: Getting this variable will return the outlet state - 1.3.6.1.4.1.3808.1.1.6.6.1.5.1.5 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletSwitchedControlIndex type: gauge - - name: ePDU2SourceStatusSourceBFrequency - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.8 + enum_values: + 1: immediateOn + 2: immediateOff + 3: immediateReboot + 4: delayedOn + 5: delayedOff + 6: delayedReboot + 7: cancelPendingCommand + 8: outletIdentify + - name: ePDU2OutletMeteredTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.1 type: gauge - help: The input frequency of source B in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.8 + help: The number of metered outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.2.1 + - name: ePDU2OutletMeteredConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.1 + type: gauge + help: The index to the Rack PDU metered outlet configuration table entry. - + 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.1 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - - name: ePDU2SourceStatusSourceAVolStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.9 + - name: ePDU2OutletMeteredConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.2 type: gauge - help: The input voltage status of source A. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.9 + help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.2 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: normal - 2: overVoltage - 3: underVoltage - - name: ePDU2SourceStatusSourceBVolStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.10 + - name: ePDU2OutletMeteredConfigNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.3 type: gauge - help: The input voltage status of source B. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.10 + help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.3 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: normal - 2: overVoltage - 3: underVoltage - - name: ePDU2SourceStatusSourceAFreqStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.11 - type: gauge - help: The input frequency status of source A. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.11 + - name: ePDU2OutletMeteredConfigName + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.4 + type: DisplayString + help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.4 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: normal - 2: overFrequency - 3: underFrequency - - name: ePDU2SourceStatusSourceBFreqStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.12 + - name: ePDU2OutletMeteredConfigLowLoadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.5 type: gauge - help: The input frequency status of source B. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.12 + help: User-defined outlet low load current threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.5 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: normal - 2: overFrequency - 3: underFrequency - - name: ePDU2SourceStatusSourcePhaseSync - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.13 + - name: ePDU2OutletMeteredConfigNearOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.6 type: gauge - help: This variable returns the status of the phase sync. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.13 + help: User-defined outlet near overload warning threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.6 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: inSync - 2: outOfSync - - name: ePDU2SourceStatusPowerSupplySourceAStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.14 + - name: ePDU2OutletMeteredConfigOverloadThreshold + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.7 type: gauge - help: This variable returns the status of the power supply in system - 1.3.6.1.4.1.3808.1.1.6.9.4.1.14 + help: User-defined outlet overload current threshold in Watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.2.1.7 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredConfigIndex type: gauge - enum_values: - 1: normal - 2: failed3p3v - 3: failed24v - 4: failed3p3and24v - - name: ePDU2SourceStatusPowerSupplySourceBStatus - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.15 + - name: ePDU2OutletMeteredInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.1 type: gauge - help: This variable returns the status of the power supply in system - 1.3.6.1.4.1.3808.1.1.6.9.4.1.15 + help: The index to the Rack PDU metered information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.1 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - enum_values: - 1: normal - 2: failed3p3v - 3: failed24v - 4: failed3p3and24v - - name: ePDU2SourceStatusRedundancyState - oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.16 + - name: ePDU2OutletMeteredInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.2 type: gauge - help: This variable returns the current redundancy state of the ATS - 1.3.6.1.4.1.3808.1.1.6.9.4.1.16 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.2 indexes: - - labelname: ePDU2SourceStatusIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - enum_values: - 1: atsRedundancyLost - 2: atsFullyRedundant - ddwrt: - walk: - - 1.3.6.1.2.1.25.2 - - 1.3.6.1.4.1.2021.10.1.1 - - 1.3.6.1.4.1.2021.10.1.2 - - 1.3.6.1.4.1.2021.10.1.5 - - 1.3.6.1.4.1.2021.11 - - 1.3.6.1.4.1.2021.4 - metrics: - - name: hrMemorySize - oid: 1.3.6.1.2.1.25.2.2 - type: gauge - help: The amount of physical read-write main memory, typically RAM, contained - by the host. - 1.3.6.1.2.1.25.2.2 - - name: hrStorageIndex - oid: 1.3.6.1.2.1.25.2.3.1.1 + - name: ePDU2OutletMeteredInfoNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.3 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 + help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.3 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - lookups: - - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 - type: DisplayString - - labels: [] - labelname: hrStorageIndex - - name: hrStorageType - oid: 1.3.6.1.2.1.25.2.3.1.2 - type: OctetString - help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 + - name: ePDU2OutletMeteredInfoName + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.4 + type: DisplayString + help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.4 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredInfoLayout + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.5 + type: gauge + help: 'This OID describes the phase connections of the referenced outlet as + follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase + 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.5' indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredInfoRating + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.6 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 + help: Maximum power rating of Rack PDU metered outlet. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.6 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredInfoBank + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.7 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 + help: This outlet's numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.3.1.7 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredInfoIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.1 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 + help: The index to the Rack PDU metered status table entry. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.1 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredStatusIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.2 + type: gauge + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.2 indexes: - - labelname: hrStorageIndex + - labelname: ePDU2OutletMeteredStatusIndex type: gauge - lookups: - - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 - type: DisplayString - - labels: [] - labelname: hrStorageIndex - - name: laIndex - oid: 1.3.6.1.4.1.2021.10.1.1 + - name: ePDU2OutletMeteredStatusNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.3 type: gauge - help: reference index/row number for each observed loadave. - 1.3.6.1.4.1.2021.10.1.1 + help: The numeric metered outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.3 indexes: - - labelname: laIndex + - labelname: ePDU2OutletMeteredStatusIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredStatusName + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.4 type: DisplayString - help: The list of loadave names we're watching. - 1.3.6.1.4.1.2021.10.1.2 + help: The user-defined metered outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.4 indexes: - - labelname: laIndex + - labelname: ePDU2OutletMeteredStatusIndex type: gauge - lookups: - - labels: - - 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 + - name: ePDU2OutletMeteredStatusAlarm + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.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 + help: Getting this OID will return the current outlet alarm. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.5 indexes: - - labelname: laIndex + - labelname: ePDU2OutletMeteredStatusIndex type: gauge - lookups: - - labels: - - 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 - help: Bogus Index - 1.3.6.1.4.1.2021.11.1 - - name: ssErrorName - oid: 1.3.6.1.4.1.2021.11.2 - type: DisplayString - help: Bogus Name - 1.3.6.1.4.1.2021.11.2 - - name: ssSwapIn - oid: 1.3.6.1.4.1.2021.11.3 + enum_values: + 1: noLoadAlarm + 2: underCurrentAlarm + 3: nearOverCurrentAlarm + 4: overCurrentAlarm + - name: ePDU2OutletMeteredStatusLoad + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.6 type: gauge - help: The average amount of memory swapped in from disk, calculated over the - last minute. - 1.3.6.1.4.1.2021.11.3 - - name: ssSwapOut - oid: 1.3.6.1.4.1.2021.11.4 + help: Getting this OID will return the measured Outlet load for an Outlet Monitored + Rack PDU in tenths of Amps. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.6 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusActivePower + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.7 type: gauge - help: The average amount of memory swapped out to disk, calculated over the - last minute. - 1.3.6.1.4.1.2021.11.4 - - name: ssIOSent - oid: 1.3.6.1.4.1.2021.11.5 + help: Getting this OID will return the measured Outlet load for an Outlet Monitored + Rack PDU in watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.7 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusPeakPower + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.8 type: gauge - help: The average amount of data written to disk or other block device, calculated - over the last minute - 1.3.6.1.4.1.2021.11.5 - - name: ssIOReceive - oid: 1.3.6.1.4.1.2021.11.6 + help: The peak power consumption of the Rack PDU load in watts. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.8 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusPeakPowerTimestamp + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.9 + type: DisplayString + help: Get this oid shows the date and time that peak power consumption occurred. + - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.9 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusPeakPowerStartTime + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.10 + type: DisplayString + help: Get this oid shows the date and time that peak power consumption started. + - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.10 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusEnergy + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.11 type: gauge - help: The average amount of data read from disk or other block device, calculated - over the last minute - 1.3.6.1.4.1.2021.11.6 - - name: ssSysInterrupts - oid: 1.3.6.1.4.1.2021.11.7 + help: Energy meter measuring Rack PDU load energy consumption in tenths of kilowatt-hours. + - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.11 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMeteredStatusEnergyStart + oid: 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.12 + type: DisplayString + help: Indicates the date and time of the last device energy meter reset. - 1.3.6.1.4.1.3808.1.1.6.6.2.4.1.12 + indexes: + - labelname: ePDU2OutletMeteredStatusIndex + type: gauge + - name: ePDU2OutletMonitoredTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.1 type: gauge - help: The average rate of interrupts processed (including the clock) calculated - over the last minute - 1.3.6.1.4.1.2021.11.7 - - name: ssSysContext - oid: 1.3.6.1.4.1.2021.11.8 + help: The number of monitored outlets on connected Rack PDUs. - 1.3.6.1.4.1.3808.1.1.6.6.3.1 + - name: ePDU2OutletMonitoredConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.1 type: gauge - help: The average rate of context switches, calculated over the last minute - - 1.3.6.1.4.1.2021.11.8 - - name: ssCpuUser - oid: 1.3.6.1.4.1.2021.11.9 + help: The index to the Rack PDU monitored outlet configuration table entry. + - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.1 + indexes: + - labelname: ePDU2OutletMonitoredConfigIndex + type: gauge + - name: ePDU2OutletMonitoredConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.2 type: gauge - help: The percentage of CPU time spent processing user-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.9 - - name: ssCpuSystem - oid: 1.3.6.1.4.1.2021.11.10 + help: The user-defined Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.2 + indexes: + - labelname: ePDU2OutletMonitoredConfigIndex + type: gauge + - name: ePDU2OutletMonitoredConfigNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.3 type: gauge - help: The percentage of CPU time spent processing system-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.10 - - name: ssCpuIdle - oid: 1.3.6.1.4.1.2021.11.11 + help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.3 + indexes: + - labelname: ePDU2OutletMonitoredConfigIndex + type: gauge + - name: ePDU2OutletMonitoredConfigName + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.4 + type: DisplayString + help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.2.1.4 + indexes: + - labelname: ePDU2OutletMonitoredConfigIndex + type: gauge + - name: ePDU2OutletMonitoredInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.1 type: gauge - help: The percentage of processor time spent idle, calculated over the last - minute - 1.3.6.1.4.1.2021.11.11 - - name: ssCpuRawUser - oid: 1.3.6.1.4.1.2021.11.50 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing user-level code - - 1.3.6.1.4.1.2021.11.50 - - name: ssCpuRawNice - oid: 1.3.6.1.4.1.2021.11.51 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing reduced-priority - code - 1.3.6.1.4.1.2021.11.51 - - name: ssCpuRawSystem - oid: 1.3.6.1.4.1.2021.11.52 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing system-level - code - 1.3.6.1.4.1.2021.11.52 - - name: ssCpuRawIdle - oid: 1.3.6.1.4.1.2021.11.53 - type: counter - help: The number of 'ticks' (typically 1/100s) spent idle - 1.3.6.1.4.1.2021.11.53 - - name: ssCpuRawWait - oid: 1.3.6.1.4.1.2021.11.54 - type: counter - help: The number of 'ticks' (typically 1/100s) spent waiting for IO - 1.3.6.1.4.1.2021.11.54 - - name: ssCpuRawKernel - oid: 1.3.6.1.4.1.2021.11.55 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing kernel-level - code - 1.3.6.1.4.1.2021.11.55 - - name: ssCpuRawInterrupt - oid: 1.3.6.1.4.1.2021.11.56 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing hardware interrupts - - 1.3.6.1.4.1.2021.11.56 - - name: ssIORawSent - oid: 1.3.6.1.4.1.2021.11.57 - type: counter - help: Number of blocks sent to a block device - 1.3.6.1.4.1.2021.11.57 - - name: ssIORawReceived - oid: 1.3.6.1.4.1.2021.11.58 - type: counter - help: Number of blocks received from a block device - 1.3.6.1.4.1.2021.11.58 - - name: ssRawInterrupts - oid: 1.3.6.1.4.1.2021.11.59 - type: counter - help: Number of interrupts processed - 1.3.6.1.4.1.2021.11.59 - - name: ssRawContexts - oid: 1.3.6.1.4.1.2021.11.60 - type: counter - help: Number of context switches - 1.3.6.1.4.1.2021.11.60 - - name: ssCpuRawSoftIRQ - oid: 1.3.6.1.4.1.2021.11.61 - type: counter - help: The number of 'ticks' (typically 1/100s) spent processing software interrupts - - 1.3.6.1.4.1.2021.11.61 - - name: ssRawSwapIn - oid: 1.3.6.1.4.1.2021.11.62 - type: counter - help: Number of blocks swapped in - 1.3.6.1.4.1.2021.11.62 - - name: ssRawSwapOut - oid: 1.3.6.1.4.1.2021.11.63 - type: counter - help: Number of blocks swapped out - 1.3.6.1.4.1.2021.11.63 - - name: ssCpuRawSteal - oid: 1.3.6.1.4.1.2021.11.64 - type: counter - help: The number of 'ticks' (typically 1/100s) spent by the hypervisor code - to run other VMs even though the CPU in the current VM had something runnable - - 1.3.6.1.4.1.2021.11.64 - - name: ssCpuRawGuest - oid: 1.3.6.1.4.1.2021.11.65 - type: counter - help: The number of 'ticks' (typically 1/100s) spent by the CPU to run a virtual - CPU (guest) - 1.3.6.1.4.1.2021.11.65 - - name: ssCpuRawGuestNice - oid: 1.3.6.1.4.1.2021.11.66 - type: counter - help: The number of 'ticks' (typically 1/100s) spent by the CPU to run a niced - virtual CPU (guest) - 1.3.6.1.4.1.2021.11.66 - - name: ssCpuNumCpus - oid: 1.3.6.1.4.1.2021.11.67 + help: The index to the Rack PDU monitored information table entry. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.1 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.2 type: gauge - help: The number of processors, as counted by the agent - 1.3.6.1.4.1.2021.11.67 - - name: memIndex - oid: 1.3.6.1.4.1.2021.4.1 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.2 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.3 type: gauge - help: Bogus Index - 1.3.6.1.4.1.2021.4.1 - - name: memErrorName - oid: 1.3.6.1.4.1.2021.4.2 + help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.3 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoName + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.4 type: DisplayString - help: Bogus Name - 1.3.6.1.4.1.2021.4.2 - - name: memTotalSwap - oid: 1.3.6.1.4.1.2021.4.3 - type: gauge - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.3 - - name: memAvailSwap - oid: 1.3.6.1.4.1.2021.4.4 + help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.4 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoLayout + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.5 type: gauge - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.4 - - name: memTotalReal - oid: 1.3.6.1.4.1.2021.4.5 + help: 'This OID describes the phase connections of the referenced outlet as + follows: seqPhase1ToNeutral(1) indicates that the outlet is wired from Phase + 1 to Neutral - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.5' + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoRating + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.6 type: gauge - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.5 - - name: memAvailReal - oid: 1.3.6.1.4.1.2021.4.6 + help: Maximum power rating of Rack PDU monitored outlet. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.6 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredInfoBank + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.7 type: gauge - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.6 - - name: memTotalSwapTXT - oid: 1.3.6.1.4.1.2021.4.7 + help: This outlet's numeric bank ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.3.1.7 + indexes: + - labelname: ePDU2OutletMonitoredInfoIndex + type: gauge + - name: ePDU2OutletMonitoredStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.1 type: gauge - help: The total amount of swap space or virtual memory allocated for text pages - on this host - 1.3.6.1.4.1.2021.4.7 - - name: memAvailSwapTXT - oid: 1.3.6.1.4.1.2021.4.8 + help: The index to the Rack PDU monitored status table entry. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.1 + indexes: + - labelname: ePDU2OutletMonitoredStatusIndex + type: gauge + - name: ePDU2OutletMonitoredStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.2 type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.8 - - name: memTotalRealTXT - oid: 1.3.6.1.4.1.2021.4.9 + help: The Rack PDU numeric ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.2 + indexes: + - labelname: ePDU2OutletMonitoredStatusIndex + type: gauge + - name: ePDU2OutletMonitoredStatusNumber + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.3 type: gauge - help: The total amount of real/physical memory allocated for text pages on this - host - 1.3.6.1.4.1.2021.4.9 - - name: memAvailRealTXT - oid: 1.3.6.1.4.1.2021.4.10 + help: The numeric monitored outlet ID. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.3 + indexes: + - labelname: ePDU2OutletMonitoredStatusIndex + type: gauge + - name: ePDU2OutletMonitoredStatusName + oid: 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.4 + type: DisplayString + help: The user-defined monitored outlet name string. - 1.3.6.1.4.1.3808.1.1.6.6.3.4.1.4 + indexes: + - labelname: ePDU2OutletMonitoredStatusIndex + type: gauge + - name: ePDU2GroupNumberOfDevices + oid: 1.3.6.1.4.1.3808.1.1.6.8.1 type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.10 - - name: memTotalFree - oid: 1.3.6.1.4.1.2021.4.11 + help: Getting this OID will return the number of Rack PDU devices contributing + to the Daisy Chain group power and energy values - 1.3.6.1.4.1.3808.1.1.6.8.1 + - name: ePDU2GroupTotalPower + oid: 1.3.6.1.4.1.3808.1.1.6.8.2 type: gauge - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.11 - - name: memMinimumSwap - oid: 1.3.6.1.4.1.2021.4.12 + help: Getting this OID will return the total power consumption of the Rack PDU + Daisy Chain group devices in watts - 1.3.6.1.4.1.3808.1.1.6.8.2 + - name: ePDU2GroupTotalEnergy + oid: 1.3.6.1.4.1.3808.1.1.6.8.3 type: gauge - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.12 - - name: memShared - oid: 1.3.6.1.4.1.2021.4.13 + help: Getting this OID will return the total energy consumption of the Rack + PDU Daisy Chain group devices in tenths of kilowatt-hours - 1.3.6.1.4.1.3808.1.1.6.8.3 + - name: ePDU2GroupEnergyReset + oid: 1.3.6.1.4.1.3808.1.1.6.8.4 type: gauge - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.13 - - name: memBuffer - oid: 1.3.6.1.4.1.2021.4.14 + help: Setting this OID to reset (2) will cause the device energy meter value + on each device in the Rack PDU Daisy Chain group to be reset to zero - 1.3.6.1.4.1.3808.1.1.6.8.4 + enum_values: + 1: noOperation + 2: reset + - name: ePDU2GroupPeakRecordReset + oid: 1.3.6.1.4.1.3808.1.1.6.8.5 type: gauge - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.14 - - name: memCached - oid: 1.3.6.1.4.1.2021.4.15 + help: Setting this OID to reset (2) will cause the device peak record value + on each device in the Rack PDU Daisy Chain group to be reset to current load/power + - 1.3.6.1.4.1.3808.1.1.6.8.5 + enum_values: + 1: noOperation + 2: reset + - name: ePDU2SourceTableSize + oid: 1.3.6.1.4.1.3808.1.1.6.9.1 type: gauge - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.15 - - name: memUsedSwapTXT - oid: 1.3.6.1.4.1.2021.4.16 + help: A Host Automatic Transfer Switch response total number of Automatic Transfer + Switches on daisy chain - 1.3.6.1.4.1.3808.1.1.6.9.1 + - name: ePDU2SourceConfigIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.1 type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.16 - - name: memUsedRealTXT - oid: 1.3.6.1.4.1.2021.4.17 + help: The index to the Automatic Transfer Switch table entry. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.1 + indexes: + - labelname: ePDU2SourceConfigIndex + type: gauge + - name: ePDU2SourceConfigModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.2 type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.17 - - name: memTotalSwapX - oid: 1.3.6.1.4.1.2021.4.18 - type: counter - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.18 - - name: memAvailSwapX - oid: 1.3.6.1.4.1.2021.4.19 - type: counter - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.19 - - name: memTotalRealX - oid: 1.3.6.1.4.1.2021.4.20 - type: counter - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.20 - - name: memAvailRealX - oid: 1.3.6.1.4.1.2021.4.21 - type: counter - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.21 - - name: memTotalFreeX - oid: 1.3.6.1.4.1.2021.4.22 - type: counter - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.22 - - name: memMinimumSwapX - oid: 1.3.6.1.4.1.2021.4.23 - type: counter - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.23 - - name: memSharedX - oid: 1.3.6.1.4.1.2021.4.24 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.24 - - name: memBufferX - oid: 1.3.6.1.4.1.2021.4.25 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.25 - - name: memCachedX - oid: 1.3.6.1.4.1.2021.4.26 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.26 - - name: memSwapError - oid: 1.3.6.1.4.1.2021.4.100 + help: The Automatic Transfer Switch numeric ID. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.2 + indexes: + - labelname: ePDU2SourceConfigIndex + type: gauge + - name: ePDU2SourceConfigPreferredSource + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.3 type: gauge - help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 + help: This variable returns the preferred source of power when both sources + are OK - 1.3.6.1.4.1.3808.1.1.6.9.2.1.3 + indexes: + - labelname: ePDU2SourceConfigIndex + type: gauge enum_values: - 0: noError - 1: error - - name: memSwapErrorMsg - oid: 1.3.6.1.4.1.2021.4.101 - type: DisplayString - help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 - if_mib: - walk: - - 1.3.6.1.2.1.2 - - 1.3.6.1.2.1.31.1.1 - get: - - 1.3.6.1.2.1.1.3.0 - metrics: - - name: sysUpTime - oid: 1.3.6.1.2.1.1.3 + 1: sourceA + 2: sourceB + 3: none + - name: ePDU2SourceConfigFrequencyDeviation + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.4 type: gauge - help: The time (in hundredths of a second) since the network management portion - of the system was last re-initialized. - 1.3.6.1.2.1.1.3 - - name: ifNumber - oid: 1.3.6.1.2.1.2.1 + help: To configure the frequency deviation. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.4 + indexes: + - labelname: ePDU2SourceConfigIndex + type: gauge + - name: ePDU2SourceConfigVoltageSensitivity + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.5 type: gauge - help: The number of network interfaces (regardless of their current state) present - on this system. - 1.3.6.1.2.1.2.1 - - name: ifIndex - oid: 1.3.6.1.2.1.2.2.1.1 + help: 'This variable defines the sensitivity to changes in voltage: high(1) + for best protection, low(3) for frequent small line voltage changes. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.5' + indexes: + - labelname: ePDU2SourceConfigIndex + type: gauge + enum_values: + 1: high + 2: medium + 3: low + - name: ePDU2SourceConfigNominalVoltage + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.6 type: gauge - help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 + help: This variable returns the nominal voltage of the input. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.6 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifType - oid: 1.3.6.1.2.1.2.2.1.3 - type: EnumAsInfo - help: The type of interface - 1.3.6.1.2.1.2.2.1.3 + - name: ePDU2SourceConfigTransferVoltageRange + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.7 + type: gauge + help: This variable defines the range of acceptable voltage from a power source + - 1.3.6.1.4.1.3808.1.1.6.9.2.1.7 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString enum_values: - 1: other - 2: regular1822 - 3: hdh1822 - 4: ddnX25 - 5: rfc877x25 - 6: ethernetCsmacd - 7: iso88023Csmacd - 8: iso88024TokenBus - 9: iso88025TokenRing - 10: iso88026Man - 11: starLan - 12: proteon10Mbit - 13: proteon80Mbit - 14: hyperchannel - 15: fddi - 16: lapb - 17: sdlc - 18: ds1 - 19: e1 - 20: basicISDN - 21: primaryISDN - 22: propPointToPointSerial - 23: ppp - 24: softwareLoopback - 25: eon - 26: ethernet3Mbit - 27: nsip - 28: slip - 29: ultra - 30: ds3 - 31: sip - 32: frameRelay - 33: rs232 - 34: para - 35: arcnet - 36: arcnetPlus - 37: atm - 38: miox25 - 39: sonet - 40: x25ple - 41: iso88022llc - 42: localTalk - 43: smdsDxi - 44: frameRelayService - 45: v35 - 46: hssi - 47: hippi - 48: modem - 49: aal5 - 50: sonetPath - 51: sonetVT - 52: smdsIcip - 53: propVirtual - 54: propMultiplexor - 55: ieee80212 - 56: fibreChannel - 57: hippiInterface - 58: frameRelayInterconnect - 59: aflane8023 - 60: aflane8025 - 61: cctEmul - 62: fastEther - 63: isdn - 64: v11 - 65: v36 - 66: g703at64k - 67: g703at2mb - 68: qllc - 69: fastEtherFX - 70: channel - 71: ieee80211 - 72: ibm370parChan - 73: escon - 74: dlsw - 75: isdns - 76: isdnu - 77: lapd - 78: ipSwitch - 79: rsrb - 80: atmLogical - 81: ds0 - 82: ds0Bundle - 83: bsc - 84: async - 85: cnr - 86: iso88025Dtr - 87: eplrs - 88: arap - 89: propCnls - 90: hostPad - 91: termPad - 92: frameRelayMPI - 93: x213 - 94: adsl - 95: radsl - 96: sdsl - 97: vdsl - 98: iso88025CRFPInt - 99: myrinet - 100: voiceEM - 101: voiceFXO - 102: voiceFXS - 103: voiceEncap - 104: voiceOverIp - 105: atmDxi - 106: atmFuni - 107: atmIma - 108: pppMultilinkBundle - 109: ipOverCdlc - 110: ipOverClaw - 111: stackToStack - 112: virtualIpAddress - 113: mpc - 114: ipOverAtm - 115: iso88025Fiber - 116: tdlc - 117: gigabitEthernet - 118: hdlc - 119: lapf - 120: v37 - 121: x25mlp - 122: x25huntGroup - 123: transpHdlc - 124: interleave - 125: fast - 126: ip - 127: docsCableMaclayer - 128: docsCableDownstream - 129: docsCableUpstream - 130: a12MppSwitch - 131: tunnel - 132: coffee - 133: ces - 134: atmSubInterface - 135: l2vlan - 136: l3ipvlan - 137: l3ipxvlan - 138: digitalPowerline - 139: mediaMailOverIp - 140: dtm - 141: dcn - 142: ipForward - 143: msdsl - 144: ieee1394 - 145: if-gsn - 146: dvbRccMacLayer - 147: dvbRccDownstream - 148: dvbRccUpstream - 149: atmVirtual - 150: mplsTunnel - 151: srp - 152: voiceOverAtm - 153: voiceOverFrameRelay - 154: idsl - 155: compositeLink - 156: ss7SigLink - 157: propWirelessP2P - 158: frForward - 159: rfc1483 - 160: usb - 161: ieee8023adLag - 162: bgppolicyaccounting - 163: frf16MfrBundle - 164: h323Gatekeeper - 165: h323Proxy - 166: mpls - 167: mfSigLink - 168: hdsl2 - 169: shdsl - 170: ds1FDL - 171: pos - 172: dvbAsiIn - 173: dvbAsiOut - 174: plc - 175: nfas - 176: tr008 - 177: gr303RDT - 178: gr303IDT - 179: isup - 180: propDocsWirelessMaclayer - 181: propDocsWirelessDownstream - 182: propDocsWirelessUpstream - 183: hiperlan2 - 184: propBWAp2Mp - 185: sonetOverheadChannel - 186: digitalWrapperOverheadChannel - 187: aal2 - 188: radioMAC - 189: atmRadio - 190: imt - 191: mvl - 192: reachDSL - 193: frDlciEndPt - 194: atmVciEndPt - 195: opticalChannel - 196: opticalTransport - 197: propAtm - 198: voiceOverCable - 199: infiniband - 200: teLink - 201: q2931 - 202: virtualTg - 203: sipTg - 204: sipSig - 205: docsCableUpstreamChannel - 206: econet - 207: pon155 - 208: pon622 - 209: bridge - 210: linegroup - 211: voiceEMFGD - 212: voiceFGDEANA - 213: voiceDID - 214: mpegTransport - 215: sixToFour - 216: gtp - 217: pdnEtherLoop1 - 218: pdnEtherLoop2 - 219: opticalChannelGroup - 220: homepna - 221: gfp - 222: ciscoISLvlan - 223: actelisMetaLOOP - 224: fcipLink - 225: rpr - 226: qam - 227: lmp - 228: cblVectaStar - 229: docsCableMCmtsDownstream - 230: adsl2 - 231: macSecControlledIF - 232: macSecUncontrolledIF - 233: aviciOpticalEther - 234: atmbond - 235: voiceFGDOS - 236: mocaVersion1 - 237: ieee80216WMAN - 238: adsl2plus - 239: dvbRcsMacLayer - 240: dvbTdm - 241: dvbRcsTdma - 242: x86Laps - 243: wwanPP - 244: wwanPP2 - 245: voiceEBS - 246: ifPwType - 247: ilan - 248: pip - 249: aluELP - 250: gpon - 251: vdsl2 - 252: capwapDot11Profile - 253: capwapDot11Bss - 254: capwapWtpVirtualRadio - 255: bits - 256: docsCableUpstreamRfPort - 257: cableDownstreamRfPort - 258: vmwareVirtualNic - 259: ieee802154 - 260: otnOdu - 261: otnOtu - 262: ifVfiType - 263: g9981 - 264: g9982 - 265: g9983 - 266: aluEpon - 267: aluEponOnu - 268: aluEponPhysicalUni - 269: aluEponLogicalLink - 270: aluGponOnu - 271: aluGponPhysicalUni - 272: vmwareNicTeam - 277: docsOfdmDownstream - 278: docsOfdmaUpstream - 279: gfast - 280: sdci - 281: xboxWireless - 282: fastdsl - 283: docsCableScte55d1FwdOob - 284: docsCableScte55d1RetOob - 285: docsCableScte55d2DsOob - 286: docsCableScte55d2UsOob - 287: docsCableNdf - 288: docsCableNdr - 289: ptm - 290: ghn - 291: otnOtsi - 292: otnOtuc - 293: otnOduc - 294: otnOtsig - 295: microwaveCarrierTermination - 296: microwaveRadioLinkTerminal - 297: ieee8021axDrni - 298: ax25 - 299: ieee19061nanocom - 300: cpri - 301: omni - 302: roe - 303: p2pOverLan - - name: ifMtu - oid: 1.3.6.1.2.1.2.2.1.4 + 1: wide + 2: medium + 3: narrow + - name: ePDU2SourceConfigNarrowRangeValue + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.8 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 + help: To configure the Narrow Range value of acceptable voltage from a power + source. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.8 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifSpeed - oid: 1.3.6.1.2.1.2.2.1.5 + - name: ePDU2SourceConfigMediumRangeValue + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.9 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 + help: To configure the Medium Range value of acceptable voltage from a power + source. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.9 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceConfigWideRangeValue + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.10 + type: gauge + help: To configure the Wide Range value of acceptable voltage from a power source. + - 1.3.6.1.4.1.3808.1.1.6.9.2.1.10 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifAdminStatus - oid: 1.3.6.1.2.1.2.2.1.7 + - name: ePDU2EventCountsReset + oid: 1.3.6.1.4.1.3808.1.1.6.9.2.1.11 type: gauge - help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 + help: Setting this variable will clear all event counts in Automatic Transfer + Switch. - 1.3.6.1.4.1.3808.1.1.6.9.2.1.11 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceConfigIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString enum_values: - 1: up - 2: down - 3: testing - - name: ifOperStatus - oid: 1.3.6.1.2.1.2.2.1.8 + 1: none + 2: clear + - name: ePDU2SourceInfoIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.1 type: gauge - help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 + help: The index to the Automatic Transfer Switch Information table entry. - + 1.3.6.1.4.1.3808.1.1.6.9.3.1.1 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - enum_values: - 1: up - 2: down - 3: testing - 4: unknown - 5: dormant - 6: notPresent - 7: lowerLayerDown - - name: ifLastChange - oid: 1.3.6.1.2.1.2.2.1.9 + - name: ePDU2SourceInfoModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.2 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 + help: The Automatic Transfer Switch numeric ID. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.2 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceInfoSourceSwitch + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.3 + type: gauge + help: The Source Switch event counts of Automatic Transfer Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.3 indexes: - - labelname: ifIndex - type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifInUcastPkts - oid: 1.3.6.1.2.1.2.2.1.11 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.11 - indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifInNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.12 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.2.2.1.12 + - name: ePDU2SourceInfoSourcePreferenceChange + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.4 + type: gauge + help: The Source Preference Change event counts of Automatic Transfer Switch. + - 1.3.6.1.4.1.3808.1.1.6.9.3.1.4 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifInDiscards - oid: 1.3.6.1.2.1.2.2.1.13 - type: counter - help: The number of inbound packets which were chosen to be discarded even though - no errors had been detected to prevent their being deliverable to a higher-layer - protocol - 1.3.6.1.2.1.2.2.1.13 + - name: ePDU2SourceInfoPreferredSourceFreqOutofRange + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.5 + type: gauge + help: The Preferred Source Frequency Out of Range event counts of Automatic + Transfer Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.5 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceInfoPreferredSourceVoltOutofRange + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.6 + type: gauge + help: The Preferred Source Voltage Out of Range event counts of Automatic Transfer + Switch. - 1.3.6.1.4.1.3808.1.1.6.9.3.1.6 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceInfoDeviceCurrentOverload + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.7 + type: gauge + help: The Device Current Overload event counts of Automatic Transfer Switch. + - 1.3.6.1.4.1.3808.1.1.6.9.3.1.7 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceInfoBank1Overload + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.8 + type: gauge + help: The Bank 1 Current Overload event counts of Automatic Transfer Switch + - 1.3.6.1.4.1.3808.1.1.6.9.3.1.8 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifOutUcastPkts - oid: 1.3.6.1.2.1.2.2.1.17 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 + - name: ePDU2SourceInfoBank2Overload + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.9 + type: gauge + help: The Bank 2 Current Overload event counts of Automatic Transfer Switch + - 1.3.6.1.4.1.3808.1.1.6.9.3.1.9 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifOutNUcastPkts - oid: 1.3.6.1.2.1.2.2.1.18 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 + - name: ePDU2SourceInfoBank3Overload + oid: 1.3.6.1.4.1.3808.1.1.6.9.3.1.10 + type: gauge + help: The Bank 3 Current Overload event counts of Automatic Transfer Switch + - 1.3.6.1.4.1.3808.1.1.6.9.3.1.10 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceInfoIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceStatusIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.1 + type: gauge + help: The index to the Automatic Transfer Switch status table entry. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.1 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceStatusModuleIndex + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.2 + type: gauge + help: The Automatic Transfer Switch numeric ID - 1.3.6.1.4.1.3808.1.1.6.9.4.1.2 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifOutQLen - oid: 1.3.6.1.2.1.2.2.1.21 + - name: ePDU2SourceStatusSelectedSource + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.3 type: gauge - help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 + help: This variable returns the current source of power. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.3 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifSpecific - oid: 1.3.6.1.2.1.2.2.1.22 - type: OctetString - help: A reference to MIB definitions specific to the particular media being - used to realize the interface - 1.3.6.1.2.1.2.2.1.22 + enum_values: + 1: sourceA + 2: sourceB + 3: none + - name: ePDU2SourceStatusNominalFrequency + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.4 + type: gauge + help: The Nominal Frequency in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.4 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceStatusSourceAVoltage + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.5 + type: gauge + help: The input voltage of source A in 0.1 Volt. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.5 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceStatusSourceBVoltage + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.6 + type: gauge + help: The input voltage of source B in 0.1 Volt. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.6 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.4 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 + - name: ePDU2SourceStatusSourceAFrequency + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.7 + type: gauge + help: The input frequency of source A in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.7 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.5 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 + - name: ePDU2SourceStatusSourceBFrequency + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.8 + type: gauge + help: The input frequency of source B in 0.1 Hertz. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.8 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + - name: ePDU2SourceStatusSourceAVolStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.9 + type: gauge + help: The input voltage status of source A. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.9 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifHCInUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.7 - type: counter - help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, - which were not addressed to a multicast or broadcast address at this sub-layer - - 1.3.6.1.2.1.31.1.1.1.7 + enum_values: + 1: normal + 2: overVoltage + 3: underVoltage + - name: ePDU2SourceStatusSourceBVolStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.10 + type: gauge + help: The input voltage status of source B. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.10 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + enum_values: + 1: normal + 2: overVoltage + 3: underVoltage + - name: ePDU2SourceStatusSourceAFreqStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.11 + type: gauge + help: The input frequency status of source A. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.11 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + enum_values: + 1: normal + 2: overFrequency + 3: underFrequency + - name: ePDU2SourceStatusSourceBFreqStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.12 + type: gauge + help: The input frequency status of source B. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.12 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - 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 + enum_values: + 1: normal + 2: overFrequency + 3: underFrequency + - name: ePDU2SourceStatusSourcePhaseSync + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.13 + type: gauge + help: This variable returns the status of the phase sync. - 1.3.6.1.4.1.3808.1.1.6.9.4.1.13 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifHCOutUcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.11 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were not addressed to a multicast or broadcast address at this sub-layer, - including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 + enum_values: + 1: inSync + 2: outOfSync + - name: ePDU2SourceStatusPowerSupplySourceAStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.14 + type: gauge + help: This variable returns the status of the power supply in system - 1.3.6.1.4.1.3808.1.1.6.9.4.1.14 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifHCOutMulticastPkts - oid: 1.3.6.1.2.1.31.1.1.1.12 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a multicast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 + enum_values: + 1: normal + 2: failed3p3v + 3: failed24v + 4: failed3p3and24v + - name: ePDU2SourceStatusPowerSupplySourceBStatus + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.15 + type: gauge + help: This variable returns the status of the power supply in system - 1.3.6.1.4.1.3808.1.1.6.9.4.1.15 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifHCOutBroadcastPkts - oid: 1.3.6.1.2.1.31.1.1.1.13 - type: counter - help: The total number of packets that higher-level protocols requested be transmitted, - and which were addressed to a broadcast address at this sub-layer, including - those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 + enum_values: + 1: normal + 2: failed3p3v + 3: failed24v + 4: failed3p3and24v + - name: ePDU2SourceStatusRedundancyState + oid: 1.3.6.1.4.1.3808.1.1.6.9.4.1.16 + type: gauge + help: This variable returns the current redundancy state of the ATS - 1.3.6.1.4.1.3808.1.1.6.9.4.1.16 indexes: - - labelname: ifIndex + - labelname: ePDU2SourceStatusIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifLinkUpDownTrapEnable - oid: 1.3.6.1.2.1.31.1.1.1.14 + enum_values: + 1: atsRedundancyLost + 2: atsFullyRedundant + dell: + walk: + - 1.3.6.1.4.1.674.10892.5.2 + - 1.3.6.1.4.1.674.10892.5.4 + - 1.3.6.1.4.1.674.10892.5.5 + metrics: + - name: globalSystemStatus + oid: 1.3.6.1.4.1.674.10892.5.2.1 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 + help: This attribute defines the overall rollup status of all components in + the system being monitored by the remote access card - 1.3.6.1.4.1.674.10892.5.2.1 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemLCDStatus + oid: 1.3.6.1.4.1.674.10892.5.2.2 + type: gauge + help: This attribute defines the system status as it is reflected by the LCD + front panel - 1.3.6.1.4.1.674.10892.5.2.2 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: globalStorageStatus + oid: 1.3.6.1.4.1.674.10892.5.2.3 + type: gauge + help: This attribute defines the overall storage status being monitored by the + remote access card. - 1.3.6.1.4.1.674.10892.5.2.3 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemPowerState + oid: 1.3.6.1.4.1.674.10892.5.2.4 + type: gauge + help: This attribute defines the power state of the system. - 1.3.6.1.4.1.674.10892.5.2.4 + enum_values: + 1: other + 2: unknown + 3: "off" + 4: "on" + - name: systemPowerUpTime + oid: 1.3.6.1.4.1.674.10892.5.2.5 + type: gauge + help: This attribute defines the power-up time of the system in seconds. - 1.3.6.1.4.1.674.10892.5.2.5 + - name: mIBMajorVersionNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1.1 + type: gauge + help: 0001.0001 This attribute defines the major version number for the version + of this MIB supported by the iDRAC. - 1.3.6.1.4.1.674.10892.5.4.1.1 + - name: mIBMinorVersionNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1.2 + type: gauge + help: 0001.0002 This attribute defines the minor version number for the version + of this MIB supported by the iDRAC. - 1.3.6.1.4.1.674.10892.5.4.1.2 + - name: mIBMaintenanceVersionNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1.3 + type: gauge + help: 0001.0003 This attribute defines the maintenance version number for the + version of this MIB supported by the iDRAC. - 1.3.6.1.4.1.674.10892.5.4.1.3 + - name: systemStatechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.1 + type: gauge + help: 0200.0010.0001.0001 This attribute defines the index (one based) of this + system chassis. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.1 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - enum_values: - 1: enabled - 2: disabled - - name: ifHighSpeed - oid: 1.3.6.1.2.1.31.1.1.1.15 + - name: systemStateGlobalSystemStatus + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.2 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 + help: 0200.0010.0001.0002 This attribute defines the global system status of + all system chassis being monitored by the systems management software. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.2 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: ifPromiscuousMode - oid: 1.3.6.1.2.1.31.1.1.1.16 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateChassisState + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.3 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 + help: 0200.0010.0001.0003 This attribute defines the state settings of this + system chassis. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.3 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString enum_values: - 1: "true" - 2: "false" - - name: ifConnectorPresent - oid: 1.3.6.1.2.1.31.1.1.1.17 + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: systemStateChassisStatus + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.4 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 + help: 0200.0010.0001.0004 This attribute defines the status of this system chassis. + - 1.3.6.1.4.1.674.10892.5.4.200.10.1.4 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString enum_values: - 1: "true" - 2: "false" - - name: ifCounterDiscontinuityTime - oid: 1.3.6.1.2.1.31.1.1.1.19 + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStatePowerUnitStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.5 + type: OctetString + help: 0200.0010.0001.0005 This attribute lists the state settings of each power + unit of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.5 + indexes: + - labelname: systemStatechassisIndex + type: gauge + - name: systemStatePowerUnitStatusRedundancy + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.6 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 + help: 0200.0010.0001.0006 This attribute defines the combined redundancy status + of all power units of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.6 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - ifIndex - labelname: ifAlias - oid: 1.3.6.1.2.1.31.1.1.1.18 - type: DisplayString - - labels: - - ifIndex - labelname: ifDescr - oid: 1.3.6.1.2.1.2.2.1.2 - type: DisplayString - - labels: - - ifIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - infrapower_pdu: - walk: - - 1.3.6.1.4.1.34550.20.2.1.1.1.1 - - 1.3.6.1.4.1.34550.20.2.1.1.1.13 - - 1.3.6.1.4.1.34550.20.2.1.1.1.14 - - 1.3.6.1.4.1.34550.20.2.1.1.1.17 - - 1.3.6.1.4.1.34550.20.2.1.1.1.6 - - 1.3.6.1.4.1.34550.20.2.1.1.1.7 - metrics: - - name: pduMainLoadVoltage - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.13 - type: DisplayString - help: The voltage measured on this PDU in tenth of Volts - 1.3.6.1.4.1.34550.20.2.1.1.1.13 + enum_values: + 1: other + 2: unknown + 3: full + 4: degraded + 5: lost + 6: notRedundant + 7: redundancyOffline + - name: systemStatePowerUnitStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.7 + type: OctetString + help: 0200.0010.0001.0007 This attribute lists the redundancy status of each + power unit of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.7 indexes: - - labelname: pduIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - pduIndex - labelname: pduName - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 - type: DisplayString - - labels: - - pduIndex - labelname: pduLocation - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 - type: DisplayString - regex_extracts: - "": - - value: $1.$2 - regex: ^(?:(.*)(.))$ - - name: pduMainLoadAmp - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.14 - type: DisplayString - help: The current load measured on this PDU in tenth of Amps - 1.3.6.1.4.1.34550.20.2.1.1.1.14 + - name: systemStatePowerSupplyStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.8 + type: OctetString + help: 0200.0010.0001.0008 This attribute lists the state settings of each power + supply of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.8 indexes: - - labelname: pduIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - pduIndex - labelname: pduName - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 - type: DisplayString - - labels: - - pduIndex - labelname: pduLocation - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 - type: DisplayString - regex_extracts: - "": - - value: $1.$2 - regex: ^(?:(.*)(.))$ - - name: pduMainActivePower - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.17 - type: DisplayString - help: The active power consumption of this PDU in hundred-thousandth of kW - - 1.3.6.1.4.1.34550.20.2.1.1.1.17 + - name: systemStatePowerSupplyStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.9 + type: gauge + help: 0200.0010.0001.0009 This attribute defines the combined status of all + power supplies of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.9 indexes: - - labelname: pduIndex + - labelname: systemStatechassisIndex type: gauge - lookups: - - labels: - - pduIndex - labelname: pduName - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 - type: DisplayString - - labels: - - pduIndex - labelname: pduLocation - oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 - type: DisplayString - regex_extracts: - "": - - value: 0$1.$2 - regex: ^(?:(\d*?)(\d{2}))$ - - value: 0.0$1 - regex: ^(?:^(\d))$ - keepalived: - walk: - - 1.3.6.1.2.1.207.1.2.5 - - 1.3.6.1.2.1.68.2.4 - - 1.3.6.1.4.1.9586.100.5.2.1 - - 1.3.6.1.4.1.9586.100.5.2.3 - - 1.3.6.1.4.1.9586.100.5.3.1 - - 1.3.6.1.4.1.9586.100.5.3.3 - - 1.3.6.1.4.1.9586.100.5.3.4 - metrics: - - name: vrrpv3StatisticsMasterTransitions - oid: 1.3.6.1.2.1.207.1.2.5.1.1 - type: counter - help: The total number of times that this virtual router's state has transitioned - to master state - 1.3.6.1.2.1.207.1.2.5.1.1 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStatePowerSupplyStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.10 + type: OctetString + help: 0200.0010.0001.0010 This attribute lists the status of each power supply + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.10 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + - name: systemStateVoltageStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.11 + type: OctetString + help: 0200.0010.0001.0011 This attribute lists the state settings of each voltage + probe of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.11 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateVoltageStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.12 + type: gauge + help: 0200.0010.0001.0012 This attribute defines the combined status of all + voltage probes of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.12 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsNewMasterReason - oid: 1.3.6.1.2.1.207.1.2.5.1.2 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateVoltageStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.13 + type: OctetString + help: 0200.0010.0001.0013 This attribute lists the status of each voltage probe + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.13 + indexes: + - labelname: systemStatechassisIndex + type: gauge + - name: systemStateAmperageStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.14 + type: OctetString + help: 0200.0010.0001.0014 This attribute lists the state settings of each amperage + probe of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.14 + indexes: + - labelname: systemStatechassisIndex + type: gauge + - name: systemStateAmperageStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.15 type: gauge - help: This indicates the reason for the virtual router to transition to master - state - 1.3.6.1.2.1.207.1.2.5.1.2 + help: 0200.0010.0001.0015 This attribute defines the combined status of all + amperage probes of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.15 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateAmperageStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.16 + type: OctetString + help: 0200.0010.0001.0016 This attribute lists the status of each amperage probe + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.16 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateCoolingUnitStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.17 + type: OctetString + help: 0200.0010.0001.0017 This attribute lists the state settings of each cooling + unit of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.17 + indexes: + - labelname: systemStatechassisIndex + type: gauge + - name: systemStateCoolingUnitStatusRedundancy + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.18 + type: gauge + help: 0200.0010.0001.0018 This attribute defines the combined redundancy status + of all cooling units of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.18 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns enum_values: - 0: notMaster - 1: priority - 2: preempted - 3: masterNoResponse - - name: vrrpv3StatisticsRcvdAdvertisements - oid: 1.3.6.1.2.1.207.1.2.5.1.3 - type: counter - help: The total number of VRRP advertisements received by this virtual router - - 1.3.6.1.2.1.207.1.2.5.1.3 + 1: other + 2: unknown + 3: full + 4: degraded + 5: lost + 6: notRedundant + 7: redundancyOffline + - name: systemStateCoolingUnitStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.19 + type: OctetString + help: 0200.0010.0001.0019 This attribute lists the redundancy status of each + cooling unit of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.19 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + - name: systemStateCoolingDeviceStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.20 + type: OctetString + help: 0200.0010.0001.0020 This attribute lists the state settings of each cooling + device of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.20 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateCoolingDeviceStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.21 + type: gauge + help: 0200.0010.0001.0021 This attribute defines the combined status of all + cooling devices of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.21 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsAdvIntervalErrors - oid: 1.3.6.1.2.1.207.1.2.5.1.4 - type: counter - help: The total number of VRRP advertisement packets received for which the - advertisement interval is different from the vrrpv3OperationsAdvInterval configured - on this virtual router - 1.3.6.1.2.1.207.1.2.5.1.4 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateCoolingDeviceStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.22 + type: OctetString + help: 0200.0010.0001.0022 This attribute lists the status of each cooling device + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.22 indexes: - - labelname: ifIndex - type: gauge - - labelname: vrrpv3OperationsVrId + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateTemperatureStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.23 + type: OctetString + help: 0200.0010.0001.0023 This attribute lists the state settings of each temperature + probe of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.23 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsIpTtlErrors - oid: 1.3.6.1.2.1.207.1.2.5.1.5 - type: counter - help: The total number of VRRP packets received by the virtual router with IPv4 - TTL (for VRRP over IPv4) or IPv6 Hop Limit (for VRRP over IPv6) not equal - to 255 - 1.3.6.1.2.1.207.1.2.5.1.5 + - name: systemStateTemperatureStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.24 + type: gauge + help: 0200.0010.0001.0024 This attribute defines the combined status of all + temperature probes of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.24 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateTemperatureStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.25 + type: OctetString + help: 0200.0010.0001.0025 This attribute lists the status of each temperature + probe of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.25 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateMemoryDeviceStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.26 + type: OctetString + help: 0200.0010.0001.0026 This attribute lists the state settings of each memory + device of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.26 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsProtoErrReason - oid: 1.3.6.1.2.1.207.1.2.5.1.6 + - name: systemStateMemoryDeviceStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.27 type: gauge - help: This indicates the reason for the last protocol error - 1.3.6.1.2.1.207.1.2.5.1.6 + help: 0200.0010.0001.0027 This attribute defines the combined status of all + memory devices of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.27 indexes: - - labelname: ifIndex - type: gauge - - labelname: vrrpv3OperationsVrId - type: gauge - - labelname: vrrpv3OperationsInetAddrType + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns enum_values: - 0: noError - 1: ipTtlError - 2: versionError - 3: checksumError - 4: vrIdError - - name: vrrpv3StatisticsRcvdPriZeroPackets - oid: 1.3.6.1.2.1.207.1.2.5.1.7 - type: counter - help: The total number of VRRP packets received by the virtual router with a - priority of '0' - 1.3.6.1.2.1.207.1.2.5.1.7 + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateMemoryDeviceStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.28 + type: OctetString + help: 0200.0010.0001.0028 This attribute lists the status of each memory device + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.28 indexes: - - labelname: ifIndex - type: gauge - - labelname: vrrpv3OperationsVrId + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateChassisIntrusionStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.29 + type: OctetString + help: 0200.0010.0001.0029 This attribute lists the state settings of each intrusion + detection device of this system chassis - 1.3.6.1.4.1.674.10892.5.4.200.10.1.29 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsSentPriZeroPackets - oid: 1.3.6.1.2.1.207.1.2.5.1.8 - type: counter - help: The total number of VRRP packets sent by the virtual router with a priority - of '0' - 1.3.6.1.2.1.207.1.2.5.1.8 + - name: systemStateChassisIntrusionStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.30 + type: gauge + help: 0200.0010.0001.0030 This attribute defines the combined status of all + intrusion detection devices of this system chassis. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.30 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateChassisIntrusionStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.31 + type: OctetString + help: 0200.0010.0001.0031 This attribute lists the status of each intrusion + detection device of this system chassis - 1.3.6.1.4.1.674.10892.5.4.200.10.1.31 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStatePowerUnitStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.42 + type: gauge + help: 0200.0010.0001.0042 This attribute defines the combined status of all + power units of this chassis. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.42 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsRcvdInvalidTypePackets - oid: 1.3.6.1.2.1.207.1.2.5.1.9 - type: counter - help: The number of VRRP packets received by the virtual router with an invalid - value in the 'type' field - 1.3.6.1.2.1.207.1.2.5.1.9 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStatePowerUnitStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.43 + type: OctetString + help: 0200.0010.0001.0043 This attribute lists the status of each power unit + of this chassis - 1.3.6.1.4.1.674.10892.5.4.200.10.1.43 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + - name: systemStateCoolingUnitStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.44 + type: gauge + help: 0200.0010.0001.0044 This attribute defines the combined status of all + cooling units of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.44 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateCoolingUnitStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.45 + type: OctetString + help: 0200.0010.0001.0045 This attribute lists the status of each cooling unit + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.45 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsAddressListErrors - oid: 1.3.6.1.2.1.207.1.2.5.1.10 - type: counter - help: The total number of packets received for which the address list does not - match the locally configured list for the virtual router - 1.3.6.1.2.1.207.1.2.5.1.10 + - name: systemStateProcessorDeviceStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.50 + type: gauge + help: 0200.0010.0001.0050 This attribute defines the combined status of all + processor devices of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.50 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateProcessorDeviceStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.51 + type: OctetString + help: 0200.0010.0001.0051 This attribute lists the status of each processor + device of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.51 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + - name: systemStateBatteryStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.52 + type: gauge + help: 0200.0010.0001.0052 This attribute defines the combined status of all + batteries of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.52 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsPacketLengthErrors - oid: 1.3.6.1.2.1.207.1.2.5.1.11 - type: counter - help: The total number of packets received with a packet length less than the - length of the VRRP header - 1.3.6.1.2.1.207.1.2.5.1.11 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateBatteryStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.53 + type: OctetString + help: 0200.0010.0001.0053 This attribute lists the status of each battery of + this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.53 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId + - name: systemStateSDCardUnitStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.54 + type: gauge + help: 0200.0010.0001.0054 This attribute defines the combined status of all + SD Card units of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.54 + indexes: + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateSDCardUnitStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.55 + type: OctetString + help: 0200.0010.0001.0055 This attribute lists the status of each SD Card unit + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.55 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsRowDiscontinuityTime - oid: 1.3.6.1.2.1.207.1.2.5.1.12 + - name: systemStateSDCardDeviceStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.56 type: gauge - help: The value of sysUpTime on the most recent occasion at which any one or - more of this entry's counters suffered a discontinuity - 1.3.6.1.2.1.207.1.2.5.1.12 + help: 0200.0010.0001.0056 This attribute defines the combined status of all + SD Card devices of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.56 indexes: - - labelname: ifIndex - type: gauge - - labelname: vrrpv3OperationsVrId + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsInetAddrType + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateSDCardDeviceStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.57 + type: OctetString + help: 0200.0010.0001.0057 This attribute lists the status of each SD Card device + of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.57 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpv3StatisticsRefreshRate - oid: 1.3.6.1.2.1.207.1.2.5.1.13 + - name: systemStateIDSDMCardUnitStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.58 type: gauge - help: The minimum reasonable polling interval for this entry - 1.3.6.1.2.1.207.1.2.5.1.13 + help: 0200.0010.0001.0058 This attribute defines the combined status of all + IDSDM Card units of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.58 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpv3OperationsVrId - type: gauge - - labelname: vrrpv3OperationsInetAddrType + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateIDSDMCardUnitStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.59 + type: OctetString + help: 0200.0010.0001.0059 This attribute lists the status of each IDSDM Card + unit of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.59 + indexes: + - labelname: systemStatechassisIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpStatsBecomeMaster - oid: 1.3.6.1.2.1.68.2.4.1.1 - type: counter - help: The total number of times that this virtual router's state has transitioned - to MASTER. - 1.3.6.1.2.1.68.2.4.1.1 + - name: systemStateIDSDMCardDeviceStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.60 + type: gauge + help: 0200.0010.0001.0060 This attribute defines the combined status of all + IDSDM Card devices of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.60 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpOperVrId + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateIDSDMCardDeviceStatusList + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.61 + type: OctetString + help: 0200.0010.0001.0061 This attribute lists the status of each IDSDM Card + device of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.61 + indexes: + - labelname: systemStatechassisIndex type: gauge - - name: vrrpStatsAdvertiseRcvd - oid: 1.3.6.1.2.1.68.2.4.1.2 - type: counter - help: The total number of VRRP advertisements received by this virtual router. - - 1.3.6.1.2.1.68.2.4.1.2 + - name: systemStateTemperatureStatisticsStateDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.62 + type: OctetString + help: 0200.0010.0001.0062 This attribute lists the state settings of each temperature + statistics object of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.62 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpOperVrId + - name: systemStateTemperatureStatisticsStatusCombined + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.63 + type: gauge + help: 0200.0010.0001.0063 This attribute defines the combined status of all + temperature statistics objects of this system. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.63 + indexes: + - labelname: systemStatechassisIndex type: gauge - - name: vrrpStatsAdvertiseIntervalErrors - oid: 1.3.6.1.2.1.68.2.4.1.3 - type: counter - help: The total number of VRRP advertisement packets received for which the - advertisement interval is different than the one configured for the local - virtual router. - 1.3.6.1.2.1.68.2.4.1.3 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemStateTemperatureStatisticsStatusDetails + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.64 + type: OctetString + help: 0200.0010.0001.0064 This attribute lists the status of each temperature + statistics object of this system - 1.3.6.1.4.1.674.10892.5.4.200.10.1.64 indexes: - - labelname: ifIndex + - labelname: systemStatechassisIndex type: gauge - - labelname: vrrpOperVrId + - name: systemStateCMCStatus + oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.65 + type: gauge + help: 0200.0010.0001.0065 This attribute defines the status of CMC. - 1.3.6.1.4.1.674.10892.5.4.200.10.1.65 + indexes: + - labelname: systemStatechassisIndex type: gauge - - name: vrrpStatsAuthFailures - oid: 1.3.6.1.2.1.68.2.4.1.4 - type: counter - help: The total number of VRRP packets received that do not pass the authentication - check. - 1.3.6.1.2.1.68.2.4.1.4 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: numEventLogEntries + oid: 1.3.6.1.4.1.674.10892.5.4.300.1 + type: gauge + help: 0300.0001.0000 This attribute provides the number of entries currently + in the eventLogTable. - 1.3.6.1.4.1.674.10892.5.4.300.1 + - name: numLCLogEntries + oid: 1.3.6.1.4.1.674.10892.5.4.300.2 + type: gauge + help: 0300.0002.0000 This attribute provides the number of entries currently + in the lcLogTable - 1.3.6.1.4.1.674.10892.5.4.300.2 + - name: chassisIndexChassisInformation + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.1 + type: gauge + help: 0300.0010.0001.0001 This attribute defines the index (one based) of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.1 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + - name: chassisStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.2 + type: gauge + help: 0300.0010.0001.0002 This attribute defines the state capabilities of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.2 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsIpTtlErrors - oid: 1.3.6.1.2.1.68.2.4.1.5 - type: counter - help: The total number of VRRP packets received by the virtual router with IP - TTL (Time-To-Live) not equal to 255. - 1.3.6.1.2.1.68.2.4.1.5 + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: chassisStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.3 + type: gauge + help: 0300.0010.0001.0003 This attribute defines the state settings of the system + chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.3 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: chassisStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.4 + type: gauge + help: 0300.0010.0001.0004 This attribute defines the status of the system chassis. + - 1.3.6.1.4.1.674.10892.5.4.300.10.1.4 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsPriorityZeroPktsRcvd - oid: 1.3.6.1.2.1.68.2.4.1.6 - type: counter - help: The total number of VRRP packets received by the virtual router with a - priority of '0'. - 1.3.6.1.2.1.68.2.4.1.6 + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: chassisparentIndexReference + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.5 + type: gauge + help: 0300.0010.0001.0005 This attribute defines the index (one based) to the + parent system of this system chassis, if any. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.5 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + - name: chassisType + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.6 + type: gauge + help: 0300.0010.0001.0006 This attribute defines the system type of the system + chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.6 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsPriorityZeroPktsSent - oid: 1.3.6.1.2.1.68.2.4.1.7 - type: counter - help: The total number of VRRP packets sent by the virtual router with a priority - of '0'. - 1.3.6.1.2.1.68.2.4.1.7 + enum_values: + 1: other + 2: unknown + 3: desktop + 4: lowProfileDesktop + 5: pizzaBox + 6: miniTower + 7: tower + 8: portable + 9: lapTop + 10: noteBook + 11: handHeld + 12: dockingStation + 13: allInOne + 14: subNoteBook + 15: spaceSaving + 16: lunchBox + 17: mainSystemChassis + 18: expansionChassis + 19: subChassis + 20: busExpansionChassis + 21: peripheralChassis + 22: raidChassis + 23: rackMountChassis + 24: sealedCasePC + 25: multiSystemChassis + - name: chassisName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.7 + type: OctetString + help: 0300.0010.0001.0007 This attribute defines the user-assigned name of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.7 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + - name: chassisManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.8 + type: OctetString + help: 0300.0010.0001.0008 This attribute defines the name of the manufacturer + of the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.8 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsInvalidTypePktsRcvd - oid: 1.3.6.1.2.1.68.2.4.1.8 - type: counter - help: The number of VRRP packets received by the virtual router with an invalid - value in the 'type' field. - 1.3.6.1.2.1.68.2.4.1.8 + - name: chassisModelTypeName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.9 + type: OctetString + help: 0300.0010.0001.0009 This attribute defines the system model type of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.9 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + - name: chassisAssetTagName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.10 + type: OctetString + help: 0300.0010.0001.0010 This attribute defines the asset tag name of the system + chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.10 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsAddressListErrors - oid: 1.3.6.1.2.1.68.2.4.1.9 - type: counter - help: The total number of packets received for which the address list does not - match the locally configured list for the virtual router. - 1.3.6.1.2.1.68.2.4.1.9 + - name: chassisServiceTagName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.11 + type: OctetString + help: 0300.0010.0001.0011 This attribute defines the service tag name of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.11 indexes: - - labelname: ifIndex + - labelname: chassisIndexChassisInformation type: gauge - - labelname: vrrpOperVrId + - name: chassisID + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.12 + type: gauge + help: 0300.0010.0001.0012 This attribute defines the system ID - 1.3.6.1.4.1.674.10892.5.4.300.10.1.12 + indexes: + - labelname: chassisIndexChassisInformation type: gauge - - name: vrrpStatsInvalidAuthType - oid: 1.3.6.1.2.1.68.2.4.1.10 - type: counter - help: The total number of packets received with an unknown authentication type. - - 1.3.6.1.2.1.68.2.4.1.10 + - name: chassisIDExtension + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.13 + type: gauge + help: 0300.0010.0001.0013 This attribute defines the system ID extension. - + 1.3.6.1.4.1.674.10892.5.4.300.10.1.13 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassisSystemClass + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.14 + type: gauge + help: 0300.0010.0001.0014 This attribute defines the system class. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.14 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: other + 2: unknown + 3: workstationClass + 4: serverClass + 5: desktopClass + 6: portableClass + 7: netPCClass + 8: storageClass + - name: chassisSystemName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.15 + type: OctetString + help: 0300.0010.0001.0015 This attribute defines the host name of the system + chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.15 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassisLEDControlCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.24 + type: gauge + help: 0300.0010.0001.0024 This attribute defines the capabilities of the LED + control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.24 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknown + 2: alertOnErrorCapable + 4: alertOnWarningAndErrorCapable + 6: alertOnWarningOrErrorCapable + - name: chassisLEDControlSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.25 + type: gauge + help: 0300.0010.0001.0025 This attribute defines the reading and setting of + the LED control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.25 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknown + 2: alertOnError + 4: alertOnWarningAndError + - name: chassisIdentifyFlashControlCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.28 + type: gauge + help: 0300.0010.0001.0028 This attribute defines if the system allows setting + of the system front panel LED to flash. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.28 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 8: identifyCapable + - name: chassisIdentifyFlashControlSettings + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.29 + type: gauge + help: 0300.0010.0001.0029 This attribute setting causes the system front panel + LED to flash. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.29 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 8: identifyChassis + 10: identifyChassisAndEnable + - name: chassisLockPresent + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.30 + type: gauge + help: 0300.0010.0001.0030 If true, a system lock is present on the system chassis. + - 1.3.6.1.4.1.674.10892.5.4.300.10.1.30 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassishostControlCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.31 + type: gauge + help: 0300.0010.0001.0031 This attribute defines the capabilities of the host + control function. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.31 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: manualRebootCapable + 2: manualPowerOFFCapable + 4: manualPowerCycleCapable + 7: manualAllExceptOperatingSystemShutdownCapable + 8: manualOperatingSystemShutdownCapable + 15: manualFullyCapable + 16: manualRebootWithOSShutdownCapable + 32: manualRebootWithoutOSShutdownCapable + 64: manualPowerOffWithOSShutdownCapable + 128: manualPowerOffWithoutOSShutdownCapable + 256: manualPowerCycleWithOSShutdownCapable + 512: manualPowerCycleWithoutOSShutdownCapable + - name: chassishostControlSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.32 + type: gauge + help: 0300.0010.0001.0032 This attribute defines the settings of the host control + function. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.32 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: manualReboot + 2: manualPowerOFF + 4: manualPowerCycle + 8: manualOperatingSystemShutdown + 9: manualOperatingSystemShutdownThenReboot + 10: manualOperatingSystemShutdownThenPowerOFF + 12: manualOperatingSystemShutdownThenPowerCycle + - name: chassiswatchDogControlCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.33 + type: gauge + help: 0300.0010.0001.0033 This attribute defines the capabilities of the watchdog + control function. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.33 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: automaticRebootCapable + 2: automaticPowerCycleCapable + 4: automaticNotificationCapable + 8: automaticWatchDogTimerCapable + 16: automaticPowerOffCapable + 27: automaticAllExceptNotificationCapable + 31: automaticFullyCapable + - name: chassiswatchDogControlSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.34 + type: gauge + help: 0300.0010.0001.0034 This attribute defines the settings of the watchdog + control function. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.34 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: automaticRebootEnabled + 2: automaticPowerCycleEnabled + 4: automaticNotificationEnabled + 8: automaticPowerOffEnabled + - name: chassiswatchDogControlExpiryTimeCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.35 + type: gauge + help: 0300.0010.0001.0035 This attribute defines the capabilities of the watchdog + control expiry timer function. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.35 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: type1Capable + 2: type2Capable + 4: type3Capable + - name: chassiswatchDogControlExpiryTime + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.36 + type: gauge + help: 0300.0010.0001.0036 This attribute defines the current watchdog timer + value in seconds. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.36 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassisPowerButtonControlCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.38 + type: gauge + help: 0300.0010.0001.0038 This attribute defines the capabilities of the power + button control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.38 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + - name: chassisPowerButtonControlSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.39 + type: gauge + help: 0300.0010.0001.0039 This attribute defines the reading and setting of + the power button control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.39 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: disabled + - name: chassisNMIButtonControlCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.44 + type: gauge + help: 0300.0010.0001.0044 This attribute defines the capabilities of the NMI + button control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.44 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + - name: chassisNMIButtonControlSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.45 + type: gauge + help: 0300.0010.0001.0045 This attribute defines the reading and setting of + the NMI button control hardware in the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.45 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: disabled + - name: chassisSystemProperties + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.46 + type: gauge + help: 0300.0010.0001.0046 This attribute defines the properties of the system + chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.46 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + enum_values: + 1: energySmart + - name: chassisSystemRevisionNumber + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.47 + type: gauge + help: 0300.0010.0001.0047 This attribute defines the revision number of the + system where zero indicates the original version of the system chassis - 1.3.6.1.4.1.674.10892.5.4.300.10.1.47 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassisSystemRevisionName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.48 + type: OctetString + help: 0300.0010.0001.0048 This attribute defines the revision name of the system, + if applicable. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.48 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: chassisExpressServiceCodeName + oid: 1.3.6.1.4.1.674.10892.5.4.300.10.1.49 + type: OctetString + help: 0300.0010.0001.0049 This attribute defines the Express Service Code of + the system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.10.1.49 + indexes: + - labelname: chassisIndexChassisInformation + type: gauge + - name: eventLogchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.1 + type: gauge + help: 0300.0040.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.1 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + - name: eventLogRecordIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.2 + type: gauge + help: 0300.0040.0001.0002 This attribute defines the index (one based) of the + event log record. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.2 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + - name: eventLogStateCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.3 + type: gauge + help: 0300.0040.0001.0003 This attribute defines the state capabilities of the + object that is writing the event log. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.3 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + enum_values: + 1: unknown + 2: onlineCapable + 4: notReadyCapable + 8: resetCapable + - name: eventLogStateSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.4 + type: gauge + help: 0300.0040.0001.0004 This attribute defines the state settings of the object + that is writing the event log. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.4 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + enum_values: + 1: unknown + 2: online + 4: notReady + 8: reset + - name: eventLogRecord + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.5 + type: OctetString + help: 0300.0040.0001.0005 This attribute defines the data of the event log record. + - 1.3.6.1.4.1.674.10892.5.4.300.40.1.5 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + - name: eventLogFormat + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.6 + type: gauge + help: 0300.0040.0001.0006 This attribute defines the format of the event log + record. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.6 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + enum_values: + 1: raw + 2: ascii + 3: uniCode + - name: eventLogSeverityStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.7 + type: gauge + help: 0300.0040.0001.0007 This attribute defines the severity of the event log + record. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.7 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: eventLogDateName + oid: 1.3.6.1.4.1.674.10892.5.4.300.40.1.8 + type: OctetString + help: 0300.0040.0001.0008 This attribute defines the date and time of the event + log record. - 1.3.6.1.4.1.674.10892.5.4.300.40.1.8 + indexes: + - labelname: eventLogchassisIndex + type: gauge + - labelname: eventLogRecordIndex + type: gauge + - name: systemBIOSchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.1 + type: gauge + help: 0300.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.1 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + - name: systemBIOSIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.2 + type: gauge + help: 0300.0050.0001.0002 This attribute defines the index (one based) of the + system BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.2 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + - name: systemBIOSStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.3 + type: gauge + help: 0300.0050.0001.0003 This attribute defines the state capabilities of the + system BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.3 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: systemBIOSStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.4 + type: gauge + help: 0300.0050.0001.0004 This attribute defines the state settings of the system + BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.4 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: systemBIOSStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.5 + type: gauge + help: 0300.0050.0001.0005 This attribute defines the status of the system BIOS. + - 1.3.6.1.4.1.674.10892.5.4.300.50.1.5 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemBIOSReleaseDateName + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.7 + type: OctetString + help: 0300.0050.0001.0007 This attribute defines the release date name of the + system BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.7 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + - name: systemBIOSVersionName + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.8 + type: OctetString + help: 0300.0050.0001.0008 This attribute defines the version name of the system + BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.8 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + - name: systemBIOSManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.11 + type: OctetString + help: 0300.0050.0001.0011 This attribute defines the name of the manufacturer + of the system BIOS. - 1.3.6.1.4.1.674.10892.5.4.300.50.1.11 + indexes: + - labelname: systemBIOSchassisIndex + type: gauge + - labelname: systemBIOSIndex + type: gauge + - name: firmwarechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.1 + type: gauge + help: 0300.0060.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.60.1.1 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: firmwareIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.2 + type: gauge + help: 0300.0060.0001.0002 This attribute defines the index (one based) of the + firmware. - 1.3.6.1.4.1.674.10892.5.4.300.60.1.2 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: firmwareStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.3 + type: gauge + help: 0300.0060.0001.0003 This attribute defines the state capabilities of the + firmware. - 1.3.6.1.4.1.674.10892.5.4.300.60.1.3 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: firmwareStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.4 + type: gauge + help: 0300.0060.0001.0004 This attribute defines the state settings of the firmware. + - 1.3.6.1.4.1.674.10892.5.4.300.60.1.4 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: firmwareStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.5 + type: gauge + help: 0300.0060.0001.0005 This attribute defines the status of the firmware. + - 1.3.6.1.4.1.674.10892.5.4.300.60.1.5 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: firmwareSize + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.6 + type: gauge + help: 0300.0060.0001.0006 This attribute defines the image size of the firmware + in KBytes - 1.3.6.1.4.1.674.10892.5.4.300.60.1.6 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: firmwareType + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.7 + type: gauge + help: 0300.0060.0001.0007 This attribute defines the type of firmware. - 1.3.6.1.4.1.674.10892.5.4.300.60.1.7 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + enum_values: + 1: other + 2: unknown + 20: lifecycleController + 21: iDRAC7 + 22: iDRAC8 + 23: iDRAC9 + - name: firmwareTypeName + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.8 + type: OctetString + help: 0300.0060.0001.0008 This attribute defines the type name of the firmware. + - 1.3.6.1.4.1.674.10892.5.4.300.60.1.8 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: firmwareUpdateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.9 + type: gauge + help: 0300.0060.0001.0009 This attribute defines the bitmap of supported methods + for firmware update. - 1.3.6.1.4.1.674.10892.5.4.300.60.1.9 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: firmwareVersionName + oid: 1.3.6.1.4.1.674.10892.5.4.300.60.1.11 + type: OctetString + help: 0300.0060.0001.0011 This attribute defines the version of the firmware. + - 1.3.6.1.4.1.674.10892.5.4.300.60.1.11 + indexes: + - labelname: firmwarechassisIndex + type: gauge + - labelname: firmwareIndex + type: gauge + - name: intrusionchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.1 + type: gauge + help: 0300.0070.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.1 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + - name: intrusionIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.2 + type: gauge + help: 0300.0070.0001.0002 This attribute defines the index (one based) of the + intrusion sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.2 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + - name: intrusionStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.3 + type: gauge + help: 0300.0070.0001.0003 This attribute defines the state capabilities of the + intrusion sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.3 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: intrusionStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.4 + type: gauge + help: 0300.0070.0001.0004 This attribute defines the state settings of the intrusion + sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.4 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: intrusionStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.5 + type: gauge + help: 0300.0070.0001.0005 This attribute defines the status of the intrusion + sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.5 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: intrusionReading + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.6 + type: gauge + help: 0300.0070.0001.0006 This attribute defines the reading of the intrusion + sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.6 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + enum_values: + 1: chassisNotBreached + 2: chassisBreached + 3: chassisBreachedPrior + 4: chassisBreachSensorFailure + - name: intrusionType + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.7 + type: gauge + help: 0300.0070.0001.0007 This attribute defines the type of the intrusion sensor. + - 1.3.6.1.4.1.674.10892.5.4.300.70.1.7 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + enum_values: + 1: chassisBreachDetectionWhenPowerON + 2: chassisBreachDetectionWhenPowerOFF + - name: intrusionLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.300.70.1.8 + type: OctetString + help: 0300.0070.0001.0008 This attribute defines the location of the intrusion + sensor. - 1.3.6.1.4.1.674.10892.5.4.300.70.1.8 + indexes: + - labelname: intrusionchassisIndex + type: gauge + - labelname: intrusionIndex + type: gauge + - name: lcLogChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.1 + type: gauge + help: 0300.0090.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.1 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogRecordIndex + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.2 + type: gauge + help: 0300.0090.0001.0002 This attribute defines the index (one based) of the + LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.2 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogSequenceNumber + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.3 + type: gauge + help: 0300.0090.0001.0003 This attribute defines the LC Log sequence number + of the event associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.3 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogCategory + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.4 + type: gauge + help: 0300.0090.0001.0004 This attribute defines the category of the event associated + with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.4 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + enum_values: + 1: system + 2: storage + 3: updates + 4: audit + 5: configuration + 6: workNotes + - name: lcLogSeverityStatus + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.5 + type: gauge + help: 0300.0090.0001.0005 This attribute defines the severity of the event associated + with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.5 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: lcLogDateName + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.6 + type: OctetString + help: 0300.0090.0001.0006 This attribute defines the date and time of the event + associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.6 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.7 + type: OctetString + help: 0300.0090.0001.0007 Fully qualified device descriptor (FQDD) of the device + associated with the event associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.7 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogMessageID + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.8 + type: OctetString + help: 0300.0090.0001.0008 This attribute defines the Message ID of the event + associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.8 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogMessage + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.9 + type: OctetString + help: 0300.0090.0001.0009 This attribute defines the message of the event associated + with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.9 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogDetailedDescription + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.10 + type: OctetString + help: 0300.0090.0001.0010 This attribute defines the detailed description of + the event associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.10 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogRecommededAction + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.11 + type: OctetString + help: 0300.0090.0001.0011 This attribute defines an optional recommended action + associated with the event associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.11 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: lcLogComment + oid: 1.3.6.1.4.1.674.10892.5.4.300.90.1.12 + type: OctetString + help: 0300.0090.0001.0012 This attribute defines an optional user comment associated + with the event associated with the LC log record. - 1.3.6.1.4.1.674.10892.5.4.300.90.1.12 + indexes: + - labelname: lcLogChassisIndex + type: gauge + - labelname: lcLogRecordIndex + type: gauge + - name: powerUnitchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.1 + type: gauge + help: 0600.0010.0001.0001 This attribute defines the index (one based) of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.1 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + - name: powerUnitIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.2 + type: gauge + help: 0600.0010.0001.0002 This attribute defines the index (one based) of the + power unit. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.2 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + - name: powerUnitStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.3 + type: gauge + help: 0600.0010.0001.0003 This attribute defines the state capabilities of the + power unit. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.3 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: powerUnitStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.4 + type: gauge + help: 0600.0010.0001.0004 This attribute defines the state settings of the power + unit. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.4 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: powerUnitRedundancyStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.5 + type: gauge + help: 0600.0010.0001.0005 This attribute defines the redundancy status of the + power unit. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.5 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: full + 4: degraded + 5: lost + 6: notRedundant + 7: redundancyOffline + - name: powerSupplyCountForRedundancy + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.6 + type: gauge + help: 0600.0010.0001.0006 This attribute defines the total number of power supplies + required for this power unit to have full redundancy. - 1.3.6.1.4.1.674.10892.5.4.600.10.1.6 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + - name: powerUnitName + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.7 + type: OctetString + help: 0600.0010.0001.0007 This attribute defines the name of the power unit. + - 1.3.6.1.4.1.674.10892.5.4.600.10.1.7 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + - name: powerUnitStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.10.1.8 + type: gauge + help: 0600.0010.0001.0008 This attribute defines the status of the power unit. + - 1.3.6.1.4.1.674.10892.5.4.600.10.1.8 + indexes: + - labelname: powerUnitchassisIndex + type: gauge + - labelname: powerUnitIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: powerSupplychassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.1 + type: gauge + help: 0600.0012.0001.0001 This attribute defines the index (one based) of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.1 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.2 + type: gauge + help: 0600.0012.0001.0002 This attribute defines the index (one based) of the + power supply. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.2 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyStateCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.3 + type: gauge + help: 0600.0012.0001.0003 This attribute defines the state capabilities of the + power supply. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.3 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: unknown + 2: onlineCapable + 4: notReadyCapable + - name: powerSupplyStateSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.4 + type: gauge + help: 0600.0012.0001.0004 This attribute defines the state settings of the power + supply. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.4 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: unknown + 2: onLine + 4: notReady + 8: fanFailure + 10: onlineAndFanFailure + 16: powerSupplyIsON + 32: powerSupplyIsOK + 64: acSwitchIsON + 66: onlineandAcSwitchIsON + 128: acPowerIsON + 130: onlineAndAcPowerIsON + 210: onlineAndPredictiveFailure + 242: acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline + - name: powerSupplyStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 + type: gauge + help: 0600.0012.0001.0005 This attribute defines the status of the power supply. + - 1.3.6.1.4.1.674.10892.5.4.600.12.1.5 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: powerSupplyOutputWatts + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.6 + type: gauge + help: 0600.0012.0001.0006 This attribute defines the maximum sustained output + wattage of the power supply (in tenths of Watts). - 1.3.6.1.4.1.674.10892.5.4.600.12.1.6 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyType + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.7 + type: gauge + help: 0600.0012.0001.0007 This attribute defines the type of the power supply. + - 1.3.6.1.4.1.674.10892.5.4.600.12.1.7 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: powerSupplyTypeIsOther + 2: powerSupplyTypeIsUnknown + 3: powerSupplyTypeIsLinear + 4: powerSupplyTypeIsSwitching + 5: powerSupplyTypeIsBattery + 6: powerSupplyTypeIsUPS + 7: powerSupplyTypeIsConverter + 8: powerSupplyTypeIsRegulator + 9: powerSupplyTypeIsAC + 10: powerSupplyTypeIsDC + 11: powerSupplyTypeIsVRM + - name: powerSupplyLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 + type: OctetString + help: 0600.0012.0001.0008 This attribute defines the location of the power supply. + - 1.3.6.1.4.1.674.10892.5.4.600.12.1.8 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyMaximumInputVoltage + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.9 + type: gauge + help: 0600.0012.0001.0009 This attribute defines the maximum input voltage of + the power supply (in Volts). - 1.3.6.1.4.1.674.10892.5.4.600.12.1.9 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplypowerUnitIndexReference + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.10 + type: gauge + help: 0600.0012.0001.0010 This attribute defines the index to the associated + power unit if the power supply is part of a power unit. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.10 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplySensorState + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.11 + type: gauge + help: 0600.0012.0001.0011 This attribute defines the state reported by the power + supply sensor - 1.3.6.1.4.1.674.10892.5.4.600.12.1.11 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: presenceDetected + 2: psFailureDetected + 4: predictiveFailure + 8: psACLost + 16: acLostOrOutOfRange + 32: acOutOfRangeButPresent + 64: configurationError + - name: powerSupplyConfigurationErrorType + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.12 + type: gauge + help: 0600.0012.0001.0012 This attribute defines the type of configuration error + reported by the power supply sensor - 1.3.6.1.4.1.674.10892.5.4.600.12.1.12 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + enum_values: + 1: vendorMismatch + 2: revisionMismatch + 3: processorMissing + - name: powerSupplyPowerMonitorCapable + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.13 + type: gauge + help: 0600.0012.0001.0013 This attribute defines a boolean value that reports + whether the power supply is capable of monitoring power consumption. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.13 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyRatedInputWattage + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.14 + type: gauge + help: 0600.0012.0001.0014 This attribute defines the rated input wattage of + the power supply (in tenths of Watts). - 1.3.6.1.4.1.674.10892.5.4.600.12.1.14 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.15 + type: OctetString + help: 0600.0012.0001.0015 Fully qualified device descriptor (FQDD) of the power + supply. - 1.3.6.1.4.1.674.10892.5.4.600.12.1.15 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: powerSupplyCurrentInputVoltage + oid: 1.3.6.1.4.1.674.10892.5.4.600.12.1.16 + type: gauge + help: 0600.0012.0001.0016 This attribute defines the current input voltage to + the power supply (in Volts). - 1.3.6.1.4.1.674.10892.5.4.600.12.1.16 + indexes: + - labelname: powerSupplychassisIndex + type: gauge + - labelname: powerSupplyIndex + type: gauge + - name: voltageProbechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.1 + type: gauge + help: 0600.0020.0001.0001 This attribute defines the index (one based) of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.1 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.2 + type: gauge + help: 0600.0020.0001.0002 This attribute defines the index (one based) of the + voltage probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.2 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.3 + type: gauge + help: 0600.0020.0001.0003 This attribute defines the state capabilities of the + voltage probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.3 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: voltageProbeStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.4 + type: gauge + help: 0600.0020.0001.0004 This attribute defines the state settings of the voltage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.4 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: voltageProbeStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.5 + type: gauge + help: 0600.0020.0001.0005 This attribute defines the probe status of the voltage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.5 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCriticalUpper + 5: criticalUpper + 6: nonRecoverableUpper + 7: nonCriticalLower + 8: criticalLower + 9: nonRecoverableLower + 10: failed + - name: voltageProbeReading + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.6 + type: gauge + help: 0600.0020.0001.0006 This attribute defines the reading for a voltage probe + of type other than voltageProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.600.20.1.6 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeType + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.7 + type: gauge + help: 0600.0020.0001.0007 This attribute defines the type of the voltage probe. + - 1.3.6.1.4.1.674.10892.5.4.600.20.1.7 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: voltageProbeTypeIsOther + 2: voltageProbeTypeIsUnknown + 3: voltageProbeTypeIs1Point5Volt + 4: voltageProbeTypeIs3Point3Volt + 5: voltageProbeTypeIs5Volt + 6: voltageProbeTypeIsMinus5Volt + 7: voltageProbeTypeIs12Volt + 8: voltageProbeTypeIsMinus12Volt + 9: voltageProbeTypeIsIO + 10: voltageProbeTypeIsCore + 11: voltageProbeTypeIsFLEA + 12: voltageProbeTypeIsBattery + 13: voltageProbeTypeIsTerminator + 14: voltageProbeTypeIs2Point5Volt + 15: voltageProbeTypeIsGTL + 16: voltageProbeTypeIsDiscrete + 17: voltageProbeTypeIsGenericDiscrete + 18: voltageProbeTypeIsPSVoltage + 19: voltageProbeTypeIsMemoryStatus + - name: voltageProbeLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.8 + type: OctetString + help: 0600.0020.0001.0008 This attribute defines the location name of the voltage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.8 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeUpperNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.9 + type: gauge + help: 0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.9 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeUpperCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.10 + type: gauge + help: 0600.0020.0001.0010 This attribute defines the upper critical threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.10 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeUpperNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.11 + type: gauge + help: 0600.0020.0001.0011 This attribute defines the upper noncritical threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.11 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeLowerNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.12 + type: gauge + help: 0600.0020.0001.0012 This attribute defines the lower noncritical threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.12 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeLowerCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.13 + type: gauge + help: 0600.0020.0001.0013 This attribute defines the lower critical threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.13 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeLowerNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.14 + type: gauge + help: 0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the voltage probe - 1.3.6.1.4.1.674.10892.5.4.600.20.1.14 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + - name: voltageProbeProbeCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.15 + type: gauge + help: 0600.0020.0001.0015 This attribute defines the probe capabilities of the + voltage probe. - 1.3.6.1.4.1.674.10892.5.4.600.20.1.15 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: upperNonCriticalThresholdSetCapable + 2: lowerNonCriticalThresholdSetCapable + 4: upperNonCriticalThresholdDefaultCapable + 8: lowerNonCriticalThresholdDefaultCapable + - name: voltageProbeDiscreteReading + oid: 1.3.6.1.4.1.674.10892.5.4.600.20.1.16 + type: gauge + help: 0600.0020.0001.0016 This attribute defines the reading for a voltage probe + of type voltageProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.600.20.1.16 + indexes: + - labelname: voltageProbechassisIndex + type: gauge + - labelname: voltageProbeIndex + type: gauge + enum_values: + 1: voltageIsGood + 2: voltageIsBad + - name: amperageProbechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.1 + type: gauge + help: 0600.0030.0001.0001 This attribute defines the index (one based) of the + system chassis. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.1 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.2 + type: gauge + help: 0600.0030.0001.0002 This attribute defines the index (one based) of the + amperage probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.2 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.3 + type: gauge + help: 0600.0030.0001.0003 This attribute defines the state capabilities of the + amperage probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.3 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: amperageProbeStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.4 + type: gauge + help: 0600.0030.0001.0004 This attribute defines the state settings of the amperage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.4 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: amperageProbeStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.5 + type: gauge + help: 0600.0030.0001.0005 This attribute defines the probe status of the amperage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.5 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCriticalUpper + 5: criticalUpper + 6: nonRecoverableUpper + 7: nonCriticalLower + 8: criticalLower + 9: nonRecoverableLower + 10: failed + - name: amperageProbeReading + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.6 + type: gauge + help: 0600.0030.0001.0006 This attribute defines the reading for an amperage + probe of type other than amperageProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.600.30.1.6 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeType + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.7 + type: gauge + help: 0600.0030.0001.0007 This attribute defines the type of the amperage probe. + - 1.3.6.1.4.1.674.10892.5.4.600.30.1.7 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: amperageProbeTypeIsOther + 2: amperageProbeTypeIsUnknown + 3: amperageProbeTypeIs1Point5Volt + 4: amperageProbeTypeIs3Point3volt + 5: amperageProbeTypeIs5Volt + 6: amperageProbeTypeIsMinus5Volt + 7: amperageProbeTypeIs12Volt + 8: amperageProbeTypeIsMinus12Volt + 9: amperageProbeTypeIsIO + 10: amperageProbeTypeIsCore + 11: amperageProbeTypeIsFLEA + 12: amperageProbeTypeIsBattery + 13: amperageProbeTypeIsTerminator + 14: amperageProbeTypeIs2Point5Volt + 15: amperageProbeTypeIsGTL + 16: amperageProbeTypeIsDiscrete + 23: amperageProbeTypeIsPowerSupplyAmps + 24: amperageProbeTypeIsPowerSupplyWatts + 25: amperageProbeTypeIsSystemAmps + 26: amperageProbeTypeIsSystemWatts + - name: amperageProbeLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.8 + type: OctetString + help: 0600.0030.0001.0008 This attribute defines the location of the amperage + probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.8 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeUpperNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.9 + type: gauge + help: 0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.9 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeUpperCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.10 + type: gauge + help: 0600.0030.0001.0010 This attribute defines the upper critical threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.10 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeUpperNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.11 + type: gauge + help: 0600.0030.0001.0011 This attribute defines the upper noncritical threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.11 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeLowerNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.12 + type: gauge + help: 0600.0030.0001.0012 This attribute defines the lower noncritical threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.12 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeLowerCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.13 + type: gauge + help: 0600.0030.0001.0013 This attribute defines the lower critical threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.13 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeLowerNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.14 + type: gauge + help: 0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold + of the amperage probe - 1.3.6.1.4.1.674.10892.5.4.600.30.1.14 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + - name: amperageProbeProbeCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.15 + type: gauge + help: 0600.0030.0001.0015 This attribute defines the probe capabilities of the + amperage probe. - 1.3.6.1.4.1.674.10892.5.4.600.30.1.15 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: upperNonCriticalThresholdSetCapable + 2: lowerNonCriticalThresholdSetCapable + 4: upperNonCriticalThresholdDefaultCapable + 8: lowerNonCriticalThresholdDefaultCapable + - name: amperageProbeDiscreteReading + oid: 1.3.6.1.4.1.674.10892.5.4.600.30.1.16 + type: gauge + help: 0600.0030.0001.0016 This attribute defines the reading for an amperage + probe of type amperageProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.600.30.1.16 + indexes: + - labelname: amperageProbechassisIndex + type: gauge + - labelname: amperageProbeIndex + type: gauge + enum_values: + 1: amperageIsGood + 2: amperageIsBad + - name: systemBatteryChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.1 + type: gauge + help: 0600.0050.0001.0001 This attribute defines the index (one based) of the + system chassis that contains the battery. - 1.3.6.1.4.1.674.10892.5.4.600.50.1.1 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + - name: systemBatteryIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.2 + type: gauge + help: 0600.0050.0001.0002 This attribute defines the index (one based) of the + battery. - 1.3.6.1.4.1.674.10892.5.4.600.50.1.2 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + - name: systemBatteryStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.3 + type: gauge + help: 0600.0050.0001.0003 This attribute defines the state capabilities of the + battery. - 1.3.6.1.4.1.674.10892.5.4.600.50.1.3 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: systemBatteryStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.4 + type: gauge + help: 0600.0050.0001.0004 This attribute defines the state settings of the battery. + - 1.3.6.1.4.1.674.10892.5.4.600.50.1.4 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: systemBatteryStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.5 + type: gauge + help: 0600.0050.0001.0005 This attribute defines the status of the battery. + - 1.3.6.1.4.1.674.10892.5.4.600.50.1.5 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemBatteryReading + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.6 + type: gauge + help: 0600.0050.0001.0006 This attribute defines the reading of the battery. + - 1.3.6.1.4.1.674.10892.5.4.600.50.1.6 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + enum_values: + 1: predictiveFailure + 2: failed + 4: presenceDetected + - name: systemBatteryLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.7 + type: OctetString + help: 0600.0050.0001.0007 This attribute defines the location of the battery. + - 1.3.6.1.4.1.674.10892.5.4.600.50.1.7 + indexes: + - labelname: systemBatteryChassisIndex + type: gauge + - labelname: systemBatteryIndex + type: gauge + - name: powerUsageChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.1 + type: gauge + help: 0600.0060.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.1 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageIndex + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.2 + type: gauge + help: 0600.0060.0001.0002 This attribute defines the index (one based) of the + power usage information. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.2 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.3 + type: gauge + help: 0600.0060.0001.0003 This attribute defines the state capabilities of the + power usage information. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.3 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: powerUsageStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.4 + type: gauge + help: 0600.0060.0001.0004 This attribute defines the state settings of the power + usage information. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.4 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: powerUsageStatus + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.5 + type: gauge + help: 0600.0060.0001.0005 This attribute defines the status of the power usage + information. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.5 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: powerUsageEntityName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.6 + type: OctetString + help: 0600.0060.0001.0006 This attribute defines the name of the entity associated + with this power usage information. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.6 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageCumulativeWattage + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.7 + type: gauge + help: 0600.0060.0001.0007 This attribute defines the total wattage used (in + Watt-hours) by this entity since the date and time specified by the powerUsageCumulativeWattageStartDateName + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.7 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageCumulativeWattageStartDateName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.8 + type: OctetString + help: 0600.0060.0001.0008 This attribute defines the date and time at which + the data collection started for the value reported by the powerUsageCumulativeWattage + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.8 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakWatts + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.9 + type: gauge + help: 0600.0060.0001.0009 This attribute defines the peak wattage reading (in + Watts) for this entity since the date and time specified by the powerUsagePeakWattsStartDateName + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.9 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakWattsStartDateName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.10 + type: OctetString + help: 0600.0060.0001.0010 This attribute defines the date and time at which + the data collection started for the value reported by the powerUsagePeakWatts + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.10 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakWattsReadingDateName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.11 + type: OctetString + help: 0600.0060.0001.0011 This attribute defines the date and time at which + the value reported by the powerUsagePeakWatts attribute was measured. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.11 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakAmps + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.12 + type: gauge + help: 0600.0060.0001.0012 This attribute defines the peak amperage reading (in + tenths of Amps) for this entity since the date and time specified by the powerUsagePeakAmpsStartDateName + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.12 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakAmpsStartDateName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.13 + type: OctetString + help: 0600.0060.0001.0013 This attribute defines the date and time at which + the data collection started for the value reported by the powerUsagePeakAmps + attribute. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.13 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakAmpsReadingDateName + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.14 + type: OctetString + help: 0600.0060.0001.0014 This attribute defines the date and time at which + the value reported by the powerUsagePeakAmps attribute was measured. - 1.3.6.1.4.1.674.10892.5.4.600.60.1.14 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageIdlePower + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.15 + type: gauge + help: 0600.0060.0001.0015 This attribute defines the system idle power (in Watts) + - 1.3.6.1.4.1.674.10892.5.4.600.60.1.15 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageMaxPotentialPower + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.16 + type: gauge + help: 0600.0060.0001.0016 This attribute defines the system maximum potential + power (in Watts) - 1.3.6.1.4.1.674.10892.5.4.600.60.1.16 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePowerCapCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.17 + type: gauge + help: 0600.0060.0001.0017 This attribute defines the system power cap capabilities. + - 1.3.6.1.4.1.674.10892.5.4.600.60.1.17 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + enum_values: + 1: enable + 2: disable + - name: powerUsagePowerCapSetting + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.18 + type: gauge + help: 0600.0060.0001.0018 This attribute defines the system power cap setting. + - 1.3.6.1.4.1.674.10892.5.4.600.60.1.18 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + enum_values: + 1: enabled + - name: powerUsagePowerCapValue + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.19 + type: gauge + help: 0600.0060.0001.0019 This attribute defines the system power cap value + (in Watts). - 1.3.6.1.4.1.674.10892.5.4.600.60.1.19 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsageInstantaneousHeadroom + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.20 + type: gauge + help: 0600.0060.0001.0020 This attribute defines the system instantaneous headroom + (in Watts) - 1.3.6.1.4.1.674.10892.5.4.600.60.1.20 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: powerUsagePeakHeadroom + oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.21 + type: gauge + help: 0600.0060.0001.0021 This attribute defines the system peak headroom (in + Watts) - 1.3.6.1.4.1.674.10892.5.4.600.60.1.21 + indexes: + - labelname: powerUsageChassisIndex + type: gauge + - labelname: powerUsageIndex + type: gauge + - name: coolingUnitchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.1 + type: gauge + help: 0700.0010.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.1 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + - name: coolingUnitIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.2 + type: gauge + help: 0700.0010.0001.0002 This attribute defines the index (one based) of the + cooling unit. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.2 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + - name: coolingUnitStateCapabilties + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.3 + type: gauge + help: 0700.0010.0001.0003 This attribute defines the state capabilities of the + cooling unit. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.3 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: coolingUnitStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.4 + type: gauge + help: 0700.0010.0001.0004 This attribute defines the state settings of the cooling + unit. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.4 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: coolingUnitRedundancyStatus + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.5 + type: gauge + help: 0700.0010.0001.0005 This attribute defines the redundancy status of the + cooling unit. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.5 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: full + 4: degraded + 5: lost + 6: notRedundant + 7: redundancyOffline + - name: coolingDeviceCountForRedundancy + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.6 + type: gauge + help: 0700.0010.0001.0006 This attribute defines the total number of cooling + devices required for this cooling unit to have full redundancy. - 1.3.6.1.4.1.674.10892.5.4.700.10.1.6 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + - name: coolingUnitName + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.7 + type: OctetString + help: 0700.0010.0001.0007 This attribute defines the name of the cooling unit. + - 1.3.6.1.4.1.674.10892.5.4.700.10.1.7 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + - name: coolingUnitStatus + oid: 1.3.6.1.4.1.674.10892.5.4.700.10.1.8 + type: gauge + help: 0700.0010.0001.0008 This attribute defines the status of the cooling unit. + - 1.3.6.1.4.1.674.10892.5.4.700.10.1.8 + indexes: + - labelname: coolingUnitchassisIndex + type: gauge + - labelname: coolingUnitIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: coolingDevicechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.1 + type: gauge + help: 0700.0012.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.1 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.2 + type: gauge + help: 0700.0012.0001.0002 This attribute defines the index (one based) of the + cooling device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.2 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.3 + type: gauge + help: 0700.0012.0001.0003 This attribute defines the state capabilities of the + cooling device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.3 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: coolingDeviceStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.4 + type: gauge + help: 0700.0012.0001.0004 This attribute defines the state settings of the cooling + device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.4 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: coolingDeviceStatus + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 + type: gauge + help: 0700.0012.0001.0005 This attribute defines the probe status of the cooling + device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.5 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCriticalUpper + 5: criticalUpper + 6: nonRecoverableUpper + 7: nonCriticalLower + 8: criticalLower + 9: nonRecoverableLower + 10: failed + - name: coolingDeviceReading + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.6 + type: gauge + help: 0700.0012.0001.0006 This attribute defines the reading for a cooling device + of subtype other than coolingDeviceSubTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.700.12.1.6 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceType + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 + type: gauge + help: 0700.0012.0001.0007 This attribute defines the type of the cooling device. + - 1.3.6.1.4.1.674.10892.5.4.700.12.1.7 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: coolingDeviceTypeIsOther + 2: coolingDeviceTypeIsUnknown + 3: coolingDeviceTypeIsAFan + 4: coolingDeviceTypeIsABlower + 5: coolingDeviceTypeIsAChipFan + 6: coolingDeviceTypeIsACabinetFan + 7: coolingDeviceTypeIsAPowerSupplyFan + 8: coolingDeviceTypeIsAHeatPipe + 9: coolingDeviceTypeIsRefrigeration + 10: coolingDeviceTypeIsActiveCooling + 11: coolingDeviceTypeIsPassiveCooling + - name: coolingDeviceLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 + type: OctetString + help: 0700.0012.0001.0008 This attribute defines the location name of the cooling + device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.8 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceUpperNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.9 + type: gauge + help: 0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.9 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceUpperCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.10 + type: gauge + help: 0700.0012.0001.0010 This attribute defines the upper critical threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.10 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceUpperNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.11 + type: gauge + help: 0700.0012.0001.0011 This attribute defines the upper noncritical threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.11 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceLowerNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.12 + type: gauge + help: 0700.0012.0001.0012 This attribute defines the lower noncritical threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.12 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceLowerCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.13 + type: gauge + help: 0700.0012.0001.0013 This attribute defines the lower critical threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.13 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceLowerNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.14 + type: gauge + help: 0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold + of the cooling device - 1.3.6.1.4.1.674.10892.5.4.700.12.1.14 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDevicecoolingUnitIndexReference + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.15 + type: gauge + help: 0700.0012.0001.0015 This attribute defines the index to the associated + cooling unit. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.15 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: coolingDeviceSubType + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.16 + type: gauge + help: 0700.0012.0001.0016 This attribute defines the subtype of the cooling + device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.16 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: coolingDeviceSubTypeIsOther + 2: coolingDeviceSubTypeIsUnknown + 3: coolingDeviceSubTypeIsAFanThatReadsInRPM + 4: coolingDeviceSubTypeIsAFanReadsONorOFF + 5: coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM + 6: coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF + 16: coolingDeviceSubTypeIsDiscrete + - name: coolingDeviceProbeCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.17 + type: gauge + help: 0700.0012.0001.0017 This attribute defines the probe capabilities of the + cooling device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.17 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: upperNonCriticalThresholdSetCapable + 2: lowerNonCriticalThresholdSetCapable + 4: upperNonCriticalThresholdDefaultCapable + 8: lowerNonCriticalThresholdDefaultCapable + - name: coolingDeviceDiscreteReading + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.18 + type: gauge + help: 0700.0012.0001.0018 This attribute defines the reading for a cooling device + of type coolingDeviceSubTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.700.12.1.18 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + enum_values: + 1: coolingDeviceIsGood + 2: coolingDeviceIsBad + - name: coolingDeviceFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.700.12.1.19 + type: OctetString + help: 0700.0012.0001.0019 Fully qualified device descriptor (FQDD) of the cooling + device. - 1.3.6.1.4.1.674.10892.5.4.700.12.1.19 + indexes: + - labelname: coolingDevicechassisIndex + type: gauge + - labelname: coolingDeviceIndex + type: gauge + - name: temperatureProbechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 + type: gauge + help: 0700.0020.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.1 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeIndex + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.2 + type: gauge + help: 0700.0020.0001.0002 This attribute defines the index (one based) of the + temperature probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.2 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.3 + type: gauge + help: 0700.0020.0001.0003 This attribute defines the state capabilities of the + temperature probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.3 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: temperatureProbeStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.4 + type: gauge + help: 0700.0020.0001.0004 This attribute defines the state settings of the temperature + probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.4 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: temperatureProbeStatus + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.5 + type: gauge + help: 0700.0020.0001.0005 This attribute defines the probe status of the temperature + probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.5 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCriticalUpper + 5: criticalUpper + 6: nonRecoverableUpper + 7: nonCriticalLower + 8: criticalLower + 9: nonRecoverableLower + 10: failed + - name: temperatureProbeReading + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.6 + type: gauge + help: 0700.0020.0001.0006 This attribute defines the reading for a temperature + probe of type other than temperatureProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.700.20.1.6 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeType + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.7 + type: gauge + help: 0700.0020.0001.0007 This attribute defines the type of the temperature + probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.7 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: temperatureProbeTypeIsOther + 2: temperatureProbeTypeIsUnknown + 3: temperatureProbeTypeIsAmbientESM + 16: temperatureProbeTypeIsDiscrete + - name: temperatureProbeLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 + type: OctetString + help: 0700.0020.0001.0008 This attribute defines the location name of the temperature + probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.8 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeUpperNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.9 + type: gauge + help: 0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.9 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeUpperCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.10 + type: gauge + help: 0700.0020.0001.0010 This attribute defines the upper critical threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.10 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeUpperNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.11 + type: gauge + help: 0700.0020.0001.0011 This attribute defines the upper noncritical threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.11 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeLowerNonCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.12 + type: gauge + help: 0700.0020.0001.0012 This attribute defines the lower noncritical threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.12 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeLowerCriticalThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.13 + type: gauge + help: 0700.0020.0001.0013 This attribute defines the lower critical threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.13 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeLowerNonRecoverableThreshold + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.14 + type: gauge + help: 0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the temperature probe - 1.3.6.1.4.1.674.10892.5.4.700.20.1.14 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + - name: temperatureProbeProbeCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.15 + type: gauge + help: 0700.0020.0001.0015 This attribute defines the probe capabilities of the + temperature probe. - 1.3.6.1.4.1.674.10892.5.4.700.20.1.15 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: upperNonCriticalThresholdSetCapable + 2: lowerNonCriticalThresholdSetCapable + 4: upperNonCriticalThresholdDefaultCapable + 8: lowerNonCriticalThresholdDefaultCapable + - name: temperatureProbeDiscreteReading + oid: 1.3.6.1.4.1.674.10892.5.4.700.20.1.16 + type: gauge + help: 0700.0020.0001.0016 This attribute defines the reading for a temperature + probe of type temperatureProbeTypeIsDiscrete - 1.3.6.1.4.1.674.10892.5.4.700.20.1.16 + indexes: + - labelname: temperatureProbechassisIndex + type: gauge + - labelname: temperatureProbeIndex + type: gauge + enum_values: + 1: temperatureIsGood + 2: temperatureIsBad + - name: processorDevicechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.1 + type: gauge + help: 1100.0030.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.1 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.2 + type: gauge + help: 1100.0030.0001.0002 This attribute defines the index (one based) of the + processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.2 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.3 + type: gauge + help: 1100.0030.0001.0003 This attribute defines the state capabilities of the + processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.3 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: processorDeviceStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.4 + type: gauge + help: 1100.0030.0001.0004 This attribute defines the state settings of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.4 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: processorDeviceStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.5 + type: gauge + help: 1100.0030.0001.0005 This attribute defines the status of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.5 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: processorDeviceType + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.7 + type: gauge + help: 1100.0030.0001.0007 This attribute defines the type of the processor device. + - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.7 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: deviceTypeIsOther + 2: deviceTypeIsUnknown + 3: deviceTypeIsCPU + 4: deviceTypeIsMathProcessor + 5: deviceTypeIsDSP + 6: deviceTypeIsAVideoProcessor + - name: processorDeviceManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.8 + type: OctetString + help: 1100.0030.0001.0008 This attribute defines the name of the manufacturer + of the processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.8 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceStatusState + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.9 + type: gauge + help: 1100.0030.0001.0009 This attribute defines the status state of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.9 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: enabled + 4: userDisabled + 5: biosDisabled + 6: idle + - name: processorDeviceFamily + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.10 + type: gauge + help: 1100.0030.0001.0010 This attribute defines the family of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.10 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + enum_values: + 1: deviceFamilyIsOther + 2: deviceFamilyIsUnknown + 3: deviceFamilyIs8086 + 4: deviceFamilyIs80286 + 5: deviceFamilyIsIntel386 + 6: deviceFamilyIsIntel486 + 7: deviceFamilyIs8087 + 8: deviceFamilyIs80287 + 9: deviceFamilyIs80387 + 10: deviceFamilyIs80487 + 11: deviceFamilyIsPentium + 12: deviceFamilyIsPentiumPro + 13: deviceFamilyIsPentiumII + 14: deviceFamilyIsPentiumMMX + 15: deviceFamilyIsCeleron + 16: deviceFamilyIsPentiumIIXeon + 17: deviceFamilyIsPentiumIII + 18: deviceFamilyIsPentiumIIIXeon + 19: deviceFamilyIsPentiumIIISpeedStep + 20: deviceFamilyIsItanium + 21: deviceFamilyIsIntelXeon + 22: deviceFamilyIsPentium4 + 23: deviceFamilyIsIntelXeonMP + 24: deviceFamilyIsIntelItanium2 + 25: deviceFamilyIsK5 + 26: deviceFamilyIsK6 + 27: deviceFamilyIsK6Dash2 + 28: deviceFamilyIsK6Dash3 + 29: deviceFamilyIsAMDAthlon + 30: deviceFamilyIsAMD2900 + 31: deviceFamilyIsK6Dash2Plus + 32: deviceFamilyIsPowerPC + 33: deviceFamilyIsPowerPC601 + 34: deviceFamilyIsPowerPC603 + 35: deviceFamilyIsPowerPC603Plus + 36: deviceFamilyIsPowerPC604 + 37: deviceFamilyIsPowerPC620 + 38: deviceFamilyIsPowerPCx704 + 39: deviceFamilyIsPowerPC750 + 40: deviceFamilyIsIntelCoreDuo + 41: deviceFamilyIsIntelCoreDuoMobile + 42: deviceFamilyIsIntelCoreSoloMobile + 43: deviceFamilyIsIntelAtom + 48: deviceFamilyIsAlpha + 49: deviceFamilyIsAlpha21064 + 50: deviceFamilyIsAlpha21066 + 51: deviceFamilyIsAlpha21164 + 52: deviceFamilyIsAlpha21164PC + 53: deviceFamilyIsAlpha21164a + 54: deviceFamilyIsAlpha21264 + 55: deviceFamilyIsAlpha21364 + 56: deviceFamilyIsAMDTurionIIUltraDualMobileM + 57: deviceFamilyIsAMDTurionIIDualMobileM + 58: deviceFamilyIsAMDAthlonIIDualMobileM + 59: deviceFamilyIsAMDOpteron6100 + 60: deviceFamilyIsAMDOpteron4100 + 61: deviceFamilyIsAMDOpteron6200 + 62: deviceFamilyIsAMDOpteron4200 + 64: deviceFamilyIsMIPS + 65: deviceFamilyIsMIPSR4000 + 66: deviceFamilyIsMIPSR4200 + 67: deviceFamilyIsMIPSR4400 + 68: deviceFamilyIsMIPSR4600 + 69: deviceFamilyIsMIPSR10000 + 80: deviceFamilyIsSPARC + 81: deviceFamilyIsSuperSPARC + 82: deviceFamilyIsmicroSPARCII + 83: deviceFamilyIsmicroSPARCIIep + 84: deviceFamilyIsUltraSPARC + 85: deviceFamilyIsUltraSPARCII + 86: deviceFamilyIsUltraSPARCIIi + 87: deviceFamilyIsUltraSPARCIII + 88: deviceFamilyIsUltraSPARCIIIi + 96: deviceFamilyIs68040 + 97: deviceFamilyIs68xxx + 98: deviceFamilyIs68000 + 99: deviceFamilyIs68010 + 100: deviceFamilyIs68020 + 101: deviceFamilyIs68030 + 107: deviceFamilyIsAMDZen + 112: deviceFamilyIsHobbit + 120: deviceFamilyIsCrusoeTM5000 + 121: deviceFamilyIsCrusoeTM3000 + 122: deviceFamilyIsEfficeonTM8000 + 128: deviceFamilyIsWeitek + 130: deviceFamilyIsIntelCeleronM + 131: deviceFamilyIsAMDAthlon64 + 132: deviceFamilyIsAMDOpteron + 133: deviceFamilyIsAMDSempron + 134: deviceFamilyIsAMDTurion64Mobile + 135: deviceFamilyIsDualCoreAMDOpteron + 136: deviceFamilyIsAMDAthlon64X2DualCore + 137: deviceFamilyIsAMDTurion64X2Mobile + 138: deviceFamilyIsQuadCoreAMDOpteron + 139: deviceFamilyIsThirdGenerationAMDOpteron + 140: deviceFamilyIsAMDPhenomFXQuadCore + 141: deviceFamilyIsAMDPhenomX4QuadCore + 142: deviceFamilyIsAMDPhenomX2DualCore + 143: deviceFamilyIsAMDAthlonX2DualCore + 144: deviceFamilyIsPARISC + 145: deviceFamilyIsPARISC8500 + 146: deviceFamilyIsPARISC8000 + 147: deviceFamilyIsPARISC7300LC + 148: deviceFamilyIsPARISC7200 + 149: deviceFamilyIsPARISC7100LC + 150: deviceFamilyIsPARISC7100 + 160: deviceFamilyIsV30 + 161: deviceFamilyIsQuadCoreIntelXeon3200 + 162: deviceFamilyIsDualCoreIntelXeon3000 + 163: deviceFamilyIsQuadCoreIntelXeon5300 + 164: deviceFamilyIsDualCoreIntelXeon5100 + 165: deviceFamilyIsDualCoreIntelXeon5000 + 166: deviceFamilyIsDualCoreIntelXeonLV + 167: deviceFamilyIsDualCoreIntelXeonULV + 168: deviceFamilyIsDualCoreIntelXeon7100 + 169: deviceFamilyIsQuadCoreIntelXeon5400 + 170: deviceFamilyIsQuadCoreIntelXeon + 171: deviceFamilyIsDualCoreIntelXeon5200 + 172: deviceFamilyIsDualCoreIntelXeon7200 + 173: deviceFamilyIsQuadCoreIntelXeon7300 + 174: deviceFamilyIsQuadCoreIntelXeon7400 + 175: deviceFamilyIsMultiCoreIntelXeon7400 + 176: deviceFamilyIsM1 + 177: deviceFamilyIsM2 + 179: deviceFamilyIsIntelPentium4HT + 180: deviceFamilyIsAS400 + 182: deviceFamilyIsAMDAthlonXP + 183: deviceFamilyIsAMDAthlonMP + 184: deviceFamilyIsAMDDuron + 185: deviceFamilyIsIntelPentiumM + 186: deviceFamilyIsIntelCeleronD + 187: deviceFamilyIsIntelPentiumD + 188: deviceFamilyIsIntelPentiumExtreme + 189: deviceFamilyIsIntelCoreSolo + 190: deviceFamilyIsIntelCore2 + 191: deviceFamilyIsIntelCore2Duo + 192: deviceFamilyIsIntelCore2Solo + 193: deviceFamilyIsIntelCore2Extreme + 194: deviceFamilyIsIntelCore2Quad + 195: deviceFamilyIsIntelCore2ExtremeMobile + 196: deviceFamilyIsIntelCore2DuoMobile + 197: deviceFamilyIsIntelCore2SoloMobile + 198: deviceFamilyIsIntelCorei7 + 199: deviceFamilyIsDualCoreIntelCeleron + 200: deviceFamilyIsIBM390 + 201: deviceFamilyIsG4 + 202: deviceFamilyIsG5 + 203: deviceFamilyIsESA390G6 + 204: deviceFamilyIszArchitectur + 205: deviceFamilyIsIntelCorei5 + 206: deviceFamilyIsIntelCorei3 + 210: deviceFamilyIsVIAC7M + 211: deviceFamilyIsVIAC7D + 212: deviceFamilyIsVIAC7 + 213: deviceFamilyIsVIAEden + 214: deviceFamilyIsMultiCoreIntelXeon + 215: deviceFamilyIsDualCoreIntelXeon3xxx + 216: deviceFamilyIsQuadCoreIntelXeon3xxx + 217: deviceFamilyIsVIANano + 218: deviceFamilyIsDualCoreIntelXeon5xxx + 219: deviceFamilyIsQuadCoreIntelXeon5xxx + 221: deviceFamilyIsDualCoreIntelXeon7xxx + 222: deviceFamilyIsQuadCoreIntelXeon7xxx + 223: deviceFamilyIsMultiCoreIntelXeon7xxx + 224: deviceFamilyIsMultiCoreIntelXeon3400 + 230: deviceFamilyIsEmbeddedAMDOpertonQuadCore + 231: deviceFamilyIsAMDPhenomTripleCore + 232: deviceFamilyIsAMDTurionUltraDualCoreMobile + 233: deviceFamilyIsAMDTurionDualCoreMobile + 234: deviceFamilyIsAMDAthlonDualCore + 235: deviceFamilyIsAMDSempronSI + 236: deviceFamilyIsAMDPhenomII + 237: deviceFamilyIsAMDAthlonII + 238: deviceFamilyIsSixCoreAMDOpteron + 239: deviceFamilyIsAMDSempronM + 250: deviceFamilyIsi860 + 251: deviceFamilyIsi960 + - name: processorDeviceMaximumSpeed + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.11 + type: gauge + help: 1100.0030.0001.0011 This attribute defines the maximum speed of the processor + device in MHz - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.11 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceCurrentSpeed + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.12 + type: gauge + help: 1100.0030.0001.0012 This attribute defines the current speed of the processor + device in MHz - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.12 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceExternalClockSpeed + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.13 + type: gauge + help: 1100.0030.0001.0013 This attribute defines the speed of the external clock + for the processor device in MHz - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.13 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceVoltage + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.14 + type: gauge + help: 1100.0030.0001.0014 This attribute defines the voltage powering the processor + device in millivolts - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.14 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceVersionName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.16 + type: OctetString + help: 1100.0030.0001.0016 This attribute defines the version of the processor + device - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.16 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceCoreCount + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.17 + type: gauge + help: 1100.0030.0001.0017 This attribute defines the number of processor cores + detected for the processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.17 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceCoreEnabledCount + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.18 + type: gauge + help: 1100.0030.0001.0018 This attribute defines the number of processor cores + enabled for the processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.18 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceThreadCount + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.19 + type: gauge + help: 1100.0030.0001.0019 This attribute defines the number of processor threads + detected for the processor device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.19 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceCharacteristics + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.20 + type: gauge + help: 1100.0030.0001.0020 This attribute defines characteristics of the processor + device - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.20 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceExtendedCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.21 + type: gauge + help: 1100.0030.0001.0021 This attribute defines extended capabilities of the + processor device - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.21 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceExtendedSettings + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.22 + type: gauge + help: 1100.0030.0001.0022 This attribute defines extended settings of the processor + device - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.22 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceBrandName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.23 + type: OctetString + help: 1100.0030.0001.0023 This attribute defines the brand of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.23 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 + type: OctetString + help: 1100.0030.0001.0026 Fully qualified device descriptor (FQDD) of the processor + device. - 1.3.6.1.4.1.674.10892.5.4.1100.30.1.26 + indexes: + - labelname: processorDevicechassisIndex + type: gauge + - labelname: processorDeviceIndex + type: gauge + - name: processorDeviceStatusChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.1 + type: gauge + help: 1100.0032.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.1 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + - name: processorDeviceStatusIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.2 + type: gauge + help: 1100.0032.0001.0002 This attribute defines the index (one based) of the + processor device status probe. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.2 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + - name: processorDeviceStatusStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.3 + type: gauge + help: 1100.0032.0001.0003 This attribute defines the state capabilities of the + processor device status probe. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.3 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: processorDeviceStatusStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.4 + type: gauge + help: 1100.0032.0001.0004 This attribute defines the state settings of the processor + device status probe. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.4 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: processorDeviceStatusStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.5 + type: gauge + help: 1100.0032.0001.0005 This attribute defines the status of the processor + device status probe - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.5 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: processorDeviceStatusReading + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.6 + type: gauge + help: 1100.0032.0001.0006 This attribute defines the reading of the processor + device status probe. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.6 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + enum_values: + 1: internalError + 2: thermalTrip + 32: configurationError + 128: processorPresent + 256: processorDisabled + 512: terminatorPresent + 1024: processorThrottled + - name: processorDeviceStatusLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.32.1.7 + type: OctetString + help: 1100.0032.0001.0007 This attribute defines the location name of the processor + device status probe. - 1.3.6.1.4.1.674.10892.5.4.1100.32.1.7 + indexes: + - labelname: processorDeviceStatusChassisIndex + type: gauge + - labelname: processorDeviceStatusIndex + type: gauge + - name: memoryDevicechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.1 + type: gauge + help: 1100.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.1 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.2 + type: gauge + help: 1100.0050.0001.0002 This attribute defines the index (one based) of the + memory device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.2 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.3 + type: gauge + help: 1100.0050.0001.0003 This attribute defines the state capabilities of the + memory device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.3 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: memoryDeviceStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.4 + type: gauge + help: 1100.0050.0001.0004 This attribute defines the state settings of the memory + device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.4 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: memoryDeviceStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.5 + type: gauge + help: 1100.0050.0001.0005 This attribute defines the status of the memory device. + - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.5 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: memoryDeviceType + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.7 + type: gauge + help: 1100.0050.0001.0007 This attribute defines the type of the memory device. + - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.7 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 1: deviceTypeIsOther + 2: deviceTypeIsUnknown + 3: deviceTypeIsDRAM + 4: deviceTypeIsEDRAM + 5: deviceTypeIsVRAM + 6: deviceTypeIsSRAM + 7: deviceTypeIsRAM + 8: deviceTypeIsROM + 9: deviceTypeIsFLASH + 10: deviceTypeIsEEPROM + 11: deviceTypeIsFEPROM + 12: deviceTypeIsEPROM + 13: deviceTypeIsCDRAM + 14: deviceTypeIs3DRAM + 15: deviceTypeIsSDRAM + 16: deviceTypeIsSGRAM + 17: deviceTypeIsRDRAM + 18: deviceTypeIsDDR + 19: deviceTypeIsDDR2 + 20: deviceTypeIsDDR2FBDIMM + 24: deviceTypeIsDDR3 + 25: deviceTypeIsFBD2 + 26: deviceTypeIsDDR4 + - name: memoryDeviceLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8 + type: OctetString + help: 1100.0050.0001.0008 This attribute defines the location of the memory + device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.8 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceBankLocationName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.10 + type: OctetString + help: 1100.0050.0001.0010 This attribute defines the location of the bank for + the memory device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.10 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceSize + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.14 + type: gauge + help: 1100.0050.0001.0014 This attribute defines the size in KBytes of the memory + device - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.14 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceSpeed + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.15 + type: gauge + help: 1100.0050.0001.0015 This attribute defines the maximum capable speed in + megahertz (MHz) of the memory device - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.15 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.21 + type: OctetString + help: 1100.0050.0001.0021 This attribute defines the manufacturer of the memory + device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.21 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDevicePartNumberName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.22 + type: OctetString + help: 1100.0050.0001.0022 This attribute defines the manufacturer's part number + for the memory device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.22 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceSerialNumberName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.23 + type: OctetString + help: 1100.0050.0001.0023 This attribute defines the serial number of the memory + device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.23 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.26 + type: OctetString + help: 1100.0050.0001.0026 Fully qualified device descriptor (FQDD) of the memory + device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.26 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceCurrentOperatingSpeed + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.27 + type: gauge + help: 1100.0050.0001.0027 This attribute defines the current operating speed + in megahertz (MHz) of the memory device - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.27 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceTechnology + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.28 + type: gauge + help: 1100.0050.0001.0028 This attribute defines the type or technology of the + memory device. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.28 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: dram + 4: nvdimmn + 5: nvdimmf + 6: nvdimmp + 7: intelpersistentmemory + - name: memoryDeviceVolatileSize + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.29 + type: gauge + help: 1100.0050.0001.0029 This attribute defines the volatile size of the memory + device in MBs. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.29 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceNonVolatilesSize + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.30 + type: gauge + help: 1100.0050.0001.0030 This attribute defines the Non Volatile size of the + memory device in MBs. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.30 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceCacheSize + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.31 + type: gauge + help: 1100.0050.0001.0031 This attribute defines the Cache size of the memory + device in MBs. - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.31 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + - name: memoryDeviceRemainingRatedWriteEndurance + oid: 1.3.6.1.4.1.674.10892.5.4.1100.50.1.32 + type: gauge + help: 1100.0050.0001.0032 This attribute defines the percent of remaining life + for the memory device - 1.3.6.1.4.1.674.10892.5.4.1100.50.1.32 + indexes: + - labelname: memoryDevicechassisIndex + type: gauge + - labelname: memoryDeviceIndex + type: gauge + enum_values: + 255: notApplicable + - name: pCIDevicechassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.1 + type: gauge + help: 1100.0080.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.1 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: pCIDeviceIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.2 + type: gauge + help: 1100.0080.0001.0002 This attribute defines the index (one based) of the + PCI device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.2 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: pCIDeviceStateCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.3 + type: gauge + help: 1100.0080.0001.0003 This attribute defines the state capabilities of the + PCI device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.3 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + enum_values: + 1: unknownCapabilities + 2: enableCapable + 4: notReadyCapable + 6: enableAndNotReadyCapable + - name: pCIDeviceStateSettings + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.4 + type: gauge + help: 1100.0080.0001.0004 This attribute defines the state settings of the PCI + device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.4 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 4: notReady + 6: enabledAndNotReady + - name: pCIDeviceStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.5 + type: gauge + help: 1100.0080.0001.0005 This attribute defines the status of the PCI device. + - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.5 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: pCIDeviceDataBusWidth + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.7 + type: gauge + help: 1100.0080.0001.0007 This attribute defines the width of the data bus of + the PCI device - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.7 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: pCIDeviceManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.8 + type: OctetString + help: 1100.0080.0001.0008 This attribute defines the name of the manufacturer + of the PCI device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.8 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: pCIDeviceDescriptionName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.9 + type: OctetString + help: 1100.0080.0001.0009 This attribute defines the description of the PCI + device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.9 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: pCIDeviceFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.1100.80.1.12 + type: OctetString + help: 1100.0080.0001.0012 Fully qualified device descriptor (FQDD) of the PCI + device. - 1.3.6.1.4.1.674.10892.5.4.1100.80.1.12 + indexes: + - labelname: pCIDevicechassisIndex + type: gauge + - labelname: pCIDeviceIndex + type: gauge + - name: networkDeviceChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.1 + type: gauge + help: 1100.0090.0001.0001 This attribute defines the index (one based) of the + system chassis that contains the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.1 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.2 + type: gauge + help: 1100.0090.0001.0002 This attribute defines the index (one based) of the + network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.2 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.3 + type: gauge + help: 1100.0090.0001.0003 This attribute defines the status of the network device. + - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.3 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: networkDeviceConnectionStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.4 + type: gauge + help: 1100.0090.0001.0004 This attribute defines the connection status of the + network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.4 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + enum_values: + 1: connected + 2: disconnected + 3: driverBad + 4: driverDisabled + 10: hardwareInitalizing + 11: hardwareResetting + 12: hardwareClosing + 13: hardwareNotReady + - name: networkDeviceProductName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.6 + type: OctetString + help: 1100.0090.0001.0006 This attribute defines the product name of the network + device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.6 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceVendorName + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.7 + type: OctetString + help: 1100.0090.0001.0007 This attribute defines the name of the vendor of the + network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.7 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceCurrentMACAddress + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15 + type: OctetString + help: 1100.0090.0001.0015 This attribute defines the current MAC address of + the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.15 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDevicePermanentMACAddress + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.16 + type: OctetString + help: 1100.0090.0001.0016 This attribute defines the permanent MAC address of + the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.16 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDevicePCIBusNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.17 + type: gauge + help: 1100.0090.0001.0017 This attribute defines the PCI bus number of the network + device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.17 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDevicePCIDeviceNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.18 + type: gauge + help: 1100.0090.0001.0018 This attribute defines the PCI device number of the + network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.18 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDevicePCIFunctionNumber + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.19 + type: gauge + help: 1100.0090.0001.0019 This attribute defines the PCI function number of + the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.19 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceTOECapabilityFlags + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.23 + type: gauge + help: 1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) + capability flags of the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.23 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: available + 4: notAvailable + 8: cannotBeDetermined + 16: driverNotResponding + - name: networkDeviceiSCSICapabilityFlags + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.27 + type: gauge + help: 1100.0090.0001.0027 This attribute defines the Internet Small Computer + System Interface (iSCSI) capability flags of the network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.27 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: available + 4: notAvailable + 8: cannotBeDetermined + 16: driverNotResponding + - name: networkDeviceiSCSIEnabled + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.28 + type: gauge + help: 1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the + network device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.28 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: networkDeviceCapabilities + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.29 + type: gauge + help: 1100.0090.0001.0029 This attribute defines the capabilities of the network + device - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.29 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + enum_values: + 1: supported + 2: toe + 4: iscsiOffload + 8: fcoeOffload + - name: networkDeviceFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30 + type: OctetString + help: 1100.0090.0001.0030 Fully qualified device descriptor (FQDD) of the network + device. - 1.3.6.1.4.1.674.10892.5.4.1100.90.1.30 + indexes: + - labelname: networkDeviceChassisIndex + type: gauge + - labelname: networkDeviceIndex + type: gauge + - name: systemSlotchassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.1 + type: gauge + help: 1200.0010.0001.0001 This attribute defines the index (one based) of the + associated system chassis. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.1 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + - name: systemSlotIndex + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.2 + type: gauge + help: 1200.0010.0001.0002 This attribute defines the index (one based) of the + system slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.2 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + - name: systemSlotStateCapabilitiesUnique + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.3 + type: gauge + help: 1200.0010.0001.0003 This attribute defines the state capabilities of the + system slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.3 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: systemSlotHotPlugIsUnknown + 2: systemSlotHotPlugIsHotPluggableCapable + 4: systemSlotHotPlugCanBePoweredOn + 8: systemSlotHotPlugCanSignalAttention + 16: systemSlotHotPlugCanSignalPowerFault + 32: systemSlotHotPlugCanSignalAdapterPresent + 64: systemSlotHotPlugCanSignalPowerButtonPressed + 126: canSupportAllHotPlugCapabilities + 128: systemSlotCanProvide5Volts + 256: systemSlotCanProvide3Point3Volts + 512: systemSlotCanSignalIfShared + 1024: systemSlotCanSupportCard16 + 2048: systemSlotCanSupportCardBus + 4096: systemSlotCanSupportZoomVideo + 8192: systemSlotCanSupportModemRingResume + 16384: systemSlotCanSupportPMESignal + 32640: canSupportAllSlotCapabilities + 32766: canSupportAllSlotAndAllHotPlugCapabilities + - name: systemSlotStateSettingsUnique + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.4 + type: gauge + help: 1200.0010.0001.0004 This attribute defines the state settings of the system + slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.4 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: systemSlotHotPlugIsUnknown + 2: systemSlotHotPlugIsHotPluggable + 4: systemSlotHotPlugIsPoweredOn + 8: systemSlotHotPlugIsAtAttention + 16: systemSlotHotPlugHasPowerFaulted + 32: systemSlotHotPlugAdapterIsPresent + 36: systemSlotHotPlugAdapterPresentAndPoweredOn + 64: systemSlotHotPlugPowerButtonPressed + 128: systemSlotProvides5Volts + 256: systemSlotProvides3Point3Volts + 512: systemSlotIsShared + 1024: systemSlotSupportsCard16 + 2048: systemSlotSupportsCardBus + 4096: systemSlotSupportsZoomVideo + 8192: systemSlotSupportsModemRingResume + 16384: systemSlotSupportsPMESignal + 16770: supportsPMEand3P3Vand5VandHotPluggable + 16804: supportsPMEand3P3Vand5VhasAdapterOn + 16806: supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable + 17316: supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable + - name: systemSlotStatus + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.5 + type: gauge + help: 1200.0010.0001.0005 This attribute defines the status of the system slot. + - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.5 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: systemSlotCurrentUsage + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.6 + type: gauge + help: 1200.0010.0001.0006 This attribute defines the current usage of the system + slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.6 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: systemSlotUsageIsOther + 2: systemSlotUsageIsUnknown + 3: systemSlotUsageIsAvailable + 4: systemSlotUsageIsInUse + - name: systemSlotType + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.7 + type: gauge + help: 1200.0010.0001.0007 This attribute defines the type of the system slot. + - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.7 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: systemSlotIsOther + 2: systemSlotIsUnknown + 3: systemSlotIsISA + 4: systemSlotIsMCA + 5: systemSlotIsEISA + 6: systemSlotIsPCI + 7: systemSlotIsPCMCIA + 8: systemSlotIsVLVESA + 9: systemSlotIsProprietary + 10: systemSlotIsProcessorCard + 11: systemSlotIsProprietaryMemory + 12: systemSlotIsIORiserCard + 13: systemSlotIsNuBUS + 14: systemSlotIsPCI66MHz + 15: systemSlotIsAGP + 16: systemSlotIsAGP2X + 17: systemSlotIsAGP4X + 18: systemSlotIsPC98C20 + 19: systemSlotIsPC98C24 + 20: systemSlotIsPC98E + 21: systemSlotIsPC98LocalBus + 22: systemSlotIsPC98Card + 23: systemSlotIsPCIX + 24: systemSlotIsPCIExpress + 25: systemSlotIsAGP8X + 166: systemSlotIsPCIExpressX1 + 167: systemSlotIsPCIExpressX2 + 168: systemSlotIsPCIExpressX4 + 169: systemSlotIsPCIExpressX8 + 170: systemSlotIsPCIExpressX16 + 171: systemSlotIsPCIExpressGen2 + 172: systemSlotIsPCIExpressGen2X1 + 173: systemSlotIsPCIExpressGen2X2 + 174: systemSlotIsPCIExpressGen2X4 + 175: systemSlotIsPCIExpressGen2X8 + 176: systemSlotIsPCIExpressGen2X16 + - name: systemSlotSlotExternalSlotName + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.8 + type: OctetString + help: 1200.0010.0001.0008 This attribute defines the name of the external connector + name of the system slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.8 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + - name: systemSlotCategory + oid: 1.3.6.1.4.1.674.10892.5.4.1200.10.1.11 + type: gauge + help: 1200.0010.0001.0011 This attribute defines the category of the system + slot. - 1.3.6.1.4.1.674.10892.5.4.1200.10.1.11 + indexes: + - labelname: systemSlotchassisIndex + type: gauge + - labelname: systemSlotIndex + type: gauge + enum_values: + 1: systemSlotCategoryIsOther + 2: systemSlotCategoryIsUnknown + 3: systemSlotCategoryIsBusConnector + 4: systemSlotCategoryIsPCMCIA + 5: systemSlotCategoryIsMotherboard + - name: fruChassisIndex + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.1 + type: gauge + help: 2000.0010.0001.0001 This attribute defines the index (one based) of the + system chassis containing the field replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.1 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruIndex + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.2 + type: gauge + help: 2000.0010.0001.0002 This attribute defines the index (one based) of the + field replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.2 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruInformationStatus + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.3 + type: gauge + help: 2000.0010.0001.0003 This attribute defines the status of the field replaceable + unit information. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.3 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: fruManufacturerName + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.6 + type: OctetString + help: 2000.0010.0001.0006 This attribute defines the manufacturer of the field + replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.6 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruSerialNumberName + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.7 + type: OctetString + help: 2000.0010.0001.0007 This attribute defines the serial number of the field + replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.7 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruPartNumberName + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.8 + type: OctetString + help: 2000.0010.0001.0008 This attribute defines the part number of the field + replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.8 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruRevisionName + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.9 + type: OctetString + help: 2000.0010.0001.0009 This attribute defines the revision of the field replaceable + unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.9 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: fruFQDD + oid: 1.3.6.1.4.1.674.10892.5.4.2000.10.1.12 + type: OctetString + help: 2000.0010.0001.0012 Fully qualified device descriptor (FQDD) of the field + replaceable unit. - 1.3.6.1.4.1.674.10892.5.4.2000.10.1.12 + indexes: + - labelname: fruChassisIndex + type: gauge + - labelname: fruIndex + type: gauge + - name: controllerNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1 + type: gauge + help: Instance number of this controller entry. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.1 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2 + type: DisplayString + help: The controller's name as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerRebuildRate + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.7 + type: gauge + help: The rebuild rate is the percentage of the controller's resources dedicated + to rebuilding a failed disk when a rebuild is necessary. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.7 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerFWVersion + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.8 + type: DisplayString + help: The controller's current firmware version. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.8 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerCacheSizeInMB + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.9 + type: gauge + help: The controller's current amount of cache memory in megabytes. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.9 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerRollUpStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37 + type: gauge + help: Severity of the controller state - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: controllerComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 + type: gauge + help: The status of the controller itself without the propagation of any contained + component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: controllerDriverVersion + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.41 + type: DisplayString + help: Currently installed driver version for this controller on the host. - + 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.41 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerPCISlot + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42 + type: DisplayString + help: The PCI slot on the server where the controller is seated - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.42 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerReconstructRate + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.48 + type: gauge + help: The reconstruct rate is the percentage of the controller's resources dedicated + to reconstructing a disk group after adding a physical disk or changing the + RAID level of a virtual disk residing on the disk group. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.48 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerPatrolReadRate + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.49 + type: gauge + help: The patrol read rate is the percentage of the controller's resources dedicated + to perform a patrol read on disks participating in a virtual disk or hot spares. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.49 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerBGIRate + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.50 + type: gauge + help: The background initialization (BGI) rate is the percentage of the controller's + resources dedicated to performing the background initialization of a redundant + virtual disk after it is created. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.50 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerCheckConsistencyRate + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.51 + type: gauge + help: The check consistency rate is the percentage of the controller's resources + dedicated to performing a check consistency on a redundant virtual disk. - + 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.51 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerPatrolReadMode + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.52 + type: gauge + help: Identifies the patrol read mode setting for the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.52 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: notSupported + 3: disabled + 4: auto + 5: manual + - name: controllerPatrolReadState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.53 + type: gauge + help: This property displays the current state of the patrol read process - + 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.53 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: stopped + 3: active + - name: controllerPersistentHotSpare + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.59 + type: gauge + help: Indicates whether hot spare drives would be restored on insertion into + the same slot. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.59 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerSpinDownUnconfiguredDrives + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.60 + type: gauge + help: Indicates whether un-configured drives would be put in power save mode + by the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.60 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerSpinDownHotSpareDrives + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.61 + type: gauge + help: Indicates whether hot spare drives would be put in power save mode by + the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.61 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerSpinDownTimeInterval + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.62 + type: gauge + help: The duration in minutes after which, the unconfigured or hot spare drives + will be spun down to power save mode. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.62 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerPreservedCache + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.69 + type: gauge + help: Indicates whether preserved cache or pinned cache is present on the controller. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.69 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerCheckConsistencyMode + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.70 + type: gauge + help: The current check consistency mode setting for the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.70 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: unsupported + 3: normal + 4: stopOnError + - name: controllerCopyBackMode + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.71 + type: gauge + help: The current copy back mode setting for the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.71 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: unsupported + 3: "on" + 4: onWithSmart + 5: "off" + - name: controllerSecurityStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.72 + type: gauge + help: The controller's current security/encryption status. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.72 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: unknown + 2: none + 3: lkm + - name: controllerEncryptionKeyPresent + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.73 + type: gauge + help: Indicates whether encryption key is assigned for the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.73 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerEncryptionCapability + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.74 + type: gauge + help: The type of encryption supported by the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.74 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: none + 3: lkm + - name: controllerLoadBalanceSetting + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.75 + type: gauge + help: The ability of the controller to automatically use both controller ports + (or connectors) connected to the same enclosure in order to route I/O requests + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.75 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: unsupported + 3: auto + 4: none + - name: controllerMaxCapSpeed + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.76 + type: gauge + help: The maximum speed of the controller.in Gigbits per second (Gbps) - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.76 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: unknown + 2: oneDotFiveGbps + 3: threeGbps + 4: sixGbps + 5: twelveGbps + - name: controllerSASAddress + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.77 + type: DisplayString + help: The SAS address of the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.77 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78 + type: OctetString + help: The controller's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.78 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 + type: DisplayString + help: The controller's friendly FQDD as represented in Storage Management. - + 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerT10PICapability + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.80 + type: gauge + help: Indicates whether the controller supports the T10 PI (Protection Information) + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.80 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: capable + 3: notCapable + - name: controllerRAID10UnevenSpansSupported + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.81 + type: gauge + help: Indicates whether uneven spans for RAID 10 virtual disk is supported on + the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.81 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerEnhancedAutoImportForeignConfigMode + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.82 + type: gauge + help: Indicates the status of enhanced auto-import of foreign configuration + property of the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.82 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: other + 2: notSupported + 3: disabled + 4: enabled + - name: controllerBootModeSupported + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.83 + type: gauge + help: Indicates whether headless boot mode settings are supported on the controller. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.83 + indexes: + - labelname: controllerNumber + type: gauge + - name: controllerBootMode + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.84 + type: gauge + help: Indicates the boot mode of the controller - 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.84 + indexes: + - labelname: controllerNumber + type: gauge + enum_values: + 1: notApplicable + 2: user + 3: contOnError + 4: headlessContOnError + 5: headlessSafe + - name: enclosureNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.1 + type: gauge + help: Instance number of this enclossre/backplane. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.1 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.2 + type: DisplayString + help: The enclosure/backplane's name as represented in Storage Management. - + 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.2 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.4 + type: gauge + help: The current state of this enclosure/backplane - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.4 + indexes: + - labelname: enclosureNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: missing + 5: degraded + - name: enclosureServiceTag + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.8 + type: DisplayString + help: Enclosure identification used when consulting customer support. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.8 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureAssetTag + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.9 + type: DisplayString + help: The asset tag information for the enclosure. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.9 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureConnectedPort + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.19 + type: DisplayString + help: The port on the controller to which the storage enclosure is connected. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.19 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureRollUpStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.23 + type: gauge + help: Severity of the enclosure/backplane state - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.23 + indexes: + - labelname: enclosureNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosureComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.24 + type: gauge + help: The status of the enclosure/backplane.itself without the propagation of + any contained component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.24 + indexes: + - labelname: enclosureNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosureFirmwareVersion + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.26 + type: DisplayString + help: The firmware information for the enclosure/backplane. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.26 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureSASAddress + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.30 + type: DisplayString + help: The SAS address of the enclosure/backplane. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.30 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureDriveCount + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.31 + type: gauge + help: The number of disks present in the enclosure/backplane. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.31 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureTotalSlots + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.32 + type: gauge + help: The total physical drive slots in a storage enclosure or server backplane. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.32 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureFanCount + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.40 + type: DisplayString + help: The number of fans present in the storage enclosure. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.40 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosurePSUCount + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.41 + type: DisplayString + help: The number of Power Supply Units (PSU) present in the storage enclosure. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.41 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureEMMCount + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.42 + type: DisplayString + help: The number of Enclosure Management Modules (EMM) present in the storage + enclosure. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.42 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureTempProbeCount + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.43 + type: DisplayString + help: The number of temperature sensing devices present in the storage enclosure. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.43 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureRedundantPath + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.44 + type: DisplayString + help: Indicates whether the controller has multiply paths to reach the storage + enclosure. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.44 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosurePosition + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.45 + type: DisplayString + help: The possition of the storage enclosure within a daisy chain. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.45 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureBackplaneBayID + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.46 + type: DisplayString + help: The unique bay ID of the backplane. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.46 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.47 + type: OctetString + help: The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.47 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.48 + type: DisplayString + help: The enclosure/backplane's friendly FQDD as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.48 + indexes: + - labelname: enclosureNumber + type: gauge + - name: enclosureType + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.49 + type: gauge + help: The protocol supported by the backplane - 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.49 + indexes: + - labelname: enclosureNumber + type: gauge + enum_values: + 1: other + 2: notApplicable + 3: sassata + 4: pcie + 5: universal + - name: physicalDiskNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 + type: gauge + help: Instance number of this physical disk entry. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 + type: DisplayString + help: The physical disk's name as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskManufacturer + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.3 + type: DisplayString + help: The name of the physical disk's manufacturer. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.3 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4 + type: gauge + help: The current state of this physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: online + 4: foreign + 5: offline + 6: blocked + 7: failed + 8: nonraid + 9: removed + 10: readonly + - name: physicalDiskProductID + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6 + type: DisplayString + help: The model number of the physical disk. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskSerialNo + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7 + type: DisplayString + help: The physical disk's unique identification number from the manufacturer. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskRevision + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.8 + type: DisplayString + help: The firmware version of the physical disk. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.8 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskCapacityInMB + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11 + type: gauge + help: The size of the physical disk in megabytes. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskUsedSpaceInMB + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.17 + type: gauge + help: The amount of used space in megabytes on the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.17 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskFreeSpaceInMB + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.19 + type: gauge + help: The amount of free space in megabytes on the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.19 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskBusType + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.21 + type: gauge + help: The bus type of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.21 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: scsi + 3: sas + 4: sata + 5: fibre + 6: pcie + 7: nvme + - name: physicalDiskSpareState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.22 + type: gauge + help: The status of the disk as a spare - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.22 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: notASpare + 2: dedicatedHotSpare + 3: globalHotSpare + - name: physicalDiskComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24 + type: gauge + help: The status of the physical disk itself without the propagation of any + contained component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: physicalDiskPartNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27 + type: DisplayString + help: The part number of the disk. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskSASAddress + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.28 + type: DisplayString + help: The SAS address of the physical disk. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.28 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskNegotiatedSpeed + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.29 + type: gauge + help: The data transfer speed that the disk negotiated while spinning up in + Gigbits per second (Gbps) - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.29 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: oneDotFiveGbps + 3: threeGbps + 4: sixGbps + 5: twelveGbps + 6: fiveGTps + 7: eightGTps + 8: sixteenGTps + 9: thirtytwoGTps + - name: physicalDiskCapableSpeed + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.30 + type: gauge + help: The maximum data transfer speed supported by the disk in Gigbits per second + (Gbps) - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.30 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: oneDotFiveGbps + 3: threeGbps + 4: sixGbps + 5: twelveGbps + 6: fiveGTps + 7: eightGTps + 8: sixteenGTps + 9: thirtytwoGTps + - name: physicalDiskSmartAlertIndication + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31 + type: gauge + help: Indicates whether the physical disk has received a predictive failure + alert. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskManufactureDay + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.32 + type: DisplayString + help: The day of the week (1=Sunday thru 7=Saturday) on which the physical disk + was manufactured. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.32 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskManufactureWeek + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.33 + type: DisplayString + help: The week (1 thru 53) in which the physical disk was manufactured. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.33 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskManufactureYear + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.34 + type: DisplayString + help: The four digit year in which the physical disk was manufactured. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.34 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskMediaType + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35 + type: gauge + help: The media type of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: hdd + 3: ssd + - name: physicalDiskPowerState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.42 + type: gauge + help: The power state of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.42 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: other + 2: spunUp + 3: spunDown + 4: transition + 5: "on" + - name: physicalDiskRemainingRatedWriteEndurance + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.49 + type: gauge + help: This property is applicable to SSD media type only - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.49 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskOperationalState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.50 + type: gauge + help: The state of the physical disk when there are progressive operations ongoing + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.50 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: notApplicable + 2: rebuild + 3: clear + 4: copyback + - name: physicalDiskProgress + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.51 + type: gauge + help: The progress percentage of the operation that is being performed on the + physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.51 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskSecurityStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.52 + type: gauge + help: The security/encryption status of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.52 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: supported + 2: notSupported + 3: secured + 4: locked + 5: foreign + - name: physicalDiskFormFactor + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.53 + type: gauge + help: The form factor of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.53 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: unknown + 2: oneDotEight + 3: twoDotFive + 4: threeDotFive + 5: edsffe1DotL + - name: physicalDiskFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.54 + type: OctetString + help: The physical disk's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.54 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.55 + type: DisplayString + help: The physical disk's friendly FQDD as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.55 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskT10PICapability + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.57 + type: gauge + help: Indicates whether the physical disk supports the T10 PI (Protection Information) + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.57 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: other + 2: capable + 3: notCapable + - name: physicalDiskBlockSizeInBytes + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.58 + type: gauge + help: The block size (in bytes) of the physical disk - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.58 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskProtocolVersion + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.59 + type: DisplayString + help: Applicable for NVMe devices only - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.59 + indexes: + - labelname: physicalDiskNumber + type: gauge + - name: physicalDiskPCIeNegotiatedLinkWidth + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.60 + type: gauge + help: Applicable for NVMe devices only - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.60 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: other + 2: notApplicable + 3: byOne + 4: byTwp + 5: byFour + 6: byEight + 7: bySixteen + 8: byThirtyTwp + - name: physicalDiskPCIeCapableLinkWidth + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.61 + type: gauge + help: Applicable for NVMe devices only - 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.61 + indexes: + - labelname: physicalDiskNumber + type: gauge + enum_values: + 1: other + 2: notApplicable + 3: byOne + 4: byTwp + 5: byFour + 6: byEight + 7: bySixteen + 8: byThirtyTwp + - name: enclosureFanNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.1 + type: gauge + help: Instance number of this fan. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.1 + indexes: + - labelname: enclosureFanNumber + type: gauge + - name: enclosureFanName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.2 + type: DisplayString + help: The fan's name as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.2 + indexes: + - labelname: enclosureFanNumber + type: gauge + - name: enclosureFanState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.4 + type: gauge + help: The current state of this fan - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.4 + indexes: + - labelname: enclosureFanNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: missing + 5: degraded + - name: enclosureFanSpeed + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.11 + type: gauge + help: Indicates the current relative speed of the fan. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.11 + indexes: + - labelname: enclosureFanNumber + type: gauge + - name: enclosureFanComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.15 + type: gauge + help: The status of the fan itself without the propagation of any contained + component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.15 + indexes: + - labelname: enclosureFanNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosureFanFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.20 + type: OctetString + help: The fan's Fully Qualified Device Descriptor (FQDD) as represented in Storage + Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.20 + indexes: + - labelname: enclosureFanNumber + type: gauge + - name: enclosureFanDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.21 + type: DisplayString + help: The fan's friendly FQDD as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.21 + indexes: + - labelname: enclosureFanNumber + type: gauge + - name: enclosurePowerSupplyNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.1 + type: gauge + help: Instance number of this power supply unit. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.1 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + - name: enclosurePowerSupplyName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.2 + type: DisplayString + help: The power supply unit's name as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.2 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + - name: enclosurePowerSupplyState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.4 + type: gauge + help: The current state of this power supply unit - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.4 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: missing + 5: degraded + - name: enclosurePowerSupplyPartNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.7 + type: DisplayString + help: The part number of the power supply unit. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.7 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + - name: enclosurePowerSupplyComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.9 + type: gauge + help: The status of the power supply unit itself without the propagation of + any contained component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.9 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosurePowerSupplyFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.15 + type: OctetString + help: The power supply unit's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.15 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + - name: enclosurePowerSupplyDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.16 + type: DisplayString + help: The power supply unit's friendly FQDD as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.16 + indexes: + - labelname: enclosurePowerSupplyNumber + type: gauge + - name: enclosureTemperatureProbeNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.1 + type: gauge + help: Instance number of this temperature probe. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.1 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.2 + type: DisplayString + help: The temperature probe's name as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.2 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.4 + type: gauge + help: The current state of this temperature probe - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.4 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: missing + 5: degraded + - name: enclosureTemperatureProbeMinWarningValue + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.7 + type: gauge + help: The minimum temperature that will force the probe into a warning state. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.7 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeMinCriticalValue + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.8 + type: gauge + help: The minimum temperature that will force the probe into a error state. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.8 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeMaxWarningValue + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.9 + type: gauge + help: The maximum temperature that will force the probe into a warning state. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.9 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeMaxCriticalValue + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.10 + type: gauge + help: The maximum temperature that will force the probe into a warning state. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.10 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeCurValue + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.11 + type: gauge + help: The maximum temperature that will force the probe into a warning state. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.11 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.13 + type: gauge + help: The status of the enclosure management module.itself without the propagation + of any contained component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.13 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosureTemperatureProbeFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.15 + type: OctetString + help: The temperature probe's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.15 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureTemperatureProbeDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.16 + type: DisplayString + help: The temperature probe's friendly FQDD as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.16 + indexes: + - labelname: enclosureTemperatureProbeNumber + type: gauge + - name: enclosureManagementModuleNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.1 + type: gauge + help: Instance number of this enclosure management module. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.1 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: enclosureManagementModuleName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.2 + type: DisplayString + help: The enclosure management module's name as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.2 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: enclosureManagementModuleState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.4 + type: gauge + help: The current state of this enclosure management module - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.4 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: missing + 5: degraded + - name: enclosureManagementModulePartNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.6 + type: DisplayString + help: The part number of the enclosure management module. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.6 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: enclosureManagementModuleFWVersion + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.8 + type: DisplayString + help: Firmware version of the enclosure management module. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.8 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: enclosureManagementModuleComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.11 + type: gauge + help: The status of the enclosure management module.itself without the propagation + of any contained component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.11 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: enclosureManagementModuleFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.15 + type: OctetString + help: The enclosure management module's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.15 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: enclosureManagementModuleDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.16 + type: DisplayString + help: The enclosure management module's friendly FQDD as represented in Storage + Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.16 + indexes: + - labelname: enclosureManagementModuleNumber + type: gauge + - name: batteryNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 + type: gauge + help: Instance number of this battery entry. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1 + indexes: + - labelname: batteryNumber + type: gauge + - name: batteryState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4 + type: gauge + help: Current state of battery - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4 + indexes: + - labelname: batteryNumber + type: gauge + enum_values: + 1: unknown + 2: ready + 3: failed + 4: degraded + 5: missing + 6: charging + 7: belowThreshold + - name: batteryComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.6 + type: gauge + help: The status of the battery itself without the propagation of any contained + component status - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.6 + indexes: + - labelname: batteryNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: batteryPredictedCapacity + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.10 + type: gauge + help: This entry is obsolete - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.10 + indexes: + - labelname: batteryNumber + type: gauge + enum_values: + 1: unknown + 2: failed + 3: ready + - name: batteryFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.20 + type: DisplayString + help: The battery's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.20 + indexes: + - labelname: batteryNumber + type: gauge + - name: batteryDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 + type: DisplayString + help: The battery's friendly FQDD as represented in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21 + indexes: + - labelname: batteryNumber + type: gauge + - name: virtualDiskNumber + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 + type: gauge + help: Instance number of this virtual disk entry. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 + type: DisplayString + help: The virtual disk's label as entered by the user. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4 + type: gauge + help: 'The current state of this virtual disk (which includes any member physical + disks.) Possible states: 1: The current state could not be determined - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4' + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: unknown + 2: online + 3: failed + 4: degraded + - name: virtualDiskSizeInMB + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6 + type: gauge + help: The size of the virtual disk in megabytes. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskWritePolicy + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10 + type: gauge + help: The write policy used by the controller for write operations on this virtual + disk - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: writeThrough + 2: writeBack + 3: writeBackForce + - name: virtualDiskReadPolicy + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11 + type: gauge + help: The read policy used by the controller for read operations on this virtual + disk - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: noReadAhead + 2: readAhead + 3: adaptiveReadAhead + - name: virtualDiskLayout + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13 + type: gauge + help: The virtual disk's RAID type - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: other + 2: r0 + 3: r1 + 4: r5 + 5: r6 + 6: r10 + 7: r50 + 8: r60 + 9: concatRaid1 + 10: concatRaid5 + - name: virtualDiskStripeSize + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.14 + type: gauge + help: The stripe size of this virtual disk - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.14 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: other + 2: default + 3: fiveHundredAndTwelvebytes + 4: oneKilobytes + 5: twoKilobytes + 6: fourKilobytes + 7: eightKilobytes + 8: sixteenKilobytes + 9: thirtyTwoKilobytes + 10: sixtyFourKilobytes + 11: oneTwentyEightKilobytes + 12: twoFiftySixKilobytes + 13: fiveOneTwoKilobytes + 14: oneMegabye + 15: twoMegabytes + 16: fourMegabytes + 17: eightMegabytes + 18: sixteenMegabytes + - name: virtualDiskComponentStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20 + type: gauge + help: The status of the virtual disk itself without the propagation of any contained + component status - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: other + 2: unknown + 3: ok + 4: nonCritical + 5: critical + 6: nonRecoverable + - name: virtualDiskBadBlocksDetected + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.23 + type: gauge + help: Indicates whether the virtual disk has bad blocks. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.23 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskSecured + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.24 + type: gauge + help: Indicates whether the virtual disk is secured or not. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.24 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskIsCacheCade + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.25 + type: gauge + help: Indicates whether the virtual disk is being used as a secondary cache + by the controller. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.25 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskDiskCachePolicy + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.26 + type: gauge + help: 'The cache policy of the physical disks that are part of this virtual + disk Possible values: 1: Enabled - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.26' + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: enabled + 2: disabled + 3: defullt + - name: virtualDiskOperationalState + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30 + type: gauge + help: The state of the virtual disk when there are progressive operations ongoing + - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: notApplicable + 2: reconstructing + 3: resynching + 4: initializing + 5: backgroundInit + - name: virtualDiskProgress + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.31 + type: gauge + help: The progress percentage of the operation that is being performed on the + virtual disk - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.31 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskAvailableProtocols + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.32 + type: DisplayString + help: List of protocols support by physical disks part of this virtual disk + - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.32 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskMediaType + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.33 + type: DisplayString + help: List of media types of the physical disks part of this virtual disk - + 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.33 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskRemainingRedundancy + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.34 + type: gauge + help: The number of physical disks which can be lost before the virtual disk + loses its redundancy. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.34 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskFQDD + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.35 + type: OctetString + help: The virtual disk's Fully Qualified Device Descriptor (FQDD) as represented + in Storage Management. - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.35 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskDisplayName + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.36 + type: DisplayString + help: The virtual disk's friendly FQDD as represented in Storage Management. + - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.36 + indexes: + - labelname: virtualDiskNumber + type: gauge + - name: virtualDiskT10PIStatus + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.37 + type: gauge + help: Indicates whether the virtual disk supports the T10 PI (Protection Information) + - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.37 + indexes: + - labelname: virtualDiskNumber + type: gauge + enum_values: + 1: other + 2: enabled + 3: disabled + - name: virtualDiskBlockSizeInBytes + oid: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.38 + type: gauge + help: The block size (in bytes) of the physical disk part of the virtual disk + - 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.38 + indexes: + - labelname: virtualDiskNumber + type: gauge + eap: + get: + - 1.3.6.1.4.1.11863.10.1.1.1.0 + metrics: + - name: clientCount + oid: 1.3.6.1.4.1.11863.10.1.1.1 + type: gauge + help: this used to get the count of clients - 1.3.6.1.4.1.11863.10.1.1.1 + hpe: + walk: + - 1.3.6.1.4.1.232.1.2.2.1.1 + - 1.3.6.1.4.1.232.11 + - 1.3.6.1.4.1.232.14 + - 1.3.6.1.4.1.232.3.2.2.1 + - 1.3.6.1.4.1.232.3.2.3.1.1 + - 1.3.6.1.4.1.232.3.2.5.1.1 + - 1.3.6.1.4.1.232.5 + - 1.3.6.1.4.1.232.6.2.14.13.1.6 + - 1.3.6.1.4.1.232.6.2.15 + - 1.3.6.1.4.1.232.6.2.16 + - 1.3.6.1.4.1.232.6.2.17 + - 1.3.6.1.4.1.232.6.2.6.8.1 + - 1.3.6.1.4.1.232.6.2.9 + - 1.3.6.1.4.1.232.9.2.2 + metrics: + - name: cpqSeCpuUnitIndex + oid: 1.3.6.1.4.1.232.1.2.2.1.1.1 + type: gauge + help: This is a number that uniquely specifies a processor unit - 1.3.6.1.4.1.232.1.2.2.1.1.1 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuSlot + oid: 1.3.6.1.4.1.232.1.2.2.1.1.2 + type: gauge + help: This value represents this processor`s slot - 1.3.6.1.4.1.232.1.2.2.1.1.2 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuName + oid: 1.3.6.1.4.1.232.1.2.2.1.1.3 + type: DisplayString + help: The name of this processor - 1.3.6.1.4.1.232.1.2.2.1.1.3 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuSpeed + oid: 1.3.6.1.4.1.232.1.2.2.1.1.4 + type: gauge + help: The current internal speed of this processor in megahertz - 1.3.6.1.4.1.232.1.2.2.1.1.4 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuStep + oid: 1.3.6.1.4.1.232.1.2.2.1.1.5 + type: gauge + help: This step of the processor - 1.3.6.1.4.1.232.1.2.2.1.1.5 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuStatus + oid: 1.3.6.1.4.1.232.1.2.2.1.1.6 + type: gauge + help: The status of the processor - 1.3.6.1.4.1.232.1.2.2.1.1.6 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unknown + 2: ok + 3: degraded + 4: failed + 5: disabled + - name: cpqSeCpuExtSpeed + oid: 1.3.6.1.4.1.232.1.2.2.1.1.7 + type: gauge + help: This is the external frequency in megahertz of the processor bus - 1.3.6.1.4.1.232.1.2.2.1.1.7 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuDesigner + oid: 1.3.6.1.4.1.232.1.2.2.1.1.8 + type: gauge + help: This attribute specifies the manufacturer which designs this CPU. - 1.3.6.1.4.1.232.1.2.2.1.1.8 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unknown + 2: intel + 3: amd + 4: cyrix + 5: ti + 6: nexgen + 7: compaq + 8: samsung + 9: mitsubishi + 10: mips + - name: cpqSeCpuSocketNumber + oid: 1.3.6.1.4.1.232.1.2.2.1.1.9 + type: gauge + help: The physical socket number of the CPU chip - 1.3.6.1.4.1.232.1.2.2.1.1.9 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuThreshPassed + oid: 1.3.6.1.4.1.232.1.2.2.1.1.10 + type: gauge + help: CPU threshold passed (Exceeded) - 1.3.6.1.4.1.232.1.2.2.1.1.10 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unsupported + 2: "false" + 3: "true" + - name: cpqSeCpuHwLocation + oid: 1.3.6.1.4.1.232.1.2.2.1.1.11 + type: DisplayString + help: A text description of the hardware location, on complex multi SBB hardware + only, for the CPU - 1.3.6.1.4.1.232.1.2.2.1.1.11 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuCellTablePtr + oid: 1.3.6.1.4.1.232.1.2.2.1.1.12 + type: gauge + help: This is the index for the cell in cpqSeCellTable where this CPU is physically + located. - 1.3.6.1.4.1.232.1.2.2.1.1.12 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuPowerpodStatus + oid: 1.3.6.1.4.1.232.1.2.2.1.1.13 + type: gauge + help: This is the status of CPU power pod - 1.3.6.1.4.1.232.1.2.2.1.1.13 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: notfailed + 2: failed + - name: cpqSeCpuArchitectureRevision + oid: 1.3.6.1.4.1.232.1.2.2.1.1.14 + type: DisplayString + help: This is the CPU architecture revision. - 1.3.6.1.4.1.232.1.2.2.1.1.14 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuCore + oid: 1.3.6.1.4.1.232.1.2.2.1.1.15 + type: gauge + help: The number of cores in this CPU module - 1.3.6.1.4.1.232.1.2.2.1.1.15 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUSerialNumber + oid: 1.3.6.1.4.1.232.1.2.2.1.1.16 + type: DisplayString + help: The OEM serial number of the CPU. - 1.3.6.1.4.1.232.1.2.2.1.1.16 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUPartNumber + oid: 1.3.6.1.4.1.232.1.2.2.1.1.17 + type: DisplayString + help: The OEM part number of the CPU. - 1.3.6.1.4.1.232.1.2.2.1.1.17 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUSerialNumberMfgr + oid: 1.3.6.1.4.1.232.1.2.2.1.1.18 + type: DisplayString + help: The manufacturer serial number of the CPU. - 1.3.6.1.4.1.232.1.2.2.1.1.18 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUPartNumberMfgr + oid: 1.3.6.1.4.1.232.1.2.2.1.1.19 + type: DisplayString + help: The manufacturer part number of the CPU. - 1.3.6.1.4.1.232.1.2.2.1.1.19 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUCoreIndex + oid: 1.3.6.1.4.1.232.1.2.2.1.1.20 + type: gauge + help: This is a number that uniquely identifies a core in a CPU unit. - 1.3.6.1.4.1.232.1.2.2.1.1.20 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUMaxSpeed + oid: 1.3.6.1.4.1.232.1.2.2.1.1.21 + type: gauge + help: This is the maximum internal speed in megahertz this processor can support + - 1.3.6.1.4.1.232.1.2.2.1.1.21 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUCoreThreadIndex + oid: 1.3.6.1.4.1.232.1.2.2.1.1.22 + type: gauge + help: This is an unique number to identify the running threads in a CPU core. + - 1.3.6.1.4.1.232.1.2.2.1.1.22 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUChipGenerationName + oid: 1.3.6.1.4.1.232.1.2.2.1.1.23 + type: DisplayString + help: CPU chip generation name e.g - 1.3.6.1.4.1.232.1.2.2.1.1.23 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCPUMultiThreadStatus + oid: 1.3.6.1.4.1.232.1.2.2.1.1.24 + type: gauge + help: This OID identifies whether the CPU threading is enabled or not. - 1.3.6.1.4.1.232.1.2.2.1.1.24 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unknown + 2: enabled + 3: disabled + - name: cpqSeCPUCoreMaxThreads + oid: 1.3.6.1.4.1.232.1.2.2.1.1.25 + type: gauge + help: This OID indicates the maximum number of threads that a cpu core is capable + of. - 1.3.6.1.4.1.232.1.2.2.1.1.25 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuLowPowerStatus + oid: 1.3.6.1.4.1.232.1.2.2.1.1.26 + type: gauge + help: Servers like Itanium has capability to lower power supply to CPU if it + is idle for specified period of time - 1.3.6.1.4.1.232.1.2.2.1.1.26 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unknown + 2: lowpowered + 3: normalpowered + 4: highpowered + - name: cpqSeCpuPrimary + oid: 1.3.6.1.4.1.232.1.2.2.1.1.27 + type: gauge + help: On SMP systems one of the CPU is set to Primary and the other CPUs as + secondary - 1.3.6.1.4.1.232.1.2.2.1.1.27 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + enum_values: + 1: unknown + 2: "false" + 3: "true" + - name: cpqSeCpuCoreSteppingText + oid: 1.3.6.1.4.1.232.1.2.2.1.1.28 + type: DisplayString + help: The processor stepping version string - 1.3.6.1.4.1.232.1.2.2.1.1.28 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuCurrentPerformanceState + oid: 1.3.6.1.4.1.232.1.2.2.1.1.29 + type: gauge + help: This OID returns the current performance state of this processor - 1.3.6.1.4.1.232.1.2.2.1.1.29 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuMinPerformanceState + oid: 1.3.6.1.4.1.232.1.2.2.1.1.30 + type: gauge + help: This OID returns the minimum performance state set for this processor + - 1.3.6.1.4.1.232.1.2.2.1.1.30 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqSeCpuMaxPerformanceState + oid: 1.3.6.1.4.1.232.1.2.2.1.1.31 + type: gauge + help: This OID returns the maximum performance state set for this processor + - 1.3.6.1.4.1.232.1.2.2.1.1.31 + indexes: + - labelname: cpqSeCpuUnitIndex + type: gauge + - name: cpqHoMibRevMajor + oid: 1.3.6.1.4.1.232.11.1.1 + type: gauge + help: The Major Revision level of the MIB - 1.3.6.1.4.1.232.11.1.1 + - name: cpqHoMibRevMinor + oid: 1.3.6.1.4.1.232.11.1.2 + type: gauge + help: The Minor Revision level of the MIB - 1.3.6.1.4.1.232.11.1.2 + - name: cpqHoMibCondition + oid: 1.3.6.1.4.1.232.11.1.3 + type: gauge + help: The overall condition - 1.3.6.1.4.1.232.11.1.3 + enum_values: + 1: unknown + 2: ok + 3: degraded + 4: failed + - name: cpqHoOsCommonPollFreq + oid: 1.3.6.1.4.1.232.11.2.1.4.1 + type: gauge + help: The Insight Agent`s polling frequency - 1.3.6.1.4.1.232.11.2.1.4.1 + - name: cpqHoOsCommonModuleIndex + oid: 1.3.6.1.4.1.232.11.2.1.4.2.1.1 + type: gauge + help: A unique index for this module description. - 1.3.6.1.4.1.232.11.2.1.4.2.1.1 + indexes: + - labelname: cpqHoOsCommonModuleIndex + type: gauge + - name: cpqHoOsCommonModuleName + oid: 1.3.6.1.4.1.232.11.2.1.4.2.1.2 + type: DisplayString + help: The module name. - 1.3.6.1.4.1.232.11.2.1.4.2.1.2 + indexes: + - labelname: cpqHoOsCommonModuleIndex + type: gauge + - name: cpqHoOsCommonModuleVersion + oid: 1.3.6.1.4.1.232.11.2.1.4.2.1.3 + type: DisplayString + help: The module version in XX.YY format - 1.3.6.1.4.1.232.11.2.1.4.2.1.3 + indexes: + - labelname: cpqHoOsCommonModuleIndex + type: gauge + - name: cpqHoOsCommonModuleDate + oid: 1.3.6.1.4.1.232.11.2.1.4.2.1.4 + type: OctetString + help: The module date - 1.3.6.1.4.1.232.11.2.1.4.2.1.4 + indexes: + - labelname: cpqHoOsCommonModuleIndex + type: gauge + - name: cpqHoOsCommonModulePurpose + oid: 1.3.6.1.4.1.232.11.2.1.4.2.1.5 + type: DisplayString + help: The purpose of the module described in this entry. - 1.3.6.1.4.1.232.11.2.1.4.2.1.5 + indexes: + - labelname: cpqHoOsCommonModuleIndex + type: gauge + - name: cpqHoName + oid: 1.3.6.1.4.1.232.11.2.2.1 + type: DisplayString + help: The name of the host operating system (OS). - 1.3.6.1.4.1.232.11.2.2.1 + - name: cpqHoVersion + oid: 1.3.6.1.4.1.232.11.2.2.2 + type: DisplayString + help: The version of the host OS. - 1.3.6.1.4.1.232.11.2.2.2 + - name: cpqHoDesc + oid: 1.3.6.1.4.1.232.11.2.2.3 + type: DisplayString + help: A further description of the host OS. - 1.3.6.1.4.1.232.11.2.2.3 + - name: cpqHoOsType + oid: 1.3.6.1.4.1.232.11.2.2.4 + type: gauge + help: Host Operating system enumeration. - 1.3.6.1.4.1.232.11.2.2.4 + enum_values: + 1: other + 2: netware + 3: windowsnt + 4: sco-unix + 5: unixware + 6: os-2 + 7: ms-dos + 8: dos-windows + 9: windows95 + 10: windows98 + 11: open-vms + 12: nsk + 13: windowsCE + 14: linux + 15: windows2000 + 16: tru64UNIX + 17: windows2003 + 18: windows2003-x64 + 19: solaris + 20: windows2003-ia64 + 21: windows2008 + 22: windows2008-x64 + 23: windows2008-ia64 + 24: vmware-esx + 25: vmware-esxi + 26: windows2012 + 27: windows7 + 28: windows7-x64 + 29: windows8 + 30: windows8-x64 + 31: windows81 + 32: windows81-x64 + 33: windowsxp + 34: windowsxp-x64 + 35: windowsvista + 36: windowsvista-x64 + 37: windows2008-r2 + 38: windows2012-r2 + 39: rhel + 40: rhel-64 + 41: solaris-64 + 42: sles + 43: sles-64 + 44: ubuntu + 45: ubuntu-64 + 46: debian + 47: debian-64 + 48: linux-64-bit + 49: other-64-bit + 50: centos-32bit + 51: centos-64bit + 52: oracle-linux32 + 53: oracle-linux64 + 54: apple-osx + 55: windows2016 + 56: nanoserver + 57: windows2019 + 58: windows10-x64 + 59: windows2022 + 60: azurestackhciOS-20h2 + 61: azurestackhciOS-21h2 + 62: azurestackhciOS-22h2 + - name: cpqHoTelnet + oid: 1.3.6.1.4.1.232.11.2.2.5 + type: gauge + help: Telnet on socket 23 is available. - 1.3.6.1.4.1.232.11.2.2.5 + enum_values: + 1: other + 2: available + 3: notavailable + - name: cpqHoSystemRole + oid: 1.3.6.1.4.1.232.11.2.2.6 + type: DisplayString + help: The system role - 1.3.6.1.4.1.232.11.2.2.6 + - name: cpqHoSystemRoleDetail + oid: 1.3.6.1.4.1.232.11.2.2.7 + type: DisplayString + help: The system detailed description - 1.3.6.1.4.1.232.11.2.2.7 + - name: cpqHoCrashDumpState + oid: 1.3.6.1.4.1.232.11.2.2.8 + type: gauge + help: Crash dump state - 1.3.6.1.4.1.232.11.2.2.8 + enum_values: + 1: completememorydump + 2: kernelmemorydump + 3: smallmemorydump + 4: none + - name: cpqHoCrashDumpCondition + oid: 1.3.6.1.4.1.232.11.2.2.9 + type: gauge + help: The condition of the Crash dump configuration. - 1.3.6.1.4.1.232.11.2.2.9 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHoCrashDumpMonitoring + oid: 1.3.6.1.4.1.232.11.2.2.10 + type: gauge + help: Enable/disable crash dump monitoring - 1.3.6.1.4.1.232.11.2.2.10 + enum_values: + 1: enabled + 2: disabled + - name: cpqHoMaxLogicalCPUSupported + oid: 1.3.6.1.4.1.232.11.2.2.11 + type: gauge + help: Maximum number of logical CPUs supported by Operating System. - 1.3.6.1.4.1.232.11.2.2.11 + - name: cpqHoSystemName + oid: 1.3.6.1.4.1.232.11.2.2.12 + type: DisplayString + help: Full computer name of the host - 1.3.6.1.4.1.232.11.2.2.12 + - name: cpqHosysDescr + oid: 1.3.6.1.4.1.232.11.2.2.13 + type: DisplayString + help: The value that would be returned in the RFC-1213 sysDescr MIB element + - 1.3.6.1.4.1.232.11.2.2.13 + - name: cpqHoCpuUtilUnitIndex + oid: 1.3.6.1.4.1.232.11.2.3.1.1.1 + type: gauge + help: This number uniquely specifies a processor unit - 1.3.6.1.4.1.232.11.2.3.1.1.1 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoCpuUtilMin + oid: 1.3.6.1.4.1.232.11.2.3.1.1.2 + type: gauge + help: The CPU utilization as a percentage of the theoretical maximum during + the last minute - 1.3.6.1.4.1.232.11.2.3.1.1.2 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoCpuUtilFiveMin + oid: 1.3.6.1.4.1.232.11.2.3.1.1.3 + type: gauge + help: The CPU utilization as a percentage of the theoretical maximum during + the last five minutes - 1.3.6.1.4.1.232.11.2.3.1.1.3 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoCpuUtilThirtyMin + oid: 1.3.6.1.4.1.232.11.2.3.1.1.4 + type: gauge + help: The CPU utilization as a percentage of the theoretical maximum during + the last thirty minutes - 1.3.6.1.4.1.232.11.2.3.1.1.4 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoCpuUtilHour + oid: 1.3.6.1.4.1.232.11.2.3.1.1.5 + type: gauge + help: The CPU utilization as a percentage of the theoretical maximum during + the last hour - 1.3.6.1.4.1.232.11.2.3.1.1.5 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoCpuUtilHwLocation + oid: 1.3.6.1.4.1.232.11.2.3.1.1.6 + type: DisplayString + help: A text description of the hardware location, on complex multi SBB hardware + only, for the CPU - 1.3.6.1.4.1.232.11.2.3.1.1.6 + indexes: + - labelname: cpqHoCpuUtilUnitIndex + type: gauge + - name: cpqHoFileSysIndex + oid: 1.3.6.1.4.1.232.11.2.4.1.1.1 + type: gauge + help: An index that uniquely specifies this entry. - 1.3.6.1.4.1.232.11.2.4.1.1.1 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysDesc + oid: 1.3.6.1.4.1.232.11.2.4.1.1.2 + type: DisplayString + help: A description of the file system include the GUID. - 1.3.6.1.4.1.232.11.2.4.1.1.2 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysSpaceTotal + oid: 1.3.6.1.4.1.232.11.2.4.1.1.3 + type: gauge + help: The file system size in megabytes - 1.3.6.1.4.1.232.11.2.4.1.1.3 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysSpaceUsed + oid: 1.3.6.1.4.1.232.11.2.4.1.1.4 + type: gauge + help: The megabytes of file system space currently in use - 1.3.6.1.4.1.232.11.2.4.1.1.4 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysPercentSpaceUsed + oid: 1.3.6.1.4.1.232.11.2.4.1.1.5 + type: gauge + help: The percent of file system space currently in use - 1.3.6.1.4.1.232.11.2.4.1.1.5 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysAllocUnitsTotal + oid: 1.3.6.1.4.1.232.11.2.4.1.1.6 + type: gauge + help: The total number of files (directory entries) that can be stored on the + file system if a limit exists other than total space used - 1.3.6.1.4.1.232.11.2.4.1.1.6 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysAllocUnitsUsed + oid: 1.3.6.1.4.1.232.11.2.4.1.1.7 + type: gauge + help: The number of files (directory entries) on this file system - 1.3.6.1.4.1.232.11.2.4.1.1.7 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysStatus + oid: 1.3.6.1.4.1.232.11.2.4.1.1.8 + type: gauge + help: The Threshold Status - 1.3.6.1.4.1.232.11.2.4.1.1.8 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + enum_values: + 1: unknown + 2: ok + 3: degraded + 4: failed + - name: cpqHoFileSysShortDesc + oid: 1.3.6.1.4.1.232.11.2.4.1.1.9 + type: DisplayString + help: A description of the file system. - 1.3.6.1.4.1.232.11.2.4.1.1.9 + indexes: + - labelname: cpqHoFileSysIndex + type: gauge + - name: cpqHoFileSysCondition + oid: 1.3.6.1.4.1.232.11.2.4.2 + type: gauge + help: The overall condition of File System Threshold - 1.3.6.1.4.1.232.11.2.4.2 + enum_values: + 1: unknown + 2: ok + 3: degraded + 4: failed + - name: cpqHoIfPhysMapIndex + oid: 1.3.6.1.4.1.232.11.2.5.1.1.1 + type: gauge + help: An index that uniquely specifies this entry - 1.3.6.1.4.1.232.11.2.5.1.1.1 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapSlot + oid: 1.3.6.1.4.1.232.11.2.5.1.1.2 + type: gauge + help: The number of the slot containing the physical hardware that implements + this interface - 1.3.6.1.4.1.232.11.2.5.1.1.2 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapIoBaseAddr + oid: 1.3.6.1.4.1.232.11.2.5.1.1.3 + type: gauge + help: The base I/O address of the physical hardware that implements this interface. + - 1.3.6.1.4.1.232.11.2.5.1.1.3 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapIrq + oid: 1.3.6.1.4.1.232.11.2.5.1.1.4 + type: gauge + help: The number of the IRQ (interrupt) used for this physical hardware interface + - 1.3.6.1.4.1.232.11.2.5.1.1.4 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapDma + oid: 1.3.6.1.4.1.232.11.2.5.1.1.5 + type: gauge + help: The number of the DMA channel used for this physical hardware interface + - 1.3.6.1.4.1.232.11.2.5.1.1.5 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapMemBaseAddr + oid: 1.3.6.1.4.1.232.11.2.5.1.1.6 + type: gauge + help: The base memory address used by this physical hardware interface - 1.3.6.1.4.1.232.11.2.5.1.1.6 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapPort + oid: 1.3.6.1.4.1.232.11.2.5.1.1.7 + type: gauge + help: The port number of the interface for multi-port NICs - 1.3.6.1.4.1.232.11.2.5.1.1.7 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + - name: cpqHoIfPhysMapDuplexState + oid: 1.3.6.1.4.1.232.11.2.5.1.1.8 + type: gauge + help: This variable describes the configured duplex state of the NIC. - 1.3.6.1.4.1.232.11.2.5.1.1.8 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + enum_values: + 1: other + 2: half + 3: full + - name: cpqHoIfPhysMapCondition + oid: 1.3.6.1.4.1.232.11.2.5.1.1.9 + type: gauge + help: The condition of this interface. - 1.3.6.1.4.1.232.11.2.5.1.1.9 + indexes: + - labelname: cpqHoIfPhysMapIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHoIfPhysMapOverallCondition + oid: 1.3.6.1.4.1.232.11.2.5.2 + type: gauge + help: The overall condition of all interfaces. - 1.3.6.1.4.1.232.11.2.5.2 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHoSWRunningIndex + oid: 1.3.6.1.4.1.232.11.2.6.1.1.1 + type: gauge + help: An index that uniquely specifies this entry. - 1.3.6.1.4.1.232.11.2.6.1.1.1 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningName + oid: 1.3.6.1.4.1.232.11.2.6.1.1.2 + type: DisplayString + help: The name of the software. - 1.3.6.1.4.1.232.11.2.6.1.1.2 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningDesc + oid: 1.3.6.1.4.1.232.11.2.6.1.1.3 + type: DisplayString + help: A description of the software. - 1.3.6.1.4.1.232.11.2.6.1.1.3 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningVersion + oid: 1.3.6.1.4.1.232.11.2.6.1.1.4 + type: DisplayString + help: The version of the software - 1.3.6.1.4.1.232.11.2.6.1.1.4 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningDate + oid: 1.3.6.1.4.1.232.11.2.6.1.1.5 + type: OctetString + help: The software date - 1.3.6.1.4.1.232.11.2.6.1.1.5 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningMonitor + oid: 1.3.6.1.4.1.232.11.2.6.1.1.6 + type: gauge + help: The user specified monitor option for a process. - 1.3.6.1.4.1.232.11.2.6.1.1.6 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + enum_values: + 1: other + 2: start + 3: stop + 4: startAndStop + 5: count + 6: startAndCount + 7: countAndStop + 8: startCountAndStop + - name: cpqHoSWRunningState + oid: 1.3.6.1.4.1.232.11.2.6.1.1.7 + type: gauge + help: The current state of monitored process. - 1.3.6.1.4.1.232.11.2.6.1.1.7 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + enum_values: + 1: other + 2: started + 3: stopped + - name: cpqHoSWRunningCount + oid: 1.3.6.1.4.1.232.11.2.6.1.1.8 + type: gauge + help: For each process name, the number of instances of the process running + on the system is kept count of, in this variable. - 1.3.6.1.4.1.232.11.2.6.1.1.8 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningCountMin + oid: 1.3.6.1.4.1.232.11.2.6.1.1.9 + type: gauge + help: This is the lower threshold on cpqHoSWRunningCount to be set by the user. + - 1.3.6.1.4.1.232.11.2.6.1.1.9 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningCountMax + oid: 1.3.6.1.4.1.232.11.2.6.1.1.10 + type: gauge + help: This is the upper threshold on cpqHoSWRunningCount to be set by the user. + - 1.3.6.1.4.1.232.11.2.6.1.1.10 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningEventTime + oid: 1.3.6.1.4.1.232.11.2.6.1.1.11 + type: OctetString + help: The system time at which the monitored event, as per cpqHoSWRunningMonitor, + last occurred - 1.3.6.1.4.1.232.11.2.6.1.1.11 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningStatus + oid: 1.3.6.1.4.1.232.11.2.6.1.1.12 + type: gauge + help: The overall alarm state of the resources managed by the software, or the + software itself. - 1.3.6.1.4.1.232.11.2.6.1.1.12 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + enum_values: + 1: unknown + 2: normal + 3: warning + 4: minor + 5: major + 6: critical + 7: disabled + - name: cpqHoSWRunningConfigStatus + oid: 1.3.6.1.4.1.232.11.2.6.1.1.13 + type: gauge + help: The configuration state of the software - 1.3.6.1.4.1.232.11.2.6.1.1.13 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + enum_values: + 1: unknown + 2: starting + 3: initialized + 4: configured + 5: operational + - name: cpqHoSWRunningIdentifier + oid: 1.3.6.1.4.1.232.11.2.6.1.1.14 + type: DisplayString + help: The unique identifier of the sofware - 1.3.6.1.4.1.232.11.2.6.1.1.14 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + - name: cpqHoSWRunningRedundancyMode + oid: 1.3.6.1.4.1.232.11.2.6.1.1.15 + type: gauge + help: When the software is running in a high availability mode, the failover + mode of this instance of the software. - 1.3.6.1.4.1.232.11.2.6.1.1.15 + indexes: + - labelname: cpqHoSWRunningIndex + type: gauge + enum_values: + 1: unknown + 2: master + 3: backup + 4: slave + - name: cpqHoSwRunningTrapDesc + oid: 1.3.6.1.4.1.232.11.2.6.2 + type: DisplayString + help: The error message for a process monitor event. - 1.3.6.1.4.1.232.11.2.6.2 + - name: cpqHoSwVerNextIndex + oid: 1.3.6.1.4.1.232.11.2.7.1 + type: gauge + help: The index of the next available entry in the cpqHoSwVer table - 1.3.6.1.4.1.232.11.2.7.1 + - name: cpqHoSwVerIndex + oid: 1.3.6.1.4.1.232.11.2.7.2.1.1 + type: gauge + help: An index that uniquely identifies an entry in the cpqHoSwVer table. - + 1.3.6.1.4.1.232.11.2.7.2.1.1 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerStatus + oid: 1.3.6.1.4.1.232.11.2.7.2.1.2 + type: gauge + help: Status for the software item. - 1.3.6.1.4.1.232.11.2.7.2.1.2 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + enum_values: + 1: other + 2: loaded + 3: notloaded + - name: cpqHoSwVerType + oid: 1.3.6.1.4.1.232.11.2.7.2.1.3 + type: gauge + help: Type of software item. - 1.3.6.1.4.1.232.11.2.7.2.1.3 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + enum_values: + 1: other + 2: driver + 3: agent + 4: sysutil + 5: application + 6: keyfile + 7: firmware + - name: cpqHoSwVerName + oid: 1.3.6.1.4.1.232.11.2.7.2.1.4 + type: DisplayString + help: The name of this software item. - 1.3.6.1.4.1.232.11.2.7.2.1.4 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerDescription + oid: 1.3.6.1.4.1.232.11.2.7.2.1.5 + type: DisplayString + help: The description of this software item. - 1.3.6.1.4.1.232.11.2.7.2.1.5 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerDate + oid: 1.3.6.1.4.1.232.11.2.7.2.1.6 + type: OctetString + help: The date of the software item, if any - 1.3.6.1.4.1.232.11.2.7.2.1.6 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerLocation + oid: 1.3.6.1.4.1.232.11.2.7.2.1.7 + type: DisplayString + help: The location of this software item on the server. - 1.3.6.1.4.1.232.11.2.7.2.1.7 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerVersion + oid: 1.3.6.1.4.1.232.11.2.7.2.1.8 + type: DisplayString + help: An string that specifies the version of this item. - 1.3.6.1.4.1.232.11.2.7.2.1.8 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerVersionBinary + oid: 1.3.6.1.4.1.232.11.2.7.2.1.9 + type: DisplayString + help: An string that specifies the version of this item based on the binary + version resource. - 1.3.6.1.4.1.232.11.2.7.2.1.9 + indexes: + - labelname: cpqHoSwVerIndex + type: gauge + - name: cpqHoSwVerAgentsVer + oid: 1.3.6.1.4.1.232.11.2.7.3 + type: DisplayString + help: A string that specifies the version of the Insight Management Agents running + on the system. - 1.3.6.1.4.1.232.11.2.7.3 + - name: cpqHoGenericData + oid: 1.3.6.1.4.1.232.11.2.8.1 + type: DisplayString + help: Data for the generic trap. - 1.3.6.1.4.1.232.11.2.8.1 + - name: cpqHoCriticalSoftwareUpdateData + oid: 1.3.6.1.4.1.232.11.2.8.2 + type: DisplayString + help: Data for the Critical Software Update trap. - 1.3.6.1.4.1.232.11.2.8.2 + - name: cpqHoSwPerfAppErrorDesc + oid: 1.3.6.1.4.1.232.11.2.9.1 + type: DisplayString + help: This string holds error information about the last application error that + occurred in the system. - 1.3.6.1.4.1.232.11.2.9.1 + - name: cpqHoMibStatusArray + oid: 1.3.6.1.4.1.232.11.2.10.1 + type: OctetString + help: The MIB Status Array is an array of MIB status structures - 1.3.6.1.4.1.232.11.2.10.1 + - name: cpqHoConfigChangedDate + oid: 1.3.6.1.4.1.232.11.2.10.2 + type: OctetString + help: The date/time when the agents were last loaded - 1.3.6.1.4.1.232.11.2.10.2 + - name: cpqHoGUID + oid: 1.3.6.1.4.1.232.11.2.10.3 + type: OctetString + help: The globally unique identifier of this physical server - 1.3.6.1.4.1.232.11.2.10.3 + - name: cpqHoCodeServer + oid: 1.3.6.1.4.1.232.11.2.10.4 + type: gauge + help: This item indicates how many code server shares are currently configured + on the system - 1.3.6.1.4.1.232.11.2.10.4 + - name: cpqHoWebMgmtPort + oid: 1.3.6.1.4.1.232.11.2.10.5 + type: gauge + help: This item indicates the port used by the Insight Web Agent - 1.3.6.1.4.1.232.11.2.10.5 + - name: cpqHoGUIDCanonical + oid: 1.3.6.1.4.1.232.11.2.10.6 + type: OctetString + help: The globally unique identifier in canonical format of this physical server + - 1.3.6.1.4.1.232.11.2.10.6 + - name: cpqHoMibHealthStatusArray + oid: 1.3.6.1.4.1.232.11.2.10.7 + type: OctetString + help: 'The MIB Health Status Array is an array of status values representing + an overall status in element 0 follwed by server and storage status values + as follows: Octet Element Field ======== ======= ========= 0 0 Aggregated + Status of array elements 1 1 Status of element 1 2 2 Status of element 2 - + 1.3.6.1.4.1.232.11.2.10.7' + - name: cpqHoTrapFlags + oid: 1.3.6.1.4.1.232.11.2.11.1 + type: gauge + help: The Trap Flags - 1.3.6.1.4.1.232.11.2.11.1 + - name: cpqHoClientLastModified + oid: 1.3.6.1.4.1.232.11.2.12.1 + type: OctetString + help: The date/time of the last modification to the client table - 1.3.6.1.4.1.232.11.2.12.1 + - name: cpqHoClientDelete + oid: 1.3.6.1.4.1.232.11.2.12.2 + type: DisplayString + help: Setting this variable to the name of a client in the client table will + cause that row in the table to be deleted - 1.3.6.1.4.1.232.11.2.12.2 + - name: cpqHoClientIndex + oid: 1.3.6.1.4.1.232.11.2.12.3.1.1 + type: gauge + help: An index that uniquely specifies this entry. - 1.3.6.1.4.1.232.11.2.12.3.1.1 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoClientName + oid: 1.3.6.1.4.1.232.11.2.12.3.1.2 + type: DisplayString + help: The Win95 machine name of this client. - 1.3.6.1.4.1.232.11.2.12.3.1.2 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoClientIpxAddress + oid: 1.3.6.1.4.1.232.11.2.12.3.1.3 + type: OctetString + help: The IPX address for this client, all octets should be set to 0xff if this + machine does not support IPX - 1.3.6.1.4.1.232.11.2.12.3.1.3 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoClientIpAddress + oid: 1.3.6.1.4.1.232.11.2.12.3.1.4 + type: InetAddressIPv4 + help: The IP address for this client, all octets should be set to 0xff if this + machine does not support IP - 1.3.6.1.4.1.232.11.2.12.3.1.4 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoClientCommunity + oid: 1.3.6.1.4.1.232.11.2.12.3.1.5 + type: DisplayString + help: A community name that can be used to query the client with SNMP - 1.3.6.1.4.1.232.11.2.12.3.1.5 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoClientID + oid: 1.3.6.1.4.1.232.11.2.12.3.1.6 + type: OctetString + help: The unique identifier of this client. - 1.3.6.1.4.1.232.11.2.12.3.1.6 + indexes: + - labelname: cpqHoClientIndex + type: gauge + - name: cpqHoPhysicalMemorySize + oid: 1.3.6.1.4.1.232.11.2.13.1 + type: gauge + help: Total amount of physical memory as seen by the OS (in megabytes) - 1.3.6.1.4.1.232.11.2.13.1 + - name: cpqHoPhysicalMemoryFree + oid: 1.3.6.1.4.1.232.11.2.13.2 + type: gauge + help: The amount of free physical memory (in megabytes) - 1.3.6.1.4.1.232.11.2.13.2 + - name: cpqHoPagingMemorySize + oid: 1.3.6.1.4.1.232.11.2.13.3 + type: gauge + help: Total virtual memory available from the OS (in megabytes) - 1.3.6.1.4.1.232.11.2.13.3 + - name: cpqHoPagingMemoryFree + oid: 1.3.6.1.4.1.232.11.2.13.4 + type: gauge + help: Available paging memory (in megabytes) - 1.3.6.1.4.1.232.11.2.13.4 + - name: cpqHoBootPagingFileSize + oid: 1.3.6.1.4.1.232.11.2.13.5 + type: DisplayString + help: The paging file size of the boot volume in the format xxxMB or xxxGB, + where xxx is the paging file size in that unit shown right after it - 1.3.6.1.4.1.232.11.2.13.5 + - name: cpqHoBootPagingFileMinimumSize + oid: 1.3.6.1.4.1.232.11.2.13.6 + type: DisplayString + help: Minimum paging file size of the boot volume required to save the memory + dump in the event of a system crash - 1.3.6.1.4.1.232.11.2.13.6 + - name: cpqHoBootPagingFileVolumeFreeSpace + oid: 1.3.6.1.4.1.232.11.2.13.7 + type: DisplayString + help: Free space of the boot volume required to save the memory dump in the + event of a system crash - 1.3.6.1.4.1.232.11.2.13.7 + - name: cpqHoFwVerIndex + oid: 1.3.6.1.4.1.232.11.2.14.1.1.1 + type: gauge + help: Firmware Version Index - 1.3.6.1.4.1.232.11.2.14.1.1.1 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerCategory + oid: 1.3.6.1.4.1.232.11.2.14.1.1.2 + type: gauge + help: Firmware Version Category. - 1.3.6.1.4.1.232.11.2.14.1.1.2 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + enum_values: + 1: other + 2: storage + 3: nic + 4: rib + 5: system + - name: cpqHoFwVerDeviceType + oid: 1.3.6.1.4.1.232.11.2.14.1.1.3 + type: gauge + help: Firmware Version Device Type. - 1.3.6.1.4.1.232.11.2.14.1.1.3 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + enum_values: + 1: other + 2: internalArrayController + 3: fibreArrayController + 4: scsiController + 5: fibreChannelTapeController + 6: modularDataRouter + 7: ideCdRomDrive + 8: ideDiskDrive + 9: scsiCdRom-ScsiAttached + 10: scsiDiskDrive-ScsiAttached + 11: scsiTapeDrive-ScsiAttached + 12: scsiTapeLibrary-ScsiAttached + 13: scsiDiskDrive-ArrayAttached + 14: scsiTapeDrive-ArrayAttached + 15: scsiTapeLibrary-ArrayAttached + 16: scsiDiskDrive-FibreAttached + 17: scsiTapeDrive-FibreAttached + 18: scsiTapeLibrary-FibreAttached + 19: scsiEnclosureBackplaneRom-ScsiAttached + 20: scsiEnclosureBackplaneRom-ArrayAttached + 21: scsiEnclosureBackplaneRom-FibreAttached + 22: scsiEnclosureBackplaneRom-ra4x00 + 23: systemRom + 24: networkInterfaceController + 25: remoteInsightBoard + 26: sasDiskDrive-SasAttached + 27: sataDiskDrive-SataAttached + 28: usbController + 29: sasControllerAdapter + 30: sataControllerAdapter + 31: systemDevice + 32: fibreChannelHba + 33: convergedNetworkAdapter + 34: ideController + - name: cpqHoFwVerDisplayName + oid: 1.3.6.1.4.1.232.11.2.14.1.1.4 + type: DisplayString + help: Firmware Version Device Display Name - 1.3.6.1.4.1.232.11.2.14.1.1.4 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerVersion + oid: 1.3.6.1.4.1.232.11.2.14.1.1.5 + type: DisplayString + help: Firmware Version - 1.3.6.1.4.1.232.11.2.14.1.1.5 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerLocation + oid: 1.3.6.1.4.1.232.11.2.14.1.1.6 + type: DisplayString + help: Firmware Version Device Location - 1.3.6.1.4.1.232.11.2.14.1.1.6 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerXmlString + oid: 1.3.6.1.4.1.232.11.2.14.1.1.7 + type: DisplayString + help: Firmware Version Xml String - 1.3.6.1.4.1.232.11.2.14.1.1.7 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerKeyString + oid: 1.3.6.1.4.1.232.11.2.14.1.1.8 + type: DisplayString + help: Firmware Version Key String - 1.3.6.1.4.1.232.11.2.14.1.1.8 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + - name: cpqHoFwVerUpdateMethod + oid: 1.3.6.1.4.1.232.11.2.14.1.1.9 + type: gauge + help: Firmware Version update method. - 1.3.6.1.4.1.232.11.2.14.1.1.9 + indexes: + - labelname: cpqHoFwVerIndex + type: gauge + enum_values: + 1: other + 2: noUpdate + 3: softwareflash + 4: replacePhysicalRom + - name: cpqHoHWInfoPlatform + oid: 1.3.6.1.4.1.232.11.2.15.1 + type: gauge + help: Hardware platform type - 1.3.6.1.4.1.232.11.2.15.1 + enum_values: + 1: unknown + 2: cellular + 3: foundation + 4: virtualMachine + 5: serverBlade + - name: cpqPwrWarnType + oid: 1.3.6.1.4.1.232.11.2.16.1 + type: DisplayString + help: Type of power reading on which the warning is based. - 1.3.6.1.4.1.232.11.2.16.1 + - name: cpqPwrWarnThreshold + oid: 1.3.6.1.4.1.232.11.2.16.2 + type: gauge + help: The threshold the power usage must exceed (in Watts). - 1.3.6.1.4.1.232.11.2.16.2 + - name: cpqPwrWarnDuration + oid: 1.3.6.1.4.1.232.11.2.16.3 + type: gauge + help: Duration that power usage must be exceeded before warning (in minutes). + - 1.3.6.1.4.1.232.11.2.16.3 + - name: cpqSerialNum + oid: 1.3.6.1.4.1.232.11.2.16.4 + type: DisplayString + help: Serial number of the server. - 1.3.6.1.4.1.232.11.2.16.4 + - name: cpqServerUUID + oid: 1.3.6.1.4.1.232.11.2.16.5 + type: DisplayString + help: Server UUID - 1.3.6.1.4.1.232.11.2.16.5 + - name: cpqIdeMibRevMajor + oid: 1.3.6.1.4.1.232.14.1.1 + type: gauge + help: The Major Revision level - 1.3.6.1.4.1.232.14.1.1 + - name: cpqIdeMibRevMinor + oid: 1.3.6.1.4.1.232.14.1.2 + type: gauge + help: The Minor Revision level - 1.3.6.1.4.1.232.14.1.2 + - name: cpqIdeMibCondition + oid: 1.3.6.1.4.1.232.14.1.3 + type: gauge + help: The overall condition - 1.3.6.1.4.1.232.14.1.3 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeOsCommonPollFreq + oid: 1.3.6.1.4.1.232.14.2.1.4.1 + type: gauge + help: The Insight Agent`s polling frequency - 1.3.6.1.4.1.232.14.2.1.4.1 + - name: cpqIdeOsCommonModuleIndex + oid: 1.3.6.1.4.1.232.14.2.1.4.2.1.1 + type: gauge + help: A unique index for this module description. - 1.3.6.1.4.1.232.14.2.1.4.2.1.1 + indexes: + - labelname: cpqIdeOsCommonModuleIndex + type: gauge + - name: cpqIdeOsCommonModuleName + oid: 1.3.6.1.4.1.232.14.2.1.4.2.1.2 + type: DisplayString + help: The module name. - 1.3.6.1.4.1.232.14.2.1.4.2.1.2 + indexes: + - labelname: cpqIdeOsCommonModuleIndex + type: gauge + - name: cpqIdeOsCommonModuleVersion + oid: 1.3.6.1.4.1.232.14.2.1.4.2.1.3 + type: DisplayString + help: The module version in XX.YY format - 1.3.6.1.4.1.232.14.2.1.4.2.1.3 + indexes: + - labelname: cpqIdeOsCommonModuleIndex + type: gauge + - name: cpqIdeOsCommonModuleDate + oid: 1.3.6.1.4.1.232.14.2.1.4.2.1.4 + type: OctetString + help: The module date - 1.3.6.1.4.1.232.14.2.1.4.2.1.4 + indexes: + - labelname: cpqIdeOsCommonModuleIndex + type: gauge + - name: cpqIdeOsCommonModulePurpose + oid: 1.3.6.1.4.1.232.14.2.1.4.2.1.5 + type: DisplayString + help: The purpose of the module described in this entry. - 1.3.6.1.4.1.232.14.2.1.4.2.1.5 + indexes: + - labelname: cpqIdeOsCommonModuleIndex + type: gauge + - name: cpqIdeIdentIndex + oid: 1.3.6.1.4.1.232.14.2.2.1.1.1 + type: gauge + help: An index that uniquely specifies each device - 1.3.6.1.4.1.232.14.2.2.1.1.1 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + - name: cpqIdeIdentModel + oid: 1.3.6.1.4.1.232.14.2.2.1.1.2 + type: DisplayString + help: IDE Drive Model - 1.3.6.1.4.1.232.14.2.2.1.1.2 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + - name: cpqIdeIdentSerNum + oid: 1.3.6.1.4.1.232.14.2.2.1.1.3 + type: DisplayString + help: IDE Drive Serial Number - 1.3.6.1.4.1.232.14.2.2.1.1.3 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + - name: cpqIdeIdentFWVers + oid: 1.3.6.1.4.1.232.14.2.2.1.1.4 + type: DisplayString + help: IDE Firmware Version - 1.3.6.1.4.1.232.14.2.2.1.1.4 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + - name: cpqIdeIdentCondition + oid: 1.3.6.1.4.1.232.14.2.2.1.1.5 + type: gauge + help: IDE Drive Condition - 1.3.6.1.4.1.232.14.2.2.1.1.5 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeIdentErrorNumber + oid: 1.3.6.1.4.1.232.14.2.2.1.1.6 + type: DisplayString + help: IDE Error Number - 1.3.6.1.4.1.232.14.2.2.1.1.6 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + - name: cpqIdeIdentType + oid: 1.3.6.1.4.1.232.14.2.2.1.1.7 + type: gauge + help: IDE Device Type - 1.3.6.1.4.1.232.14.2.2.1.1.7 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: disk + 3: tape + 4: printer + 5: processor + 6: wormDrive + 7: cd-rom + 8: scanner + 9: optical + 10: jukeBox + 11: commDev + - name: cpqIdeIdentTypeExtended + oid: 1.3.6.1.4.1.232.14.2.2.1.1.8 + type: gauge + help: IDE Extended Device Type - 1.3.6.1.4.1.232.14.2.2.1.1.8 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: pdcd + 3: removableDisk + - name: cpqIdeIdentCondition2 + oid: 1.3.6.1.4.1.232.14.2.2.1.1.9 + type: gauge + help: IDE Drive Condition - 1.3.6.1.4.1.232.14.2.2.1.1.9 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeIdentStatus + oid: 1.3.6.1.4.1.232.14.2.2.1.1.10 + type: gauge + help: IDE Drive Satus - 1.3.6.1.4.1.232.14.2.2.1.1.10 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: preFailureDegraded + 4: ultraAtaDegraded + - name: cpqIdeIdentUltraAtaAvailability + oid: 1.3.6.1.4.1.232.14.2.2.1.1.11 + type: gauge + help: This describes the availability of Ultra ATA transfers between this device + and the controller - 1.3.6.1.4.1.232.14.2.2.1.1.11 + indexes: + - labelname: cpqIdeIdentIndex + type: gauge + enum_values: + 1: other + 2: noNotSupportedByDeviceAndController + 3: noNotSupportedByDevice + 4: noNotSupportedByController + 5: noDisabledInSetup + 6: yesEnabledInSetup + - name: cpqIdeControllerIndex + oid: 1.3.6.1.4.1.232.14.2.3.1.1.1 + type: gauge + help: An index that uniquely identifies each controller. - 1.3.6.1.4.1.232.14.2.3.1.1.1 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerOverallCondition + oid: 1.3.6.1.4.1.232.14.2.3.1.1.2 + type: gauge + help: IDE Controller Overall Condition - 1.3.6.1.4.1.232.14.2.3.1.1.2 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeControllerModel + oid: 1.3.6.1.4.1.232.14.2.3.1.1.3 + type: DisplayString + help: IDE Controller Model - 1.3.6.1.4.1.232.14.2.3.1.1.3 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerFwRev + oid: 1.3.6.1.4.1.232.14.2.3.1.1.4 + type: DisplayString + help: IDE Controller Firmware Revision - 1.3.6.1.4.1.232.14.2.3.1.1.4 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerSlot + oid: 1.3.6.1.4.1.232.14.2.3.1.1.5 + type: gauge + help: IDE Controller Slot - 1.3.6.1.4.1.232.14.2.3.1.1.5 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerStatus + oid: 1.3.6.1.4.1.232.14.2.3.1.1.6 + type: gauge + help: IDE Channel Host Controller Status - 1.3.6.1.4.1.232.14.2.3.1.1.6 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + - name: cpqIdeControllerCondition + oid: 1.3.6.1.4.1.232.14.2.3.1.1.7 + type: gauge + help: IDE Controller Condition - 1.3.6.1.4.1.232.14.2.3.1.1.7 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeControllerSerialNumber + oid: 1.3.6.1.4.1.232.14.2.3.1.1.8 + type: DisplayString + help: IDE Controller Serial Number - 1.3.6.1.4.1.232.14.2.3.1.1.8 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerHwLocation + oid: 1.3.6.1.4.1.232.14.2.3.1.1.9 + type: DisplayString + help: IDE Controller Hardware Location - 1.3.6.1.4.1.232.14.2.3.1.1.9 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeControllerPciLocation + oid: 1.3.6.1.4.1.232.14.2.3.1.1.10 + type: DisplayString + help: IDE Controller PCI Location - 1.3.6.1.4.1.232.14.2.3.1.1.10 + indexes: + - labelname: cpqIdeControllerIndex + type: gauge + - name: cpqIdeAtaDiskControllerIndex + oid: 1.3.6.1.4.1.232.14.2.4.1.1.1 + type: gauge + help: An index that uniquely identifies each controller. - 1.3.6.1.4.1.232.14.2.4.1.1.1 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskIndex + oid: 1.3.6.1.4.1.232.14.2.4.1.1.2 + type: gauge + help: An index that uniquely identifies each disk. - 1.3.6.1.4.1.232.14.2.4.1.1.2 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskModel + oid: 1.3.6.1.4.1.232.14.2.4.1.1.3 + type: DisplayString + help: ATA Disk Model - 1.3.6.1.4.1.232.14.2.4.1.1.3 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskFwRev + oid: 1.3.6.1.4.1.232.14.2.4.1.1.4 + type: DisplayString + help: ATA Disk Firmware Revision - 1.3.6.1.4.1.232.14.2.4.1.1.4 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskSerialNumber + oid: 1.3.6.1.4.1.232.14.2.4.1.1.5 + type: DisplayString + help: ATA Disk Serial Number - 1.3.6.1.4.1.232.14.2.4.1.1.5 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskStatus + oid: 1.3.6.1.4.1.232.14.2.4.1.1.6 + type: gauge + help: ATA Disk Status - 1.3.6.1.4.1.232.14.2.4.1.1.6 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: smartError + 4: failed + 5: ssdWearOut + 6: removed + 7: inserted + - name: cpqIdeAtaDiskCondition + oid: 1.3.6.1.4.1.232.14.2.4.1.1.7 + type: gauge + help: ATA Disk Condition - 1.3.6.1.4.1.232.14.2.4.1.1.7 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeAtaDiskCapacity + oid: 1.3.6.1.4.1.232.14.2.4.1.1.8 + type: gauge + help: ATA Disk Capacity - 1.3.6.1.4.1.232.14.2.4.1.1.8 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskSmartEnabled + oid: 1.3.6.1.4.1.232.14.2.4.1.1.9 + type: gauge + help: ATA Disk S.M.A.R.T Enabled? other(1) The agent cannot determine the state + of S.M.A.R.T - 1.3.6.1.4.1.232.14.2.4.1.1.9 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqIdeAtaDiskTransferMode + oid: 1.3.6.1.4.1.232.14.2.4.1.1.10 + type: gauge + help: ATA Disk Transfer Mode - 1.3.6.1.4.1.232.14.2.4.1.1.10 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: pioMode0 + 3: pioMode1 + 4: pioMode2 + 5: pioMode3 + 6: pioMode4 + 7: dmaMode0 + 8: dmaMode1 + 9: dmaMode2 + 10: ultraDmaMode0 + 11: ultraDmaMode1 + 12: ultraDmaMode2 + 13: ultraDmaMode3 + 14: ultraDmaMode4 + 15: ultraDmaMode5 + - name: cpqIdeAtaDiskChannel + oid: 1.3.6.1.4.1.232.14.2.4.1.1.11 + type: gauge + help: ATA Disk Channel - 1.3.6.1.4.1.232.14.2.4.1.1.11 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: channel0 + 3: channel1 + 4: serial + - name: cpqIdeAtaDiskNumber + oid: 1.3.6.1.4.1.232.14.2.4.1.1.12 + type: gauge + help: ATA Disk Number - 1.3.6.1.4.1.232.14.2.4.1.1.12 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: device0 + 3: device1 + 4: sataDevice0 + 5: sataDevice1 + 6: sataDevice2 + 7: sataDevice3 + 8: sataDevice4 + 9: sataDevice5 + 10: sataDevice6 + 11: sataDevice7 + 12: sataDevice8 + 13: sataDevice9 + 14: sataDevice10 + 15: sataDevice11 + 16: sataDevice12 + 17: sataDevice13 + 18: sataDevice14 + 19: sataDevice15 + 20: sataDevice16 + 21: bay1 + 22: bay2 + 23: bay3 + 24: bay4 + 25: bay5 + 26: bay6 + 27: bay7 + 28: bay8 + 29: bay9 + 30: bay10 + 31: bay11 + 32: bay12 + 33: bay13 + 34: bay14 + 35: bay15 + 36: bay16 + 37: bay17 + 38: bay18 + 39: bay19 + 40: bay20 + 41: bay21 + 42: bay22 + 43: bay23 + 44: bay24 + - name: cpqIdeAtaDiskLogicalDriveMember + oid: 1.3.6.1.4.1.232.14.2.4.1.1.13 + type: gauge + help: Logical Drive Membership? other(1) The agent cannot determine if the ATA + disk is part of a logical drive - 1.3.6.1.4.1.232.14.2.4.1.1.13 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqIdeAtaDiskIsSpare + oid: 1.3.6.1.4.1.232.14.2.4.1.1.14 + type: gauge + help: ATA Disk Spare? other(1) The agent cannot determine if the ATA disk is + a spare - 1.3.6.1.4.1.232.14.2.4.1.1.14 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqIdeAtaDiskOsName + oid: 1.3.6.1.4.1.232.14.2.4.1.1.15 + type: DisplayString + help: ATA Disk OS Name - 1.3.6.1.4.1.232.14.2.4.1.1.15 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskType + oid: 1.3.6.1.4.1.232.14.2.4.1.1.16 + type: gauge + help: ATA Disk Type other(1) The agent cannot determine the disk type - 1.3.6.1.4.1.232.14.2.4.1.1.16 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: ata + 3: sata + - name: cpqIdeAtaDiskSataVersion + oid: 1.3.6.1.4.1.232.14.2.4.1.1.17 + type: gauge + help: Physical Drive SATA Version - 1.3.6.1.4.1.232.14.2.4.1.1.17 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: sataOne + 3: sataTwo + - name: cpqIdeAtaDiskMediaType + oid: 1.3.6.1.4.1.232.14.2.4.1.1.18 + type: gauge + help: SATA Physical Drive Media Type - 1.3.6.1.4.1.232.14.2.4.1.1.18 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: rotatingPlatters + 3: solidState + - name: cpqIdeAtaDiskSSDWearStatus + oid: 1.3.6.1.4.1.232.14.2.4.1.1.19 + type: gauge + help: SATA Physical Drive Solid State Disk Wear Status - 1.3.6.1.4.1.232.14.2.4.1.1.19 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: fiftySixDayThreshold + 4: fivePercentThreshold + 5: twoPercentThreshold + 6: ssdWearOut + - name: cpqIdeAtaDiskPowerOnHours + oid: 1.3.6.1.4.1.232.14.2.4.1.1.20 + type: counter + help: SATA Physical Drive Power On Hours - 1.3.6.1.4.1.232.14.2.4.1.1.20 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskSSDPercntEndrnceUsed + oid: 1.3.6.1.4.1.232.14.2.4.1.1.21 + type: gauge + help: SATA Physical Drive Solid State Percent Endurance Used - 1.3.6.1.4.1.232.14.2.4.1.1.21 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskSSDEstTimeRemainingHours + oid: 1.3.6.1.4.1.232.14.2.4.1.1.22 + type: counter + help: SATA Physical Drive Solid State Estimated Time Remaining In Hours - 1.3.6.1.4.1.232.14.2.4.1.1.22 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskCurrTemperature + oid: 1.3.6.1.4.1.232.14.2.4.1.1.23 + type: gauge + help: SATA Physical Drive Current Operating Temperature degrees Celsius - 1.3.6.1.4.1.232.14.2.4.1.1.23 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskTemperatureThreshold + oid: 1.3.6.1.4.1.232.14.2.4.1.1.24 + type: gauge + help: SATA Physical Drive Maximum Operating Temperature in degrees Celsius - + 1.3.6.1.4.1.232.14.2.4.1.1.24 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskMaximumOperatingTemp + oid: 1.3.6.1.4.1.232.14.2.4.1.1.25 + type: gauge + help: SATA Physical Drive Maximum Operating Temperature, as specified by the + manufacturer, in degrees Celsius - 1.3.6.1.4.1.232.14.2.4.1.1.25 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskDestructiveOperatingTemp + oid: 1.3.6.1.4.1.232.14.2.4.1.1.26 + type: gauge + help: SATA Physical Drive Destructive Operating Temperature, as specified by + the manufacturer, in degrees Celsius, which if exceeded can cause damage to + the drive - 1.3.6.1.4.1.232.14.2.4.1.1.26 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskLocation + oid: 1.3.6.1.4.1.232.14.2.4.1.1.27 + type: DisplayString + help: Location of Disk Drive - 1.3.6.1.4.1.232.14.2.4.1.1.27 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskCapacityHighBytes + oid: 1.3.6.1.4.1.232.14.2.4.1.1.28 + type: counter + help: ATA Disk Capacity in Bytes (high) - 1.3.6.1.4.1.232.14.2.4.1.1.28 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaDiskCapacityLowBytes + oid: 1.3.6.1.4.1.232.14.2.4.1.1.29 + type: counter + help: ATA Disk Capacity in Bytes (low) - 1.3.6.1.4.1.232.14.2.4.1.1.29 + indexes: + - labelname: cpqIdeAtaDiskControllerIndex + type: gauge + - labelname: cpqIdeAtaDiskIndex + type: gauge + - name: cpqIdeAtaEraseFailureType + oid: 1.3.6.1.4.1.232.14.2.4.2 + type: gauge + help: The value specifies the secure erase status of SATA drive - 1.3.6.1.4.1.232.14.2.4.2 + enum_values: + 1: secureEraseFailed + 2: secureEraseNotSupported + 3: noEraseSupported + - name: cpqIdeAtapiDeviceControllerIndex + oid: 1.3.6.1.4.1.232.14.2.5.1.1.1 + type: gauge + help: An index that uniquely identifies each controller. - 1.3.6.1.4.1.232.14.2.5.1.1.1 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + - name: cpqIdeAtapiDeviceIndex + oid: 1.3.6.1.4.1.232.14.2.5.1.1.2 + type: gauge + help: An index that uniquely identifies each ATAPI device. - 1.3.6.1.4.1.232.14.2.5.1.1.2 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + - name: cpqIdeAtapiDeviceModel + oid: 1.3.6.1.4.1.232.14.2.5.1.1.3 + type: DisplayString + help: ATAPI Device Model - 1.3.6.1.4.1.232.14.2.5.1.1.3 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + - name: cpqIdeAtapiDeviceFwRev + oid: 1.3.6.1.4.1.232.14.2.5.1.1.4 + type: DisplayString + help: ATAPI Device Firmware Revision - 1.3.6.1.4.1.232.14.2.5.1.1.4 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + - name: cpqIdeAtapiDeviceType + oid: 1.3.6.1.4.1.232.14.2.5.1.1.5 + type: gauge + help: ATAPI Device Type - 1.3.6.1.4.1.232.14.2.5.1.1.5 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + enum_values: + 1: other + 2: disk + 3: tape + 4: printer + 5: processor + 6: wormDrive + 7: cd-rom + 8: scanner + 9: optical + 10: jukeBox + 11: commDev + - name: cpqIdeAtapiDeviceTypeExtended + oid: 1.3.6.1.4.1.232.14.2.5.1.1.6 + type: gauge + help: ATAPI Extended Device Type - 1.3.6.1.4.1.232.14.2.5.1.1.6 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + enum_values: + 1: other + 2: pdcd + 3: removableDisk + - name: cpqIdeAtapiDeviceChannel + oid: 1.3.6.1.4.1.232.14.2.5.1.1.7 + type: gauge + help: ATAPI Device Channel - 1.3.6.1.4.1.232.14.2.5.1.1.7 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + enum_values: + 1: other + 2: channel0 + 3: channel1 + - name: cpqIdeAtapiDeviceNumber + oid: 1.3.6.1.4.1.232.14.2.5.1.1.8 + type: gauge + help: ATAPI Device Number - 1.3.6.1.4.1.232.14.2.5.1.1.8 + indexes: + - labelname: cpqIdeAtapiDeviceControllerIndex + type: gauge + - labelname: cpqIdeAtapiDeviceIndex + type: gauge + enum_values: + 1: other + 2: device0 + 3: device1 + - name: cpqIdeLogicalDriveControllerIndex + oid: 1.3.6.1.4.1.232.14.2.6.1.1.1 + type: gauge + help: An index that uniquely identifies each controller. - 1.3.6.1.4.1.232.14.2.6.1.1.1 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveIndex + oid: 1.3.6.1.4.1.232.14.2.6.1.1.2 + type: gauge + help: An index that uniquely identifies each logical drive. - 1.3.6.1.4.1.232.14.2.6.1.1.2 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveRaidLevel + oid: 1.3.6.1.4.1.232.14.2.6.1.1.3 + type: gauge + help: IDE Logical Drive RAID Level - 1.3.6.1.4.1.232.14.2.6.1.1.3 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + enum_values: + 1: other + 2: raid0 + 3: raid1 + 4: raid0plus1 + 5: raid5 + 6: raid15 + 7: volume + - name: cpqIdeLogicalDriveCapacity + oid: 1.3.6.1.4.1.232.14.2.6.1.1.4 + type: gauge + help: IDE Logical Drive Capacity - 1.3.6.1.4.1.232.14.2.6.1.1.4 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveStatus + oid: 1.3.6.1.4.1.232.14.2.6.1.1.5 + type: gauge + help: IDE Logical Drive Status - 1.3.6.1.4.1.232.14.2.6.1.1.5 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: rebuilding + 5: failed + - name: cpqIdeLogicalDriveCondition + oid: 1.3.6.1.4.1.232.14.2.6.1.1.6 + type: gauge + help: IDE Logical Drive Condition - 1.3.6.1.4.1.232.14.2.6.1.1.6 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqIdeLogicalDriveDiskIds + oid: 1.3.6.1.4.1.232.14.2.6.1.1.7 + type: OctetString + help: IDE Logical Drive Disk ID list - 1.3.6.1.4.1.232.14.2.6.1.1.7 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveStripeSize + oid: 1.3.6.1.4.1.232.14.2.6.1.1.8 + type: gauge + help: IDE Logical Drive Stripe Size - 1.3.6.1.4.1.232.14.2.6.1.1.8 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveSpareIds + oid: 1.3.6.1.4.1.232.14.2.6.1.1.9 + type: OctetString + help: IDE Logical Drive Spare ID list - 1.3.6.1.4.1.232.14.2.6.1.1.9 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveRebuildingDisk + oid: 1.3.6.1.4.1.232.14.2.6.1.1.10 + type: gauge + help: IDE Logical Drive Rebuilding Disk - 1.3.6.1.4.1.232.14.2.6.1.1.10 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqIdeLogicalDriveOsName + oid: 1.3.6.1.4.1.232.14.2.6.1.1.11 + type: DisplayString + help: IDE Logical Drive OS Name - 1.3.6.1.4.1.232.14.2.6.1.1.11 + indexes: + - labelname: cpqIdeLogicalDriveControllerIndex + type: gauge + - labelname: cpqIdeLogicalDriveIndex + type: gauge + - name: cpqDaCntlrIndex + oid: 1.3.6.1.4.1.232.3.2.2.1.1.1 + type: gauge + help: Array Controller Index - 1.3.6.1.4.1.232.3.2.2.1.1.1 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrModel + oid: 1.3.6.1.4.1.232.3.2.2.1.1.2 + type: gauge + help: Array Controller Model - 1.3.6.1.4.1.232.3.2.2.1.1.2 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ida + 3: idaExpansion + 4: ida-2 + 5: smart + 6: smart-2e + 7: smart-2p + 8: smart-2sl + 9: smart-3100es + 10: smart-3200 + 11: smart-2dh + 12: smart-221 + 13: sa-4250es + 14: sa-4200 + 15: sa-integrated + 16: sa-431 + 17: sa-5300 + 18: raidLc2 + 19: sa-5i + 20: sa-532 + 21: sa-5312 + 22: sa-641 + 23: sa-642 + 24: sa-6400 + 25: sa-6400em + 26: sa-6i + 27: sa-generic + 29: sa-p600 + 30: sa-p400 + 31: sa-e200 + 32: sa-e200i + 33: sa-p400i + 34: sa-p800 + 35: sa-e500 + 36: sa-p700m + 37: sa-p212 + 38: sa-p410 + 39: sa-p410i + 40: sa-p411 + 41: sa-b110i + 42: sa-p712m + 43: sa-p711m + 44: sa-p812 + 45: sw-1210m + 46: sa-p220i + 47: sa-p222 + 48: sa-p420 + 49: sa-p420i + 50: sa-p421 + 51: sa-b320i + 52: sa-p822 + 53: sa-p721m + 54: sa-b120i + 55: hps-1224 + 56: hps-1228 + 57: hps-1228m + 58: sa-p822se + 59: hps-1224e + 60: hps-1228e + 61: hps-1228em + 62: sa-p230i + 63: sa-p430i + 64: sa-p430 + 65: sa-p431 + 66: sa-p731m + 67: sa-p830i + 68: sa-p830 + 69: sa-p831 + 70: sa-p530 + 71: sa-p531 + 72: sa-p244br + 73: sa-p246br + 74: sa-p440 + 75: sa-p440ar + 76: sa-p441 + 77: sa-p741m + 78: sa-p840 + 79: sa-p841 + 80: sh-h240ar + 81: sh-h244br + 82: sh-h240 + 83: sh-h241 + 84: sa-b140i + 85: sh-generic + 86: sa-p240nr + 87: sh-h240nr + 88: sa-p840ar + 89: sa-p542d + 90: s100i + 91: e208i-p + 92: e208i-a + 93: e208i-c + 94: e208e-p + 95: p204i-b + 96: p204i-c + 97: p408i-p + 98: p408i-a + 99: p408e-p + 100: p408i-c + 101: p408e-m + 102: p416ie-m + 103: p816i-a + 104: p408i-sb + - name: cpqDaCntlrFWRev + oid: 1.3.6.1.4.1.232.3.2.2.1.1.3 + type: DisplayString + help: Array Controller Firmware Revision - 1.3.6.1.4.1.232.3.2.2.1.1.3 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrStndIntr + oid: 1.3.6.1.4.1.232.3.2.2.1.1.4 + type: gauge + help: The status of the Standard Interface - 1.3.6.1.4.1.232.3.2.2.1.1.4 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: primary + 3: secondary + 4: disabled + 5: unavailable + - name: cpqDaCntlrSlot + oid: 1.3.6.1.4.1.232.3.2.2.1.1.5 + type: gauge + help: Array Controller Slot - 1.3.6.1.4.1.232.3.2.2.1.1.5 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrCondition + oid: 1.3.6.1.4.1.232.3.2.2.1.1.6 + type: gauge + help: The condition of the device - 1.3.6.1.4.1.232.3.2.2.1.1.6 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqDaCntlrProductRev + oid: 1.3.6.1.4.1.232.3.2.2.1.1.7 + type: DisplayString + help: Array Controller Product Revision - 1.3.6.1.4.1.232.3.2.2.1.1.7 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrPartnerSlot + oid: 1.3.6.1.4.1.232.3.2.2.1.1.8 + type: gauge + help: Array Controller Partner Slot - 1.3.6.1.4.1.232.3.2.2.1.1.8 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrCurrentRole + oid: 1.3.6.1.4.1.232.3.2.2.1.1.9 + type: gauge + help: Array Controller Current Role - 1.3.6.1.4.1.232.3.2.2.1.1.9 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: notDuplexed + 3: active + 4: backup + 5: asymActiveActive + - name: cpqDaCntlrBoardStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.10 + type: gauge + help: Array Controller Board Status - 1.3.6.1.4.1.232.3.2.2.1.1.10 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: generalFailure + 4: cableProblem + 5: poweredOff + 6: cacheModuleMissing + 7: degraded + - name: cpqDaCntlrPartnerBoardStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.11 + type: gauge + help: Array Controller Partner Board Status - 1.3.6.1.4.1.232.3.2.2.1.1.11 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: generalFailure + 4: cableProblem + 5: poweredOff + - name: cpqDaCntlrBoardCondition + oid: 1.3.6.1.4.1.232.3.2.2.1.1.12 + type: gauge + help: The condition of the device - 1.3.6.1.4.1.232.3.2.2.1.1.12 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqDaCntlrPartnerBoardCondition + oid: 1.3.6.1.4.1.232.3.2.2.1.1.13 + type: gauge + help: The condition of the device - 1.3.6.1.4.1.232.3.2.2.1.1.13 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqDaCntlrDriveOwnership + oid: 1.3.6.1.4.1.232.3.2.2.1.1.14 + type: gauge + help: Array Controller Drive Ownership - 1.3.6.1.4.1.232.3.2.2.1.1.14 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: owner + 3: notOwner + - name: cpqDaCntlrSerialNumber + oid: 1.3.6.1.4.1.232.3.2.2.1.1.15 + type: DisplayString + help: Array Controller Serial Number - 1.3.6.1.4.1.232.3.2.2.1.1.15 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrRedundancyType + oid: 1.3.6.1.4.1.232.3.2.2.1.1.16 + type: gauge + help: Array Controller Redundancy Type - 1.3.6.1.4.1.232.3.2.2.1.1.16 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: notRedundant + 3: driverDuplexing + 4: fwActiveStandby + 5: fwPrimarySecondary + 6: fwActiveActive + - name: cpqDaCntlrRedundancyError + oid: 1.3.6.1.4.1.232.3.2.2.1.1.17 + type: gauge + help: Array Controller Redundancy Error - 1.3.6.1.4.1.232.3.2.2.1.1.17 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: noFailure + 3: noRedundantController + 4: differentHardware + 5: noLink + 6: differentFirmware + 7: differentCache + 8: otherCacheFailure + 9: noDrives + 10: otherNoDrives + 11: unsupportedDrives + 12: expandInProgress + - name: cpqDaCntlrAccessModuleStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.18 + type: gauge + help: Array Controller RAID ADG Enabler Module Status - 1.3.6.1.4.1.232.3.2.2.1.1.18 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: notPresent + 4: badSignature + 5: badChecksum + 6: fullyFunctional + 7: upgradeFirmware + - name: cpqDaCntlrDaughterBoardType + oid: 1.3.6.1.4.1.232.3.2.2.1.1.19 + type: gauge + help: Array Controller Daughter Board Type - 1.3.6.1.4.1.232.3.2.2.1.1.19 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: notPresent + 4: scsiBoardPresent + 5: fibreBoardPresent + 6: arrayExpansionModulePresent + - name: cpqDaCntlrHwLocation + oid: 1.3.6.1.4.1.232.3.2.2.1.1.20 + type: DisplayString + help: A text description of the hardware location of the controller - 1.3.6.1.4.1.232.3.2.2.1.1.20 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrNumberOfBuses + oid: 1.3.6.1.4.1.232.3.2.2.1.1.21 + type: gauge + help: Array Controller Number of Buses - 1.3.6.1.4.1.232.3.2.2.1.1.21 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrBlinkTime + oid: 1.3.6.1.4.1.232.3.2.2.1.1.22 + type: counter + help: Controller Physical Drive Blink Time Count - 1.3.6.1.4.1.232.3.2.2.1.1.22 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrRebuildPriority + oid: 1.3.6.1.4.1.232.3.2.2.1.1.23 + type: gauge + help: Array Controller Rebuild Priority - 1.3.6.1.4.1.232.3.2.2.1.1.23 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: low + 3: medium + 4: high + 5: mediumHigh + - name: cpqDaCntlrExpandPriority + oid: 1.3.6.1.4.1.232.3.2.2.1.1.24 + type: gauge + help: Array Controller Expand Priority - 1.3.6.1.4.1.232.3.2.2.1.1.24 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: low + 3: medium + 4: high + - name: cpqDaCntlrNumberOfInternalPorts + oid: 1.3.6.1.4.1.232.3.2.2.1.1.25 + type: gauge + help: Array Controller Number of Internal Ports - 1.3.6.1.4.1.232.3.2.2.1.1.25 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrNumberOfExternalPorts + oid: 1.3.6.1.4.1.232.3.2.2.1.1.26 + type: gauge + help: Array Controller Number of External Ports - 1.3.6.1.4.1.232.3.2.2.1.1.26 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrDriveWriteCacheState + oid: 1.3.6.1.4.1.232.3.2.2.1.1.27 + type: gauge + help: Array Controller Drive Write Cache State - 1.3.6.1.4.1.232.3.2.2.1.1.27 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: disabled + 3: enabled + - name: cpqDaCntlrPartnerSerialNumber + oid: 1.3.6.1.4.1.232.3.2.2.1.1.28 + type: DisplayString + help: Array Controller Partner Serial Number - 1.3.6.1.4.1.232.3.2.2.1.1.28 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrOptionRomRev + oid: 1.3.6.1.4.1.232.3.2.2.1.1.29 + type: DisplayString + help: Array Controller Option ROM Revision - 1.3.6.1.4.1.232.3.2.2.1.1.29 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrHbaFWRev + oid: 1.3.6.1.4.1.232.3.2.2.1.1.30 + type: DisplayString + help: Array Controller HBA Firmware Revision - 1.3.6.1.4.1.232.3.2.2.1.1.30 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrHBAModeOptionRomRev + oid: 1.3.6.1.4.1.232.3.2.2.1.1.31 + type: DisplayString + help: Array Controller HBA Mode Option Rom Revision - 1.3.6.1.4.1.232.3.2.2.1.1.31 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrCurrentTemp + oid: 1.3.6.1.4.1.232.3.2.2.1.1.32 + type: gauge + help: Array Controller Current Temperature - 1.3.6.1.4.1.232.3.2.2.1.1.32 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrLastLockupCode + oid: 1.3.6.1.4.1.232.3.2.2.1.1.33 + type: gauge + help: Array Controller Last Lockup Code - 1.3.6.1.4.1.232.3.2.2.1.1.33 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + - name: cpqDaCntlrEncryptionStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.34 + type: gauge + help: Array Controller Encryption Status - 1.3.6.1.4.1.232.3.2.2.1.1.34 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: notEnabled + 3: enabledLocalKeyMode + 4: enabledRemoteKeyManagerMode + - name: cpqDaCntlrASICEncptSelfTestStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.35 + type: gauge + help: Array Controller ASIC Encryption Self Test Status - 1.3.6.1.4.1.232.3.2.2.1.1.35 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: selfTestsPass + 3: selfTestsFailed + - name: cpqDaCntlrEncryptCspNvramStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.36 + type: gauge + help: Array Controller Encryption Critical Security Parameter NVRAM Status - + 1.3.6.1.4.1.232.3.2.2.1.1.36 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: detectionFailed + - name: cpqDaCntlrEncryptCryptoOfficerPwdSetStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.37 + type: gauge + help: Array Controller Encryption Crypto Officer Password Set Status - 1.3.6.1.4.1.232.3.2.2.1.1.37 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: "false" + 3: "true" + - name: cpqDaCntlrEncryptCntlrPwdSetStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.38 + type: gauge + help: Array Controller Encryption Controller Password Set Status - 1.3.6.1.4.1.232.3.2.2.1.1.38 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: "false" + 3: "true" + - name: cpqDaCntlrEncryptCntlrPwdAvailStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.39 + type: gauge + help: Array Controller Encryption Controller Password Availability Status - + 1.3.6.1.4.1.232.3.2.2.1.1.39 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: passwordMissing + 3: passwordActive + - name: cpqDaCntlrUnencryptedLogDrvCreationPolicy + oid: 1.3.6.1.4.1.232.3.2.2.1.1.40 + type: gauge + help: Array Controller Unencrypted Logical Drive Creation Policy - 1.3.6.1.4.1.232.3.2.2.1.1.40 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: "false" + 3: "true" + - name: cpqDaCntlrEncryptedLogDrvCreationPolicy + oid: 1.3.6.1.4.1.232.3.2.2.1.1.41 + type: gauge + help: Array Controller Encrypted Logical Drive Creation Policy - 1.3.6.1.4.1.232.3.2.2.1.1.41 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: "false" + 3: "true" + - name: cpqDaCntlrEncryptFWLockStatus + oid: 1.3.6.1.4.1.232.3.2.2.1.1.42 + type: gauge + help: Array Controller Encryption Firmware Lock Status - 1.3.6.1.4.1.232.3.2.2.1.1.42 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: "false" + 3: "true" + - name: cpqDaCntlrOperatingMode + oid: 1.3.6.1.4.1.232.3.2.2.1.1.43 + type: gauge + help: Array Controller Operating Mode - 1.3.6.1.4.1.232.3.2.2.1.1.43 + indexes: + - labelname: cpqDaCntlrIndex + type: gauge + enum_values: + 1: other + 2: smartArrayMode + 3: smartHbaMode + 4: mixedMode + - name: cpqDaLogDrvCntlrIndex + oid: 1.3.6.1.4.1.232.3.2.3.1.1.1 + type: gauge + help: Drive Array Logical Drive Controller Index - 1.3.6.1.4.1.232.3.2.3.1.1.1 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvIndex + oid: 1.3.6.1.4.1.232.3.2.3.1.1.2 + type: gauge + help: Drive Array Logical Drive Index - 1.3.6.1.4.1.232.3.2.3.1.1.2 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvFaultTol + oid: 1.3.6.1.4.1.232.3.2.3.1.1.3 + type: gauge + help: Logical Drive Fault Tolerance - 1.3.6.1.4.1.232.3.2.3.1.1.3 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: none + 3: mirroring + 4: dataGuard + 5: distribDataGuard + 7: advancedDataGuard + 8: raid50 + 9: raid60 + 10: raid1Adm + 11: raid10Adm + 12: raid10 + - name: cpqDaLogDrvStatus + oid: 1.3.6.1.4.1.232.3.2.3.1.1.4 + type: gauge + help: Logical Drive Status - 1.3.6.1.4.1.232.3.2.3.1.1.4 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + 4: unconfigured + 5: recovering + 6: readyForRebuild + 7: rebuilding + 8: wrongDrive + 9: badConnect + 10: overheating + 11: shutdown + 12: expanding + 13: notAvailable + 14: queuedForExpansion + 15: multipathAccessDegraded + 16: erasing + 17: predictiveSpareRebuildReady + 18: rapidParityInitInProgress + 19: rapidParityInitPending + 20: noAccessEncryptedNoCntlrKey + 21: unencryptedToEncryptedInProgress + 22: newLogDrvKeyRekeyInProgress + 23: noAccessEncryptedCntlrEncryptnNotEnbld + 24: unencryptedToEncryptedNotStarted + 25: newLogDrvKeyRekeyRequestReceived + 26: unsupported + 27: offline + 28: sedQualInProgrss + 29: sedQualFailed + - name: cpqDaLogDrvAutoRel + oid: 1.3.6.1.4.1.232.3.2.3.1.1.5 + type: gauge + help: Array Controller Logical Drive Auto-Reliability Delay - 1.3.6.1.4.1.232.3.2.3.1.1.5 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvRebuildBlks + oid: 1.3.6.1.4.1.232.3.2.3.1.1.6 + type: counter + help: Logical Drive Rebuild Blocks Remaining - 1.3.6.1.4.1.232.3.2.3.1.1.6 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvHasAccel + oid: 1.3.6.1.4.1.232.3.2.3.1.1.7 + type: gauge + help: Logical Drive Has Cache Module Board - 1.3.6.1.4.1.232.3.2.3.1.1.7 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: unavailable + 3: enabled + 4: disabled + - name: cpqDaLogDrvAvailSpares + oid: 1.3.6.1.4.1.232.3.2.3.1.1.8 + type: OctetString + help: Drive Array Logical Drive Available Spares - 1.3.6.1.4.1.232.3.2.3.1.1.8 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvSize + oid: 1.3.6.1.4.1.232.3.2.3.1.1.9 + type: gauge + help: Logical Drive Size - 1.3.6.1.4.1.232.3.2.3.1.1.9 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvPhyDrvIDs + oid: 1.3.6.1.4.1.232.3.2.3.1.1.10 + type: OctetString + help: Drive Array Logical Drive Physical Drive IDs - 1.3.6.1.4.1.232.3.2.3.1.1.10 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvCondition + oid: 1.3.6.1.4.1.232.3.2.3.1.1.11 + type: gauge + help: The Logical Drive condition - 1.3.6.1.4.1.232.3.2.3.1.1.11 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqDaLogDrvPercentRebuild + oid: 1.3.6.1.4.1.232.3.2.3.1.1.12 + type: gauge + help: Logical Drive Percent Rebuild - 1.3.6.1.4.1.232.3.2.3.1.1.12 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvStripeSize + oid: 1.3.6.1.4.1.232.3.2.3.1.1.13 + type: gauge + help: Logical Drive Stripe Size - 1.3.6.1.4.1.232.3.2.3.1.1.13 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvOsName + oid: 1.3.6.1.4.1.232.3.2.3.1.1.14 + type: DisplayString + help: Logical Drive OS Name - 1.3.6.1.4.1.232.3.2.3.1.1.14 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvBlinkTime + oid: 1.3.6.1.4.1.232.3.2.3.1.1.15 + type: counter + help: Logical Drive Physical Drive Blink Time Count - 1.3.6.1.4.1.232.3.2.3.1.1.15 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvSpareReplaceMap + oid: 1.3.6.1.4.1.232.3.2.3.1.1.16 + type: OctetString + help: Logical Drive Spare To Replacement Drive Map - 1.3.6.1.4.1.232.3.2.3.1.1.16 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvRebuildingPhyDrv + oid: 1.3.6.1.4.1.232.3.2.3.1.1.17 + type: gauge + help: Logical Drive Physical Drive Rebuilding Index - 1.3.6.1.4.1.232.3.2.3.1.1.17 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvMultipathAccess + oid: 1.3.6.1.4.1.232.3.2.3.1.1.18 + type: gauge + help: Logical Drive Multi-path Access - 1.3.6.1.4.1.232.3.2.3.1.1.18 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: notConfigured + 4: pathRedundant + 5: noRedundantPath + - name: cpqDaLogDrvNmbrOfParityGroups + oid: 1.3.6.1.4.1.232.3.2.3.1.1.19 + type: gauge + help: Logical Drive Number Of Parity Groups - 1.3.6.1.4.1.232.3.2.3.1.1.19 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvSplitMirrorBackupLogDrv + oid: 1.3.6.1.4.1.232.3.2.3.1.1.20 + type: gauge + help: Logical Drive Split Mirror Backup Logical Drive - 1.3.6.1.4.1.232.3.2.3.1.1.20 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: isNotBackupLogicalDrive + 3: isBackupLogicalDrive + - name: cpqDaLogDrvCacheVolAccelAssocType + oid: 1.3.6.1.4.1.232.3.2.3.1.1.21 + type: gauge + help: Logical Drive Cache Volume Accelerator Association Type - 1.3.6.1.4.1.232.3.2.3.1.1.21 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: nonMember + 3: logicalDriveMember + 4: cacheVolumeMember + - name: cpqDaLogDrvCacheVolIndex + oid: 1.3.6.1.4.1.232.3.2.3.1.1.22 + type: gauge + help: Logical Drive Cache Volume Index - 1.3.6.1.4.1.232.3.2.3.1.1.22 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvRPIPercentComplete + oid: 1.3.6.1.4.1.232.3.2.3.1.1.23 + type: gauge + help: Logical Drive Rapid Parity Initialization Percent Complete - 1.3.6.1.4.1.232.3.2.3.1.1.23 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + - name: cpqDaLogDrvSSDSmartPathStatus + oid: 1.3.6.1.4.1.232.3.2.3.1.1.24 + type: gauge + help: Logical Drive SSD Smart Path Status - 1.3.6.1.4.1.232.3.2.3.1.1.24 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: updateDriver + 3: ssdSmartPathDisabled + 4: ssdSmartPathEnabled + - name: cpqDaLogDrvEncryptionStatus + oid: 1.3.6.1.4.1.232.3.2.3.1.1.25 + type: gauge + help: Logical Drive Encryption Status - 1.3.6.1.4.1.232.3.2.3.1.1.25 + indexes: + - labelname: cpqDaLogDrvCntlrIndex + type: gauge + - labelname: cpqDaLogDrvIndex + type: gauge + enum_values: + 1: other + 2: encrypted + 3: notEncrypted + - name: cpqDaPhyDrvCntlrIndex + oid: 1.3.6.1.4.1.232.3.2.5.1.1.1 + type: gauge + help: Drive Array Physical Drive Controller Index - 1.3.6.1.4.1.232.3.2.5.1.1.1 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvIndex + oid: 1.3.6.1.4.1.232.3.2.5.1.1.2 + type: gauge + help: Drive Array Physical Drive Index - 1.3.6.1.4.1.232.3.2.5.1.1.2 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvModel + oid: 1.3.6.1.4.1.232.3.2.5.1.1.3 + type: DisplayString + help: Physical Drive Model - 1.3.6.1.4.1.232.3.2.5.1.1.3 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvFWRev + oid: 1.3.6.1.4.1.232.3.2.5.1.1.4 + type: DisplayString + help: Physical Drive Firmware Revision - 1.3.6.1.4.1.232.3.2.5.1.1.4 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBay + oid: 1.3.6.1.4.1.232.3.2.5.1.1.5 + type: gauge + help: Physical Drive Bay Location - 1.3.6.1.4.1.232.3.2.5.1.1.5 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.6 + type: gauge + help: Physical Drive Status - 1.3.6.1.4.1.232.3.2.5.1.1.6 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + 4: predictiveFailure + 5: erasing + 6: eraseDone + 7: eraseQueued + 8: ssdWearOut + 9: notAuthenticated + - name: cpqDaPhyDrvFactReallocs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.7 + type: gauge + help: This shows the number of spare sectors available for remapping at the + time the physical drive was shipped - 1.3.6.1.4.1.232.3.2.5.1.1.7 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvUsedReallocs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.8 + type: counter + help: Physical Drive Used Reallocated Sectors - 1.3.6.1.4.1.232.3.2.5.1.1.8 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvRefHours + oid: 1.3.6.1.4.1.232.3.2.5.1.1.9 + type: counter + help: Reference Time in hours - 1.3.6.1.4.1.232.3.2.5.1.1.9 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHReads + oid: 1.3.6.1.4.1.232.3.2.5.1.1.10 + type: counter + help: Sectors Read (high) - 1.3.6.1.4.1.232.3.2.5.1.1.10 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvReads + oid: 1.3.6.1.4.1.232.3.2.5.1.1.11 + type: counter + help: Sectors Read (low) - 1.3.6.1.4.1.232.3.2.5.1.1.11 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHWrites + oid: 1.3.6.1.4.1.232.3.2.5.1.1.12 + type: counter + help: Sectors Written (high) - 1.3.6.1.4.1.232.3.2.5.1.1.12 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvWrites + oid: 1.3.6.1.4.1.232.3.2.5.1.1.13 + type: counter + help: Sectors Written (low) - 1.3.6.1.4.1.232.3.2.5.1.1.13 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHSeeks + oid: 1.3.6.1.4.1.232.3.2.5.1.1.14 + type: counter + help: Total Seeks (high) - 1.3.6.1.4.1.232.3.2.5.1.1.14 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSeeks + oid: 1.3.6.1.4.1.232.3.2.5.1.1.15 + type: counter + help: Total Seeks (low) - 1.3.6.1.4.1.232.3.2.5.1.1.15 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHardReadErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.16 + type: counter + help: Hard Read Errors - 1.3.6.1.4.1.232.3.2.5.1.1.16 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvRecvReadErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.17 + type: counter + help: Recovered Read Errors - 1.3.6.1.4.1.232.3.2.5.1.1.17 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHardWriteErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.18 + type: counter + help: Hard Write Errors - 1.3.6.1.4.1.232.3.2.5.1.1.18 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvRecvWriteErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.19 + type: counter + help: Recovered Write Errors - 1.3.6.1.4.1.232.3.2.5.1.1.19 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHSeekErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.20 + type: counter + help: Seek Errors (High) - 1.3.6.1.4.1.232.3.2.5.1.1.20 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSeekErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.21 + type: counter + help: Seek Errors (low) - 1.3.6.1.4.1.232.3.2.5.1.1.21 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSpinupTime + oid: 1.3.6.1.4.1.232.3.2.5.1.1.22 + type: gauge + help: Spin up Time in tenths of seconds - 1.3.6.1.4.1.232.3.2.5.1.1.22 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvFunctTest1 + oid: 1.3.6.1.4.1.232.3.2.5.1.1.23 + type: gauge + help: Functional Test 1 - 1.3.6.1.4.1.232.3.2.5.1.1.23 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvFunctTest2 + oid: 1.3.6.1.4.1.232.3.2.5.1.1.24 + type: gauge + help: Functional Test 2 - 1.3.6.1.4.1.232.3.2.5.1.1.24 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvFunctTest3 + oid: 1.3.6.1.4.1.232.3.2.5.1.1.25 + type: gauge + help: Functional Test 3 - 1.3.6.1.4.1.232.3.2.5.1.1.25 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvDrqTimeouts + oid: 1.3.6.1.4.1.232.3.2.5.1.1.26 + type: counter + help: DRQ Timeouts - 1.3.6.1.4.1.232.3.2.5.1.1.26 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvOtherTimeouts + oid: 1.3.6.1.4.1.232.3.2.5.1.1.27 + type: counter + help: Other Timeouts - 1.3.6.1.4.1.232.3.2.5.1.1.27 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSpinupRetries + oid: 1.3.6.1.4.1.232.3.2.5.1.1.28 + type: counter + help: Spin up Retries - 1.3.6.1.4.1.232.3.2.5.1.1.28 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBadRecvReads + oid: 1.3.6.1.4.1.232.3.2.5.1.1.29 + type: counter + help: Recovery Failed (Bad) Read Error - 1.3.6.1.4.1.232.3.2.5.1.1.29 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBadRecvWrites + oid: 1.3.6.1.4.1.232.3.2.5.1.1.30 + type: counter + help: Recovery Failed (Bad) Write Error - 1.3.6.1.4.1.232.3.2.5.1.1.30 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvFormatErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.31 + type: counter + help: Format Error - 1.3.6.1.4.1.232.3.2.5.1.1.31 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvPostErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.32 + type: counter + help: Power On Self Test (Post) Error - 1.3.6.1.4.1.232.3.2.5.1.1.32 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvNotReadyErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.33 + type: counter + help: Drive Not Ready Errors - 1.3.6.1.4.1.232.3.2.5.1.1.33 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvReallocAborts + oid: 1.3.6.1.4.1.232.3.2.5.1.1.34 + type: counter + help: Physical Drive Reallocation Aborts - 1.3.6.1.4.1.232.3.2.5.1.1.34 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvThreshPassed + oid: 1.3.6.1.4.1.232.3.2.5.1.1.35 + type: gauge + help: Physical Drive Factory Threshold Passed (Exceeded) - 1.3.6.1.4.1.232.3.2.5.1.1.35 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: "false" + 2: "true" + - name: cpqDaPhyDrvHasMonInfo + oid: 1.3.6.1.4.1.232.3.2.5.1.1.36 + type: gauge + help: Physical Drive Has Monitor Information - 1.3.6.1.4.1.232.3.2.5.1.1.36 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: "false" + 2: "true" + - name: cpqDaPhyDrvCondition + oid: 1.3.6.1.4.1.232.3.2.5.1.1.37 + type: gauge + help: The condition of the device - 1.3.6.1.4.1.232.3.2.5.1.1.37 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqDaPhyDrvHotPlugs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.38 + type: counter + help: Physical Drive Hot Plug Count - 1.3.6.1.4.1.232.3.2.5.1.1.38 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvMediaErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.39 + type: counter + help: Physical Drive Media Failure Count - 1.3.6.1.4.1.232.3.2.5.1.1.39 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHardwareErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.40 + type: counter + help: Physical Drive Hardware Error Count - 1.3.6.1.4.1.232.3.2.5.1.1.40 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvAbortedCmds + oid: 1.3.6.1.4.1.232.3.2.5.1.1.41 + type: counter + help: Physical Drive Aborted Command Failures - 1.3.6.1.4.1.232.3.2.5.1.1.41 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSpinUpErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.42 + type: counter + help: Physical Drive Spin-Up Failure Count - 1.3.6.1.4.1.232.3.2.5.1.1.42 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBadTargetErrs + oid: 1.3.6.1.4.1.232.3.2.5.1.1.43 + type: counter + help: Physical Drive Bad Target Count - 1.3.6.1.4.1.232.3.2.5.1.1.43 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvLocation + oid: 1.3.6.1.4.1.232.3.2.5.1.1.44 + type: gauge + help: Drive Physical Location - 1.3.6.1.4.1.232.3.2.5.1.1.44 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: internal + 3: external + 4: proLiant + - name: cpqDaPhyDrvSize + oid: 1.3.6.1.4.1.232.3.2.5.1.1.45 + type: gauge + help: Physical Drive Size in MB - 1.3.6.1.4.1.232.3.2.5.1.1.45 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBusFaults + oid: 1.3.6.1.4.1.232.3.2.5.1.1.46 + type: counter + help: Physical Drive Bus Fault Count - 1.3.6.1.4.1.232.3.2.5.1.1.46 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvIrqDeglitches + oid: 1.3.6.1.4.1.232.3.2.5.1.1.47 + type: counter + help: Physical Drive IRQ Deglitch Count - 1.3.6.1.4.1.232.3.2.5.1.1.47 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvHotPlug + oid: 1.3.6.1.4.1.232.3.2.5.1.1.48 + type: gauge + help: Physical Drive Hot Plug Support Status - 1.3.6.1.4.1.232.3.2.5.1.1.48 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: hotPlug + 3: nonHotPlug + - name: cpqDaPhyDrvPlacement + oid: 1.3.6.1.4.1.232.3.2.5.1.1.49 + type: gauge + help: Physical Drive Placement - 1.3.6.1.4.1.232.3.2.5.1.1.49 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: internal + 3: external + - name: cpqDaPhyDrvBusNumber + oid: 1.3.6.1.4.1.232.3.2.5.1.1.50 + type: gauge + help: Physical Drive SCSI Bus Number - 1.3.6.1.4.1.232.3.2.5.1.1.50 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSerialNum + oid: 1.3.6.1.4.1.232.3.2.5.1.1.51 + type: DisplayString + help: Physical Drive Serial Number - 1.3.6.1.4.1.232.3.2.5.1.1.51 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvPreFailMonitoring + oid: 1.3.6.1.4.1.232.3.2.5.1.1.52 + type: gauge + help: Drive Array Physical Drive Predictive Failure Monitoring - 1.3.6.1.4.1.232.3.2.5.1.1.52 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: notAvailable + 3: available + - name: cpqDaPhyDrvCurrentWidth + oid: 1.3.6.1.4.1.232.3.2.5.1.1.53 + type: gauge + help: Drive Array Physical Drive Current Width - 1.3.6.1.4.1.232.3.2.5.1.1.53 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: narrow + 3: wide16 + - name: cpqDaPhyDrvCurrentSpeed + oid: 1.3.6.1.4.1.232.3.2.5.1.1.54 + type: gauge + help: Drive Array Physical Drive Current Data Transfer Speed - 1.3.6.1.4.1.232.3.2.5.1.1.54 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: asynchronous + 3: fast + 4: ultra + 5: ultra2 + 6: ultra3 + 7: ultra320 + - name: cpqDaPhyDrvFailureCode + oid: 1.3.6.1.4.1.232.3.2.5.1.1.55 + type: gauge + help: Drive Array Physical Drive Failure Code - 1.3.6.1.4.1.232.3.2.5.1.1.55 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBlinkTime + oid: 1.3.6.1.4.1.232.3.2.5.1.1.56 + type: counter + help: Physical Drive Blink Time Count - 1.3.6.1.4.1.232.3.2.5.1.1.56 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSmartStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.57 + type: gauge + help: Physical Drive S.M.A.R.T Status - 1.3.6.1.4.1.232.3.2.5.1.1.57 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: replaceDrive + 4: replaceDriveSSDWearOut + - name: cpqDaPhyDrvConfigurationStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.58 + type: gauge + help: Physical Drive Configuration Status - 1.3.6.1.4.1.232.3.2.5.1.1.58 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: configured + 3: notConfigured + - name: cpqDaPhyDrvRotationalSpeed + oid: 1.3.6.1.4.1.232.3.2.5.1.1.59 + type: gauge + help: Drive Array Physical Drive Rotational Speed - 1.3.6.1.4.1.232.3.2.5.1.1.59 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rpm7200 + 3: rpm10K + 4: rpm15K + 5: rpmSsd + - name: cpqDaPhyDrvType + oid: 1.3.6.1.4.1.232.3.2.5.1.1.60 + type: gauge + help: Physical Drive Type - 1.3.6.1.4.1.232.3.2.5.1.1.60 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: parallelScsi + 3: sata + 4: sas + 5: nvme + - name: cpqDaPhyDrvSataVersion + oid: 1.3.6.1.4.1.232.3.2.5.1.1.61 + type: gauge + help: Physical Drive SATA Version - 1.3.6.1.4.1.232.3.2.5.1.1.61 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: sataOne + 3: sataTwo + - name: cpqDaPhyDrvHostConnector + oid: 1.3.6.1.4.1.232.3.2.5.1.1.62 + type: DisplayString + help: Physical Drive Host Connector - 1.3.6.1.4.1.232.3.2.5.1.1.62 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvBoxOnConnector + oid: 1.3.6.1.4.1.232.3.2.5.1.1.63 + type: gauge + help: Physical Drive Box on Connector - 1.3.6.1.4.1.232.3.2.5.1.1.63 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvLocationString + oid: 1.3.6.1.4.1.232.3.2.5.1.1.64 + type: DisplayString + help: Physical Drive Location String - 1.3.6.1.4.1.232.3.2.5.1.1.64 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvNegotiatedLinkRate + oid: 1.3.6.1.4.1.232.3.2.5.1.1.65 + type: gauge + help: Drive Array Physical Drive Negotiated Link Rate - 1.3.6.1.4.1.232.3.2.5.1.1.65 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rate-1-5 + 3: rate-3-0 + 4: rate-6-0 + 5: rate-12-0 + - name: cpqDaPhyDrvNcqSupport + oid: 1.3.6.1.4.1.232.3.2.5.1.1.66 + type: gauge + help: Drive Array Physical Drive Native Command Queueing - 1.3.6.1.4.1.232.3.2.5.1.1.66 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: noControllerSupport + 3: noDriveSupport + 4: ncqDisabled + 5: ncqEnabled + - name: cpqDaPhyDrvPhyCount + oid: 1.3.6.1.4.1.232.3.2.5.1.1.67 + type: gauge + help: Drive Array Physical Drive PHY Count - 1.3.6.1.4.1.232.3.2.5.1.1.67 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvMultipathAccess + oid: 1.3.6.1.4.1.232.3.2.5.1.1.68 + type: gauge + help: Drive Array Physical Drive Multi-path Access Status - 1.3.6.1.4.1.232.3.2.5.1.1.68 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: notConfigured + 4: pathRedundant + 5: noRedundantPath + 6: driveFailed + - name: cpqDaPhyDrvMediaType + oid: 1.3.6.1.4.1.232.3.2.5.1.1.69 + type: gauge + help: Drive Array Physical Drive Media Type - 1.3.6.1.4.1.232.3.2.5.1.1.69 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rotatingPlatters + 3: solidState + 4: smr + - name: cpqDaPhyDrvCurrentTemperature + oid: 1.3.6.1.4.1.232.3.2.5.1.1.70 + type: gauge + help: Drive Array Physical Drive Current Temperature - 1.3.6.1.4.1.232.3.2.5.1.1.70 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvTemperatureThreshold + oid: 1.3.6.1.4.1.232.3.2.5.1.1.71 + type: gauge + help: Drive Array Physical Drive Temperature Threshold - 1.3.6.1.4.1.232.3.2.5.1.1.71 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvMaximumTemperature + oid: 1.3.6.1.4.1.232.3.2.5.1.1.72 + type: gauge + help: Drive Array Physical Drive Maximum Temperature - 1.3.6.1.4.1.232.3.2.5.1.1.72 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSSDWearStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.73 + type: gauge + help: Drive Array Physical Drive Solid State Disk Wear Status - 1.3.6.1.4.1.232.3.2.5.1.1.73 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: fiftySixDayThreshold + 4: fivePercentThreshold + 5: twoPercentThreshold + 6: ssdWearOut + - name: cpqDaPhyDrvPowerOnHours + oid: 1.3.6.1.4.1.232.3.2.5.1.1.74 + type: counter + help: Drive Array Physical Drive Power On Hours - 1.3.6.1.4.1.232.3.2.5.1.1.74 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSSDPercntEndrnceUsed + oid: 1.3.6.1.4.1.232.3.2.5.1.1.75 + type: gauge + help: Drive Array Physical Drive Solid State Percent Endurance Used - 1.3.6.1.4.1.232.3.2.5.1.1.75 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSSDEstTimeRemainingHours + oid: 1.3.6.1.4.1.232.3.2.5.1.1.76 + type: counter + help: Drive Array Physical Drive Solid State Estimated Time Remaining In Hours + - 1.3.6.1.4.1.232.3.2.5.1.1.76 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvAuthenticationStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.77 + type: gauge + help: Drive Array Physical Drive Authentication Status - 1.3.6.1.4.1.232.3.2.5.1.1.77 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: authenticationFailed + 4: authenticationPassed + - name: cpqDaPhyDrvSmartCarrierAppFWRev + oid: 1.3.6.1.4.1.232.3.2.5.1.1.78 + type: gauge + help: Physical Drive Smart Carrier Application Firmware Revision - 1.3.6.1.4.1.232.3.2.5.1.1.78 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvSmartCarrierBootldrFWRev + oid: 1.3.6.1.4.1.232.3.2.5.1.1.79 + type: gauge + help: Physical Drive Smart Carrier Bootloader Firmware Revision - 1.3.6.1.4.1.232.3.2.5.1.1.79 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + - name: cpqDaPhyDrvEncryptionStatus + oid: 1.3.6.1.4.1.232.3.2.5.1.1.80 + type: gauge + help: Physical Drive Encryption Status - 1.3.6.1.4.1.232.3.2.5.1.1.80 + indexes: + - labelname: cpqDaPhyDrvCntlrIndex + type: gauge + - labelname: cpqDaPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: encrypted + 3: notEncrypted + - name: cpqScsiMibRevMajor + oid: 1.3.6.1.4.1.232.5.1.1 + type: gauge + help: The Major Revision level - 1.3.6.1.4.1.232.5.1.1 + - name: cpqScsiMibRevMinor + oid: 1.3.6.1.4.1.232.5.1.2 + type: gauge + help: The Minor Revision level - 1.3.6.1.4.1.232.5.1.2 + - name: cpqScsiMibCondition + oid: 1.3.6.1.4.1.232.5.1.3 + type: gauge + help: The overall condition - 1.3.6.1.4.1.232.5.1.3 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqScsiNw3xDriverName + oid: 1.3.6.1.4.1.232.5.2.1.1.1 + type: DisplayString + help: SCSI Drive Device Driver Name - 1.3.6.1.4.1.232.5.2.1.1.1 + - name: cpqScsiNw3xDriverVers + oid: 1.3.6.1.4.1.232.5.2.1.1.2 + type: DisplayString + help: SCSI Drive Device Driver Version - 1.3.6.1.4.1.232.5.2.1.1.2 + - name: cpqScsiNw3xDriverPollType + oid: 1.3.6.1.4.1.232.5.2.1.1.3 + type: gauge + help: SCSI Drive Device Driver Poll Type - 1.3.6.1.4.1.232.5.2.1.1.3 + enum_values: + 1: other + 2: polled + 3: demand + - name: cpqScsiNw3xDriverPollTime + oid: 1.3.6.1.4.1.232.5.2.1.1.4 + type: gauge + help: SCSI Drive Device Driver Poll Time - 1.3.6.1.4.1.232.5.2.1.1.4 + - name: cpqScsiNw3xCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.1 + type: gauge + help: SCSI Controller Index - 1.3.6.1.4.1.232.5.2.1.1.5.1.1 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xBusIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.2 + type: gauge + help: SCSI Bus Index - 1.3.6.1.4.1.232.5.2.1.1.5.1.2 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xXptDesc + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.3 + type: DisplayString + help: SCSI XPT Description - 1.3.6.1.4.1.232.5.2.1.1.5.1.3 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xXptVers + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.4 + type: DisplayString + help: SCSI XPT Version - 1.3.6.1.4.1.232.5.2.1.1.5.1.4 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xSimDesc + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.5 + type: DisplayString + help: SCSI SIM Description - 1.3.6.1.4.1.232.5.2.1.1.5.1.5 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xSimVers + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.6 + type: DisplayString + help: SCSI SIM Version - 1.3.6.1.4.1.232.5.2.1.1.5.1.6 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xHbaDesc + oid: 1.3.6.1.4.1.232.5.2.1.1.5.1.7 + type: DisplayString + help: SCSI HBA Description - 1.3.6.1.4.1.232.5.2.1.1.5.1.7 + indexes: + - labelname: cpqScsiNw3xCntlrIndex + type: gauge + - labelname: cpqScsiNw3xBusIndex + type: gauge + - name: cpqScsiNw3xStatCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.1 + type: gauge + help: SCSI Controller Index - 1.3.6.1.4.1.232.5.2.1.1.6.1.1 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xStatBusIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.2 + type: gauge + help: SCSI Bus Index - 1.3.6.1.4.1.232.5.2.1.1.6.1.2 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xStatLogDrvIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.3 + type: gauge + help: SCSI Logical Drive Index - 1.3.6.1.4.1.232.5.2.1.1.6.1.3 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xTotalReads + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.4 + type: counter + help: SCSI Logical Drive Total Reads - 1.3.6.1.4.1.232.5.2.1.1.6.1.4 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xTotalWrites + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.5 + type: counter + help: SCSI Logical Drive Total Writes - 1.3.6.1.4.1.232.5.2.1.1.6.1.5 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xCorrReads + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.6 + type: counter + help: SCSI Logical Drive Corrected Reads - 1.3.6.1.4.1.232.5.2.1.1.6.1.6 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xCorrWrites + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.7 + type: counter + help: SCSI Logical Drive Corrected Writes - 1.3.6.1.4.1.232.5.2.1.1.6.1.7 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xFatalReads + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.8 + type: counter + help: SCSI Logical Drive Fatal Reads - 1.3.6.1.4.1.232.5.2.1.1.6.1.8 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xFatalWrites + oid: 1.3.6.1.4.1.232.5.2.1.1.6.1.9 + type: counter + help: SCSI Logical Drive Fatal Writes - 1.3.6.1.4.1.232.5.2.1.1.6.1.9 + indexes: + - labelname: cpqScsiNw3xStatCntlrIndex + type: gauge + - labelname: cpqScsiNw3xStatBusIndex + type: gauge + - labelname: cpqScsiNw3xStatLogDrvIndex + type: gauge + - name: cpqScsiNw3xVolCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.7.1.1 + type: gauge + help: SCSI Cntlr Index - 1.3.6.1.4.1.232.5.2.1.1.7.1.1 + indexes: + - labelname: cpqScsiNw3xVolCntlrIndex + type: gauge + - labelname: cpqScsiNw3xVolBusIndex + type: gauge + - labelname: cpqScsiNw3xVolLogDrvIndex + type: gauge + - name: cpqScsiNw3xVolBusIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.7.1.2 + type: gauge + help: SCSI Bus Index - 1.3.6.1.4.1.232.5.2.1.1.7.1.2 + indexes: + - labelname: cpqScsiNw3xVolCntlrIndex + type: gauge + - labelname: cpqScsiNw3xVolBusIndex + type: gauge + - labelname: cpqScsiNw3xVolLogDrvIndex + type: gauge + - name: cpqScsiNw3xVolLogDrvIndex + oid: 1.3.6.1.4.1.232.5.2.1.1.7.1.3 + type: gauge + help: SCSI Logical Drive Index - 1.3.6.1.4.1.232.5.2.1.1.7.1.3 + indexes: + - labelname: cpqScsiNw3xVolCntlrIndex + type: gauge + - labelname: cpqScsiNw3xVolBusIndex + type: gauge + - labelname: cpqScsiNw3xVolLogDrvIndex + type: gauge + - name: cpqScsiNw3xVolMap + oid: 1.3.6.1.4.1.232.5.2.1.1.7.1.4 + type: OctetString + help: SCSI Drive Volume Map - 1.3.6.1.4.1.232.5.2.1.1.7.1.4 + indexes: + - labelname: cpqScsiNw3xVolCntlrIndex + type: gauge + - labelname: cpqScsiNw3xVolBusIndex + type: gauge + - labelname: cpqScsiNw3xVolLogDrvIndex + type: gauge + - name: cpqScsiOsCommonPollFreq + oid: 1.3.6.1.4.1.232.5.2.1.4.1 + type: gauge + help: The agent`s polling frequency - 1.3.6.1.4.1.232.5.2.1.4.1 + - name: cpqScsiOsCommonModuleIndex + oid: 1.3.6.1.4.1.232.5.2.1.4.2.1.1 + type: gauge + help: A unique index for this module description. - 1.3.6.1.4.1.232.5.2.1.4.2.1.1 + indexes: + - labelname: cpqScsiOsCommonModuleIndex + type: gauge + - name: cpqScsiOsCommonModuleName + oid: 1.3.6.1.4.1.232.5.2.1.4.2.1.2 + type: DisplayString + help: The module name. - 1.3.6.1.4.1.232.5.2.1.4.2.1.2 + indexes: + - labelname: cpqScsiOsCommonModuleIndex + type: gauge + - name: cpqScsiOsCommonModuleVersion + oid: 1.3.6.1.4.1.232.5.2.1.4.2.1.3 + type: DisplayString + help: The module version in XX.YY format - 1.3.6.1.4.1.232.5.2.1.4.2.1.3 + indexes: + - labelname: cpqScsiOsCommonModuleIndex + type: gauge + - name: cpqScsiOsCommonModuleDate + oid: 1.3.6.1.4.1.232.5.2.1.4.2.1.4 + type: OctetString + help: The module date - 1.3.6.1.4.1.232.5.2.1.4.2.1.4 + indexes: + - labelname: cpqScsiOsCommonModuleIndex + type: gauge + - name: cpqScsiOsCommonModulePurpose + oid: 1.3.6.1.4.1.232.5.2.1.4.2.1.5 + type: DisplayString + help: The purpose of the module described in this entry. - 1.3.6.1.4.1.232.5.2.1.4.2.1.5 + indexes: + - labelname: cpqScsiOsCommonModuleIndex + type: gauge + - name: cpqScsiCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.2.1.1.1 + type: gauge + help: SCSI Controller Index - 1.3.6.1.4.1.232.5.2.2.1.1.1 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrBusIndex + oid: 1.3.6.1.4.1.232.5.2.2.1.1.2 + type: gauge + help: SCSI Bus Index - 1.3.6.1.4.1.232.5.2.2.1.1.2 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrModel + oid: 1.3.6.1.4.1.232.5.2.2.1.1.3 + type: gauge + help: SCSI Controller Model - 1.3.6.1.4.1.232.5.2.2.1.1.3 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + enum_values: + 1: other + 2: cpqs710 + 3: cpqs94 + 4: cpqs810p + 5: cpqs825e + 6: cpqs825p + 7: cpqs974p + 8: cpqs875p + 9: extended + 10: cpqs895p + 11: cpqs896p + 12: cpqa789x + 13: cpqs876t + 14: hpu320 + 15: hpu320r + 16: generic + 17: hp1u320g2 + 18: hp1u320g1 + 19: hpSc11Xe + - name: cpqScsiCntlrFWVers + oid: 1.3.6.1.4.1.232.5.2.2.1.1.4 + type: DisplayString + help: SCSI Controller Firmware Version - 1.3.6.1.4.1.232.5.2.2.1.1.4 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrSWVers + oid: 1.3.6.1.4.1.232.5.2.2.1.1.5 + type: DisplayString + help: SCSI Controller Software Version - 1.3.6.1.4.1.232.5.2.2.1.1.5 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrSlot + oid: 1.3.6.1.4.1.232.5.2.2.1.1.6 + type: gauge + help: SCSI Controller Slot - 1.3.6.1.4.1.232.5.2.2.1.1.6 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrStatus + oid: 1.3.6.1.4.1.232.5.2.2.1.1.7 + type: gauge + help: SCSI Controller Status - 1.3.6.1.4.1.232.5.2.2.1.1.7 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + - name: cpqScsiCntlrHardResets + oid: 1.3.6.1.4.1.232.5.2.2.1.1.8 + type: counter + help: SCSI Controller Hard Resets - 1.3.6.1.4.1.232.5.2.2.1.1.8 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrSoftResets + oid: 1.3.6.1.4.1.232.5.2.2.1.1.9 + type: counter + help: SCSI Controller Soft Resets - 1.3.6.1.4.1.232.5.2.2.1.1.9 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrTimeouts + oid: 1.3.6.1.4.1.232.5.2.2.1.1.10 + type: counter + help: SCSI Controller Time-outs - 1.3.6.1.4.1.232.5.2.2.1.1.10 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrBaseIOAddr + oid: 1.3.6.1.4.1.232.5.2.2.1.1.11 + type: gauge + help: SCSI Controller Base I/O Address - 1.3.6.1.4.1.232.5.2.2.1.1.11 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrCondition + oid: 1.3.6.1.4.1.232.5.2.2.1.1.12 + type: gauge + help: SCSI Controller Condition - 1.3.6.1.4.1.232.5.2.2.1.1.12 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqScsiCntlrSerialNum + oid: 1.3.6.1.4.1.232.5.2.2.1.1.13 + type: DisplayString + help: SCSI Controller Serial Number - 1.3.6.1.4.1.232.5.2.2.1.1.13 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrBusWidth + oid: 1.3.6.1.4.1.232.5.2.2.1.1.14 + type: gauge + help: SCSI Controller Data Bus Width - 1.3.6.1.4.1.232.5.2.2.1.1.14 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + enum_values: + 1: other + 2: narrow + 3: wide16 + - name: cpqScsiCntlrModelExtended + oid: 1.3.6.1.4.1.232.5.2.2.1.1.15 + type: DisplayString + help: SCSI Controller Model Name - 1.3.6.1.4.1.232.5.2.2.1.1.15 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrHwLocation + oid: 1.3.6.1.4.1.232.5.2.2.1.1.16 + type: DisplayString + help: A text description of the hardware location, on complex multi SBB hardware + only, for the SCSI controller - 1.3.6.1.4.1.232.5.2.2.1.1.16 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiCntlrPciLocation + oid: 1.3.6.1.4.1.232.5.2.2.1.1.17 + type: DisplayString + help: A string designating the PCI device location for the controller, following + the format DDDD:BB:DD.F, where DDDD is the PCI domain number, BB is the PCI + bus number, DD is the PCI device number, and F is the PCI function number + - 1.3.6.1.4.1.232.5.2.2.1.1.17 + indexes: + - labelname: cpqScsiCntlrIndex + type: gauge + - labelname: cpqScsiCntlrBusIndex + type: gauge + - name: cpqScsiLogDrvCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.3.1.1.1 + type: gauge + help: SCSI Logical Drive Controller Index - 1.3.6.1.4.1.232.5.2.3.1.1.1 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvBusIndex + oid: 1.3.6.1.4.1.232.5.2.3.1.1.2 + type: gauge + help: SCSI Logical Drive Bus Index - 1.3.6.1.4.1.232.5.2.3.1.1.2 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvIndex + oid: 1.3.6.1.4.1.232.5.2.3.1.1.3 + type: gauge + help: SCSI Logical Drive Index - 1.3.6.1.4.1.232.5.2.3.1.1.3 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvFaultTol + oid: 1.3.6.1.4.1.232.5.2.3.1.1.4 + type: gauge + help: SCSI Logical Drive Fault Tolerance - 1.3.6.1.4.1.232.5.2.3.1.1.4 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + enum_values: + 1: other + 2: none + 3: mirroring + 4: dataGuard + 5: distribDataGuard + 6: enhancedMirroring + - name: cpqScsiLogDrvStatus + oid: 1.3.6.1.4.1.232.5.2.3.1.1.5 + type: gauge + help: SCSI Logical Drive Status - 1.3.6.1.4.1.232.5.2.3.1.1.5 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + 4: unconfigured + 5: recovering + 6: readyForRebuild + 7: rebuilding + 8: wrongDrive + 9: badConnect + 10: degraded + 11: disabled + - name: cpqScsiLogDrvSize + oid: 1.3.6.1.4.1.232.5.2.3.1.1.6 + type: gauge + help: SCSI Logical Drive Size - 1.3.6.1.4.1.232.5.2.3.1.1.6 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvPhyDrvIDs + oid: 1.3.6.1.4.1.232.5.2.3.1.1.7 + type: OctetString + help: SCSI Logical Drive Physical Drive IDs - 1.3.6.1.4.1.232.5.2.3.1.1.7 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvCondition + oid: 1.3.6.1.4.1.232.5.2.3.1.1.8 + type: gauge + help: SCSI Logical Drive Condition - 1.3.6.1.4.1.232.5.2.3.1.1.8 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqScsiLogDrvStripeSize + oid: 1.3.6.1.4.1.232.5.2.3.1.1.9 + type: gauge + help: Logical Drive Stripe Size - 1.3.6.1.4.1.232.5.2.3.1.1.9 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvAvailSpares + oid: 1.3.6.1.4.1.232.5.2.3.1.1.10 + type: OctetString + help: SCSI Logical Drive Available Spares - 1.3.6.1.4.1.232.5.2.3.1.1.10 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvPercentRebuild + oid: 1.3.6.1.4.1.232.5.2.3.1.1.11 + type: gauge + help: Logical Drive Percent Rebuild - 1.3.6.1.4.1.232.5.2.3.1.1.11 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiLogDrvOsName + oid: 1.3.6.1.4.1.232.5.2.3.1.1.12 + type: DisplayString + help: Logical Drive OS Name - 1.3.6.1.4.1.232.5.2.3.1.1.12 + indexes: + - labelname: cpqScsiLogDrvCntlrIndex + type: gauge + - labelname: cpqScsiLogDrvBusIndex + type: gauge + - labelname: cpqScsiLogDrvIndex + type: gauge + - name: cpqScsiPhyDrvCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.4.1.1.1 + type: gauge + help: SCSI Physical Drive Controller Index - 1.3.6.1.4.1.232.5.2.4.1.1.1 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvBusIndex + oid: 1.3.6.1.4.1.232.5.2.4.1.1.2 + type: gauge + help: SCSI Physical Drive Bus Index - 1.3.6.1.4.1.232.5.2.4.1.1.2 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvIndex + oid: 1.3.6.1.4.1.232.5.2.4.1.1.3 + type: gauge + help: SCSI Physical Drive Index - 1.3.6.1.4.1.232.5.2.4.1.1.3 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvModel + oid: 1.3.6.1.4.1.232.5.2.4.1.1.4 + type: DisplayString + help: SCSI Physical Drive Model - 1.3.6.1.4.1.232.5.2.4.1.1.4 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvFWRev + oid: 1.3.6.1.4.1.232.5.2.4.1.1.5 + type: DisplayString + help: SCSI Physical Drive Firmware Revision - 1.3.6.1.4.1.232.5.2.4.1.1.5 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvVendor + oid: 1.3.6.1.4.1.232.5.2.4.1.1.6 + type: DisplayString + help: SCSI Physical Drive Vendor - 1.3.6.1.4.1.232.5.2.4.1.1.6 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvSize + oid: 1.3.6.1.4.1.232.5.2.4.1.1.7 + type: gauge + help: SCSI Physical Drive Size in MB - 1.3.6.1.4.1.232.5.2.4.1.1.7 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvScsiID + oid: 1.3.6.1.4.1.232.5.2.4.1.1.8 + type: gauge + help: SCSI Physical Drive SCSI ID - 1.3.6.1.4.1.232.5.2.4.1.1.8 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvStatus + oid: 1.3.6.1.4.1.232.5.2.4.1.1.9 + type: gauge + help: SCSI Physical Drive Status - 1.3.6.1.4.1.232.5.2.4.1.1.9 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + 4: notConfigured + 5: badCable + 6: missingWasOk + 7: missingWasFailed + 8: predictiveFailure + 9: missingWasPredictiveFailure + 10: offline + 11: missingWasOffline + 12: hardError + - name: cpqScsiPhyDrvServiceHours + oid: 1.3.6.1.4.1.232.5.2.4.1.1.10 + type: counter + help: SCSI Physical Drive Service Time in hours - 1.3.6.1.4.1.232.5.2.4.1.1.10 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvHighReadSectors + oid: 1.3.6.1.4.1.232.5.2.4.1.1.11 + type: counter + help: SCSI Physical Drive Sectors Read (high) - 1.3.6.1.4.1.232.5.2.4.1.1.11 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvLowReadSectors + oid: 1.3.6.1.4.1.232.5.2.4.1.1.12 + type: counter + help: SCSI Physical Drive Sectors Read (low) - 1.3.6.1.4.1.232.5.2.4.1.1.12 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvHighWriteSectors + oid: 1.3.6.1.4.1.232.5.2.4.1.1.13 + type: counter + help: SCSI Physical Drive Sectors Written (high) - 1.3.6.1.4.1.232.5.2.4.1.1.13 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvLowWriteSectors + oid: 1.3.6.1.4.1.232.5.2.4.1.1.14 + type: counter + help: SCSI Physical Drive Sectors Written (low) - 1.3.6.1.4.1.232.5.2.4.1.1.14 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvHardReadErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.15 + type: counter + help: SCSI Physical Drive Hard Read Errors - 1.3.6.1.4.1.232.5.2.4.1.1.15 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvHardWriteErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.16 + type: counter + help: SCSI Physical Drive Hard Write Errors - 1.3.6.1.4.1.232.5.2.4.1.1.16 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvEccCorrReads + oid: 1.3.6.1.4.1.232.5.2.4.1.1.17 + type: counter + help: SCSI Physical Drive ECC Corrected Read Errors (high) - 1.3.6.1.4.1.232.5.2.4.1.1.17 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvRecvReadErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.18 + type: counter + help: SCSI Physical Drive Recovered Read Errors - 1.3.6.1.4.1.232.5.2.4.1.1.18 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvRecvWriteErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.19 + type: counter + help: SCSI Physical Drive Recovered Write Errors - 1.3.6.1.4.1.232.5.2.4.1.1.19 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvSeekErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.20 + type: counter + help: SCSI Physical Drive Seek Errors - 1.3.6.1.4.1.232.5.2.4.1.1.20 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvSpinupTime + oid: 1.3.6.1.4.1.232.5.2.4.1.1.21 + type: gauge + help: SCSI Physical Drive Spin up Time (tenths of seconds) - 1.3.6.1.4.1.232.5.2.4.1.1.21 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvUsedReallocs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.22 + type: counter + help: SCSI Physical Drive Used Reallocation Sectors - 1.3.6.1.4.1.232.5.2.4.1.1.22 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvTimeouts + oid: 1.3.6.1.4.1.232.5.2.4.1.1.23 + type: counter + help: SCSI Physical Drive Time-out Errors - 1.3.6.1.4.1.232.5.2.4.1.1.23 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvPostErrs + oid: 1.3.6.1.4.1.232.5.2.4.1.1.24 + type: counter + help: SCSI Physical Drive Power On Self Test (POST) Errors - 1.3.6.1.4.1.232.5.2.4.1.1.24 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvPostErrCode + oid: 1.3.6.1.4.1.232.5.2.4.1.1.25 + type: gauge + help: SCSI Physical Drive Last POST Error Code - 1.3.6.1.4.1.232.5.2.4.1.1.25 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvCondition + oid: 1.3.6.1.4.1.232.5.2.4.1.1.26 + type: gauge + help: SCSI Physical Drive Condition - 1.3.6.1.4.1.232.5.2.4.1.1.26 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqScsiPhyDrvFuncTest1 + oid: 1.3.6.1.4.1.232.5.2.4.1.1.27 + type: gauge + help: SCSI Physical Drive Functional Test 1 - 1.3.6.1.4.1.232.5.2.4.1.1.27 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvFuncTest2 + oid: 1.3.6.1.4.1.232.5.2.4.1.1.28 + type: gauge + help: SCSI Physical Drive Functional Test 2 - 1.3.6.1.4.1.232.5.2.4.1.1.28 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvStatsPreserved + oid: 1.3.6.1.4.1.232.5.2.4.1.1.29 + type: gauge + help: SCSI Physical Drive Statistics Preservation Method - 1.3.6.1.4.1.232.5.2.4.1.1.29 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: inNVRAM + 3: onDisk + 4: noCPUSupport + 5: noFreeNVRAM + 6: noDrvSupport + 7: noSoftwareSupport + 8: statsNotSupported + - name: cpqScsiPhyDrvSerialNum + oid: 1.3.6.1.4.1.232.5.2.4.1.1.30 + type: DisplayString + help: SCSI Physical Drive Serial Number - 1.3.6.1.4.1.232.5.2.4.1.1.30 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvLocation + oid: 1.3.6.1.4.1.232.5.2.4.1.1.31 + type: gauge + help: SCSI Physical Drive Location - 1.3.6.1.4.1.232.5.2.4.1.1.31 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: proliant + - name: cpqScsiPhyDrvParent + oid: 1.3.6.1.4.1.232.5.2.4.1.1.32 + type: gauge + help: SCSI Physical Drive Parent - 1.3.6.1.4.1.232.5.2.4.1.1.32 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvSectorSize + oid: 1.3.6.1.4.1.232.5.2.4.1.1.33 + type: gauge + help: SCSI Physical Drive Sector Size in Bytes - 1.3.6.1.4.1.232.5.2.4.1.1.33 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvHotPlug + oid: 1.3.6.1.4.1.232.5.2.4.1.1.34 + type: gauge + help: SCSI Physical Drive Hot Plug Support Status - 1.3.6.1.4.1.232.5.2.4.1.1.34 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: hotPlug + 3: nonHotPlug + - name: cpqScsiPhyDrvPlacement + oid: 1.3.6.1.4.1.232.5.2.4.1.1.35 + type: gauge + help: SCSI Physical Drive Placement - 1.3.6.1.4.1.232.5.2.4.1.1.35 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: internal + 3: external + - name: cpqScsiPhyDrvPreFailMonitoring + oid: 1.3.6.1.4.1.232.5.2.4.1.1.36 + type: gauge + help: SCSI Physical Drive Predictive Failure Monitoring - 1.3.6.1.4.1.232.5.2.4.1.1.36 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: notAvailable + 3: available + - name: cpqScsiPhyDrvOsName + oid: 1.3.6.1.4.1.232.5.2.4.1.1.37 + type: DisplayString + help: Physical Drive OS Name - 1.3.6.1.4.1.232.5.2.4.1.1.37 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + - name: cpqScsiPhyDrvRotationalSpeed + oid: 1.3.6.1.4.1.232.5.2.4.1.1.38 + type: gauge + help: SCSI Physical Drive Rotational Speed - 1.3.6.1.4.1.232.5.2.4.1.1.38 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rpm7200 + 3: rpm10K + 4: rpm15K + - name: cpqScsiPhyDrvMemberLogDrv + oid: 1.3.6.1.4.1.232.5.2.4.1.1.39 + type: gauge + help: The Physical Drive is a Member of a Logical Drive - 1.3.6.1.4.1.232.5.2.4.1.1.39 + indexes: + - labelname: cpqScsiPhyDrvCntlrIndex + type: gauge + - labelname: cpqScsiPhyDrvBusIndex + type: gauge + - labelname: cpqScsiPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: member + 3: spare + 4: nonMember + - name: cpqScsiTargetCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.5.1.1.1 + type: gauge + help: SCSI Target Controller Index - 1.3.6.1.4.1.232.5.2.5.1.1.1 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetBusIndex + oid: 1.3.6.1.4.1.232.5.2.5.1.1.2 + type: gauge + help: SCSI Target Bus Index - 1.3.6.1.4.1.232.5.2.5.1.1.2 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetScsiIdIndex + oid: 1.3.6.1.4.1.232.5.2.5.1.1.3 + type: gauge + help: SCSI Target Device Index - 1.3.6.1.4.1.232.5.2.5.1.1.3 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetType + oid: 1.3.6.1.4.1.232.5.2.5.1.1.4 + type: gauge + help: SCSI Device Type - 1.3.6.1.4.1.232.5.2.5.1.1.4 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + enum_values: + 1: other + 2: disk + 3: tape + 4: printer + 5: processor + 6: wormDrive + 7: cd-rom + 8: scanner + 9: optical + 10: jukeBox + 11: commDev + - name: cpqScsiTargetModel + oid: 1.3.6.1.4.1.232.5.2.5.1.1.5 + type: DisplayString + help: SCSI Device Model - 1.3.6.1.4.1.232.5.2.5.1.1.5 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetFWRev + oid: 1.3.6.1.4.1.232.5.2.5.1.1.6 + type: DisplayString + help: SCSI Device Firmware Revision - 1.3.6.1.4.1.232.5.2.5.1.1.6 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetVendor + oid: 1.3.6.1.4.1.232.5.2.5.1.1.7 + type: DisplayString + help: SCSI Device Vendor - 1.3.6.1.4.1.232.5.2.5.1.1.7 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetParityErrs + oid: 1.3.6.1.4.1.232.5.2.5.1.1.8 + type: counter + help: SCSI Device Bus Parity Errors - 1.3.6.1.4.1.232.5.2.5.1.1.8 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetPhaseErrs + oid: 1.3.6.1.4.1.232.5.2.5.1.1.9 + type: counter + help: SCSI Device Bus Phase Errors - 1.3.6.1.4.1.232.5.2.5.1.1.9 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetSelectTimeouts + oid: 1.3.6.1.4.1.232.5.2.5.1.1.10 + type: counter + help: SCSI Device Bus Select Time-outs - 1.3.6.1.4.1.232.5.2.5.1.1.10 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetMsgRejects + oid: 1.3.6.1.4.1.232.5.2.5.1.1.11 + type: counter + help: SCSI Device Bus Message Rejects - 1.3.6.1.4.1.232.5.2.5.1.1.11 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetNegPeriod + oid: 1.3.6.1.4.1.232.5.2.5.1.1.12 + type: gauge + help: SCSI Device Negotiated Period - 1.3.6.1.4.1.232.5.2.5.1.1.12 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetLocation + oid: 1.3.6.1.4.1.232.5.2.5.1.1.13 + type: gauge + help: SCSI Device Location - 1.3.6.1.4.1.232.5.2.5.1.1.13 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + enum_values: + 1: other + 2: proliant + - name: cpqScsiTargetNegSpeed + oid: 1.3.6.1.4.1.232.5.2.5.1.1.14 + type: gauge + help: SCSI Device Negotiated Speed - 1.3.6.1.4.1.232.5.2.5.1.1.14 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetPhysWidth + oid: 1.3.6.1.4.1.232.5.2.5.1.1.15 + type: gauge + help: SCSI Device Data Bus Physical Width - 1.3.6.1.4.1.232.5.2.5.1.1.15 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + enum_values: + 1: other + 2: narrow + 3: wide16 + - name: cpqScsiTargetNegWidth + oid: 1.3.6.1.4.1.232.5.2.5.1.1.16 + type: gauge + help: SCSI Device Data Bus Negotiated Width - 1.3.6.1.4.1.232.5.2.5.1.1.16 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + - name: cpqScsiTargetTypeExtended + oid: 1.3.6.1.4.1.232.5.2.5.1.1.17 + type: gauge + help: SCSI Extended Device Type - 1.3.6.1.4.1.232.5.2.5.1.1.17 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + enum_values: + 1: other + 2: pdcd + 3: removableDisk + 4: dltAutoloader + 5: cdJukebox + 6: cr3500 + 7: autoloader + - name: cpqScsiTargetCurrentSpeed + oid: 1.3.6.1.4.1.232.5.2.5.1.1.18 + type: gauge + help: SCSI Device Current Data Transfer Speed - 1.3.6.1.4.1.232.5.2.5.1.1.18 + indexes: + - labelname: cpqScsiTargetCntlrIndex + type: gauge + - labelname: cpqScsiTargetBusIndex + type: gauge + - labelname: cpqScsiTargetScsiIdIndex + type: gauge + enum_values: + 1: other + 2: asynchronous + 3: fast + 4: ultra + 5: ultra2 + 6: ultra3 + 7: scsi1 + 8: ultra4 + - name: cpqScsiCdDrvCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.6.1.1.1 + type: gauge + help: SCSI CD-ROM Drive Controller Index - 1.3.6.1.4.1.232.5.2.6.1.1.1 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvBusIndex + oid: 1.3.6.1.4.1.232.5.2.6.1.1.2 + type: gauge + help: SCSI CD-ROM Drive Bus Index - 1.3.6.1.4.1.232.5.2.6.1.1.2 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvScsiIdIndex + oid: 1.3.6.1.4.1.232.5.2.6.1.1.3 + type: gauge + help: SCSI CD-ROM Drive Index - 1.3.6.1.4.1.232.5.2.6.1.1.3 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvLunIndex + oid: 1.3.6.1.4.1.232.5.2.6.1.1.4 + type: gauge + help: SCSI CD-ROM Drive Logical Unit Index - 1.3.6.1.4.1.232.5.2.6.1.1.4 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvModel + oid: 1.3.6.1.4.1.232.5.2.6.1.1.5 + type: DisplayString + help: SCSI CD Device Model - 1.3.6.1.4.1.232.5.2.6.1.1.5 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvVendor + oid: 1.3.6.1.4.1.232.5.2.6.1.1.6 + type: DisplayString + help: SCSI CD Drive Vendor - 1.3.6.1.4.1.232.5.2.6.1.1.6 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqScsiCdDrvFwRev + oid: 1.3.6.1.4.1.232.5.2.6.1.1.7 + type: DisplayString + help: SCSI CD-ROM Firmware Revision - 1.3.6.1.4.1.232.5.2.6.1.1.7 + indexes: + - labelname: cpqScsiCdDrvCntlrIndex + type: gauge + - labelname: cpqScsiCdDrvBusIndex + type: gauge + - labelname: cpqScsiCdDrvScsiIdIndex + type: gauge + - labelname: cpqScsiCdDrvLunIndex + type: gauge + - name: cpqCdLibraryCntlrIndex + oid: 1.3.6.1.4.1.232.5.2.6.2.1.1 + type: gauge + help: SCSI CD Library Controller Index - 1.3.6.1.4.1.232.5.2.6.2.1.1 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryBusIndex + oid: 1.3.6.1.4.1.232.5.2.6.2.1.2 + type: gauge + help: SCSI CD Library Bus Index - 1.3.6.1.4.1.232.5.2.6.2.1.2 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryScsiIdIndex + oid: 1.3.6.1.4.1.232.5.2.6.2.1.3 + type: gauge + help: SCSI CD Library Device Index - 1.3.6.1.4.1.232.5.2.6.2.1.3 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryLunIndex + oid: 1.3.6.1.4.1.232.5.2.6.2.1.4 + type: gauge + help: SCSI CD Library Logical Unit Index - 1.3.6.1.4.1.232.5.2.6.2.1.4 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryCondition + oid: 1.3.6.1.4.1.232.5.2.6.2.1.5 + type: gauge + help: CD Library Condition - 1.3.6.1.4.1.232.5.2.6.2.1.5 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqCdLibraryStatus + oid: 1.3.6.1.4.1.232.5.2.6.2.1.6 + type: gauge + help: CD Library Status - 1.3.6.1.4.1.232.5.2.6.2.1.6 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + 4: offline + - name: cpqCdLibraryModel + oid: 1.3.6.1.4.1.232.5.2.6.2.1.7 + type: DisplayString + help: SCSI CD Library Device Model - 1.3.6.1.4.1.232.5.2.6.2.1.7 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryVendor + oid: 1.3.6.1.4.1.232.5.2.6.2.1.8 + type: DisplayString + help: SCSI CD Library Vendor - 1.3.6.1.4.1.232.5.2.6.2.1.8 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibrarySerialNumber + oid: 1.3.6.1.4.1.232.5.2.6.2.1.9 + type: DisplayString + help: CD Library Serial Number - 1.3.6.1.4.1.232.5.2.6.2.1.9 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryDriveList + oid: 1.3.6.1.4.1.232.5.2.6.2.1.10 + type: OctetString + help: CD Library Drive List This is a data structure containing the list of + CD drive ids that are present in this library - 1.3.6.1.4.1.232.5.2.6.2.1.10 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryFwRev + oid: 1.3.6.1.4.1.232.5.2.6.2.1.11 + type: DisplayString + help: SCSI CD Library Firmware Revision - 1.3.6.1.4.1.232.5.2.6.2.1.11 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqCdLibraryFwSubtype + oid: 1.3.6.1.4.1.232.5.2.6.2.1.12 + type: gauge + help: SCSI CD library Firmware Subtype - 1.3.6.1.4.1.232.5.2.6.2.1.12 + indexes: + - labelname: cpqCdLibraryCntlrIndex + type: gauge + - labelname: cpqCdLibraryBusIndex + type: gauge + - labelname: cpqCdLibraryScsiIdIndex + type: gauge + - labelname: cpqCdLibraryLunIndex + type: gauge + - name: cpqScsiTrapPkts + oid: 1.3.6.1.4.1.232.5.3.1 + type: counter + help: The total number of trap packets issued by the SCSI enterprise since the + instrument agent was loaded. - 1.3.6.1.4.1.232.5.3.1 + - name: cpqScsiTrapLogMaxSize + oid: 1.3.6.1.4.1.232.5.3.2 + type: gauge + help: The maximum number of entries that will currently be kept in the trap + log - 1.3.6.1.4.1.232.5.3.2 + - name: cpqScsiTrapLogIndex + oid: 1.3.6.1.4.1.232.5.3.3.1.1 + type: gauge + help: The value of this object uniquely identifies this trapLogEntry at this + time - 1.3.6.1.4.1.232.5.3.3.1.1 + indexes: + - labelname: cpqScsiTrapLogIndex + type: gauge + - name: cpqScsiTrapType + oid: 1.3.6.1.4.1.232.5.3.3.1.2 + type: gauge + help: The type of the trap event that this entry describes - 1.3.6.1.4.1.232.5.3.3.1.2 + indexes: + - labelname: cpqScsiTrapLogIndex + type: gauge + enum_values: + 1: cpqScsiCntlrStatusChange + 2: cpqScsiLogDrvStatusChange + 3: cpqScsiPhyDrvStatusChange + 5001: cpqScsi2CntlrStatusChange + 5002: cpqScsi2LogDrvStatusChange + 5003: cpqScsi2PhyDrvStatusChange + - name: cpqScsiTrapTime + oid: 1.3.6.1.4.1.232.5.3.3.1.3 + type: OctetString + help: The time of the trap event that this entry describes - 1.3.6.1.4.1.232.5.3.3.1.3 + indexes: + - labelname: cpqScsiTrapLogIndex + type: gauge + - name: cpqTapePhyDrvCntlrIndex + oid: 1.3.6.1.4.1.232.5.4.1.1.1.1 + type: gauge + help: Tape Physical Drive Controller Index - 1.3.6.1.4.1.232.5.4.1.1.1.1 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvBusIndex + oid: 1.3.6.1.4.1.232.5.4.1.1.1.2 + type: gauge + help: Tape Physical Drive Bus Index - 1.3.6.1.4.1.232.5.4.1.1.1.2 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvScsiIdIndex + oid: 1.3.6.1.4.1.232.5.4.1.1.1.3 + type: gauge + help: Tape Physical Drive Index - 1.3.6.1.4.1.232.5.4.1.1.1.3 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvLunIndex + oid: 1.3.6.1.4.1.232.5.4.1.1.1.4 + type: gauge + help: Tape Physical Drive Logical Unit Index - 1.3.6.1.4.1.232.5.4.1.1.1.4 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvType + oid: 1.3.6.1.4.1.232.5.4.1.1.1.5 + type: gauge + help: Tape Device Type - 1.3.6.1.4.1.232.5.4.1.1.1.5 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: cpqDat4-16 + 3: cpqDatAuto + 4: cpqDat2-8 + 5: cpqDlt10-20 + 6: cpqDlt20-40 + 7: cpqDlt15-30 + 8: cpqDlt35-70 + 9: cpqDat4-8 + 10: cpqSlr4-8 + 11: cpqDat12-24 + 12: cpqDatAuto12-24 + 13: cpqMlr16-32 + 14: cpqAit35 + 15: cpqAit50 + 16: cpqDat20-40 + 17: cpqDlt40-80 + 18: cpqDatAuto20-40 + 19: cpqSuperDlt1 + 20: cpqAit35Lvd + 21: cpqCompaq + - name: cpqTapePhyDrvCondition + oid: 1.3.6.1.4.1.232.5.4.1.1.1.6 + type: gauge + help: Tape Physical Drive Status - 1.3.6.1.4.1.232.5.4.1.1.1.6 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqTapePhyDrvMagSize + oid: 1.3.6.1.4.1.232.5.4.1.1.1.7 + type: gauge + help: Tape Physical Drive Magazine Size - 1.3.6.1.4.1.232.5.4.1.1.1.7 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvSerialNumber + oid: 1.3.6.1.4.1.232.5.4.1.1.1.8 + type: DisplayString + help: Tape Physical Drive Serial Number - 1.3.6.1.4.1.232.5.4.1.1.1.8 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvCleanReq + oid: 1.3.6.1.4.1.232.5.4.1.1.1.9 + type: gauge + help: Tape Physical Drive Cleaning Required Status - 1.3.6.1.4.1.232.5.4.1.1.1.9 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqTapePhyDrvCleanTapeRepl + oid: 1.3.6.1.4.1.232.5.4.1.1.1.10 + type: gauge + help: Tape Physical Drive Cleaning Tape Replacement Status - 1.3.6.1.4.1.232.5.4.1.1.1.10 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqTapePhyDrvFwSubtype + oid: 1.3.6.1.4.1.232.5.4.1.1.1.11 + type: gauge + help: Tape Physical Drive Firmware Subtype - 1.3.6.1.4.1.232.5.4.1.1.1.11 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvName + oid: 1.3.6.1.4.1.232.5.4.1.1.1.12 + type: DisplayString + help: Tape Physical Drive Name - 1.3.6.1.4.1.232.5.4.1.1.1.12 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvCleanTapeCount + oid: 1.3.6.1.4.1.232.5.4.1.1.1.13 + type: gauge + help: Tape Physical Drive Cleaning Tape Count - 1.3.6.1.4.1.232.5.4.1.1.1.13 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvFwRev + oid: 1.3.6.1.4.1.232.5.4.1.1.1.14 + type: DisplayString + help: Tape Physical Drive Firmware Revision - 1.3.6.1.4.1.232.5.4.1.1.1.14 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvStatus + oid: 1.3.6.1.4.1.232.5.4.1.1.1.15 + type: gauge + help: Tape Physical Drive Status - 1.3.6.1.4.1.232.5.4.1.1.1.15 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 4: failed + 5: offline + 6: missingWasOk + 7: missingWasFailed + 8: missingWasOffline + - name: cpqTapePhyDrvHotPlug + oid: 1.3.6.1.4.1.232.5.4.1.1.1.16 + type: gauge + help: Tape Physical Drive Hot Plug Support Status - 1.3.6.1.4.1.232.5.4.1.1.1.16 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: hotPlug + 3: nonHotPlug + - name: cpqTapePhyDrvPlacement + oid: 1.3.6.1.4.1.232.5.4.1.1.1.17 + type: gauge + help: Tape Physical Drive Placement - 1.3.6.1.4.1.232.5.4.1.1.1.17 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: internal + 3: external + - name: cpqTapePhyDrvLibraryDrive + oid: 1.3.6.1.4.1.232.5.4.1.1.1.18 + type: gauge + help: Tape Physical Drive Library Drive - 1.3.6.1.4.1.232.5.4.1.1.1.18 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + enum_values: + 1: other + 2: "true" + 3: "false" + - name: cpqTapePhyDrvLoaderName + oid: 1.3.6.1.4.1.232.5.4.1.1.1.19 + type: DisplayString + help: Tape Autoloader Name - 1.3.6.1.4.1.232.5.4.1.1.1.19 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvLoaderFwRev + oid: 1.3.6.1.4.1.232.5.4.1.1.1.20 + type: DisplayString + help: Tape Autoloader Firmware Revision - 1.3.6.1.4.1.232.5.4.1.1.1.20 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapePhyDrvLoaderSerialNum + oid: 1.3.6.1.4.1.232.5.4.1.1.1.21 + type: DisplayString + help: Tape Autoloader Serial Number - 1.3.6.1.4.1.232.5.4.1.1.1.21 + indexes: + - labelname: cpqTapePhyDrvCntlrIndex + type: gauge + - labelname: cpqTapePhyDrvBusIndex + type: gauge + - labelname: cpqTapePhyDrvScsiIdIndex + type: gauge + - labelname: cpqTapePhyDrvLunIndex + type: gauge + - name: cpqTapeCountersCntlrIndex + oid: 1.3.6.1.4.1.232.5.4.2.1.1.1 + type: gauge + help: SCSI Counters Controller Index - 1.3.6.1.4.1.232.5.4.2.1.1.1 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersBusIndex + oid: 1.3.6.1.4.1.232.5.4.2.1.1.2 + type: gauge + help: SCSI Counters Bus Index - 1.3.6.1.4.1.232.5.4.2.1.1.2 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersScsiIdIndex + oid: 1.3.6.1.4.1.232.5.4.2.1.1.3 + type: gauge + help: SCSI Counters Device Index - 1.3.6.1.4.1.232.5.4.2.1.1.3 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersLunIndex + oid: 1.3.6.1.4.1.232.5.4.2.1.1.4 + type: gauge + help: SCSI Counters Logical Unit Index - 1.3.6.1.4.1.232.5.4.2.1.1.4 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersReWrites + oid: 1.3.6.1.4.1.232.5.4.2.1.1.5 + type: counter + help: Tape Device Re-write count - 1.3.6.1.4.1.232.5.4.2.1.1.5 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersReReads + oid: 1.3.6.1.4.1.232.5.4.2.1.1.6 + type: counter + help: Tape Device Re-read count - 1.3.6.1.4.1.232.5.4.2.1.1.6 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersTotalErrors + oid: 1.3.6.1.4.1.232.5.4.2.1.1.7 + type: counter + help: Tape Device Total Errors - 1.3.6.1.4.1.232.5.4.2.1.1.7 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersTotalUncorrectable + oid: 1.3.6.1.4.1.232.5.4.2.1.1.8 + type: counter + help: Tape Device Total Uncorrectable Errors - 1.3.6.1.4.1.232.5.4.2.1.1.8 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeCountersTotalBytes + oid: 1.3.6.1.4.1.232.5.4.2.1.1.9 + type: counter + help: Tape Device Total Bytes - 1.3.6.1.4.1.232.5.4.2.1.1.9 + indexes: + - labelname: cpqTapeCountersCntlrIndex + type: gauge + - labelname: cpqTapeCountersBusIndex + type: gauge + - labelname: cpqTapeCountersScsiIdIndex + type: gauge + - labelname: cpqTapeCountersLunIndex + type: gauge + - name: cpqTapeLibraryCntlrIndex + oid: 1.3.6.1.4.1.232.5.4.3.1.1.1 + type: gauge + help: SCSI Library Controller Index - 1.3.6.1.4.1.232.5.4.3.1.1.1 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryBusIndex + oid: 1.3.6.1.4.1.232.5.4.3.1.1.2 + type: gauge + help: SCSI Library Bus Index - 1.3.6.1.4.1.232.5.4.3.1.1.2 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryScsiIdIndex + oid: 1.3.6.1.4.1.232.5.4.3.1.1.3 + type: gauge + help: SCSI Library Device Index - 1.3.6.1.4.1.232.5.4.3.1.1.3 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryLunIndex + oid: 1.3.6.1.4.1.232.5.4.3.1.1.4 + type: gauge + help: SCSI Library Logical Unit Index - 1.3.6.1.4.1.232.5.4.3.1.1.4 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryCondition + oid: 1.3.6.1.4.1.232.5.4.3.1.1.5 + type: gauge + help: Tape Library Status - 1.3.6.1.4.1.232.5.4.3.1.1.5 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqTapeLibraryStatus + oid: 1.3.6.1.4.1.232.5.4.3.1.1.6 + type: gauge + help: Error code returned by the last library error. - 1.3.6.1.4.1.232.5.4.3.1.1.6 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryDoorStatus + oid: 1.3.6.1.4.1.232.5.4.3.1.1.7 + type: gauge + help: Status of the library door - 1.3.6.1.4.1.232.5.4.3.1.1.7 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: closed + 3: open + 4: notSupported + - name: cpqTapeLibraryStatHours + oid: 1.3.6.1.4.1.232.5.4.3.1.1.8 + type: counter + help: The number of hours of operation for the library. - 1.3.6.1.4.1.232.5.4.3.1.1.8 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryStatMoves + oid: 1.3.6.1.4.1.232.5.4.3.1.1.9 + type: counter + help: The number of tape moves for the library loader arm. - 1.3.6.1.4.1.232.5.4.3.1.1.9 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryName + oid: 1.3.6.1.4.1.232.5.4.3.1.1.10 + type: DisplayString + help: Tape Library Name. - 1.3.6.1.4.1.232.5.4.3.1.1.10 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibrarySerialNumber + oid: 1.3.6.1.4.1.232.5.4.3.1.1.11 + type: DisplayString + help: Tape Library Serial Number - 1.3.6.1.4.1.232.5.4.3.1.1.11 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryDriveList + oid: 1.3.6.1.4.1.232.5.4.3.1.1.12 + type: OctetString + help: Tape Library Drive List This is a data structure containing the list of + tape drive ids that are present in this library - 1.3.6.1.4.1.232.5.4.3.1.1.12 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryState + oid: 1.3.6.1.4.1.232.5.4.3.1.1.13 + type: gauge + help: Tape Library Status - 1.3.6.1.4.1.232.5.4.3.1.1.13 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + 5: offline + - name: cpqTapeLibraryTemperature + oid: 1.3.6.1.4.1.232.5.4.3.1.1.14 + type: gauge + help: Tape Library Temperature Status - 1.3.6.1.4.1.232.5.4.3.1.1.14 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: ok + 4: safeTempExceeded + 5: maxTempExceeded + - name: cpqTapeLibraryRedundancy + oid: 1.3.6.1.4.1.232.5.4.3.1.1.15 + type: gauge + help: Tape Library Redundancy Status - 1.3.6.1.4.1.232.5.4.3.1.1.15 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: capable + 4: notCapable + 5: active + - name: cpqTapeLibraryHotSwap + oid: 1.3.6.1.4.1.232.5.4.3.1.1.16 + type: gauge + help: Tape Library Hot Swap Status - 1.3.6.1.4.1.232.5.4.3.1.1.16 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: capable + 4: notCapable + - name: cpqTapeLibraryFwRev + oid: 1.3.6.1.4.1.232.5.4.3.1.1.17 + type: DisplayString + help: Tape Library Firmware Revision - 1.3.6.1.4.1.232.5.4.3.1.1.17 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqTapeLibraryTapeList + oid: 1.3.6.1.4.1.232.5.4.3.1.1.18 + type: OctetString + help: Tape Library Drive List This is a data structure containing the list of + tape drive ids that are present in this library - 1.3.6.1.4.1.232.5.4.3.1.1.18 + indexes: + - labelname: cpqTapeLibraryCntlrIndex + type: gauge + - labelname: cpqTapeLibraryBusIndex + type: gauge + - labelname: cpqTapeLibraryScsiIdIndex + type: gauge + - labelname: cpqTapeLibraryLunIndex + type: gauge + - name: cpqSasHbaIndex + oid: 1.3.6.1.4.1.232.5.5.1.1.1.1 + type: gauge + help: SAS Host Bus Adapter Index - 1.3.6.1.4.1.232.5.5.1.1.1.1 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasHbaHwLocation + oid: 1.3.6.1.4.1.232.5.5.1.1.1.2 + type: DisplayString + help: SAS Host Bus Adapter Hardware Location - 1.3.6.1.4.1.232.5.5.1.1.1.2 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasHbaModel + oid: 1.3.6.1.4.1.232.5.5.1.1.1.3 + type: gauge + help: SAS Host Bus Adapter Model - 1.3.6.1.4.1.232.5.5.1.1.1.3 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + enum_values: + 1: other + 2: generic + 3: sas8int + 4: sas4int + 5: sasSc44Ge + 6: sasSc40Ge + 7: sasSc08Ge + 8: sasSc08e + 9: sasH220i + 10: sasH221 + 11: sasH210i + 12: sasH220 + 13: sasH222 + 14: sasP824ip + - name: cpqSasHbaStatus + oid: 1.3.6.1.4.1.232.5.5.1.1.1.4 + type: gauge + help: SAS Host Bus Adapter Status - 1.3.6.1.4.1.232.5.5.1.1.1.4 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: failed + - name: cpqSasHbaCondition + oid: 1.3.6.1.4.1.232.5.5.1.1.1.5 + type: gauge + help: SAS Host Bus Adapter Condition - 1.3.6.1.4.1.232.5.5.1.1.1.5 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqSasHbaOverallCondition + oid: 1.3.6.1.4.1.232.5.5.1.1.1.6 + type: gauge + help: SAS Host Bus Adapter Overall Condition - 1.3.6.1.4.1.232.5.5.1.1.1.6 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqSasHbaSerialNumber + oid: 1.3.6.1.4.1.232.5.5.1.1.1.7 + type: DisplayString + help: SAS Host Bus Adapter Serial Number - 1.3.6.1.4.1.232.5.5.1.1.1.7 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasHbaFwVersion + oid: 1.3.6.1.4.1.232.5.5.1.1.1.8 + type: DisplayString + help: SAS Host Bus Adapter Firmware Version - 1.3.6.1.4.1.232.5.5.1.1.1.8 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasHbaBiosVersion + oid: 1.3.6.1.4.1.232.5.5.1.1.1.9 + type: DisplayString + help: SAS Host Bus Adapter BIOS Version - 1.3.6.1.4.1.232.5.5.1.1.1.9 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasHbaPciLocation + oid: 1.3.6.1.4.1.232.5.5.1.1.1.10 + type: DisplayString + help: SAS Host Bus Adapter PCI Location - 1.3.6.1.4.1.232.5.5.1.1.1.10 + indexes: + - labelname: cpqSasHbaIndex + type: gauge + - name: cpqSasPhyDrvHbaIndex + oid: 1.3.6.1.4.1.232.5.5.2.1.1.1 + type: gauge + help: SAS Physical Drive HBA Index - 1.3.6.1.4.1.232.5.5.2.1.1.1 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvIndex + oid: 1.3.6.1.4.1.232.5.5.2.1.1.2 + type: gauge + help: SAS Physical Drive Index - 1.3.6.1.4.1.232.5.5.2.1.1.2 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvLocationString + oid: 1.3.6.1.4.1.232.5.5.2.1.1.3 + type: DisplayString + help: SAS Physical Drive Location String - 1.3.6.1.4.1.232.5.5.2.1.1.3 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvModel + oid: 1.3.6.1.4.1.232.5.5.2.1.1.4 + type: DisplayString + help: SAS Physical Drive Model - 1.3.6.1.4.1.232.5.5.2.1.1.4 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvStatus + oid: 1.3.6.1.4.1.232.5.5.2.1.1.5 + type: gauge + help: SAS Physical Drive Status - 1.3.6.1.4.1.232.5.5.2.1.1.5 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: predictiveFailure + 4: offline + 5: failed + 6: missingWasOk + 7: missingWasPredictiveFailure + 8: missingWasOffline + 9: missingWasFailed + 10: ssdWearOut + 11: missingWasSSDWearOut + 12: notAuthenticated + 13: missingWasNotAuthenticated + - name: cpqSasPhyDrvCondition + oid: 1.3.6.1.4.1.232.5.5.2.1.1.6 + type: gauge + help: SAS Physical Drive Condition - 1.3.6.1.4.1.232.5.5.2.1.1.6 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqSasPhyDrvFWRev + oid: 1.3.6.1.4.1.232.5.5.2.1.1.7 + type: DisplayString + help: SAS Physical Drive Firmware Revision - 1.3.6.1.4.1.232.5.5.2.1.1.7 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSize + oid: 1.3.6.1.4.1.232.5.5.2.1.1.8 + type: gauge + help: SAS Physical Drive Size in MB - 1.3.6.1.4.1.232.5.5.2.1.1.8 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvUsedReallocs + oid: 1.3.6.1.4.1.232.5.5.2.1.1.9 + type: counter + help: SAS Physical Drive Used Reallocation Sectors - 1.3.6.1.4.1.232.5.5.2.1.1.9 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSerialNumber + oid: 1.3.6.1.4.1.232.5.5.2.1.1.10 + type: DisplayString + help: SAS Physical Drive Serial Number - 1.3.6.1.4.1.232.5.5.2.1.1.10 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvMemberLogDrv + oid: 1.3.6.1.4.1.232.5.5.2.1.1.11 + type: gauge + help: The Physical Drive is a Member of a Logical Drive - 1.3.6.1.4.1.232.5.5.2.1.1.11 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: member + 3: spare + 4: nonMember + - name: cpqSasPhyDrvRotationalSpeed + oid: 1.3.6.1.4.1.232.5.5.2.1.1.12 + type: gauge + help: SAS Physical Drive Rotational Speed - 1.3.6.1.4.1.232.5.5.2.1.1.12 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rpm7200 + 3: rpm10K + 4: rpm15K + 5: rpmSsd + - name: cpqSasPhyDrvOsName + oid: 1.3.6.1.4.1.232.5.5.2.1.1.13 + type: DisplayString + help: SAS Physical Drive OS Name - 1.3.6.1.4.1.232.5.5.2.1.1.13 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvPlacement + oid: 1.3.6.1.4.1.232.5.5.2.1.1.14 + type: gauge + help: SAS Physical Drive Placement - 1.3.6.1.4.1.232.5.5.2.1.1.14 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: internal + 3: external + - name: cpqSasPhyDrvHotPlug + oid: 1.3.6.1.4.1.232.5.5.2.1.1.15 + type: gauge + help: SAS Physical Drive Hot Plug Support Status - 1.3.6.1.4.1.232.5.5.2.1.1.15 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: hotPlug + 3: nonHotPlug + - name: cpqSasPhyDrvType + oid: 1.3.6.1.4.1.232.5.5.2.1.1.16 + type: gauge + help: SAS Physical Drive Type - 1.3.6.1.4.1.232.5.5.2.1.1.16 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: sas + 3: sata + - name: cpqSasPhyDrvSasAddress + oid: 1.3.6.1.4.1.232.5.5.2.1.1.17 + type: DisplayString + help: SAS Physical Drive SAS Address - 1.3.6.1.4.1.232.5.5.2.1.1.17 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvMediaType + oid: 1.3.6.1.4.1.232.5.5.2.1.1.18 + type: gauge + help: SAS Physical Drive Media Type - 1.3.6.1.4.1.232.5.5.2.1.1.18 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: rotatingPlatters + 3: solidState + - name: cpqSasPhyDrvSSDWearStatus + oid: 1.3.6.1.4.1.232.5.5.2.1.1.19 + type: gauge + help: SAS Physical Drive Solid State Disk Wear Status - 1.3.6.1.4.1.232.5.5.2.1.1.19 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: fiftySixDayThreshold + 4: fivePercentThreshold + 5: twoPercentThreshold + 6: ssdWearOut + - name: cpqSasPhyDrvPowerOnHours + oid: 1.3.6.1.4.1.232.5.5.2.1.1.20 + type: counter + help: SAS Physical Drive Power On Hours - 1.3.6.1.4.1.232.5.5.2.1.1.20 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSSDPercntEndrnceUsed + oid: 1.3.6.1.4.1.232.5.5.2.1.1.21 + type: gauge + help: SAS Physical Drive Solid State Percent Endurance Used - 1.3.6.1.4.1.232.5.5.2.1.1.21 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSSDEstTimeRemainingHours + oid: 1.3.6.1.4.1.232.5.5.2.1.1.22 + type: counter + help: SAS Physical Drive Solid State Estimated Time Remaining In Hours - 1.3.6.1.4.1.232.5.5.2.1.1.22 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvAuthenticationStatus + oid: 1.3.6.1.4.1.232.5.5.2.1.1.23 + type: gauge + help: SAS Physical Drive Authentication Status - 1.3.6.1.4.1.232.5.5.2.1.1.23 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + enum_values: + 1: other + 2: notSupported + 3: authenticationFailed + 4: authenticationPassed + - name: cpqSasPhyDrvSmartCarrierAppFWRev + oid: 1.3.6.1.4.1.232.5.5.2.1.1.24 + type: gauge + help: SAS Physical Drive Smart Carrier Application Firmware Revision - 1.3.6.1.4.1.232.5.5.2.1.1.24 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSmartCarrierBootldrFWRev + oid: 1.3.6.1.4.1.232.5.5.2.1.1.25 + type: gauge + help: SAS Physical Drive Smart Carrier Bootloader Firmware Revision - 1.3.6.1.4.1.232.5.5.2.1.1.25 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvCurrTemperature + oid: 1.3.6.1.4.1.232.5.5.2.1.1.26 + type: gauge + help: SAS Physical Drive Current Operating Temperature degrees Celsius - 1.3.6.1.4.1.232.5.5.2.1.1.26 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvTemperatureThreshold + oid: 1.3.6.1.4.1.232.5.5.2.1.1.27 + type: gauge + help: SAS Physical Drive Maximum Operating Temperature in degrees Celsius - + 1.3.6.1.4.1.232.5.5.2.1.1.27 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSsBoxModel + oid: 1.3.6.1.4.1.232.5.5.2.1.1.28 + type: DisplayString + help: SAS Physical Drive Box Model - 1.3.6.1.4.1.232.5.5.2.1.1.28 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSsBoxFwRev + oid: 1.3.6.1.4.1.232.5.5.2.1.1.29 + type: DisplayString + help: SAS Physical Drive Box Firmware Revision - 1.3.6.1.4.1.232.5.5.2.1.1.29 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSsBoxVendor + oid: 1.3.6.1.4.1.232.5.5.2.1.1.30 + type: DisplayString + help: SAS Physical Drive Box Vendor This is the SAS drive box`s vendor name + - 1.3.6.1.4.1.232.5.5.2.1.1.30 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasPhyDrvSsBoxSerialNumber + oid: 1.3.6.1.4.1.232.5.5.2.1.1.31 + type: DisplayString + help: SAS Physical Drive Box Serial Number - 1.3.6.1.4.1.232.5.5.2.1.1.31 + indexes: + - labelname: cpqSasPhyDrvHbaIndex + type: gauge + - labelname: cpqSasPhyDrvIndex + type: gauge + - name: cpqSasLogDrvHbaIndex + oid: 1.3.6.1.4.1.232.5.5.3.1.1.1 + type: gauge + help: SAS Logical Drive HBA Index - 1.3.6.1.4.1.232.5.5.3.1.1.1 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvIndex + oid: 1.3.6.1.4.1.232.5.5.3.1.1.2 + type: gauge + help: SAS Logical Drive Index - 1.3.6.1.4.1.232.5.5.3.1.1.2 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvRaidLevel + oid: 1.3.6.1.4.1.232.5.5.3.1.1.3 + type: gauge + help: SAS Logical Drive RAID Level - 1.3.6.1.4.1.232.5.5.3.1.1.3 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + enum_values: + 1: other + 2: raid0 + 3: raid1 + 4: raid0plus1 + 5: raid5 + 6: raid15 + 7: volume + - name: cpqSasLogDrvStatus + oid: 1.3.6.1.4.1.232.5.5.3.1.1.4 + type: gauge + help: SAS Logical Drive Status - 1.3.6.1.4.1.232.5.5.3.1.1.4 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: rebuilding + 5: failed + 6: offline + - name: cpqSasLogDrvCondition + oid: 1.3.6.1.4.1.232.5.5.3.1.1.5 + type: gauge + help: SAS Logical Drive Condition - 1.3.6.1.4.1.232.5.5.3.1.1.5 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqSasLogDrvRebuildingDisk + oid: 1.3.6.1.4.1.232.5.5.3.1.1.6 + type: gauge + help: SAS Logical Drive Rebuilding Disk - 1.3.6.1.4.1.232.5.5.3.1.1.6 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvCapacity + oid: 1.3.6.1.4.1.232.5.5.3.1.1.7 + type: gauge + help: SAS Logical Drive Size - 1.3.6.1.4.1.232.5.5.3.1.1.7 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvStripeSize + oid: 1.3.6.1.4.1.232.5.5.3.1.1.8 + type: gauge + help: SAS Logical Drive Stripe Size - 1.3.6.1.4.1.232.5.5.3.1.1.8 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvPhyDrvIds + oid: 1.3.6.1.4.1.232.5.5.3.1.1.9 + type: OctetString + help: SAS Logical Drive Physical Drive IDs - 1.3.6.1.4.1.232.5.5.3.1.1.9 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvSpareIds + oid: 1.3.6.1.4.1.232.5.5.3.1.1.10 + type: OctetString + help: SAS Logical Drive Spare Drive IDs - 1.3.6.1.4.1.232.5.5.3.1.1.10 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvOsName + oid: 1.3.6.1.4.1.232.5.5.3.1.1.11 + type: DisplayString + help: SAS Logical Drive OS Name - 1.3.6.1.4.1.232.5.5.3.1.1.11 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasLogDrvRebuildingPercent + oid: 1.3.6.1.4.1.232.5.5.3.1.1.12 + type: gauge + help: Logical Drive Percent Rebuild - 1.3.6.1.4.1.232.5.5.3.1.1.12 + indexes: + - labelname: cpqSasLogDrvHbaIndex + type: gauge + - labelname: cpqSasLogDrvIndex + type: gauge + - name: cpqSasTapeDrvHbaIndex + oid: 1.3.6.1.4.1.232.5.5.4.1.1.1 + type: gauge + help: SAS Tape Drive HBA Index - 1.3.6.1.4.1.232.5.5.4.1.1.1 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvIndex + oid: 1.3.6.1.4.1.232.5.5.4.1.1.2 + type: gauge + help: SAS Tape Drive Index - 1.3.6.1.4.1.232.5.5.4.1.1.2 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvLocationString + oid: 1.3.6.1.4.1.232.5.5.4.1.1.3 + type: DisplayString + help: SAS Tape Drive Location String - 1.3.6.1.4.1.232.5.5.4.1.1.3 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvName + oid: 1.3.6.1.4.1.232.5.5.4.1.1.4 + type: DisplayString + help: SAS Tape Drive Name - 1.3.6.1.4.1.232.5.5.4.1.1.4 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvStatus + oid: 1.3.6.1.4.1.232.5.5.4.1.1.5 + type: gauge + help: SAS Physical Drive Status - 1.3.6.1.4.1.232.5.5.4.1.1.5 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: offline + - name: cpqSasTapeDrvCondition + oid: 1.3.6.1.4.1.232.5.5.4.1.1.6 + type: gauge + help: SAS Tape Drive Condition - 1.3.6.1.4.1.232.5.5.4.1.1.6 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqSasTapeDrvFWRev + oid: 1.3.6.1.4.1.232.5.5.4.1.1.7 + type: DisplayString + help: SAS Tape Drive Firmware Revision - 1.3.6.1.4.1.232.5.5.4.1.1.7 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvSerialNumber + oid: 1.3.6.1.4.1.232.5.5.4.1.1.8 + type: DisplayString + help: SAS Tape Drive Serial Number - 1.3.6.1.4.1.232.5.5.4.1.1.8 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqSasTapeDrvSasAddress + oid: 1.3.6.1.4.1.232.5.5.4.1.1.9 + type: DisplayString + help: SAS Tape Drive SAS Address - 1.3.6.1.4.1.232.5.5.4.1.1.9 + indexes: + - labelname: cpqSasTapeDrvHbaIndex + type: gauge + - labelname: cpqSasTapeDrvIndex + type: gauge + - name: cpqHeResMem2ModuleSize + oid: 1.3.6.1.4.1.232.6.2.14.13.1.6 + type: gauge + help: Module memory size in kilobytes - 1.3.6.1.4.1.232.6.2.14.13.1.6 + indexes: + - labelname: cpqHeResMem2Module + type: gauge + - name: cpqHePowerMeterSupport + oid: 1.3.6.1.4.1.232.6.2.15.1 + type: gauge + help: This value specifies whether Power Meter is supported by this Server - + 1.3.6.1.4.1.232.6.2.15.1 + enum_values: + 1: other + 2: supported + 3: unsupported + - name: cpqHePowerMeterStatus + oid: 1.3.6.1.4.1.232.6.2.15.2 + type: gauge + help: This value specifies whether Power Meter reading is supported by this + Server - 1.3.6.1.4.1.232.6.2.15.2 + enum_values: + 1: other + 2: present + 3: absent + - name: cpqHePowerMeterCurrReading + oid: 1.3.6.1.4.1.232.6.2.15.3 + type: gauge + help: This is the current Power Meter reading in Watts - 1.3.6.1.4.1.232.6.2.15.3 + - name: cpqHePowerMeterPrevReading + oid: 1.3.6.1.4.1.232.6.2.15.4 + type: gauge + help: This is the previous Power Meter reading in Watts - 1.3.6.1.4.1.232.6.2.15.4 + - name: cpqHeHWBiosCondition + oid: 1.3.6.1.4.1.232.6.2.16.1 + type: gauge + help: This value indicates an error has been detected during Pre-OS Test (POST) + or during initial hardware initialization - 1.3.6.1.4.1.232.6.2.16.1 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeSysBackupBatteryCondition + oid: 1.3.6.1.4.1.232.6.2.17.1 + type: gauge + help: This value specifies the overall condition of the battery backup sub-system. + - 1.3.6.1.4.1.232.6.2.17.1 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeSysBatteryChassis + oid: 1.3.6.1.4.1.232.6.2.17.2.1.1 + type: gauge + help: The system chassis number. - 1.3.6.1.4.1.232.6.2.17.2.1.1 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatteryIndex + oid: 1.3.6.1.4.1.232.6.2.17.2.1.2 + type: gauge + help: The battery index number within this chassis. - 1.3.6.1.4.1.232.6.2.17.2.1.2 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatteryPresent + oid: 1.3.6.1.4.1.232.6.2.17.2.1.3 + type: gauge + help: Indicates whether the backup battery is present in the chassis. - 1.3.6.1.4.1.232.6.2.17.2.1.3 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + enum_values: + 1: other + 2: absent + 3: present + - name: cpqHeSysBatteryCondition + oid: 1.3.6.1.4.1.232.6.2.17.2.1.4 + type: gauge + help: The condition of the backup battery - 1.3.6.1.4.1.232.6.2.17.2.1.4 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeSysBatteryStatus + oid: 1.3.6.1.4.1.232.6.2.17.2.1.5 + type: gauge + help: The status of the battery. - 1.3.6.1.4.1.232.6.2.17.2.1.5 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + enum_values: + 1: noError + 2: generalFailure + 3: shutdownHighResistance + 4: shutdownLowVoltage + 5: shutdownShortCircuit + 6: shutdownChargeTimeout + 7: shutdownOverTemperature + 8: shutdownDischargeMinVoltage + 9: shutdownDischargeCurrent + 10: shutdownLoadCountHigh + 11: shutdownEnablePin + 12: shutdownOverCurrent + 13: shutdownPermanentFailure + 14: shutdownBackupTimeExceeded + 15: predictiveFailure + - name: cpqHeSysBatteryCapacityMaximum + oid: 1.3.6.1.4.1.232.6.2.17.2.1.6 + type: gauge + help: The maximum capacity of the battery in watts. - 1.3.6.1.4.1.232.6.2.17.2.1.6 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatteryProductName + oid: 1.3.6.1.4.1.232.6.2.17.2.1.7 + type: DisplayString + help: The battery product name. - 1.3.6.1.4.1.232.6.2.17.2.1.7 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatteryModel + oid: 1.3.6.1.4.1.232.6.2.17.2.1.8 + type: DisplayString + help: The battery model name. - 1.3.6.1.4.1.232.6.2.17.2.1.8 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatterySerialNumber + oid: 1.3.6.1.4.1.232.6.2.17.2.1.9 + type: DisplayString + help: The battery serial number. - 1.3.6.1.4.1.232.6.2.17.2.1.9 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatteryFirmwareRev + oid: 1.3.6.1.4.1.232.6.2.17.2.1.10 + type: DisplayString + help: The battery firmware revision - 1.3.6.1.4.1.232.6.2.17.2.1.10 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeSysBatterySparePartNum + oid: 1.3.6.1.4.1.232.6.2.17.2.1.11 + type: DisplayString + help: The battery part number or spare part number. - 1.3.6.1.4.1.232.6.2.17.2.1.11 + indexes: + - labelname: cpqHeSysBatteryChassis + type: gauge + - labelname: cpqHeSysBatteryIndex + type: gauge + - name: cpqHeTemperatureChassis + oid: 1.3.6.1.4.1.232.6.2.6.8.1.1 + type: gauge + help: The System Chassis number. - 1.3.6.1.4.1.232.6.2.6.8.1.1 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + - name: cpqHeTemperatureIndex + oid: 1.3.6.1.4.1.232.6.2.6.8.1.2 + type: gauge + help: A number that uniquely specifies this temperature sensor description. + - 1.3.6.1.4.1.232.6.2.6.8.1.2 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + - name: cpqHeTemperatureLocale + oid: 1.3.6.1.4.1.232.6.2.6.8.1.3 + type: gauge + help: This specifies the location of the temperature sensor present in the system. + - 1.3.6.1.4.1.232.6.2.6.8.1.3 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: system + 4: systemBoard + 5: ioBoard + 6: cpu + 7: memory + 8: storage + 9: removableMedia + 10: powerSupply + 11: ambient + 12: chassis + 13: bridgeCard + - name: cpqHeTemperatureCelsius + oid: 1.3.6.1.4.1.232.6.2.6.8.1.4 + type: gauge + help: This is the current temperature sensor reading in degrees celsius - 1.3.6.1.4.1.232.6.2.6.8.1.4 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + - name: cpqHeTemperatureThreshold + oid: 1.3.6.1.4.1.232.6.2.6.8.1.5 + type: gauge + help: This is the shutdown threshold temperature sensor setting in degrees celsius + - 1.3.6.1.4.1.232.6.2.6.8.1.5 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + - name: cpqHeTemperatureCondition + oid: 1.3.6.1.4.1.232.6.2.6.8.1.6 + type: gauge + help: The Temperature sensor condition - 1.3.6.1.4.1.232.6.2.6.8.1.6 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeTemperatureThresholdType + oid: 1.3.6.1.4.1.232.6.2.6.8.1.7 + type: gauge + help: This specifies the type of this instance of temperature sensor - 1.3.6.1.4.1.232.6.2.6.8.1.7 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + enum_values: + 1: other + 5: blowout + 9: caution + 15: critical + 16: noreaction + - name: cpqHeTemperatureHwLocation + oid: 1.3.6.1.4.1.232.6.2.6.8.1.8 + type: DisplayString + help: A text description of the hardware location, on complex multi SBB hardware + only, for the temperature sensor - 1.3.6.1.4.1.232.6.2.6.8.1.8 + indexes: + - labelname: cpqHeTemperatureChassis + type: gauge + - labelname: cpqHeTemperatureIndex + type: gauge + - name: cpqHeFltTolPwrSupplyCondition + oid: 1.3.6.1.4.1.232.6.2.9.1 + type: gauge + help: This value specifies the overall condition of the fault tolerant power + supply sub-system. - 1.3.6.1.4.1.232.6.2.9.1 + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeFltTolPwrSupplyStatus + oid: 1.3.6.1.4.1.232.6.2.9.2 + type: gauge + help: This value specifies the status of the fault tolerant power supply. - + 1.3.6.1.4.1.232.6.2.9.2 + enum_values: + 1: other + 2: notSupported + 3: notInstalled + 4: installed + - name: cpqHeFltTolPowerSupplyChassis + oid: 1.3.6.1.4.1.232.6.2.9.3.1.1 + type: gauge + help: The system chassis number. - 1.3.6.1.4.1.232.6.2.9.3.1.1 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyBay + oid: 1.3.6.1.4.1.232.6.2.9.3.1.2 + type: gauge + help: The bay number to index within this chassis. - 1.3.6.1.4.1.232.6.2.9.3.1.2 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyPresent + oid: 1.3.6.1.4.1.232.6.2.9.3.1.3 + type: gauge + help: Indicates whether the power supply is present in the chassis. - 1.3.6.1.4.1.232.6.2.9.3.1.3 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: other + 2: absent + 3: present + - name: cpqHeFltTolPowerSupplyCondition + oid: 1.3.6.1.4.1.232.6.2.9.3.1.4 + type: gauge + help: The condition of the power supply - 1.3.6.1.4.1.232.6.2.9.3.1.4 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: other + 2: ok + 3: degraded + 4: failed + - name: cpqHeFltTolPowerSupplyStatus + oid: 1.3.6.1.4.1.232.6.2.9.3.1.5 + type: gauge + help: The status of the power supply. - 1.3.6.1.4.1.232.6.2.9.3.1.5 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: noError + 2: generalFailure + 3: bistFailure + 4: fanFailure + 5: tempFailure + 6: interlockOpen + 7: epromFailed + 8: vrefFailed + 9: dacFailed + 10: ramTestFailed + 11: voltageChannelFailed + 12: orringdiodeFailed + 13: brownOut + 14: giveupOnStartup + 15: nvramInvalid + 16: calibrationTableInvalid + 17: noPowerInput + - name: cpqHeFltTolPowerSupplyMainVoltage + oid: 1.3.6.1.4.1.232.6.2.9.3.1.6 + type: gauge + help: The input main voltage of the power supply in volts. - 1.3.6.1.4.1.232.6.2.9.3.1.6 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyCapacityUsed + oid: 1.3.6.1.4.1.232.6.2.9.3.1.7 + type: gauge + help: The currently used capacity of the power supply in watts. - 1.3.6.1.4.1.232.6.2.9.3.1.7 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyCapacityMaximum + oid: 1.3.6.1.4.1.232.6.2.9.3.1.8 + type: gauge + help: The maximum capacity of the power supply in watts. - 1.3.6.1.4.1.232.6.2.9.3.1.8 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyRedundant + oid: 1.3.6.1.4.1.232.6.2.9.3.1.9 + type: gauge + help: The redundancy state of the power supply - 1.3.6.1.4.1.232.6.2.9.3.1.9 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: other + 2: notRedundant + 3: redundant + - name: cpqHeFltTolPowerSupplyModel + oid: 1.3.6.1.4.1.232.6.2.9.3.1.10 + type: DisplayString + help: The power supply model name. - 1.3.6.1.4.1.232.6.2.9.3.1.10 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplySerialNumber + oid: 1.3.6.1.4.1.232.6.2.9.3.1.11 + type: DisplayString + help: The power supply serial number. - 1.3.6.1.4.1.232.6.2.9.3.1.11 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyAutoRev + oid: 1.3.6.1.4.1.232.6.2.9.3.1.12 + type: OctetString + help: The power supply auto revision number. - 1.3.6.1.4.1.232.6.2.9.3.1.12 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyHotPlug + oid: 1.3.6.1.4.1.232.6.2.9.3.1.13 + type: gauge + help: This indicates if the power supply is capable of being removed and/or + inserted while the system is in an operational state - 1.3.6.1.4.1.232.6.2.9.3.1.13 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: other + 2: nonHotPluggable + 3: hotPluggable + - name: cpqHeFltTolPowerSupplyFirmwareRev + oid: 1.3.6.1.4.1.232.6.2.9.3.1.14 + type: DisplayString + help: The power supply firmware revision - 1.3.6.1.4.1.232.6.2.9.3.1.14 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyHwLocation + oid: 1.3.6.1.4.1.232.6.2.9.3.1.15 + type: DisplayString + help: A text description of the hardware location, on complex multi SBB hardware + only, for the power supply - 1.3.6.1.4.1.232.6.2.9.3.1.15 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplySparePartNum + oid: 1.3.6.1.4.1.232.6.2.9.3.1.16 + type: DisplayString + help: The power supply part number or spare part number. - 1.3.6.1.4.1.232.6.2.9.3.1.16 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyRedundantPartner + oid: 1.3.6.1.4.1.232.6.2.9.3.1.17 + type: gauge + help: This specifies the index of the redundant partner - 1.3.6.1.4.1.232.6.2.9.3.1.17 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + - name: cpqHeFltTolPowerSupplyErrorCondition + oid: 1.3.6.1.4.1.232.6.2.9.3.1.18 + type: gauge + help: The Error condition of the power supply. - 1.3.6.1.4.1.232.6.2.9.3.1.18 + indexes: + - labelname: cpqHeFltTolPowerSupplyChassis + type: gauge + - labelname: cpqHeFltTolPowerSupplyBay + type: gauge + enum_values: + 1: noError + 2: generalFailure + 3: overvoltage + 4: overcurrent + 5: overtemperature + 6: powerinputloss + 7: fanfailure + 8: vinhighwarning + 9: vinlowwarning + 10: vouthighwarning + 11: voutlowwarning + 12: inlettemphighwarning + 13: iinternaltemphighwarning + 14: vauxhighwarning + 15: vauxlowwarning + 16: powersupplymismatch + 17: goodinstandby + - name: cpqSm2CntlrRomDate + oid: 1.3.6.1.4.1.232.9.2.2.1 + type: DisplayString + help: Remote Insight/ Integrated Lights-Out ROM Date - 1.3.6.1.4.1.232.9.2.2.1 + - name: cpqSm2CntlrRomRevision + oid: 1.3.6.1.4.1.232.9.2.2.2 + type: DisplayString + help: Remote Insight/ Integrated Lights-Out ROM Revision - 1.3.6.1.4.1.232.9.2.2.2 + - name: cpqSm2CntlrVideoStatus + oid: 1.3.6.1.4.1.232.9.2.2.3 + type: gauge + help: Remote Insight/ Integrated Lights-Out Video Hardware Status - 1.3.6.1.4.1.232.9.2.2.3 + enum_values: + 1: other + 2: enabled + 3: disabled + - name: cpqSm2CntlrBatteryEnabled + oid: 1.3.6.1.4.1.232.9.2.2.4 + type: gauge + help: Remote Insight Battery Enabled - 1.3.6.1.4.1.232.9.2.2.4 + enum_values: + 1: other + 2: enabled + 3: disabled + 4: noBattery + - name: cpqSm2CntlrBatteryStatus + oid: 1.3.6.1.4.1.232.9.2.2.5 + type: gauge + help: Remote Insight Battery Status - 1.3.6.1.4.1.232.9.2.2.5 + enum_values: + 1: other + 2: batteryOk + 3: batteryFailed + 4: batteryDisconnected + - name: cpqSm2CntlrBatteryPercentCharged + oid: 1.3.6.1.4.1.232.9.2.2.6 + type: gauge + help: Remote Insight Battery Percent Charged - 1.3.6.1.4.1.232.9.2.2.6 + - name: cpqSm2CntlrAlertStatus + oid: 1.3.6.1.4.1.232.9.2.2.7 + type: gauge + help: Remote Insight/ Integrated Lights-Out Alerting Status - 1.3.6.1.4.1.232.9.2.2.7 + enum_values: + 1: other + 2: enabled + 3: disabled + - name: cpqSm2CntlrPendingAlerts + oid: 1.3.6.1.4.1.232.9.2.2.8 + type: gauge + help: Pending Remote Insight/ Integrated Lights-Out alerts - 1.3.6.1.4.1.232.9.2.2.8 + enum_values: + 1: other + 2: noAlertsPending + 3: alertsPending + 4: clearPendingAlerts + - name: cpqSm2CntlrSelfTestErrors + oid: 1.3.6.1.4.1.232.9.2.2.9 + type: gauge + help: Remote Insight/ Integrated Lights-Out Self Test Errors - 1.3.6.1.4.1.232.9.2.2.9 + - name: cpqSm2CntlrAgentLocation + oid: 1.3.6.1.4.1.232.9.2.2.10 + type: gauge + help: Remote Insight/ Integrated Lights-Out Agent Location - 1.3.6.1.4.1.232.9.2.2.10 + enum_values: + 1: hostOsAgent + 2: firmwareAgent + 3: remoteInsightPciFirmwareAgent + 4: enclosureFirmwareAgent + - name: cpqSm2CntlrLastDataUpdate + oid: 1.3.6.1.4.1.232.9.2.2.11 + type: OctetString + help: The date and time that the Remote Insight/ Integrated Lights-Out offline + data was last updated - 1.3.6.1.4.1.232.9.2.2.11 + - name: cpqSm2CntlrDataStatus + oid: 1.3.6.1.4.1.232.9.2.2.12 + type: gauge + help: Remote Insight/ Integrated Lights-Out Host OS Data Status - 1.3.6.1.4.1.232.9.2.2.12 + enum_values: + 1: other + 2: noData + 3: onlineData + 4: offlineData + - name: cpqSm2CntlrColdReboot + oid: 1.3.6.1.4.1.232.9.2.2.13 + type: gauge + help: 'Remote Insight/ Integrated Lights-Out Server Cold Reboot The following + values are defined: notAvailable(1) Cold reboot of the system is not available + - 1.3.6.1.4.1.232.9.2.2.13' + enum_values: + 1: notAvailable + 2: available + 3: doColdReboot + - name: cpqSm2CntlrBadLoginAttemptsThresh + oid: 1.3.6.1.4.1.232.9.2.2.14 + type: gauge + help: Maximum Unauthorized Login Attempts Threshold - 1.3.6.1.4.1.232.9.2.2.14 + - name: cpqSm2CntlrBoardSerialNumber + oid: 1.3.6.1.4.1.232.9.2.2.15 + type: DisplayString + help: Remote Insight/ Integrated Lights-Out Serial Number - 1.3.6.1.4.1.232.9.2.2.15 + - name: cpqSm2CntlrRemoteSessionStatus + oid: 1.3.6.1.4.1.232.9.2.2.16 + type: gauge + help: Remote Insight/ Integrated Lights-Out Session Status - 1.3.6.1.4.1.232.9.2.2.16 + enum_values: + 1: other + 2: active + 3: inactive + - name: cpqSm2CntlrInterfaceStatus + oid: 1.3.6.1.4.1.232.9.2.2.17 + type: gauge + help: Remote Insight/ Integrated Lights-Out Interface Status - 1.3.6.1.4.1.232.9.2.2.17 + enum_values: + 1: other + 2: ok + 3: notResponding + - name: cpqSm2CntlrSystemId + oid: 1.3.6.1.4.1.232.9.2.2.18 + type: DisplayString + help: Remote Insight/ Integrated Lights-Out System ID - 1.3.6.1.4.1.232.9.2.2.18 + - name: cpqSm2CntlrKeyboardCableStatus + oid: 1.3.6.1.4.1.232.9.2.2.19 + type: gauge + help: Remote Insight Keyboard Cable Status - 1.3.6.1.4.1.232.9.2.2.19 + enum_values: + 1: other + 2: connected + 3: disconnected + - name: cpqSm2ServerIpAddress + oid: 1.3.6.1.4.1.232.9.2.2.20 + type: InetAddressIPv4 + help: The IP address for this servers connection to the Remote Insight/ Integrated + Lights-Out - 1.3.6.1.4.1.232.9.2.2.20 + - name: cpqSm2CntlrModel + oid: 1.3.6.1.4.1.232.9.2.2.21 + type: gauge + help: Remote Insight/ Integrated Lights-Out Model - 1.3.6.1.4.1.232.9.2.2.21 + enum_values: + 1: other + 2: eisaRemoteInsightBoard + 3: pciRemoteInsightBoard + 4: pciLightsOutRemoteInsightBoard + 5: pciIntegratedLightsOutRemoteInsight + 6: pciLightsOutRemoteInsightBoardII + 7: pciIntegratedLightsOutRemoteInsight2 + 8: pciLightsOut100series + 9: pciIntegratedLightsOutRemoteInsight3 + 10: pciIntegratedLightsOutRemoteInsight4 + 11: pciIntegratedLightsOutRemoteInsight5 + - name: cpqSm2CntlrSelfTestErrorMask + oid: 1.3.6.1.4.1.232.9.2.2.22 + type: gauge + help: Remote Insight/ Integrated Lights-Out Self Test Error Mask - 1.3.6.1.4.1.232.9.2.2.22 + - name: cpqSm2CntlrMouseCableStatus + oid: 1.3.6.1.4.1.232.9.2.2.23 + type: gauge + help: Remote Insight Mouse Cable Status - 1.3.6.1.4.1.232.9.2.2.23 + enum_values: + 1: other + 2: connected + 3: disconnected + - name: cpqSm2CntlrVirtualPowerCableStatus + oid: 1.3.6.1.4.1.232.9.2.2.24 + type: gauge + help: Remote Insight Virtual Power Cable Status - 1.3.6.1.4.1.232.9.2.2.24 + enum_values: + 1: other + 2: connected + 3: disconnected + 4: notApplicable + - name: cpqSm2CntlrExternalPowerCableStatus + oid: 1.3.6.1.4.1.232.9.2.2.25 + type: gauge + help: Remote Insight External Power Cable Status - 1.3.6.1.4.1.232.9.2.2.25 + enum_values: + 1: other + 2: externallyConnected + 3: disconnected + 4: internallyConnected + 5: externallyAndInternallyConnected + 6: notApplicable + - name: cpqSm2CntlrHostGUID + oid: 1.3.6.1.4.1.232.9.2.2.26 + type: OctetString + help: The globally unique identifier of this server - 1.3.6.1.4.1.232.9.2.2.26 + - name: cpqSm2CntlriLOSecurityOverrideSwitchState + oid: 1.3.6.1.4.1.232.9.2.2.27 + type: gauge + help: Integrated Lights-Out Security Override Switch State - 1.3.6.1.4.1.232.9.2.2.27 + enum_values: + 1: notSupported + 2: set + 3: notSet + - name: cpqSm2CntlrHardwareVer + oid: 1.3.6.1.4.1.232.9.2.2.28 + type: gauge + help: Hardware Version of Remote Insight/ Integrated Lights-Out. - 1.3.6.1.4.1.232.9.2.2.28 + - name: cpqSm2CntlrAction + oid: 1.3.6.1.4.1.232.9.2.2.29 + type: gauge + help: Remote Insight/ Integrated Lights-Out Action Flags - 1.3.6.1.4.1.232.9.2.2.29 + - name: cpqSm2CntlrLicenseActive + oid: 1.3.6.1.4.1.232.9.2.2.30 + type: gauge + help: Remote Insight License State - 1.3.6.1.4.1.232.9.2.2.30 + enum_values: + 1: none + 2: iloAdvanced + 3: iloLight + 4: iloAdvancedBlade + 5: iloStandard + 6: iloEssentials + 7: iloScaleOut + 8: iloAdvancedPremiumSecurity + - name: cpqSm2CntlrLicenseKey + oid: 1.3.6.1.4.1.232.9.2.2.31 + type: DisplayString + help: iLO Active ASCII License key string - 1.3.6.1.4.1.232.9.2.2.31 + - name: cpqSm2CntlrServerPowerState + oid: 1.3.6.1.4.1.232.9.2.2.32 + type: gauge + help: The current power state for the server - 1.3.6.1.4.1.232.9.2.2.32 + enum_values: + 1: unknown + 2: poweredOff + 3: poweredOn + 4: insufficientPowerOrPowerOnDenied + - name: cpqSm2CntlrSysAutoShutdownCause + oid: 1.3.6.1.4.1.232.9.2.2.33 + type: gauge + help: Indicate the reason for triggering system auto shutdown or cancelling + auto shutdown. - 1.3.6.1.4.1.232.9.2.2.33 + enum_values: + 1: fanFailure + 2: overheatCondition + 3: vrmFailure + 4: powerSupplyFailure + 5: systemRunningOnBatteryBackupUnit + 129: aborted + 130: fanFailureAborted + 131: overheatAborted + 132: vrmFailureAborted + 133: softPowerDown + 134: softwareAutomaticServerRecovery + 135: powerSupplyFailureAborted + - name: cpqSm2CntlrSecurityState + oid: 1.3.6.1.4.1.232.9.2.2.34 + type: gauge + help: Indicate security state - 1.3.6.1.4.1.232.9.2.2.34 + enum_values: + 1: factory + 2: wipe + 3: production + 4: highSecurity + 5: fips + 6: cnsa + - name: cpqSm2WDTimerType + oid: 1.3.6.1.4.1.232.9.2.2.35 + type: gauge + help: Indicate the watchdog timer type. - 1.3.6.1.4.1.232.9.2.2.35 + enum_values: + 1: unknown + 2: ipmi + - name: cpqSm2WDTimerTimeoutDetails + oid: 1.3.6.1.4.1.232.9.2.2.36 + type: DisplayString + help: Indicate the watchdog timer timeout action and timer details. - 1.3.6.1.4.1.232.9.2.2.36 + - name: cpqSm2CntlrOverallSecStatus + oid: 1.3.6.1.4.1.232.9.2.2.37 + type: gauge + help: The field indicates the overall security status. - 1.3.6.1.4.1.232.9.2.2.37 + enum_values: + 1: Ok + 2: Risk + 3: Ignored + hrDevice: + walk: + - 1.3.6.1.2.1.25.3 + metrics: + - name: hrDeviceIndex + oid: 1.3.6.1.2.1.25.3.2.1.1 + type: gauge + help: A unique value for each device contained by the host - 1.3.6.1.2.1.25.3.2.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrDeviceType + oid: 1.3.6.1.2.1.25.3.2.1.2 + type: OctetString + help: An indication of the type of device - 1.3.6.1.2.1.25.3.2.1.2 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrDeviceDescr + oid: 1.3.6.1.2.1.25.3.2.1.3 + type: DisplayString + help: A textual description of this device, including the device's manufacturer + and revision, and optionally, its serial number. - 1.3.6.1.2.1.25.3.2.1.3 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrDeviceID + oid: 1.3.6.1.2.1.25.3.2.1.4 + type: OctetString + help: The product ID for this device. - 1.3.6.1.2.1.25.3.2.1.4 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrDeviceStatus + oid: 1.3.6.1.2.1.25.3.2.1.5 + type: gauge + help: The current operational state of the device described by this row of the + table - 1.3.6.1.2.1.25.3.2.1.5 + indexes: + - labelname: hrDeviceIndex + type: gauge + enum_values: + 1: unknown + 2: running + 3: warning + 4: testing + 5: down + - name: hrDeviceErrors + oid: 1.3.6.1.2.1.25.3.2.1.6 + type: counter + help: The number of errors detected on this device - 1.3.6.1.2.1.25.3.2.1.6 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrProcessorFrwID + oid: 1.3.6.1.2.1.25.3.3.1.1 + type: OctetString + help: The product ID of the firmware associated with the processor. - 1.3.6.1.2.1.25.3.3.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrProcessorLoad + oid: 1.3.6.1.2.1.25.3.3.1.2 + type: gauge + help: The average, over the last minute, of the percentage of time that this + processor was not idle - 1.3.6.1.2.1.25.3.3.1.2 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrNetworkIfIndex + oid: 1.3.6.1.2.1.25.3.4.1.1 + type: gauge + help: The value of ifIndex which corresponds to this network device - 1.3.6.1.2.1.25.3.4.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrPrinterStatus + oid: 1.3.6.1.2.1.25.3.5.1.1 + type: EnumAsStateSet + help: The current status of this printer device. - 1.3.6.1.2.1.25.3.5.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: idle + 4: printing + 5: warmup + - name: hrPrinterDetectedErrorState + oid: 1.3.6.1.2.1.25.3.5.1.2 + type: OctetString + help: This object represents any error conditions detected by the printer - + 1.3.6.1.2.1.25.3.5.1.2 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrDiskStorageAccess + oid: 1.3.6.1.2.1.25.3.6.1.1 + type: gauge + help: An indication if this long-term storage device is readable and writable + or only readable - 1.3.6.1.2.1.25.3.6.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + enum_values: + 1: readWrite + 2: readOnly + - name: hrDiskStorageMedia + oid: 1.3.6.1.2.1.25.3.6.1.2 + type: gauge + help: An indication of the type of media used in this long- term storage device. + - 1.3.6.1.2.1.25.3.6.1.2 + indexes: + - labelname: hrDeviceIndex + type: gauge + enum_values: + 1: other + 2: unknown + 3: hardDisk + 4: floppyDisk + 5: opticalDiskROM + 6: opticalDiskWORM + 7: opticalDiskRW + 8: ramDisk + - name: hrDiskStorageRemoveble + oid: 1.3.6.1.2.1.25.3.6.1.3 + type: gauge + help: Denotes whether or not the disk media may be removed from the drive. - + 1.3.6.1.2.1.25.3.6.1.3 + indexes: + - labelname: hrDeviceIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: hrDiskStorageCapacity + oid: 1.3.6.1.2.1.25.3.6.1.4 + type: gauge + help: The total size for this long-term storage device - 1.3.6.1.2.1.25.3.6.1.4 + indexes: + - labelname: hrDeviceIndex + type: gauge + - name: hrPartitionIndex + oid: 1.3.6.1.2.1.25.3.7.1.1 + type: gauge + help: A unique value for each partition on this long-term storage device - 1.3.6.1.2.1.25.3.7.1.1 + indexes: + - labelname: hrDeviceIndex + type: gauge + - labelname: hrPartitionIndex + type: gauge + - name: hrPartitionLabel + oid: 1.3.6.1.2.1.25.3.7.1.2 + type: OctetString + help: A textual description of this partition. - 1.3.6.1.2.1.25.3.7.1.2 + indexes: + - labelname: hrDeviceIndex + type: gauge + - labelname: hrPartitionIndex + type: gauge + - name: hrPartitionID + oid: 1.3.6.1.2.1.25.3.7.1.3 + type: OctetString + help: A descriptor which uniquely represents this partition to the responsible + operating system - 1.3.6.1.2.1.25.3.7.1.3 + indexes: + - labelname: hrDeviceIndex + type: gauge + - labelname: hrPartitionIndex + type: gauge + - name: hrPartitionSize + oid: 1.3.6.1.2.1.25.3.7.1.4 + type: gauge + help: The size of this partition. - 1.3.6.1.2.1.25.3.7.1.4 + indexes: + - labelname: hrDeviceIndex + type: gauge + - labelname: hrPartitionIndex + type: gauge + - name: hrPartitionFSIndex + oid: 1.3.6.1.2.1.25.3.7.1.5 + type: gauge + help: The index of the file system mounted on this partition - 1.3.6.1.2.1.25.3.7.1.5 + indexes: + - labelname: hrDeviceIndex + type: gauge + - labelname: hrPartitionIndex + type: gauge + - name: hrFSIndex + oid: 1.3.6.1.2.1.25.3.8.1.1 + type: gauge + help: A unique value for each file system local to this host - 1.3.6.1.2.1.25.3.8.1.1 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSMountPoint + oid: 1.3.6.1.2.1.25.3.8.1.2 + type: OctetString + help: The path name of the root of this file system. - 1.3.6.1.2.1.25.3.8.1.2 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSRemoteMountPoint + oid: 1.3.6.1.2.1.25.3.8.1.3 + type: OctetString + help: A description of the name and/or address of the server that this file + system is mounted from - 1.3.6.1.2.1.25.3.8.1.3 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSType + oid: 1.3.6.1.2.1.25.3.8.1.4 + type: OctetString + help: The value of this object identifies the type of this file system. - 1.3.6.1.2.1.25.3.8.1.4 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSAccess + oid: 1.3.6.1.2.1.25.3.8.1.5 + type: gauge + help: An indication if this file system is logically configured by the operating + system to be readable and writable or only readable - 1.3.6.1.2.1.25.3.8.1.5 + indexes: + - labelname: hrFSIndex + type: gauge + enum_values: + 1: readWrite + 2: readOnly + - name: hrFSBootable + oid: 1.3.6.1.2.1.25.3.8.1.6 + type: gauge + help: A flag indicating whether this file system is bootable. - 1.3.6.1.2.1.25.3.8.1.6 + indexes: + - labelname: hrFSIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: hrFSStorageIndex + oid: 1.3.6.1.2.1.25.3.8.1.7 + type: gauge + help: The index of the hrStorageEntry that represents information about this + file system - 1.3.6.1.2.1.25.3.8.1.7 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSLastFullBackupDate + oid: 1.3.6.1.2.1.25.3.8.1.8 + type: DateAndTime + help: The last date at which this complete file system was copied to another + storage device for backup - 1.3.6.1.2.1.25.3.8.1.8 + indexes: + - labelname: hrFSIndex + type: gauge + - name: hrFSLastPartialBackupDate + oid: 1.3.6.1.2.1.25.3.8.1.9 + type: DateAndTime + help: The last date at which a portion of this file system was copied to another + storage device for backup - 1.3.6.1.2.1.25.3.8.1.9 + indexes: + - labelname: hrFSIndex + type: gauge + hrSWInstalled: + walk: + - 1.3.6.1.2.1.25.6 + metrics: + - name: hrSWInstalledLastChange + oid: 1.3.6.1.2.1.25.6.1 + type: gauge + help: The value of sysUpTime when an entry in the hrSWInstalledTable was last + added, renamed, or deleted - 1.3.6.1.2.1.25.6.1 + - name: hrSWInstalledLastUpdateTime + oid: 1.3.6.1.2.1.25.6.2 + type: gauge + help: The value of sysUpTime when the hrSWInstalledTable was last completely + updated - 1.3.6.1.2.1.25.6.2 + - name: hrSWInstalledIndex + oid: 1.3.6.1.2.1.25.6.3.1.1 + type: gauge + help: A unique value for each piece of software installed on the host - 1.3.6.1.2.1.25.6.3.1.1 + indexes: + - labelname: hrSWInstalledIndex + type: gauge + - name: hrSWInstalledName + oid: 1.3.6.1.2.1.25.6.3.1.2 + type: OctetString + help: A textual description of this installed piece of software, including the + manufacturer, revision, the name by which it is commonly known, and optionally, + its serial number. - 1.3.6.1.2.1.25.6.3.1.2 + indexes: + - labelname: hrSWInstalledIndex + type: gauge + - name: hrSWInstalledID + oid: 1.3.6.1.2.1.25.6.3.1.3 + type: OctetString + help: The product ID of this installed piece of software. - 1.3.6.1.2.1.25.6.3.1.3 + indexes: + - labelname: hrSWInstalledIndex + type: gauge + - name: hrSWInstalledType + oid: 1.3.6.1.2.1.25.6.3.1.4 + type: gauge + help: The type of this software. - 1.3.6.1.2.1.25.6.3.1.4 + indexes: + - labelname: hrSWInstalledIndex + type: gauge + enum_values: + 1: unknown + 2: operatingSystem + 3: deviceDriver + 4: application + - name: hrSWInstalledDate + oid: 1.3.6.1.2.1.25.6.3.1.5 + type: DateAndTime + help: The last-modification date of this application as it would appear in a + directory listing - 1.3.6.1.2.1.25.6.3.1.5 + indexes: + - labelname: hrSWInstalledIndex + type: gauge + hrSWRun: + walk: + - 1.3.6.1.2.1.25.4 + metrics: + - name: hrSWOSIndex + oid: 1.3.6.1.2.1.25.4.1 + type: gauge + help: The value of the hrSWRunIndex for the hrSWRunEntry that represents the + primary operating system running on this host - 1.3.6.1.2.1.25.4.1 + - name: hrSWRunIndex + oid: 1.3.6.1.2.1.25.4.2.1.1 + type: gauge + help: A unique value for each piece of software running on the host - 1.3.6.1.2.1.25.4.2.1.1 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunName + oid: 1.3.6.1.2.1.25.4.2.1.2 + type: OctetString + help: A textual description of this running piece of software, including the + manufacturer, revision, and the name by which it is commonly known - 1.3.6.1.2.1.25.4.2.1.2 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunID + oid: 1.3.6.1.2.1.25.4.2.1.3 + type: OctetString + help: The product ID of this running piece of software. - 1.3.6.1.2.1.25.4.2.1.3 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunPath + oid: 1.3.6.1.2.1.25.4.2.1.4 + type: OctetString + help: A description of the location on long-term storage (e.g - 1.3.6.1.2.1.25.4.2.1.4 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunParameters + oid: 1.3.6.1.2.1.25.4.2.1.5 + type: OctetString + help: A description of the parameters supplied to this software when it was + initially loaded. - 1.3.6.1.2.1.25.4.2.1.5 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunType + oid: 1.3.6.1.2.1.25.4.2.1.6 + type: gauge + help: The type of this software. - 1.3.6.1.2.1.25.4.2.1.6 + indexes: + - labelname: hrSWRunIndex + type: gauge + enum_values: + 1: unknown + 2: operatingSystem + 3: deviceDriver + 4: application + - name: hrSWRunStatus + oid: 1.3.6.1.2.1.25.4.2.1.7 + type: gauge + help: The status of this running piece of software - 1.3.6.1.2.1.25.4.2.1.7 + indexes: + - labelname: hrSWRunIndex + type: gauge + enum_values: + 1: running + 2: runnable + 3: notRunnable + 4: invalid + hrSWRunPerf: + walk: + - 1.3.6.1.2.1.25.5 + metrics: + - name: hrSWRunPerfCPU + oid: 1.3.6.1.2.1.25.5.1.1.1 + type: gauge + help: The number of centi-seconds of the total system's CPU resources consumed + by this process - 1.3.6.1.2.1.25.5.1.1.1 + indexes: + - labelname: hrSWRunIndex + type: gauge + - name: hrSWRunPerfMem + oid: 1.3.6.1.2.1.25.5.1.1.2 + type: gauge + help: The total amount of real system memory allocated to this process. - 1.3.6.1.2.1.25.5.1.1.2 + indexes: + - labelname: hrSWRunIndex + type: gauge + hrStorage: + walk: + - 1.3.6.1.2.1.25.2 + metrics: + - name: hrMemorySize + oid: 1.3.6.1.2.1.25.2.2 + type: gauge + help: The amount of physical read-write main memory, typically RAM, contained + by the host. - 1.3.6.1.2.1.25.2.2 + - name: hrStorageIndex + oid: 1.3.6.1.2.1.25.2.3.1.1 + 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: hrStorageIndex + type: gauge + lookups: + - labels: + - hrStorageIndex + labelname: hrStorageDescr + oid: 1.3.6.1.2.1.25.2.3.1.3 + type: DisplayString + - labels: [] + labelname: hrStorageIndex + - name: hrStorageType + oid: 1.3.6.1.2.1.25.2.3.1.2 + type: OctetString + help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 + indexes: + - labelname: hrStorageIndex + type: gauge + lookups: + - labels: + - 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: hrStorageIndex + type: gauge + lookups: + - labels: + - 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: hrStorageIndex + type: gauge + lookups: + - labels: + - 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: hrStorageIndex + type: gauge + lookups: + - labels: + - 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: hrStorageIndex + type: gauge + lookups: + - labels: + - 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: hrStorageIndex + type: gauge + lookups: + - labels: + - hrStorageIndex + labelname: hrStorageDescr + oid: 1.3.6.1.2.1.25.2.3.1.3 + type: DisplayString + - labels: [] + labelname: hrStorageIndex + hrSystem: + walk: + - 1.3.6.1.2.1.25.1 + metrics: + - name: hrSystemUptime + oid: 1.3.6.1.2.1.25.1.1 + type: gauge + help: The amount of time since this host was last initialized - 1.3.6.1.2.1.25.1.1 + - name: hrSystemDate + oid: 1.3.6.1.2.1.25.1.2 + type: DateAndTime + help: The host's notion of the local date and time of day. - 1.3.6.1.2.1.25.1.2 + - name: hrSystemInitialLoadDevice + oid: 1.3.6.1.2.1.25.1.3 + type: gauge + help: The index of the hrDeviceEntry for the device from which this host is + configured to load its initial operating system configuration (i.e., which + operating system code and/or boot parameters) - 1.3.6.1.2.1.25.1.3 + - name: hrSystemInitialLoadParameters + oid: 1.3.6.1.2.1.25.1.4 + type: OctetString + help: This object contains the parameters (e.g - 1.3.6.1.2.1.25.1.4 + - name: hrSystemNumUsers + oid: 1.3.6.1.2.1.25.1.5 + type: gauge + help: The number of user sessions for which this host is storing state information + - 1.3.6.1.2.1.25.1.5 + - name: hrSystemProcesses + oid: 1.3.6.1.2.1.25.1.6 + type: gauge + help: The number of process contexts currently loaded or running on this system. + - 1.3.6.1.2.1.25.1.6 + - name: hrSystemMaxProcesses + oid: 1.3.6.1.2.1.25.1.7 + type: gauge + help: The maximum number of process contexts this system can support - 1.3.6.1.2.1.25.1.7 + if_mib: + walk: + - 1.3.6.1.2.1.2 + - 1.3.6.1.2.1.31.1.1 + metrics: + - name: ifNumber + oid: 1.3.6.1.2.1.2.1 + type: gauge + help: The number of network interfaces (regardless of their current state) present + on this system. - 1.3.6.1.2.1.2.1 + - name: ifIndex + oid: 1.3.6.1.2.1.2.2.1.1 + type: gauge + help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifType + oid: 1.3.6.1.2.1.2.2.1.3 + type: EnumAsInfo + help: The type of interface - 1.3.6.1.2.1.2.2.1.3 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + enum_values: + 1: other + 2: regular1822 + 3: hdh1822 + 4: ddnX25 + 5: rfc877x25 + 6: ethernetCsmacd + 7: iso88023Csmacd + 8: iso88024TokenBus + 9: iso88025TokenRing + 10: iso88026Man + 11: starLan + 12: proteon10Mbit + 13: proteon80Mbit + 14: hyperchannel + 15: fddi + 16: lapb + 17: sdlc + 18: ds1 + 19: e1 + 20: basicISDN + 21: primaryISDN + 22: propPointToPointSerial + 23: ppp + 24: softwareLoopback + 25: eon + 26: ethernet3Mbit + 27: nsip + 28: slip + 29: ultra + 30: ds3 + 31: sip + 32: frameRelay + 33: rs232 + 34: para + 35: arcnet + 36: arcnetPlus + 37: atm + 38: miox25 + 39: sonet + 40: x25ple + 41: iso88022llc + 42: localTalk + 43: smdsDxi + 44: frameRelayService + 45: v35 + 46: hssi + 47: hippi + 48: modem + 49: aal5 + 50: sonetPath + 51: sonetVT + 52: smdsIcip + 53: propVirtual + 54: propMultiplexor + 55: ieee80212 + 56: fibreChannel + 57: hippiInterface + 58: frameRelayInterconnect + 59: aflane8023 + 60: aflane8025 + 61: cctEmul + 62: fastEther + 63: isdn + 64: v11 + 65: v36 + 66: g703at64k + 67: g703at2mb + 68: qllc + 69: fastEtherFX + 70: channel + 71: ieee80211 + 72: ibm370parChan + 73: escon + 74: dlsw + 75: isdns + 76: isdnu + 77: lapd + 78: ipSwitch + 79: rsrb + 80: atmLogical + 81: ds0 + 82: ds0Bundle + 83: bsc + 84: async + 85: cnr + 86: iso88025Dtr + 87: eplrs + 88: arap + 89: propCnls + 90: hostPad + 91: termPad + 92: frameRelayMPI + 93: x213 + 94: adsl + 95: radsl + 96: sdsl + 97: vdsl + 98: iso88025CRFPInt + 99: myrinet + 100: voiceEM + 101: voiceFXO + 102: voiceFXS + 103: voiceEncap + 104: voiceOverIp + 105: atmDxi + 106: atmFuni + 107: atmIma + 108: pppMultilinkBundle + 109: ipOverCdlc + 110: ipOverClaw + 111: stackToStack + 112: virtualIpAddress + 113: mpc + 114: ipOverAtm + 115: iso88025Fiber + 116: tdlc + 117: gigabitEthernet + 118: hdlc + 119: lapf + 120: v37 + 121: x25mlp + 122: x25huntGroup + 123: transpHdlc + 124: interleave + 125: fast + 126: ip + 127: docsCableMaclayer + 128: docsCableDownstream + 129: docsCableUpstream + 130: a12MppSwitch + 131: tunnel + 132: coffee + 133: ces + 134: atmSubInterface + 135: l2vlan + 136: l3ipvlan + 137: l3ipxvlan + 138: digitalPowerline + 139: mediaMailOverIp + 140: dtm + 141: dcn + 142: ipForward + 143: msdsl + 144: ieee1394 + 145: if-gsn + 146: dvbRccMacLayer + 147: dvbRccDownstream + 148: dvbRccUpstream + 149: atmVirtual + 150: mplsTunnel + 151: srp + 152: voiceOverAtm + 153: voiceOverFrameRelay + 154: idsl + 155: compositeLink + 156: ss7SigLink + 157: propWirelessP2P + 158: frForward + 159: rfc1483 + 160: usb + 161: ieee8023adLag + 162: bgppolicyaccounting + 163: frf16MfrBundle + 164: h323Gatekeeper + 165: h323Proxy + 166: mpls + 167: mfSigLink + 168: hdsl2 + 169: shdsl + 170: ds1FDL + 171: pos + 172: dvbAsiIn + 173: dvbAsiOut + 174: plc + 175: nfas + 176: tr008 + 177: gr303RDT + 178: gr303IDT + 179: isup + 180: propDocsWirelessMaclayer + 181: propDocsWirelessDownstream + 182: propDocsWirelessUpstream + 183: hiperlan2 + 184: propBWAp2Mp + 185: sonetOverheadChannel + 186: digitalWrapperOverheadChannel + 187: aal2 + 188: radioMAC + 189: atmRadio + 190: imt + 191: mvl + 192: reachDSL + 193: frDlciEndPt + 194: atmVciEndPt + 195: opticalChannel + 196: opticalTransport + 197: propAtm + 198: voiceOverCable + 199: infiniband + 200: teLink + 201: q2931 + 202: virtualTg + 203: sipTg + 204: sipSig + 205: docsCableUpstreamChannel + 206: econet + 207: pon155 + 208: pon622 + 209: bridge + 210: linegroup + 211: voiceEMFGD + 212: voiceFGDEANA + 213: voiceDID + 214: mpegTransport + 215: sixToFour + 216: gtp + 217: pdnEtherLoop1 + 218: pdnEtherLoop2 + 219: opticalChannelGroup + 220: homepna + 221: gfp + 222: ciscoISLvlan + 223: actelisMetaLOOP + 224: fcipLink + 225: rpr + 226: qam + 227: lmp + 228: cblVectaStar + 229: docsCableMCmtsDownstream + 230: adsl2 + 231: macSecControlledIF + 232: macSecUncontrolledIF + 233: aviciOpticalEther + 234: atmbond + 235: voiceFGDOS + 236: mocaVersion1 + 237: ieee80216WMAN + 238: adsl2plus + 239: dvbRcsMacLayer + 240: dvbTdm + 241: dvbRcsTdma + 242: x86Laps + 243: wwanPP + 244: wwanPP2 + 245: voiceEBS + 246: ifPwType + 247: ilan + 248: pip + 249: aluELP + 250: gpon + 251: vdsl2 + 252: capwapDot11Profile + 253: capwapDot11Bss + 254: capwapWtpVirtualRadio + 255: bits + 256: docsCableUpstreamRfPort + 257: cableDownstreamRfPort + 258: vmwareVirtualNic + 259: ieee802154 + 260: otnOdu + 261: otnOtu + 262: ifVfiType + 263: g9981 + 264: g9982 + 265: g9983 + 266: aluEpon + 267: aluEponOnu + 268: aluEponPhysicalUni + 269: aluEponLogicalLink + 270: aluGponOnu + 271: aluGponPhysicalUni + 272: vmwareNicTeam + 277: docsOfdmDownstream + 278: docsOfdmaUpstream + 279: gfast + 280: sdci + 281: xboxWireless + 282: fastdsl + 283: docsCableScte55d1FwdOob + 284: docsCableScte55d1RetOob + 285: docsCableScte55d2DsOob + 286: docsCableScte55d2UsOob + 287: docsCableNdf + 288: docsCableNdr + 289: ptm + 290: ghn + 291: otnOtsi + 292: otnOtuc + 293: otnOduc + 294: otnOtsig + 295: microwaveCarrierTermination + 296: microwaveRadioLinkTerminal + 297: ieee8021axDrni + 298: ax25 + 299: ieee19061nanocom + 300: cpri + 301: omni + 302: roe + 303: p2pOverLan + - name: ifMtu + oid: 1.3.6.1.2.1.2.2.1.4 + type: gauge + help: The size of the largest packet which can be sent/received on the interface, + specified in octets - 1.3.6.1.2.1.2.2.1.4 indexes: - labelname: ifIndex type: gauge - - labelname: vrrpOperVrId - type: gauge - - name: vrrpStatsAuthTypeMismatch - oid: 1.3.6.1.2.1.68.2.4.1.11 - type: counter - help: The total number of packets received with 'Auth Type' not equal to the - locally configured authentication method (`vrrpOperAuthType'). - 1.3.6.1.2.1.68.2.4.1.11 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifSpeed + oid: 1.3.6.1.2.1.2.2.1.5 + type: gauge + help: An estimate of the interface's current bandwidth in bits per second - + 1.3.6.1.2.1.2.2.1.5 indexes: - labelname: ifIndex type: gauge - - labelname: vrrpOperVrId - type: gauge - - name: vrrpStatsPacketLengthErrors - oid: 1.3.6.1.2.1.68.2.4.1.12 - type: counter - help: The total number of packets received with a packet length less than the - length of the VRRP header. - 1.3.6.1.2.1.68.2.4.1.12 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifPhysAddress + oid: 1.3.6.1.2.1.2.2.1.6 + type: PhysAddress48 + help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 indexes: - labelname: ifIndex type: gauge - - labelname: vrrpOperVrId - type: gauge - - name: vrrpSyncGroupIndex - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.1 - type: gauge - help: Index of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.1 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - - name: vrrpSyncGroupName - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.2 - type: DisplayString - help: Name of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.2 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - - name: vrrpSyncGroupState - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.3 - type: gauge - help: Current state of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.3 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - enum_values: - 0: init - 1: backup - 2: master - 3: fault - 4: unknown - 5: shutdown - 6: deleted - - name: vrrpSyncGroupSmtpAlert - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.4 - type: gauge - help: Will SMTP alert be sent for this synchronisation group? - 1.3.6.1.4.1.9586.100.5.2.1.1.4 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - enum_values: - 1: enabled - 2: disabled - - name: vrrpSyncGroupNotifyExec - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.5 - type: gauge - help: Will we execute notification script for this group? - 1.3.6.1.4.1.9586.100.5.2.1.1.5 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - enum_values: - 1: enabled - 2: disabled - - name: vrrpSyncGroupTrackingWeight - oid: 1.3.6.1.4.1.9586.100.5.2.1.1.10 - type: gauge - help: Allow differing tracking weights for sync group members - 1.3.6.1.4.1.9586.100.5.2.1.1.10 - indexes: - - labelname: vrrpSyncGroupIndex - type: gauge - enum_values: - 1: enabled - 2: disabled - - name: vrrpInstanceIndex - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.1 - type: gauge - help: Index of the VRRP instance - 1.3.6.1.4.1.9586.100.5.2.3.1.1 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceName - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.2 - type: DisplayString - help: Name of the VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.2 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceVirtualRouterId - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.3 - type: gauge - help: Virtual Router ID (VRID) for this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.3 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceState - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.4 - type: gauge - help: Current state of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.4 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - enum_values: - 0: init - 1: backup - 2: master - 3: fault - 4: unknown - 5: shutdown - 6: deleted - - name: vrrpInstanceInitialState - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.5 - type: gauge - help: Initial state of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.5 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - enum_values: - 0: init - 1: backup - 2: master - 3: fault - 4: unknown - 5: shutdown - 6: deleted - - name: vrrpInstanceWantedState - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.6 - type: gauge - help: State wanted by the operator for this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.6 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - enum_values: - 0: init - 1: backup - 2: master - 3: fault - 4: unknown - 5: shutdown - 6: deleted - - name: vrrpInstanceBasePriority - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.7 - type: gauge - help: Base priority (as defined in the configuration file) for this VRRP instance - - 1.3.6.1.4.1.9586.100.5.2.3.1.7 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceEffectivePriority - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.8 - type: gauge - help: Effective priority for this VRRP instance - 1.3.6.1.4.1.9586.100.5.2.3.1.8 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceVipsStatus - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.9 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifAdminStatus + oid: 1.3.6.1.2.1.2.2.1.7 type: gauge - help: Are all VIP of this VRRP instance enabled? - 1.3.6.1.4.1.9586.100.5.2.3.1.9 + help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString enum_values: - 1: allSet - 2: notAllSet - - name: vrrpInstancePrimaryInterface - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.10 - type: DisplayString - help: Primary interface of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.10 - indexes: - - labelname: vrrpInstanceIndex - type: gauge - - name: vrrpInstanceTrackPrimaryIf - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.11 + 1: up + 2: down + 3: testing + - name: ifOperStatus + oid: 1.3.6.1.2.1.2.2.1.8 type: gauge - help: Do we track the status of the primary interface? - 1.3.6.1.4.1.9586.100.5.2.3.1.11 + help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString enum_values: - 1: tracked - 2: notTracked - - name: vrrpInstanceAdvertisementsInt - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.12 + 1: up + 2: down + 3: testing + 4: unknown + 5: dormant + 6: notPresent + 7: lowerLayerDown + - name: ifLastChange + oid: 1.3.6.1.2.1.2.2.1.9 type: gauge - help: Delay in seconds between two VRRP advertisements and it is in centiseconds - between two VRRPV3 advertisements - 1.3.6.1.4.1.9586.100.5.2.3.1.12 + 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: vrrpInstancePreempt - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.13 - type: gauge - help: Will a higher priority advertisement preempt a lower instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.13 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: preempt - 2: noPreempt - - name: vrrpInstancePreemptDelay - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.14 - type: gauge - help: Delay after startup or lower priority advert received until preemption - can happen - 1.3.6.1.4.1.9586.100.5.2.3.1.14 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifInUcastPkts + oid: 1.3.6.1.2.1.2.2.1.11 + type: counter + help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, + which were not addressed to a multicast or broadcast address at this sub-layer + - 1.3.6.1.2.1.2.2.1.11 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: vrrpInstanceAuthType - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.15 - type: gauge - help: VRRPv2 supports authentication method to authenticate other peers - 1.3.6.1.4.1.9586.100.5.2.3.1.15 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifInNUcastPkts + oid: 1.3.6.1.2.1.2.2.1.12 + type: counter + help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, + which were addressed to a multicast or broadcast address at this sub-layer + - 1.3.6.1.2.1.2.2.1.12 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 0: none - 1: password - 2: ah - - name: vrrpInstanceSyncGroup - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.18 - type: DisplayString - help: Name of the synchronisation group this VRRP instance belongs, if any. - - 1.3.6.1.4.1.9586.100.5.2.3.1.18 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifInDiscards + oid: 1.3.6.1.2.1.2.2.1.13 + type: counter + help: The number of inbound packets which were chosen to be discarded even though + no errors had been detected to prevent their being deliverable to a higher-layer + protocol - 1.3.6.1.2.1.2.2.1.13 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: vrrpInstanceGarpDelay - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.19 - type: gauge - help: Delay to launch gratuitous ARP (GARP). - 1.3.6.1.4.1.9586.100.5.2.3.1.19 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: vrrpInstanceSmtpAlert - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.20 - type: gauge - help: Will SMTP alert be sent for this VRRP instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.20 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: enabled - 2: disabled - - name: vrrpInstanceNotifyExec - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.21 - type: gauge - help: Will we execute notification script for this instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.21 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutOctets + oid: 1.3.6.1.2.1.2.2.1.16 + type: counter + help: The total number of octets transmitted out of the interface, including + framing characters - 1.3.6.1.2.1.2.2.1.16 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutUcastPkts + oid: 1.3.6.1.2.1.2.2.1.17 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were not addressed to a multicast or broadcast address at this sub-layer, + including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: enabled - 2: disabled - - name: vrrpInstanceAccept - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.27 - type: gauge - help: Accept allow the non-master owner to process the packets destined to VIP - and it is supported for only VRRPv3. - 1.3.6.1.4.1.9586.100.5.2.3.1.27 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutNUcastPkts + oid: 1.3.6.1.2.1.2.2.1.18 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were addressed to a multicast or broadcast address at this sub-layer, + including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: vrrpInstancePromoteSecondaries - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.28 - type: gauge - help: Set promote_secondaries on interface. - 1.3.6.1.4.1.9586.100.5.2.3.1.28 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: vrrpInstanceUseLinkbeat - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.29 - type: gauge - help: Use linkbeat for interface status. - 1.3.6.1.4.1.9586.100.5.2.3.1.29 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: vrrpInstanceVrrpVersion - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.30 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutQLen + oid: 1.3.6.1.2.1.2.2.1.21 type: gauge - help: VRRP protocol version. - 1.3.6.1.4.1.9586.100.5.2.3.1.30 + help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 2: vrrpv2 - 3: vrrpv3 - - name: vrrpInstanceScriptDeleted - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.32 - type: DisplayString - help: Script to execute when the instance is deleted on reload. - 1.3.6.1.4.1.9586.100.5.2.3.1.32 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifSpecific + oid: 1.3.6.1.2.1.2.2.1.22 + type: OctetString + help: A reference to MIB definitions specific to the particular media being + used to realize the interface - 1.3.6.1.2.1.2.2.1.22 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: vrrpInstanceNotifyDeleted - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.33 - type: gauge - help: Send Deleted rather than Fault notifications if instance is deleted on - config reload. - 1.3.6.1.4.1.9586.100.5.2.3.1.33 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: vrrpInstanceMulticastAddressType - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.34 - type: gauge - help: A value that represents a type of Internet address. - 1.3.6.1.4.1.9586.100.5.2.3.1.34 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: vrrpInstanceIndex + - labelname: ifIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vrrpInstanceMulticastAddress - oid: 1.3.6.1.4.1.9586.100.5.2.3.1.35 - type: InetAddress - help: Multicast address for adverts - 1.3.6.1.4.1.9586.100.5.2.3.1.35 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutMulticastPkts + oid: 1.3.6.1.2.1.31.1.1.1.4 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were addressed to a multicast address at this sub-layer, including + those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 indexes: - - labelname: vrrpInstanceIndex + - labelname: ifIndex type: gauge - - name: virtualServerGroupIndex - oid: 1.3.6.1.4.1.9586.100.5.3.1.1.1 - type: gauge - help: Index of the virtual server group. - 1.3.6.1.4.1.9586.100.5.3.1.1.1 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifOutBroadcastPkts + oid: 1.3.6.1.2.1.31.1.1.1.5 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were addressed to a broadcast address at this sub-layer, including + those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 indexes: - - labelname: virtualServerGroupIndex + - labelname: ifIndex type: gauge - - name: virtualServerGroupName - oid: 1.3.6.1.4.1.9586.100.5.3.1.1.2 - type: DisplayString - help: Name of the virtual server group. - 1.3.6.1.4.1.9586.100.5.3.1.1.2 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: virtualServerGroupIndex + - labelname: ifIndex type: gauge - - name: virtualServerIndex - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.1 - type: gauge - help: Index of the virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.1 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifHCInUcastPkts + oid: 1.3.6.1.2.1.31.1.1.1.7 + type: counter + help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, + which were not addressed to a multicast or broadcast address at this sub-layer + - 1.3.6.1.2.1.31.1.1.1.7 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerType - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.2 - type: gauge - help: Type of virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.2 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: fwmark - 2: ip - 3: group - - name: virtualServerNameOfGroup - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.3 - type: DisplayString - help: If the virtual is defined from a group, this is the name of the group. - - 1.3.6.1.4.1.9586.100.5.3.3.1.3 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerFwMark - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.4 - type: gauge - help: If the virtual server is defined from a firewall mark, this is the value - of the mark - 1.3.6.1.4.1.9586.100.5.3.3.1.4 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - 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: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerAddrType - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.5 - type: gauge - help: If the virtual server is defined from an IP, this is the address family - - 1.3.6.1.4.1.9586.100.5.3.3.1.5 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifHCOutUcastPkts + oid: 1.3.6.1.2.1.31.1.1.1.11 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were not addressed to a multicast or broadcast address at this sub-layer, + including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: virtualServerAddress - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.6 - type: InetAddress - help: If the virtual server is defined from an IP address, this is the value - of the IP - 1.3.6.1.4.1.9586.100.5.3.3.1.6 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifHCOutMulticastPkts + oid: 1.3.6.1.2.1.31.1.1.1.12 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were addressed to a multicast address at this sub-layer, including + those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifHCOutBroadcastPkts + oid: 1.3.6.1.2.1.31.1.1.1.13 + type: counter + help: The total number of packets that higher-level protocols requested be transmitted, + and which were addressed to a broadcast address at this sub-layer, including + those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerPort - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.7 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifLinkUpDownTrapEnable + oid: 1.3.6.1.2.1.31.1.1.1.14 type: gauge - help: If the virtual server is defined from an IP, this is the value of the - port to listen for requests - 1.3.6.1.4.1.9586.100.5.3.3.1.7 + 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: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerProtocol - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.8 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + enum_values: + 1: enabled + 2: disabled + - name: ifHighSpeed + oid: 1.3.6.1.2.1.31.1.1.1.15 type: gauge - help: Which transport protocol should be used for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.8 + 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: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: tcp - 2: udp - 3: sctp - 4: none - - name: virtualServerLoadBalancingAlgo - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.9 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: ifPromiscuousMode + oid: 1.3.6.1.2.1.31.1.1.1.16 type: gauge - help: Which load balancing algorithm (or scheduler) should be used for this - virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.9 + 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: virtualServerIndex + - labelname: ifIndex type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString enum_values: - 1: rr - 2: wrr - 3: lc - 4: wlc - 5: lblc - 6: lblcr - 7: dh - 8: sh - 9: sed - 10: nq - 11: fo - 12: ovf - 13: mh - 14: twos - 99: unknown - - name: virtualServerLoadBalancingKind - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.10 + 1: "true" + 2: "false" + - name: ifConnectorPresent + oid: 1.3.6.1.2.1.31.1.1.1.17 type: gauge - help: Default forwarding method to use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.10 + 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: virtualServerIndex + - labelname: ifIndex type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString enum_values: - 1: nat - 2: dr - 3: tun - - name: virtualServerStatus - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.11 + 1: "true" + 2: "false" + - name: ifCounterDiscontinuityTime + oid: 1.3.6.1.2.1.31.1.1.1.19 type: gauge - help: Current status of this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.11 + 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: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: alive - 2: dead - - name: virtualServerVirtualHost - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.12 + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifDescr + oid: 1.3.6.1.2.1.2.2.1.2 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + infrapower_pdu: + walk: + - 1.3.6.1.4.1.34550.20.2.1.1.1.1 + - 1.3.6.1.4.1.34550.20.2.1.1.1.13 + - 1.3.6.1.4.1.34550.20.2.1.1.1.14 + - 1.3.6.1.4.1.34550.20.2.1.1.1.17 + - 1.3.6.1.4.1.34550.20.2.1.1.1.6 + - 1.3.6.1.4.1.34550.20.2.1.1.1.7 + metrics: + - name: pduMainLoadVoltage + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.13 type: DisplayString - help: Virtualhost of this server for HTTP like requests. - 1.3.6.1.4.1.9586.100.5.3.3.1.12 - indexes: - - labelname: virtualServerIndex - type: gauge - - name: virtualServerPersist - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.13 - type: gauge - help: Is the virtual service persistence enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.13 + help: The voltage measured on this PDU in tenth of Volts - 1.3.6.1.4.1.34550.20.2.1.1.1.13 indexes: - - labelname: virtualServerIndex + - labelname: pduIndex type: gauge - enum_values: - 1: enabled - 2: disabled - - name: virtualServerPersistTimeout - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.14 - type: gauge - help: If this virtual service is persistence, what is the timeout. - 1.3.6.1.4.1.9586.100.5.3.3.1.14 + lookups: + - labels: + - pduIndex + labelname: pduName + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 + type: DisplayString + - labels: + - pduIndex + labelname: pduLocation + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 + type: DisplayString + regex_extracts: + "": + - value: $1.$2 + regex: ^(?:(.*)(.))$ + - name: pduMainLoadAmp + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.14 + type: DisplayString + help: The current load measured on this PDU in tenth of Amps - 1.3.6.1.4.1.34550.20.2.1.1.1.14 indexes: - - labelname: virtualServerIndex + - labelname: pduIndex type: gauge - - name: virtualServerPersistGranularity - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.15 - type: OctetString - help: Netmask specifying the granularity of the IPv4 persistence mechanism. - - 1.3.6.1.4.1.9586.100.5.3.3.1.15 + lookups: + - labels: + - pduIndex + labelname: pduName + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 + type: DisplayString + - labels: + - pduIndex + labelname: pduLocation + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 + type: DisplayString + regex_extracts: + "": + - value: $1.$2 + regex: ^(?:(.*)(.))$ + - name: pduMainActivePower + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.17 + type: DisplayString + help: The active power consumption of this PDU in hundred-thousandth of kW - + 1.3.6.1.4.1.34550.20.2.1.1.1.17 indexes: - - labelname: virtualServerIndex + - labelname: pduIndex type: gauge - - name: virtualServerDelayLoop - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.16 + lookups: + - labels: + - pduIndex + labelname: pduName + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.6 + type: DisplayString + - labels: + - pduIndex + labelname: pduLocation + oid: 1.3.6.1.4.1.34550.20.2.1.1.1.7 + type: DisplayString + regex_extracts: + "": + - value: 0$1.$2 + regex: ^(?:(\d*?)(\d{2}))$ + - value: 0.0$1 + regex: ^(?:^(\d))$ + ip_mib: + walk: + - 1.3.6.1.2.1.4.28 + metrics: + - name: ipv4InterfaceIfIndex + oid: 1.3.6.1.2.1.4.28.1.1 type: gauge - help: Delay in seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.3.1.16 + help: The index value that uniquely identifies the interface to which this entry + is applicable - 1.3.6.1.2.1.4.28.1.1 indexes: - - labelname: virtualServerIndex + - labelname: ipv4InterfaceIfIndex type: gauge - - name: virtualServerHaSuspend - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.17 + - name: ipv4InterfaceReasmMaxSize + oid: 1.3.6.1.2.1.4.28.1.2 type: gauge - help: If set to true(1), checks will be suspended if the IP of the virtual server - is currently not set. - 1.3.6.1.4.1.9586.100.5.3.3.1.17 + help: The size of the largest IPv4 datagram that this entity can re-assemble + from incoming IPv4 fragmented datagrams received on this interface. - 1.3.6.1.2.1.4.28.1.2 indexes: - - labelname: virtualServerIndex + - labelname: ipv4InterfaceIfIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerAlpha - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.18 + - name: ipv4InterfaceEnableStatus + oid: 1.3.6.1.2.1.4.28.1.3 type: gauge - help: Is alpha mode enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.18 + help: The indication of whether IPv4 is enabled (up) or disabled (down) on this + interface - 1.3.6.1.2.1.4.28.1.3 indexes: - - labelname: virtualServerIndex + - labelname: ipv4InterfaceIfIndex type: gauge enum_values: - 1: enabled - 2: disabled - - name: virtualServerOmega - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.19 + 1: up + 2: down + - name: ipv4InterfaceRetransmitTime + oid: 1.3.6.1.2.1.4.28.1.4 type: gauge - help: Is omega mode enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.19 + help: The time between retransmissions of ARP requests to a neighbor when resolving + the address or when probing the reachability of a neighbor. - 1.3.6.1.2.1.4.28.1.4 indexes: - - labelname: virtualServerIndex + - labelname: ipv4InterfaceIfIndex type: gauge - enum_values: - 1: enabled - 2: disabled - - name: virtualServerRealServersTotal - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.20 - type: gauge - help: Total number of real servers for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.20 + keepalived: + walk: + - 1.3.6.1.2.1.207.1.2.5 + - 1.3.6.1.2.1.68.2.4 + - 1.3.6.1.4.1.9586.100.5.2.1 + - 1.3.6.1.4.1.9586.100.5.2.3 + - 1.3.6.1.4.1.9586.100.5.3.1 + - 1.3.6.1.4.1.9586.100.5.3.3 + - 1.3.6.1.4.1.9586.100.5.3.4 + metrics: + - name: vrrpv3StatisticsMasterTransitions + oid: 1.3.6.1.2.1.207.1.2.5.1.1 + type: counter + help: The total number of times that this virtual router's state has transitioned + to master state - 1.3.6.1.2.1.207.1.2.5.1.1 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRealServersUp - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.21 - type: gauge - help: Real servers actually up for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.21 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerQuorum - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.22 - type: gauge - help: Quorum to get amond real servers to consider this virtual server up. - - 1.3.6.1.4.1.9586.100.5.3.3.1.22 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerQuorumStatus - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.23 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsNewMasterReason + oid: 1.3.6.1.2.1.207.1.2.5.1.2 type: gauge - help: Current status of the quorum for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.23 + help: This indicates the reason for the virtual router to transition to master + state - 1.3.6.1.2.1.207.1.2.5.1.2 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: met - 2: notMet - 3: shutdown - - name: virtualServerQuorumUp - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.24 - type: DisplayString - help: Command to execute when the quorum is met. - 1.3.6.1.4.1.9586.100.5.3.3.1.24 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerQuorumDown - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.25 - type: DisplayString - help: Command to execute when the quorum is not met. - 1.3.6.1.4.1.9586.100.5.3.3.1.25 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerHysteresis - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.26 - type: gauge - help: Hysteresis with respect to quorum count. - 1.3.6.1.4.1.9586.100.5.3.3.1.26 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + enum_values: + 0: notMaster + 1: priority + 2: preempted + 3: masterNoResponse + - name: vrrpv3StatisticsRcvdAdvertisements + oid: 1.3.6.1.2.1.207.1.2.5.1.3 + type: counter + help: The total number of VRRP advertisements received by this virtual router + - 1.3.6.1.2.1.207.1.2.5.1.3 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerStatsConns - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.27 - type: gauge - help: Total number of connections scheduled for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.27 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerStatsInPkts - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.28 + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsAdvIntervalErrors + oid: 1.3.6.1.2.1.207.1.2.5.1.4 type: counter - help: Total number of incoming packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.28 + help: The total number of VRRP advertisement packets received for which the + advertisement interval is different from the vrrpv3OperationsAdvInterval configured + on this virtual router - 1.3.6.1.2.1.207.1.2.5.1.4 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerStatsOutPkts - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.29 + - labelname: vrrpv3OperationsVrId + type: gauge + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsIpTtlErrors + oid: 1.3.6.1.2.1.207.1.2.5.1.5 type: counter - help: Total number of outgoing packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.29 + help: The total number of VRRP packets received by the virtual router with IPv4 + TTL (for VRRP over IPv4) or IPv6 Hop Limit (for VRRP over IPv6) not equal + to 255 - 1.3.6.1.2.1.207.1.2.5.1.5 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerStatsInBytes - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.30 - type: counter - help: Total number of incoming bytes for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.30 + - labelname: vrrpv3OperationsVrId + type: gauge + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsProtoErrReason + oid: 1.3.6.1.2.1.207.1.2.5.1.6 + type: gauge + help: This indicates the reason for the last protocol error - 1.3.6.1.2.1.207.1.2.5.1.6 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerStatsOutBytes - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.31 + - labelname: vrrpv3OperationsVrId + type: gauge + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + enum_values: + 0: noError + 1: ipTtlError + 2: versionError + 3: checksumError + 4: vrIdError + - name: vrrpv3StatisticsRcvdPriZeroPackets + oid: 1.3.6.1.2.1.207.1.2.5.1.7 type: counter - help: Total number of outgoing bytes for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.31 + help: The total number of VRRP packets received by the virtual router with a + priority of '0' - 1.3.6.1.2.1.207.1.2.5.1.7 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateCps - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.32 - type: gauge - help: Current connection rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.32 + - labelname: vrrpv3OperationsVrId + type: gauge + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsSentPriZeroPackets + oid: 1.3.6.1.2.1.207.1.2.5.1.8 + type: counter + help: The total number of VRRP packets sent by the virtual router with a priority + of '0' - 1.3.6.1.2.1.207.1.2.5.1.8 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateInPPS - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.33 - type: gauge - help: Current in packet rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.33 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerRateOutPPS - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.34 - type: gauge - help: Current out packet rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.34 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerRateInBPS - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.35 - type: gauge - help: Current incoming rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.35 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsRcvdInvalidTypePackets + oid: 1.3.6.1.2.1.207.1.2.5.1.9 + type: counter + help: The number of VRRP packets received by the virtual router with an invalid + value in the 'type' field - 1.3.6.1.2.1.207.1.2.5.1.9 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateOutBPS - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.36 - type: gauge - help: Current outgoing rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.36 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerOPS - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.37 - type: gauge - help: If set to true(1), One-Packet-Scheduling will be applied. - 1.3.6.1.4.1.9586.100.5.3.3.1.37 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerStatsConns64 - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.38 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsAddressListErrors + oid: 1.3.6.1.2.1.207.1.2.5.1.10 type: counter - help: Total number of connections scheduled for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.38 + help: The total number of packets received for which the address list does not + match the locally configured list for the virtual router - 1.3.6.1.2.1.207.1.2.5.1.10 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerStatsInPkts64 - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.39 - type: counter - help: Total number of incoming packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.39 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerStatsOutPkts64 - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.40 + - labelname: vrrpv3OperationsInetAddrType + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsPacketLengthErrors + oid: 1.3.6.1.2.1.207.1.2.5.1.11 type: counter - help: Total number of outgoing packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.40 + help: The total number of packets received with a packet length less than the + length of the VRRP header - 1.3.6.1.2.1.207.1.2.5.1.11 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateCpsLow - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.41 - type: gauge - help: Current connection rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.41 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerRateCpsHigh - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.42 - type: gauge - help: Current connection rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.42 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerRateInPPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.43 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsRowDiscontinuityTime + oid: 1.3.6.1.2.1.207.1.2.5.1.12 type: gauge - help: Current in packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.43 + help: The value of sysUpTime on the most recent occasion at which any one or + more of this entry's counters suffered a discontinuity - 1.3.6.1.2.1.207.1.2.5.1.12 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateInPPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.44 - type: gauge - help: Current in packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.44 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerRateOutPPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.45 - type: gauge - help: Current out packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.45 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerRateOutPPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.46 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpv3StatisticsRefreshRate + oid: 1.3.6.1.2.1.207.1.2.5.1.13 type: gauge - help: Current out packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.46 + help: The minimum reasonable polling interval for this entry - 1.3.6.1.2.1.207.1.2.5.1.13 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateInBPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.47 - type: gauge - help: Current incoming rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.47 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsVrId type: gauge - - name: virtualServerRateInBPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.48 - type: gauge - help: Current incoming rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.48 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpv3OperationsInetAddrType type: gauge - - name: virtualServerRateOutBPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.49 - type: gauge - help: Current outgoing rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.49 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpStatsBecomeMaster + oid: 1.3.6.1.2.1.68.2.4.1.1 + type: counter + help: The total number of times that this virtual router's state has transitioned + to MASTER. - 1.3.6.1.2.1.68.2.4.1.1 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerRateOutBPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.50 - type: gauge - help: Current outgoing rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.50 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpOperVrId type: gauge - - name: virtualServerPersistGranularity6 - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.51 - type: gauge - help: Netmask specifying the granularity of the IPv6 persistence mechanism. - - 1.3.6.1.4.1.9586.100.5.3.3.1.51 + - name: vrrpStatsAdvertiseRcvd + oid: 1.3.6.1.2.1.68.2.4.1.2 + type: counter + help: The total number of VRRP advertisements received by this virtual router. + - 1.3.6.1.2.1.68.2.4.1.2 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerHashed - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.52 - type: gauge - help: If set to true(1), entries will be hashed. - 1.3.6.1.4.1.9586.100.5.3.3.1.52 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpOperVrId type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerSHFallback - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.53 - type: gauge - help: If set to true(1), SH scheduler fallback. - 1.3.6.1.4.1.9586.100.5.3.3.1.53 + - name: vrrpStatsAdvertiseIntervalErrors + oid: 1.3.6.1.2.1.68.2.4.1.3 + type: counter + help: The total number of VRRP advertisement packets received for which the + advertisement interval is different than the one configured for the local + virtual router. - 1.3.6.1.2.1.68.2.4.1.3 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerSHPort - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.54 - type: gauge - help: If set to true(1), SH scheduler use port. - 1.3.6.1.4.1.9586.100.5.3.3.1.54 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsAuthFailures + oid: 1.3.6.1.2.1.68.2.4.1.4 + type: counter + help: The total number of VRRP packets received that do not pass the authentication + check. - 1.3.6.1.2.1.68.2.4.1.4 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerSched3 - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.55 - type: gauge - help: If set to true(1), scheduler flag 3 set. - 1.3.6.1.4.1.9586.100.5.3.3.1.55 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsIpTtlErrors + oid: 1.3.6.1.2.1.68.2.4.1.5 + type: counter + help: The total number of VRRP packets received by the virtual router with IP + TTL (Time-To-Live) not equal to 255. - 1.3.6.1.2.1.68.2.4.1.5 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerActionWhenDown - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.56 - type: gauge - help: What action is performed when the real servers are down - 1.3.6.1.4.1.9586.100.5.3.3.1.56 - indexes: - - labelname: virtualServerIndex + - labelname: vrrpOperVrId type: gauge - enum_values: - 1: remove - 2: inhibit - - name: virtualServerRetry - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.57 - type: gauge - help: Default number of retries of checker before marking failed. - 1.3.6.1.4.1.9586.100.5.3.3.1.57 + - name: vrrpStatsPriorityZeroPktsRcvd + oid: 1.3.6.1.2.1.68.2.4.1.6 + type: counter + help: The total number of VRRP packets received by the virtual router with a + priority of '0'. - 1.3.6.1.2.1.68.2.4.1.6 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerDelayBeforeRetry - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.58 - type: gauge - help: Default number of seconds between retrying a checker ofter it has failed. - - 1.3.6.1.4.1.9586.100.5.3.3.1.58 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsPriorityZeroPktsSent + oid: 1.3.6.1.2.1.68.2.4.1.7 + type: counter + help: The total number of VRRP packets sent by the virtual router with a priority + of '0'. - 1.3.6.1.2.1.68.2.4.1.7 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerWarmup - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.59 - type: gauge - help: Maximum number of seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.3.1.59 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsInvalidTypePktsRcvd + oid: 1.3.6.1.2.1.68.2.4.1.8 + type: counter + help: The number of VRRP packets received by the virtual router with an invalid + value in the 'type' field. - 1.3.6.1.2.1.68.2.4.1.8 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerWeight - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.60 - type: gauge - help: Default wieght for each real server. - 1.3.6.1.4.1.9586.100.5.3.3.1.60 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsAddressListErrors + oid: 1.3.6.1.2.1.68.2.4.1.9 + type: counter + help: The total number of packets received for which the address list does not + match the locally configured list for the virtual router. - 1.3.6.1.2.1.68.2.4.1.9 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - - name: virtualServerSmtpAlert - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.61 - type: gauge - help: Will SMTP alert be sent for this virtual server? - 1.3.6.1.4.1.9586.100.5.3.3.1.61 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsInvalidAuthType + oid: 1.3.6.1.2.1.68.2.4.1.10 + type: counter + help: The total number of packets received with an unknown authentication type. + - 1.3.6.1.2.1.68.2.4.1.10 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: enabled - 2: disabled - - name: virtualServerMHFallback - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.62 - type: gauge - help: If set to true(1), MH scheduler fallback. - 1.3.6.1.4.1.9586.100.5.3.3.1.62 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsAuthTypeMismatch + oid: 1.3.6.1.2.1.68.2.4.1.11 + type: counter + help: The total number of packets received with 'Auth Type' not equal to the + locally configured authentication method (`vrrpOperAuthType'). - 1.3.6.1.2.1.68.2.4.1.11 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerMHPort - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.63 - type: gauge - help: If set to true(1), MH scheduler use port. - 1.3.6.1.4.1.9586.100.5.3.3.1.63 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpStatsPacketLengthErrors + oid: 1.3.6.1.2.1.68.2.4.1.12 + type: counter + help: The total number of packets received with a packet length less than the + length of the VRRP header. - 1.3.6.1.2.1.68.2.4.1.12 indexes: - - labelname: virtualServerIndex + - labelname: ifIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: virtualServerDelayLoopUsec - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.64 + - labelname: vrrpOperVrId + type: gauge + - name: vrrpSyncGroupIndex + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.1 type: gauge - help: Delay in micro-seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.3.1.64 + help: Index of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.1 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge - - name: virtualServerDelayBeforeRetrUsec - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.65 - type: gauge - help: Default number of micro-seconds between retrying a checker ofter it has - failed. - 1.3.6.1.4.1.9586.100.5.3.3.1.65 + - name: vrrpSyncGroupName + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.2 + type: DisplayString + help: Name of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.2 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge - - name: virtualServerWarmupUsec - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.66 + - name: vrrpSyncGroupState + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.3 type: gauge - help: Maximum number of micro-seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.3.1.66 + help: Current state of the synchronisation group. - 1.3.6.1.4.1.9586.100.5.2.1.1.3 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge - - name: virtualServerConnTimeoutUsec - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.67 + enum_values: + 0: init + 1: backup + 2: master + 3: fault + 4: unknown + 5: shutdown + 6: deleted + - name: vrrpSyncGroupSmtpAlert + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.4 type: gauge - help: Maximum number of micro-seconds for checker to establish connection. - - 1.3.6.1.4.1.9586.100.5.3.3.1.67 + help: Will SMTP alert be sent for this synchronisation group? - 1.3.6.1.4.1.9586.100.5.2.1.1.4 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge - - name: virtualServerTunnelType - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.68 + enum_values: + 1: enabled + 2: disabled + - name: vrrpSyncGroupNotifyExec + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.5 type: gauge - help: Default forwarding tunnel type use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.68 + help: Will we execute notification script for this group? - 1.3.6.1.4.1.9586.100.5.2.1.1.5 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge enum_values: - 1: ipip - 2: gue - 3: gre - - name: virtualServerTunnelPort - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.69 + 1: enabled + 2: disabled + - name: vrrpSyncGroupTrackingWeight + oid: 1.3.6.1.4.1.9586.100.5.2.1.1.10 type: gauge - help: Default forwarding tunnel GUE port use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.69 + help: Allow differing tracking weights for sync group members - 1.3.6.1.4.1.9586.100.5.2.1.1.10 indexes: - - labelname: virtualServerIndex + - labelname: vrrpSyncGroupIndex type: gauge - - name: virtualServerTunnelCsum - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.70 + enum_values: + 1: enabled + 2: disabled + - name: vrrpInstanceIndex + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.1 type: gauge - help: Default forwarding tunnel checksum type use for this virtual server. - - 1.3.6.1.4.1.9586.100.5.3.3.1.70 + help: Index of the VRRP instance - 1.3.6.1.4.1.9586.100.5.2.3.1.1 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - enum_values: - 1: nocsum - 2: csum - 3: remcsum - - name: virtualServerName - oid: 1.3.6.1.4.1.9586.100.5.3.3.1.71 + - name: vrrpInstanceName + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.2 type: DisplayString - help: Optional SNMP name of this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.71 + help: Name of the VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.2 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerIndex - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.1 + - name: vrrpInstanceVirtualRouterId + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.3 type: gauge - help: Index of the real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.1 + help: Virtual Router ID (VRID) for this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.3 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerType - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.2 + - name: vrrpInstanceState + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.4 type: gauge - help: 'Type of real server: either a regular real server or a sorry server. - - 1.3.6.1.4.1.9586.100.5.3.4.1.2' + help: Current state of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.4 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + enum_values: + 0: init + 1: backup + 2: master + 3: fault + 4: unknown + 5: shutdown + 6: deleted + - name: vrrpInstanceInitialState + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.5 + type: gauge + help: Initial state of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.5 + indexes: + - labelname: vrrpInstanceIndex type: gauge enum_values: - 1: regular - 2: sorry - - name: realServerAddrType - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.3 + 0: init + 1: backup + 2: master + 3: fault + 4: unknown + 5: shutdown + 6: deleted + - name: vrrpInstanceWantedState + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.6 type: gauge - help: Address family for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.3 + help: State wanted by the operator for this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.6 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: realServerAddress - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.4 - type: InetAddress - help: IP address of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.4 + 0: init + 1: backup + 2: master + 3: fault + 4: unknown + 5: shutdown + 6: deleted + - name: vrrpInstanceBasePriority + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.7 + type: gauge + help: Base priority (as defined in the configuration file) for this VRRP instance + - 1.3.6.1.4.1.9586.100.5.2.3.1.7 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + - name: vrrpInstanceEffectivePriority + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.8 + type: gauge + help: Effective priority for this VRRP instance - 1.3.6.1.4.1.9586.100.5.2.3.1.8 + indexes: + - labelname: vrrpInstanceIndex type: gauge - - name: realServerPort - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.5 + - name: vrrpInstanceVipsStatus + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.9 type: gauge - help: Port of the service. - 1.3.6.1.4.1.9586.100.5.3.4.1.5 + help: Are all VIP of this VRRP instance enabled? - 1.3.6.1.4.1.9586.100.5.2.3.1.9 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + enum_values: + 1: allSet + 2: notAllSet + - name: vrrpInstancePrimaryInterface + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.10 + type: DisplayString + help: Primary interface of this VRRP instance. - 1.3.6.1.4.1.9586.100.5.2.3.1.10 + indexes: + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatus - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.6 + - name: vrrpInstanceTrackPrimaryIf + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.11 type: gauge - help: Status of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.6 + help: Do we track the status of the primary interface? - 1.3.6.1.4.1.9586.100.5.2.3.1.11 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge enum_values: - 1: alive - 2: dead - - name: realServerWeight - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.7 + 1: tracked + 2: notTracked + - name: vrrpInstanceAdvertisementsInt + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.12 type: gauge - help: Weight of this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.7 + help: Delay in seconds between two VRRP advertisements and it is in centiseconds + between two VRRPV3 advertisements - 1.3.6.1.4.1.9586.100.5.2.3.1.12 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerUpperConnectionLimit - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.8 + - name: vrrpInstancePreempt + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.13 type: gauge - help: Maximum number of connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.8 + help: Will a higher priority advertisement preempt a lower instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.13 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerLowerConnectionLimit - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.9 + enum_values: + 1: preempt + 2: noPreempt + - name: vrrpInstancePreemptDelay + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.14 type: gauge - help: Minimum number of connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.9 + help: Delay after startup or lower priority advert received until preemption + can happen - 1.3.6.1.4.1.9586.100.5.2.3.1.14 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerActionWhenDown - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.10 + - name: vrrpInstanceAuthType + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.15 type: gauge - help: What action is performed when this server is down - 1.3.6.1.4.1.9586.100.5.3.4.1.10 + help: VRRPv2 supports authentication method to authenticate other peers - 1.3.6.1.4.1.9586.100.5.2.3.1.15 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge enum_values: - 1: remove - 2: inhibit - - name: realServerNotifyUp - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.11 + 0: none + 1: password + 2: ah + - name: vrrpInstanceSyncGroup + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.18 type: DisplayString - help: Command to execute when this server becomes alive. - 1.3.6.1.4.1.9586.100.5.3.4.1.11 + help: Name of the synchronisation group this VRRP instance belongs, if any. + - 1.3.6.1.4.1.9586.100.5.2.3.1.18 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerNotifyDown - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.12 - type: DisplayString - help: Command to execute when this server becomes dead. - 1.3.6.1.4.1.9586.100.5.3.4.1.12 + - name: vrrpInstanceGarpDelay + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.19 + type: gauge + help: Delay to launch gratuitous ARP (GARP). - 1.3.6.1.4.1.9586.100.5.2.3.1.19 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerFailedChecks - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.13 + - name: vrrpInstanceSmtpAlert + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.20 type: gauge - help: How many failed checks for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.13 + help: Will SMTP alert be sent for this VRRP instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.20 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsConns - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.14 + enum_values: + 1: enabled + 2: disabled + - name: vrrpInstanceNotifyExec + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.21 type: gauge - help: Total number of connections scheduled for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.14 + help: Will we execute notification script for this instance? - 1.3.6.1.4.1.9586.100.5.2.3.1.21 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsActiveConns - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.15 + enum_values: + 1: enabled + 2: disabled + - name: vrrpInstanceAccept + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.27 type: gauge - help: Current active connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.15 + help: Accept allow the non-master owner to process the packets destined to VIP + and it is supported for only VRRPv3. - 1.3.6.1.4.1.9586.100.5.2.3.1.27 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsInactiveConns - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.16 + enum_values: + 1: "true" + 2: "false" + - name: vrrpInstancePromoteSecondaries + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.28 type: gauge - help: Current inactive connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.16 + help: Set promote_secondaries on interface. - 1.3.6.1.4.1.9586.100.5.2.3.1.28 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + enum_values: + 1: "true" + 2: "false" + - name: vrrpInstanceUseLinkbeat + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.29 + type: gauge + help: Use linkbeat for interface status. - 1.3.6.1.4.1.9586.100.5.2.3.1.29 + indexes: + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsPersistentConns - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.17 + enum_values: + 1: "true" + 2: "false" + - name: vrrpInstanceVrrpVersion + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.30 type: gauge - help: Current persistent connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.17 + help: VRRP protocol version. - 1.3.6.1.4.1.9586.100.5.2.3.1.30 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + enum_values: + 2: vrrpv2 + 3: vrrpv3 + - name: vrrpInstanceScriptDeleted + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.32 + type: DisplayString + help: Script to execute when the instance is deleted on reload. - 1.3.6.1.4.1.9586.100.5.2.3.1.32 + indexes: + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsInPkts - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.18 - type: counter - help: Total number of incoming packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.18 + - name: vrrpInstanceNotifyDeleted + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.33 + type: gauge + help: Send Deleted rather than Fault notifications if instance is deleted on + config reload. - 1.3.6.1.4.1.9586.100.5.2.3.1.33 indexes: - - labelname: virtualServerIndex + - labelname: vrrpInstanceIndex type: gauge - - labelname: realServerIndex + enum_values: + 1: "true" + 2: "false" + - name: vrrpInstanceMulticastAddressType + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.34 + type: gauge + help: A value that represents a type of Internet address. - 1.3.6.1.4.1.9586.100.5.2.3.1.34 + indexes: + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsOutPkts - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.19 - type: counter - help: Total number of outgoing packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.19 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vrrpInstanceMulticastAddress + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.35 + type: InetAddress + help: Multicast address for adverts - 1.3.6.1.4.1.9586.100.5.2.3.1.35 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsInBytes - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.20 - type: counter - help: Total number of incoming bytes for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.20 + - name: vrrpInstanceV3ChecksumAsV2 + oid: 1.3.6.1.4.1.9586.100.5.2.3.1.36 + type: gauge + help: True if VRRPv3 IPv4 checksum excludes pseudo-header. - 1.3.6.1.4.1.9586.100.5.2.3.1.36 indexes: - - labelname: virtualServerIndex - type: gauge - - labelname: realServerIndex + - labelname: vrrpInstanceIndex type: gauge - - name: realServerStatsOutBytes - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.21 - type: counter - help: Total number of outgoing bytes for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.21 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerGroupIndex + oid: 1.3.6.1.4.1.9586.100.5.3.1.1.1 + type: gauge + help: Index of the virtual server group. - 1.3.6.1.4.1.9586.100.5.3.1.1.1 indexes: - - labelname: virtualServerIndex + - labelname: virtualServerGroupIndex type: gauge - - labelname: realServerIndex + - name: virtualServerGroupName + oid: 1.3.6.1.4.1.9586.100.5.3.1.1.2 + type: DisplayString + help: Name of the virtual server group. - 1.3.6.1.4.1.9586.100.5.3.1.1.2 + indexes: + - labelname: virtualServerGroupIndex type: gauge - - name: realServerRateCps - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.22 + - name: virtualServerIndex + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.1 type: gauge - help: Current connection rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.22 + help: Index of the virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.1 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateInPPS - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.23 + - name: virtualServerType + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.2 type: gauge - help: Current in packet rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.23 + help: Type of virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.2 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateOutPPS - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.24 - type: gauge - help: Current out packet rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.24 + enum_values: + 1: fwmark + 2: ip + 3: group + - name: virtualServerNameOfGroup + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.3 + type: DisplayString + help: If the virtual is defined from a group, this is the name of the group. + - 1.3.6.1.4.1.9586.100.5.3.3.1.3 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateInBPS - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.25 + - name: virtualServerFwMark + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.4 type: gauge - help: Current incoming rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.25 + help: If the virtual server is defined from a firewall mark, this is the value + of the mark - 1.3.6.1.4.1.9586.100.5.3.3.1.4 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateOutBPS - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.26 + - name: virtualServerAddrType + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.5 type: gauge - help: Current outgoing rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.26 + help: If the virtual server is defined from an IP, this is the address family + - 1.3.6.1.4.1.9586.100.5.3.3.1.5 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerStatsConns64 - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.27 - type: counter - help: Total number of connections scheduled for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.27 + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: virtualServerAddress + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.6 + type: InetAddress + help: If the virtual server is defined from an IP address, this is the value + of the IP - 1.3.6.1.4.1.9586.100.5.3.3.1.6 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerStatsInPkts64 - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.28 - type: counter - help: Total number of incoming packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.28 + - name: virtualServerPort + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.7 + type: gauge + help: If the virtual server is defined from an IP, this is the value of the + port to listen for requests - 1.3.6.1.4.1.9586.100.5.3.3.1.7 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerStatsOutPkts64 - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.29 - type: counter - help: Total number of outgoing packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.29 + - name: virtualServerProtocol + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.8 + type: gauge + help: Which transport protocol should be used for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.8 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateCpsLow - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.30 + enum_values: + 1: tcp + 2: udp + 3: sctp + 4: none + - name: virtualServerLoadBalancingAlgo + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.9 type: gauge - help: Current connection rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.30 + help: Which load balancing algorithm (or scheduler) should be used for this + virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.9 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateCpsHigh - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.31 + enum_values: + 1: rr + 2: wrr + 3: lc + 4: wlc + 5: lblc + 6: lblcr + 7: dh + 8: sh + 9: sed + 10: nq + 11: fo + 12: ovf + 13: mh + 14: twos + 99: unknown + - name: virtualServerLoadBalancingKind + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.10 type: gauge - help: Current connection rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.31 + help: Default forwarding method to use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.10 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateInPPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.32 + enum_values: + 1: nat + 2: dr + 3: tun + - name: virtualServerStatus + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.11 type: gauge - help: Current in packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.32 + help: Current status of this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.11 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + enum_values: + 1: alive + 2: dead + - name: virtualServerVirtualHost + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.12 + type: DisplayString + help: Virtualhost of this server for HTTP like requests. - 1.3.6.1.4.1.9586.100.5.3.3.1.12 + indexes: + - labelname: virtualServerIndex type: gauge - - name: realServerRateInPPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.33 + - name: virtualServerPersist + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.13 type: gauge - help: Current in packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.33 + help: Is the virtual service persistence enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.13 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateOutPPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.34 + enum_values: + 1: enabled + 2: disabled + - name: virtualServerPersistTimeout + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.14 type: gauge - help: Current out packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.34 + help: If this virtual service is persistence, what is the timeout. - 1.3.6.1.4.1.9586.100.5.3.3.1.14 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + - name: virtualServerPersistGranularity + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.15 + type: OctetString + help: Netmask specifying the granularity of the IPv4 persistence mechanism. + - 1.3.6.1.4.1.9586.100.5.3.3.1.15 + indexes: + - labelname: virtualServerIndex type: gauge - - name: realServerRateOutPPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.35 + - name: virtualServerDelayLoop + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.16 type: gauge - help: Current out packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.35 + help: Delay in seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.3.1.16 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateInBPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.36 + - name: virtualServerHaSuspend + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.17 type: gauge - help: Current incoming rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.36 + help: If set to true(1), checks will be suspended if the IP of the virtual server + is currently not set. - 1.3.6.1.4.1.9586.100.5.3.3.1.17 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateInBPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.37 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerAlpha + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.18 type: gauge - help: Current incoming rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.37 + help: Is alpha mode enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.18 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerRateOutBPSLow - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.38 + enum_values: + 1: enabled + 2: disabled + - name: virtualServerOmega + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.19 type: gauge - help: Current outgoing rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.38 + help: Is omega mode enabled? - 1.3.6.1.4.1.9586.100.5.3.3.1.19 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + enum_values: + 1: enabled + 2: disabled + - name: virtualServerRealServersTotal + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.20 + type: gauge + help: Total number of real servers for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.20 + indexes: + - labelname: virtualServerIndex type: gauge - - name: realServerRateOutBPSHigh - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.39 + - name: virtualServerRealServersUp + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.21 type: gauge - help: Current outgoing rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.39 + help: Real servers actually up for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.21 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerForwardingMethod - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.40 + - name: virtualServerQuorum + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.22 type: gauge - help: Forwarding method to use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.40 + help: Quorum to get amond real servers to consider this virtual server up. - + 1.3.6.1.4.1.9586.100.5.3.3.1.22 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + - name: virtualServerQuorumStatus + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.23 + type: gauge + help: Current status of the quorum for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.23 + indexes: + - labelname: virtualServerIndex type: gauge enum_values: - 1: nat - 2: dr - 3: tun - - name: realServerVirtualHost - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.41 + 1: met + 2: notMet + 3: shutdown + - name: virtualServerQuorumUp + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.24 type: DisplayString - help: Virtualhost of this real server for HTTP like requests. - 1.3.6.1.4.1.9586.100.5.3.4.1.41 + help: Command to execute when the quorum is met. - 1.3.6.1.4.1.9586.100.5.3.3.1.24 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerAlpha - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.42 - type: gauge - help: Is alpha mode enabled? - 1.3.6.1.4.1.9586.100.5.3.4.1.42 + - name: virtualServerQuorumDown + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.25 + type: DisplayString + help: Command to execute when the quorum is not met. - 1.3.6.1.4.1.9586.100.5.3.3.1.25 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - enum_values: - 1: enabled - 2: disabled - - name: realServerRetry - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.43 + - name: virtualServerHysteresis + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.26 type: gauge - help: Default number of retries of checker before marking failed. - 1.3.6.1.4.1.9586.100.5.3.4.1.43 + help: Hysteresis with respect to quorum count. - 1.3.6.1.4.1.9586.100.5.3.3.1.26 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerDelayBeforeRetry - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.44 + - name: virtualServerStatsConns + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.27 type: gauge - help: Default number of seconds between retrying a checker after it has failed. - - 1.3.6.1.4.1.9586.100.5.3.4.1.44 + help: Total number of connections scheduled for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.27 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerWarmup - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.45 - type: gauge - help: Maximum number of seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.4.1.45 + - name: virtualServerStatsInPkts + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.28 + type: counter + help: Total number of incoming packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.28 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + - name: virtualServerStatsOutPkts + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.29 + type: counter + help: Total number of outgoing packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.29 + indexes: + - labelname: virtualServerIndex type: gauge - - name: realServerDelayLoop - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.46 - type: gauge - help: Delay in seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.4.1.46 + - name: virtualServerStatsInBytes + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.30 + type: counter + help: Total number of incoming bytes for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.30 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex + - name: virtualServerStatsOutBytes + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.31 + type: counter + help: Total number of outgoing bytes for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.31 + indexes: + - labelname: virtualServerIndex type: gauge - - name: realServerSmtpAlert - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.47 + - name: virtualServerRateCps + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.32 type: gauge - help: Will SMTP alert be sent for this real server? - 1.3.6.1.4.1.9586.100.5.3.4.1.47 + help: Current connection rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.32 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - enum_values: - 1: enabled - 2: disabled - - name: realServerDelayBeforeRetryUsec - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.48 + - name: virtualServerRateInPPS + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.33 type: gauge - help: Default number of micro-seconds between retrying a checker after it has - failed. - 1.3.6.1.4.1.9586.100.5.3.4.1.48 + help: Current in packet rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.33 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerWarmupUsec - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.49 + - name: virtualServerRateOutPPS + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.34 type: gauge - help: Maximum number of micro-seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.4.1.49 + help: Current out packet rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.34 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerDelayLoopUsec - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.50 + - name: virtualServerRateInBPS + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.35 type: gauge - help: Delay in micro-seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.4.1.50 + help: Current incoming rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.35 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerConnTimeoutUsec - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.51 + - name: virtualServerRateOutBPS + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.36 type: gauge - help: Maximum number of micro-seconds for checker to establish connection. - - 1.3.6.1.4.1.9586.100.5.3.4.1.51 + help: Current outgoing rate for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.36 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerTunnelType - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.52 + - name: virtualServerOPS + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.37 type: gauge - help: Forwarding tunnel type use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.52 + help: If set to true(1), One-Packet-Scheduling will be applied. - 1.3.6.1.4.1.9586.100.5.3.3.1.37 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge enum_values: - 1: ipip - 2: gue - 3: gre - - name: realServerTunnelPort - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.53 - type: gauge - help: Forwarding tunnel GUE port use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.53 + 1: "true" + 2: "false" + - name: virtualServerStatsConns64 + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.38 + type: counter + help: Total number of connections scheduled for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.38 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - - name: realServerTunnelCsum - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.54 - type: gauge - help: Forwarding tunnel checksum type use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.54 + - name: virtualServerStatsInPkts64 + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.39 + type: counter + help: Total number of incoming packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.39 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - enum_values: - 1: nocsum - 2: csum - 3: remcsum - - name: realServerName - oid: 1.3.6.1.4.1.9586.100.5.3.4.1.55 - type: DisplayString - help: Optional SNMP name of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.55 + - name: virtualServerStatsOutPkts64 + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.40 + type: counter + help: Total number of outgoing packets for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.40 indexes: - labelname: virtualServerIndex type: gauge - - labelname: realServerIndex - type: gauge - kemp_loadmaster: - walk: - - 1.3.6.1.4.1.12196.13.0 - - 1.3.6.1.4.1.12196.13.1 - - 1.3.6.1.4.1.12196.13.2 - - 1.3.6.1.4.1.2021.10.1.2 - - 1.3.6.1.4.1.2021.10.1.5 - - 1.3.6.1.4.1.2021.4 - get: - - 1.3.6.1.4.1.2021.11.10.0 - - 1.3.6.1.4.1.2021.11.11.0 - - 1.3.6.1.4.1.2021.11.9.0 - metrics: - - name: version - oid: 1.3.6.1.4.1.12196.13.0.1 - type: DisplayString - help: The version of the netfilter modules - 1.3.6.1.4.1.12196.13.0.1 - - name: numServices - oid: 1.3.6.1.4.1.12196.13.0.2 - type: gauge - help: The current number of Virtual Services - 1.3.6.1.4.1.12196.13.0.2 - - name: hashTableSize - oid: 1.3.6.1.4.1.12196.13.0.3 - type: gauge - help: The size of hash table for L4 connection contexts - 1.3.6.1.4.1.12196.13.0.3 - - name: tcpTimeOut - oid: 1.3.6.1.4.1.12196.13.0.4 - type: gauge - help: The L4 TCP Timeout(s) for established connections - 1.3.6.1.4.1.12196.13.0.4 - - name: tcpFinTimeOut - oid: 1.3.6.1.4.1.12196.13.0.5 - type: gauge - help: The L4 TCP Timeout(s) for connections in FIN wait state - 1.3.6.1.4.1.12196.13.0.5 - - name: udpTimeOut - oid: 1.3.6.1.4.1.12196.13.0.6 - type: gauge - help: The L4 UDP Timeout(s) - 1.3.6.1.4.1.12196.13.0.6 - - name: daemonState - oid: 1.3.6.1.4.1.12196.13.0.7 - type: EnumAsInfo - help: The state of daemon for synchronisation of L4 connection contexts - 1.3.6.1.4.1.12196.13.0.7 - enum_values: - 0: none - 1: master - 2: backup - - name: mcastInterface - oid: 1.3.6.1.4.1.12196.13.0.8 - type: OctetString - help: The multicast interface used by L4 inter machine update daemon - 1.3.6.1.4.1.12196.13.0.8 - - name: haState - oid: 1.3.6.1.4.1.12196.13.0.9 - type: EnumAsInfo - help: The HA status of the current machine - 1.3.6.1.4.1.12196.13.0.9 - enum_values: - 0: none - 1: master - 2: standby - 3: passive - - name: patchVersion - oid: 1.3.6.1.4.1.12196.13.0.10 - type: DisplayString - help: The installed software patch version - 1.3.6.1.4.1.12196.13.0.10 - - name: totalTps - oid: 1.3.6.1.4.1.12196.13.0.11 + - name: virtualServerRateCpsLow + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.41 type: gauge - help: The current total TPS - 1.3.6.1.4.1.12196.13.0.11 - - name: sslTps - oid: 1.3.6.1.4.1.12196.13.0.12 + help: Current connection rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.41 + indexes: + - labelname: virtualServerIndex + type: gauge + - name: virtualServerRateCpsHigh + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.42 type: gauge - help: The current SSL TPS - 1.3.6.1.4.1.12196.13.0.12 - - name: vSIdx - oid: 1.3.6.1.4.1.12196.13.1.1.1 + help: Current connection rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.42 + indexes: + - labelname: virtualServerIndex + type: gauge + - name: virtualServerRateInPPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.43 type: gauge - help: The Virtual Service index - 1.3.6.1.4.1.12196.13.1.1.1 + help: Current in packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.43 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSIp - oid: 1.3.6.1.4.1.12196.13.1.1.2 - type: DisplayString - help: The IP address of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.2 + - name: virtualServerRateInPPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.44 + type: gauge + help: Current in packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.44 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSPort - oid: 1.3.6.1.4.1.12196.13.1.1.3 + - name: virtualServerRateOutPPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.45 type: gauge - help: The Virtual Service port number - 1.3.6.1.4.1.12196.13.1.1.3 + help: Current out packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.45 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSAddrtype - oid: 1.3.6.1.4.1.12196.13.1.1.4 - type: EnumAsInfo - help: The Virtual Service address type - 1.3.6.1.4.1.12196.13.1.1.4 + - name: virtualServerRateOutPPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.46 + type: gauge + help: Current out packet rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.46 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: vSProtocol - oid: 1.3.6.1.4.1.12196.13.1.1.5 - type: EnumAsInfo - help: The Virtual Service protocol (TCP/UDP) - 1.3.6.1.4.1.12196.13.1.1.5 + - name: virtualServerRateInBPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.47 + type: gauge + help: Current incoming rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.47 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - enum_values: - 6: tcp - 17: udp - - name: vSSchedulingMethod - oid: 1.3.6.1.4.1.12196.13.1.1.6 - type: DisplayString - help: The Virtual Service scheduling method - 1.3.6.1.4.1.12196.13.1.1.6 + - name: virtualServerRateInBPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.48 + type: gauge + help: Current incoming rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.48 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSPersistenceTimeout - oid: 1.3.6.1.4.1.12196.13.1.1.7 + - name: virtualServerRateOutBPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.49 type: gauge - help: The Virtual Service timeout for persistent connections - 1.3.6.1.4.1.12196.13.1.1.7 + help: Current outgoing rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.49 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCheckerType - oid: 1.3.6.1.4.1.12196.13.1.1.8 - type: DisplayString - help: The type of checker associated with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.8 + - name: virtualServerRateOutBPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.50 + type: gauge + help: Current outgoing rate for this virtual server - 1.3.6.1.4.1.9586.100.5.3.3.1.50 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSAdaptiveMethod - oid: 1.3.6.1.4.1.12196.13.1.1.9 - type: DisplayString - help: The type of adaptive method used with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.9 + - name: virtualServerPersistGranularity6 + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.51 + type: gauge + help: Netmask specifying the granularity of the IPv6 persistence mechanism. + - 1.3.6.1.4.1.9586.100.5.3.3.1.51 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSNumDests - oid: 1.3.6.1.4.1.12196.13.1.1.10 + - name: virtualServerHashed + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.52 type: gauge - help: The number of destinations (Real Servers) for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.10 + help: If set to true(1), entries will be hashed. - 1.3.6.1.4.1.9586.100.5.3.3.1.52 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSL7persist - oid: 1.3.6.1.4.1.12196.13.1.1.11 - type: DisplayString - help: The type of persistence used with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.11 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerSHFallback + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.53 + type: gauge + help: If set to true(1), SH scheduler fallback. - 1.3.6.1.4.1.9586.100.5.3.3.1.53 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSL7cookieId - oid: 1.3.6.1.4.1.12196.13.1.1.12 - type: DisplayString - help: The name of the cookie associated with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.12 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerSHPort + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.54 + type: gauge + help: If set to true(1), SH scheduler use port. - 1.3.6.1.4.1.9586.100.5.3.3.1.54 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSName - oid: 1.3.6.1.4.1.12196.13.1.1.13 - type: DisplayString - help: The name of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.13 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerSched3 + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.55 + type: gauge + help: If set to true(1), scheduler flag 3 set. - 1.3.6.1.4.1.9586.100.5.3.3.1.55 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSState - oid: 1.3.6.1.4.1.12196.13.1.1.14 - type: EnumAsInfo - help: The status of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.14 + enum_values: + 1: "true" + 2: "false" + - name: virtualServerActionWhenDown + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.56 + type: gauge + help: What action is performed when the real servers are down - 1.3.6.1.4.1.9586.100.5.3.3.1.56 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge enum_values: - 1: inService - 2: outOfService - 4: disabled - 5: sorry - 6: redirect - 7: errormsg - 8: securityDown - - name: vSFollow - oid: 1.3.6.1.4.1.12196.13.1.1.15 + 1: remove + 2: inhibit + - name: virtualServerRetry + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.57 type: gauge - help: The Virtual Service follow port number - 1.3.6.1.4.1.12196.13.1.1.15 + help: Default number of retries of checker before marking failed. - 1.3.6.1.4.1.9586.100.5.3.3.1.57 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSConns - oid: 1.3.6.1.4.1.12196.13.1.1.16 - type: counter - help: The total number of connections for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.16 + - name: virtualServerDelayBeforeRetry + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.58 + type: gauge + help: Default number of seconds between retrying a checker ofter it has failed. + - 1.3.6.1.4.1.9586.100.5.3.3.1.58 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSInPkts - oid: 1.3.6.1.4.1.12196.13.1.1.17 - type: counter - help: The total number of incomming packets to this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.17 + - name: virtualServerWarmup + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.59 + type: gauge + help: Maximum number of seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.3.1.59 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSOutPkts - oid: 1.3.6.1.4.1.12196.13.1.1.18 - type: counter - help: The total number of outgoing packets from this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.18 + - name: virtualServerWeight + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.60 + type: gauge + help: Default wieght for each real server. - 1.3.6.1.4.1.9586.100.5.3.3.1.60 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSInBytes - oid: 1.3.6.1.4.1.12196.13.1.1.19 - type: counter - help: The total number of incomming bytes to this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.19 + - name: virtualServerSmtpAlert + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.61 + type: gauge + help: Will SMTP alert be sent for this virtual server? - 1.3.6.1.4.1.9586.100.5.3.3.1.61 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSOutBytes - oid: 1.3.6.1.4.1.12196.13.1.1.20 - type: counter - help: The number of outgoing bytes from this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.20 + enum_values: + 1: enabled + 2: disabled + - name: virtualServerMHFallback + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.62 + type: gauge + help: If set to true(1), MH scheduler fallback. - 1.3.6.1.4.1.9586.100.5.3.3.1.62 + indexes: + - labelname: virtualServerIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: virtualServerMHPort + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.63 + type: gauge + help: If set to true(1), MH scheduler use port. - 1.3.6.1.4.1.9586.100.5.3.3.1.63 + indexes: + - labelname: virtualServerIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: virtualServerDelayLoopUsec + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.64 + type: gauge + help: Delay in micro-seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.3.1.64 + indexes: + - labelname: virtualServerIndex + type: gauge + - name: virtualServerDelayBeforeRetrUsec + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.65 + type: gauge + help: Default number of micro-seconds between retrying a checker ofter it has + failed. - 1.3.6.1.4.1.9586.100.5.3.3.1.65 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSActiveConns - oid: 1.3.6.1.4.1.12196.13.1.1.21 + - name: virtualServerWarmupUsec + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.66 type: gauge - help: The number of active connections for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.21 + help: Maximum number of micro-seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.3.1.66 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentAvgRequest - oid: 1.3.6.1.4.1.12196.13.1.1.22 + - name: virtualServerConnTimeoutUsec + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.67 type: gauge - help: Request Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.22 + help: Maximum number of micro-seconds for checker to establish connection. - + 1.3.6.1.4.1.9586.100.5.3.3.1.67 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentAvgResponse - oid: 1.3.6.1.4.1.12196.13.1.1.23 + - name: virtualServerTunnelType + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.68 type: gauge - help: Response Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.23 + help: Default forwarding tunnel type use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.68 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMaxRequest - oid: 1.3.6.1.4.1.12196.13.1.1.24 + enum_values: + 1: ipip + 2: gue + 3: gre + - name: virtualServerTunnelPort + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.69 type: gauge - help: Request Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.24 + help: Default forwarding tunnel GUE port use for this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.69 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMaxResponse - oid: 1.3.6.1.4.1.12196.13.1.1.25 + - name: virtualServerTunnelCsum + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.70 type: gauge - help: Response Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.25 + help: Default forwarding tunnel checksum type use for this virtual server. - + 1.3.6.1.4.1.9586.100.5.3.3.1.70 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMinRequest - oid: 1.3.6.1.4.1.12196.13.1.1.26 - type: gauge - help: Request Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.26 + enum_values: + 1: nocsum + 2: csum + 3: remcsum + - name: virtualServerName + oid: 1.3.6.1.4.1.9586.100.5.3.3.1.71 + type: DisplayString + help: Optional SNMP name of this virtual server. - 1.3.6.1.4.1.9586.100.5.3.3.1.71 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMinResponse - oid: 1.3.6.1.4.1.12196.13.1.1.27 + - name: realServerIndex + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.1 type: gauge - help: Response Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.27 + help: Index of the real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.1 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermAvgRequest - oid: 1.3.6.1.4.1.12196.13.1.1.28 + - labelname: realServerIndex + type: gauge + - name: realServerType + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.2 type: gauge - help: Request Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.28 + help: 'Type of real server: either a regular real server or a sorry server. + - 1.3.6.1.4.1.9586.100.5.3.4.1.2' indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermAvgResponse - oid: 1.3.6.1.4.1.12196.13.1.1.29 + - labelname: realServerIndex + type: gauge + enum_values: + 1: regular + 2: sorry + - name: realServerAddrType + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.3 type: gauge - help: Response Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.29 + help: Address family for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.3 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMaxRequest - oid: 1.3.6.1.4.1.12196.13.1.1.30 - type: gauge - help: Request Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.30 + - labelname: realServerIndex + type: gauge + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: realServerAddress + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.4 + type: InetAddress + help: IP address of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.4 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMaxResponse - oid: 1.3.6.1.4.1.12196.13.1.1.31 + - labelname: realServerIndex + type: gauge + - name: realServerPort + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.5 type: gauge - help: Response Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.31 + help: Port of the service. - 1.3.6.1.4.1.9586.100.5.3.4.1.5 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMinRequest - oid: 1.3.6.1.4.1.12196.13.1.1.32 + - labelname: realServerIndex + type: gauge + - name: realServerStatus + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.6 type: gauge - help: Request Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.32 + help: Status of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.6 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMinResponse - oid: 1.3.6.1.4.1.12196.13.1.1.33 + - labelname: realServerIndex + type: gauge + enum_values: + 1: alive + 2: dead + - name: realServerWeight + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.7 type: gauge - help: Response Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.33 + help: Weight of this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.7 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentAvgRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.34 + - labelname: realServerIndex + type: gauge + - name: realServerUpperConnectionLimit + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.8 type: gauge - help: Round Trip Times Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.34 + help: Maximum number of connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.8 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMaxRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.35 + - labelname: realServerIndex + type: gauge + - name: realServerLowerConnectionLimit + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.9 type: gauge - help: Round Trip Times Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.35 + help: Minimum number of connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.9 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSCurrentMinRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.36 + - labelname: realServerIndex + type: gauge + - name: realServerActionWhenDown + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.10 type: gauge - help: Round Trip Times Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.36 + help: What action is performed when this server is down - 1.3.6.1.4.1.9586.100.5.3.4.1.10 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermAvgRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.37 - type: gauge - help: Round Trip Times Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.37 + - labelname: realServerIndex + type: gauge + enum_values: + 1: remove + 2: inhibit + - name: realServerNotifyUp + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.11 + type: DisplayString + help: Command to execute when this server becomes alive. - 1.3.6.1.4.1.9586.100.5.3.4.1.11 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMaxRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.38 - type: gauge - help: Round Trip Times Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.38 + - labelname: realServerIndex + type: gauge + - name: realServerNotifyDown + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.12 + type: DisplayString + help: Command to execute when this server becomes dead. - 1.3.6.1.4.1.9586.100.5.3.4.1.12 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: vSLongTermMinRTTTimes - oid: 1.3.6.1.4.1.12196.13.1.1.39 + - labelname: realServerIndex + type: gauge + - name: realServerFailedChecks + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.13 type: gauge - help: Round Trip Times Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.39 + help: How many failed checks for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.13 indexes: - - labelname: vSIdx + - labelname: virtualServerIndex type: gauge - - name: rSVsIdx - oid: 1.3.6.1.4.1.12196.13.2.1.1 + - labelname: realServerIndex + type: gauge + - name: realServerStatsConns + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.14 type: gauge - help: The id of the associated Virtual Service - 1.3.6.1.4.1.12196.13.2.1.1 + help: Total number of connections scheduled for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.14 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSIp - oid: 1.3.6.1.4.1.12196.13.2.1.2 - type: DisplayString - help: The IP address of the Real Server - 1.3.6.1.4.1.12196.13.2.1.2 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - - name: rSPort - oid: 1.3.6.1.4.1.12196.13.2.1.3 + - name: realServerStatsActiveConns + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.15 type: gauge - help: The Real Server port number - 1.3.6.1.4.1.12196.13.2.1.3 + help: Current active connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.15 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSAddrType - oid: 1.3.6.1.4.1.12196.13.2.1.4 - type: EnumAsInfo - help: The Real Server address type - 1.3.6.1.4.1.12196.13.2.1.4 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: rSIdx - oid: 1.3.6.1.4.1.12196.13.2.1.5 + - name: realServerStatsInactiveConns + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.16 type: gauge - help: The Real Server index - 1.3.6.1.4.1.12196.13.2.1.5 + help: Current inactive connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.16 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSForwardingMethod - oid: 1.3.6.1.4.1.12196.13.2.1.6 - type: DisplayString - help: The forwarding method used for Real Server - 1.3.6.1.4.1.12196.13.2.1.6 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - - name: rSWeight - oid: 1.3.6.1.4.1.12196.13.2.1.7 + - name: realServerStatsPersistentConns + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.17 type: gauge - help: The configured weight of the Real Server - 1.3.6.1.4.1.12196.13.2.1.7 + help: Current persistent connections for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.17 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSState - oid: 1.3.6.1.4.1.12196.13.2.1.8 - type: EnumAsInfo - help: The current status of the Real Server - 1.3.6.1.4.1.12196.13.2.1.8 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - enum_values: - 1: inService - 2: outOfService - 4: disabled - - name: rSConns - oid: 1.3.6.1.4.1.12196.13.2.1.12 + - name: realServerStatsInPkts + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.18 type: counter - help: The total number of connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.12 + help: Total number of incoming packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.18 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSInPkts - oid: 1.3.6.1.4.1.12196.13.2.1.13 - type: counter - help: The total number of incoming packets to this Real Server - 1.3.6.1.4.1.12196.13.2.1.13 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - - name: rSOutPkts - oid: 1.3.6.1.4.1.12196.13.2.1.14 + - name: realServerStatsOutPkts + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.19 type: counter - help: The total number of outgoing packets from this Real Server - 1.3.6.1.4.1.12196.13.2.1.14 + help: Total number of outgoing packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.19 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSInBytes - oid: 1.3.6.1.4.1.12196.13.2.1.15 + - labelname: realServerIndex + type: gauge + - name: realServerStatsInBytes + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.20 type: counter - help: The total number of incoming bytes to this Real Server - 1.3.6.1.4.1.12196.13.2.1.15 + help: Total number of incoming bytes for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.20 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSOutBytes - oid: 1.3.6.1.4.1.12196.13.2.1.16 + - labelname: realServerIndex + type: gauge + - name: realServerStatsOutBytes + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.21 type: counter - help: The total number of outgoing bytes from this Real Server - 1.3.6.1.4.1.12196.13.2.1.16 + help: Total number of outgoing bytes for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.21 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSActiveConns - oid: 1.3.6.1.4.1.12196.13.2.1.17 + - labelname: realServerIndex + type: gauge + - name: realServerRateCps + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.22 type: gauge - help: The number of active connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.17 + help: Current connection rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.22 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSInactiveConns - oid: 1.3.6.1.4.1.12196.13.2.1.18 - type: counter - help: The number of inactive connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.18 - indexes: - - labelname: rSIdx + - labelname: realServerIndex type: gauge - - name: rSCurrentAvgRequest - oid: 1.3.6.1.4.1.12196.13.2.1.19 + - name: realServerRateInPPS + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.23 type: gauge - help: Request Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.19 + help: Current in packet rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.23 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentAvgResponse - oid: 1.3.6.1.4.1.12196.13.2.1.20 + - labelname: realServerIndex + type: gauge + - name: realServerRateOutPPS + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.24 type: gauge - help: Response Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.20 + help: Current out packet rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.24 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMaxRequest - oid: 1.3.6.1.4.1.12196.13.2.1.21 + - labelname: realServerIndex + type: gauge + - name: realServerRateInBPS + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.25 type: gauge - help: Request Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.21 + help: Current incoming rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.25 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMaxResponse - oid: 1.3.6.1.4.1.12196.13.2.1.22 + - labelname: realServerIndex + type: gauge + - name: realServerRateOutBPS + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.26 type: gauge - help: Response Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.22 + help: Current outgoing rate for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.26 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMinRequest - oid: 1.3.6.1.4.1.12196.13.2.1.23 - type: gauge - help: Request Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.23 + - labelname: realServerIndex + type: gauge + - name: realServerStatsConns64 + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.27 + type: counter + help: Total number of connections scheduled for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.27 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMinResponse - oid: 1.3.6.1.4.1.12196.13.2.1.24 - type: gauge - help: Response Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.24 + - labelname: realServerIndex + type: gauge + - name: realServerStatsInPkts64 + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.28 + type: counter + help: Total number of incoming packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.28 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermAvgRequest - oid: 1.3.6.1.4.1.12196.13.2.1.25 - type: gauge - help: Request Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.25 + - labelname: realServerIndex + type: gauge + - name: realServerStatsOutPkts64 + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.29 + type: counter + help: Total number of outgoing packets for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.29 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermAvgResponse - oid: 1.3.6.1.4.1.12196.13.2.1.26 + - labelname: realServerIndex + type: gauge + - name: realServerRateCpsLow + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.30 type: gauge - help: Response Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.26 + help: Current connection rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.30 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermMaxRequest - oid: 1.3.6.1.4.1.12196.13.2.1.27 + - labelname: realServerIndex + type: gauge + - name: realServerRateCpsHigh + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.31 type: gauge - help: Request Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.27 + help: Current connection rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.31 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermMaxResponse - oid: 1.3.6.1.4.1.12196.13.2.1.28 + - labelname: realServerIndex + type: gauge + - name: realServerRateInPPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.32 type: gauge - help: Response Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.28 + help: Current in packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.32 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermMinRequest - oid: 1.3.6.1.4.1.12196.13.2.1.29 + - labelname: realServerIndex + type: gauge + - name: realServerRateInPPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.33 type: gauge - help: Request Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.29 + help: Current in packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.33 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermMinResponse - oid: 1.3.6.1.4.1.12196.13.2.1.30 + - labelname: realServerIndex + type: gauge + - name: realServerRateOutPPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.34 type: gauge - help: Response Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.30 + help: Current out packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.34 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentAvgRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.31 + - labelname: realServerIndex + type: gauge + - name: realServerRateOutPPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.35 type: gauge - help: Round Trip Times Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.31 + help: Current out packet rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.35 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMaxRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.32 + - labelname: realServerIndex + type: gauge + - name: realServerRateInBPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.36 type: gauge - help: Round Trip Times Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.32 + help: Current incoming rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.36 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSCurrentMinRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.33 + - labelname: realServerIndex + type: gauge + - name: realServerRateInBPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.37 type: gauge - help: Round Trip Times Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.33 + help: Current incoming rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.37 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermAvgRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.34 + - labelname: realServerIndex + type: gauge + - name: realServerRateOutBPSLow + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.38 type: gauge - help: Round Trip Times Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.34 + help: Current outgoing rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.38 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex + type: gauge + - labelname: realServerIndex type: gauge - - name: rSLongTermMaxRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.35 + - name: realServerRateOutBPSHigh + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.39 type: gauge - help: Round Trip Times Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.35 + help: Current outgoing rate for this real server - 1.3.6.1.4.1.9586.100.5.3.4.1.39 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: rSLongTermMinRTTTimes - oid: 1.3.6.1.4.1.12196.13.2.1.36 + - labelname: realServerIndex + type: gauge + - name: realServerForwardingMethod + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.40 type: gauge - help: Round Trip Times Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.36 + help: Forwarding method to use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.40 indexes: - - labelname: rSIdx + - labelname: virtualServerIndex type: gauge - - name: laNames - oid: 1.3.6.1.4.1.2021.10.1.2 + - labelname: realServerIndex + type: gauge + enum_values: + 1: nat + 2: dr + 3: tun + - name: realServerVirtualHost + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.41 type: DisplayString - help: The list of loadave names we're watching. - 1.3.6.1.4.1.2021.10.1.2 + help: Virtualhost of this real server for HTTP like requests. - 1.3.6.1.4.1.9586.100.5.3.4.1.41 indexes: - - labelname: laIndex + - labelname: virtualServerIndex type: gauge - - name: laLoadInt - oid: 1.3.6.1.4.1.2021.10.1.5 + - labelname: realServerIndex + type: gauge + - name: realServerAlpha + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.42 type: gauge - help: The 1,5 and 15 minute load averages as an integer - 1.3.6.1.4.1.2021.10.1.5 + help: Is alpha mode enabled? - 1.3.6.1.4.1.9586.100.5.3.4.1.42 indexes: - - labelname: laIndex + - labelname: virtualServerIndex + type: gauge + - labelname: realServerIndex type: gauge - - name: ssCpuSystem - oid: 1.3.6.1.4.1.2021.11.10 - type: gauge - help: The percentage of CPU time spent processing system-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.10 - - name: ssCpuIdle - oid: 1.3.6.1.4.1.2021.11.11 - type: gauge - help: The percentage of processor time spent idle, calculated over the last - minute - 1.3.6.1.4.1.2021.11.11 - - name: ssCpuUser - oid: 1.3.6.1.4.1.2021.11.9 - type: gauge - help: The percentage of CPU time spent processing user-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.9 - - name: memIndex - oid: 1.3.6.1.4.1.2021.4.1 - type: gauge - help: Bogus Index - 1.3.6.1.4.1.2021.4.1 - - name: memErrorName - oid: 1.3.6.1.4.1.2021.4.2 - type: DisplayString - help: Bogus Name - 1.3.6.1.4.1.2021.4.2 - - name: memTotalSwap - oid: 1.3.6.1.4.1.2021.4.3 - type: gauge - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.3 - - name: memAvailSwap - oid: 1.3.6.1.4.1.2021.4.4 - type: gauge - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.4 - - name: memTotalReal - oid: 1.3.6.1.4.1.2021.4.5 - type: gauge - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.5 - - name: memAvailReal - oid: 1.3.6.1.4.1.2021.4.6 - type: gauge - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.6 - - name: memTotalSwapTXT - oid: 1.3.6.1.4.1.2021.4.7 - type: gauge - help: The total amount of swap space or virtual memory allocated for text pages - on this host - 1.3.6.1.4.1.2021.4.7 - - name: memAvailSwapTXT - oid: 1.3.6.1.4.1.2021.4.8 - type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.8 - - name: memTotalRealTXT - oid: 1.3.6.1.4.1.2021.4.9 - type: gauge - help: The total amount of real/physical memory allocated for text pages on this - host - 1.3.6.1.4.1.2021.4.9 - - name: memAvailRealTXT - oid: 1.3.6.1.4.1.2021.4.10 - type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.10 - - name: memTotalFree - oid: 1.3.6.1.4.1.2021.4.11 - type: gauge - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.11 - - name: memMinimumSwap - oid: 1.3.6.1.4.1.2021.4.12 - type: gauge - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.12 - - name: memShared - oid: 1.3.6.1.4.1.2021.4.13 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.13 - - name: memBuffer - oid: 1.3.6.1.4.1.2021.4.14 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.14 - - name: memCached - oid: 1.3.6.1.4.1.2021.4.15 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.15 - - name: memUsedSwapTXT - oid: 1.3.6.1.4.1.2021.4.16 - type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.16 - - name: memUsedRealTXT - oid: 1.3.6.1.4.1.2021.4.17 - type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.17 - - name: memTotalSwapX - oid: 1.3.6.1.4.1.2021.4.18 - type: counter - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.18 - - name: memAvailSwapX - oid: 1.3.6.1.4.1.2021.4.19 - type: counter - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.19 - - name: memTotalRealX - oid: 1.3.6.1.4.1.2021.4.20 - type: counter - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.20 - - name: memAvailRealX - oid: 1.3.6.1.4.1.2021.4.21 - type: counter - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.21 - - name: memTotalFreeX - oid: 1.3.6.1.4.1.2021.4.22 - type: counter - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.22 - - name: memMinimumSwapX - oid: 1.3.6.1.4.1.2021.4.23 - type: counter - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.23 - - name: memSharedX - oid: 1.3.6.1.4.1.2021.4.24 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.24 - - name: memBufferX - oid: 1.3.6.1.4.1.2021.4.25 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.25 - - name: memCachedX - oid: 1.3.6.1.4.1.2021.4.26 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.26 - - name: memSwapError - oid: 1.3.6.1.4.1.2021.4.100 - type: gauge - help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 enum_values: - 0: noError - 1: error - - name: memSwapErrorMsg - oid: 1.3.6.1.4.1.2021.4.101 - type: DisplayString - help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 - liebert_pdu: - walk: - - 1.3.6.1.4.1.476.1.42.3.8.20 - - 1.3.6.1.4.1.476.1.42.3.8.30.20 - - 1.3.6.1.4.1.476.1.42.3.8.30.40 - - 1.3.6.1.4.1.476.1.42.3.8.50.20 - - 1.3.6.1.4.1.476.1.42.3.8.60.10 - metrics: - - name: lgpPduEntryIndex - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.1 + 1: enabled + 2: disabled + - name: realServerRetry + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.43 type: gauge - help: This is the index that indicates the row of the 'lgpPduTable'. - 1.3.6.1.4.1.476.1.42.3.8.20.1.1 + help: Default number of retries of checker before marking failed. - 1.3.6.1.4.1.9586.100.5.3.4.1.43 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryId - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.5 + - labelname: realServerIndex + type: gauge + - name: realServerDelayBeforeRetry + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.44 type: gauge - help: This is an internal index representing a unique identifier for each PDU - represented by this agent - 1.3.6.1.4.1.476.1.42.3.8.20.1.5 + help: Default number of seconds between retrying a checker after it has failed. + - 1.3.6.1.4.1.9586.100.5.3.4.1.44 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryUsrLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.10 - type: DisplayString - help: This is a user assigned label representing the PDU. - 1.3.6.1.4.1.476.1.42.3.8.20.1.10 - indexes: - - labelname: lgpPduEntryIndex + - labelname: realServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - help: System assigned identifier representing the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + - name: realServerWarmup + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.45 + type: gauge + help: Maximum number of seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.4.1.45 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex + type: gauge + - labelname: realServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryPositionRelative - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.20 + - name: realServerDelayLoop + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.46 type: gauge - help: This is a one-based value that indicates the PDU's relative position within - a rack or other enclosing entity. - 1.3.6.1.4.1.476.1.42.3.8.20.1.20 + help: Delay in seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.4.1.46 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntrySysStatus - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.25 + - labelname: realServerIndex + type: gauge + - name: realServerSmtpAlert + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.47 type: gauge - help: This value represents a bit-field of the various operational states of - the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.25 + help: Will SMTP alert be sent for this real server? - 1.3.6.1.4.1.9586.100.5.3.4.1.47 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryUsrTag1 - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.35 - type: DisplayString - help: This is a user assigned Tag for the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.35 + - labelname: realServerIndex + type: gauge + enum_values: + 1: enabled + 2: disabled + - name: realServerDelayBeforeRetryUsec + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.48 + type: gauge + help: Default number of micro-seconds between retrying a checker after it has + failed. - 1.3.6.1.4.1.9586.100.5.3.4.1.48 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryUsrTag2 - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.40 - type: DisplayString - help: This is a user assigned Tag for the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.40 + - labelname: realServerIndex + type: gauge + - name: realServerWarmupUsec + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.49 + type: gauge + help: Maximum number of micro-seconds to delay before running checker. - 1.3.6.1.4.1.9586.100.5.3.4.1.49 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntrySerialNumber - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.45 - type: DisplayString - help: System assigned serial number for this PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.45 + - labelname: realServerIndex + type: gauge + - name: realServerDelayLoopUsec + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.50 + type: gauge + help: Delay in micro-seconds between two checks. - 1.3.6.1.4.1.9586.100.5.3.4.1.50 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntryRbCount - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.50 + - labelname: realServerIndex + type: gauge + - name: realServerConnTimeoutUsec + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.51 type: gauge - help: Number of receptacle branches (Rb) within this PDU. - 1.3.6.1.4.1.476.1.42.3.8.20.1.50 + help: Maximum number of micro-seconds for checker to establish connection. - + 1.3.6.1.4.1.9586.100.5.3.4.1.51 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - name: lgpPduEntrySWOverCurrentProtection - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.55 + - labelname: realServerIndex + type: gauge + - name: realServerTunnelType + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.52 type: gauge - help: This is the PDU Software Over Current Protection feature which will prevent - unused receptacles from turning on when the 'PDU Over Current Warning' or - 'PDU Over Current Alarm' threshold is violated - 1.3.6.1.4.1.476.1.42.3.8.20.1.55 + help: Forwarding tunnel type use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.52 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex + type: gauge + - labelname: realServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString enum_values: - 0: disabled - 1: enable - - name: lgpPduPsEntryIndex - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.5 + 1: ipip + 2: gue + 3: gre + - name: realServerTunnelPort + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.53 type: gauge - help: This is a unique identifier for the Power Source within a given PDU - - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.5 + help: Forwarding tunnel GUE port use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.53 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: realServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryId - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.10 + - name: realServerTunnelCsum + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.54 type: gauge - help: This is a unique entry id representing a given PDU power source for the - PDU. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.10 + help: Forwarding tunnel checksum type use for this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.54 indexes: - - labelname: lgpPduEntryIndex + - labelname: virtualServerIndex type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: realServerIndex type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 + enum_values: + 1: nocsum + 2: csum + 3: remcsum + - name: realServerName + oid: 1.3.6.1.4.1.9586.100.5.3.4.1.55 type: DisplayString - help: System assigned identifier for this power source - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 + help: Optional SNMP name of this real server. - 1.3.6.1.4.1.9586.100.5.3.4.1.55 + indexes: + - labelname: virtualServerIndex + type: gauge + - labelname: realServerIndex + type: gauge + kemp_loadmaster: + walk: + - 1.3.6.1.4.1.12196.13.0 + - 1.3.6.1.4.1.12196.13.1 + - 1.3.6.1.4.1.12196.13.2 + metrics: + - name: version + oid: 1.3.6.1.4.1.12196.13.0.1 + type: DisplayString + help: The version of the netfilter modules - 1.3.6.1.4.1.12196.13.0.1 + - name: numServices + oid: 1.3.6.1.4.1.12196.13.0.2 + type: gauge + help: The current number of Virtual Services - 1.3.6.1.4.1.12196.13.0.2 + - name: hashTableSize + oid: 1.3.6.1.4.1.12196.13.0.3 + type: gauge + help: The size of hash table for L4 connection contexts - 1.3.6.1.4.1.12196.13.0.3 + - name: tcpTimeOut + oid: 1.3.6.1.4.1.12196.13.0.4 + type: gauge + help: The L4 TCP Timeout(s) for established connections - 1.3.6.1.4.1.12196.13.0.4 + - name: tcpFinTimeOut + oid: 1.3.6.1.4.1.12196.13.0.5 + type: gauge + help: The L4 TCP Timeout(s) for connections in FIN wait state - 1.3.6.1.4.1.12196.13.0.5 + - name: udpTimeOut + oid: 1.3.6.1.4.1.12196.13.0.6 + type: gauge + help: The L4 UDP Timeout(s) - 1.3.6.1.4.1.12196.13.0.6 + - name: daemonState + oid: 1.3.6.1.4.1.12196.13.0.7 + type: EnumAsInfo + help: The state of daemon for synchronisation of L4 connection contexts - 1.3.6.1.4.1.12196.13.0.7 + enum_values: + 0: none + 1: master + 2: backup + - name: mcastInterface + oid: 1.3.6.1.4.1.12196.13.0.8 + type: OctetString + help: The multicast interface used by L4 inter machine update daemon - 1.3.6.1.4.1.12196.13.0.8 + - name: haState + oid: 1.3.6.1.4.1.12196.13.0.9 + type: EnumAsInfo + help: The HA status of the current machine - 1.3.6.1.4.1.12196.13.0.9 + enum_values: + 0: none + 1: master + 2: standby + 3: passive + - name: patchVersion + oid: 1.3.6.1.4.1.12196.13.0.10 + type: DisplayString + help: The installed software patch version - 1.3.6.1.4.1.12196.13.0.10 + - name: totalTps + oid: 1.3.6.1.4.1.12196.13.0.11 + type: gauge + help: The current total TPS - 1.3.6.1.4.1.12196.13.0.11 + - name: sslTps + oid: 1.3.6.1.4.1.12196.13.0.12 + type: gauge + help: The current SSL TPS - 1.3.6.1.4.1.12196.13.0.12 + - name: vSIdx + oid: 1.3.6.1.4.1.12196.13.1.1.1 + type: gauge + help: The Virtual Service index - 1.3.6.1.4.1.12196.13.1.1.1 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryModel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.20 + - name: vSIp + oid: 1.3.6.1.4.1.12196.13.1.1.2 type: DisplayString - help: This is the model name (identifier) of the power supply. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.20 + help: The IP address of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.2 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryWiringType - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.25 + - name: vSPort + oid: 1.3.6.1.4.1.12196.13.1.1.3 type: gauge - help: The PDU's power supply physical wiring type - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.25 + help: The Virtual Service port number - 1.3.6.1.4.1.12196.13.1.1.3 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSAddrtype + oid: 1.3.6.1.4.1.12196.13.1.1.4 + type: EnumAsInfo + help: The Virtual Service address type - 1.3.6.1.4.1.12196.13.1.1.4 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString enum_values: - 0: not-specified - 1: single-phase-3-wire-L1-N-PE - 2: two-phase-3-wire-L1-L2-PE - 3: three-phase-4-wire-L1-L2-L3-PE - 4: three-phase-5-wire-L1-L2-L3-N-PE - 5: two-phase-4-wire-L1-L2-N-PE - - name: lgpPduPsEntryEpInputRated - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.30 - type: gauge - help: Rated Input Line Voltage for the power source (i.e - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.30 + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: vSProtocol + oid: 1.3.6.1.4.1.12196.13.1.1.5 + type: EnumAsInfo + help: The Virtual Service protocol (TCP/UDP) - 1.3.6.1.4.1.12196.13.1.1.5 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcInputRated - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.35 - type: gauge - help: This is the rated input line current for the module (it is NOT the measured - current). - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.35 + enum_values: + 6: tcp + 17: udp + - name: vSSchedulingMethod + oid: 1.3.6.1.4.1.12196.13.1.1.6 + type: DisplayString + help: The Virtual Service scheduling method - 1.3.6.1.4.1.12196.13.1.1.6 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryFreqRated - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.40 + - name: vSPersistenceTimeout + oid: 1.3.6.1.4.1.12196.13.1.1.7 type: gauge - help: Rated input line frequency for this power source (i.e - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.40 + help: The Virtual Service timeout for persistent connections - 1.3.6.1.4.1.12196.13.1.1.7 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEnergyAccum - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.50 - type: gauge - help: Total accumulated energy, measured at the power source input, since the - last energy reset - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.50 + - name: vSCheckerType + oid: 1.3.6.1.4.1.12196.13.1.1.8 + type: DisplayString + help: The type of checker associated with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.8 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntrySerialNum - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.55 + - name: vSAdaptiveMethod + oid: 1.3.6.1.4.1.12196.13.1.1.9 type: DisplayString - help: This is a unique serial number of the power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.55 + help: The type of adaptive method used with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.9 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSNumDests + oid: 1.3.6.1.4.1.12196.13.1.1.10 + type: gauge + help: The number of destinations (Real Servers) for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.10 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryFirmwareVersion - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.60 + - name: vSL7persist + oid: 1.3.6.1.4.1.12196.13.1.1.11 type: DisplayString - help: This is the version of the firmware installed on the PDU's power supply. - - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.60 + help: The type of persistence used with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.11 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryPwrTotal - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.65 - type: gauge - help: Total input power for this power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.65 + - name: vSL7cookieId + oid: 1.3.6.1.4.1.12196.13.1.1.12 + type: DisplayString + help: The name of the cookie associated with the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.12 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcNeutral - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.70 - type: gauge - help: The neutral current measured at the PDU's power source. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.70 + - name: vSName + oid: 1.3.6.1.4.1.12196.13.1.1.13 + type: DisplayString + help: The name of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.13 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSState + oid: 1.3.6.1.4.1.12196.13.1.1.14 + type: EnumAsInfo + help: The status of the Virtual Service - 1.3.6.1.4.1.12196.13.1.1.14 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcNeutralThrshldOvrWarn - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.75 + enum_values: + 1: inService + 2: outOfService + 4: disabled + 5: sorry + 6: redirect + 7: errormsg + 8: securityDown + - name: vSFollow + oid: 1.3.6.1.4.1.12196.13.1.1.15 type: gauge - help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.75 + help: The Virtual Service follow port number - 1.3.6.1.4.1.12196.13.1.1.15 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSConns + oid: 1.3.6.1.4.1.12196.13.1.1.16 + type: counter + help: The total number of connections for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.16 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcNeutralThrshldOvrAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.80 - type: gauge - help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.80 + - name: vSInPkts + oid: 1.3.6.1.4.1.12196.13.1.1.17 + type: counter + help: The total number of incomming packets to this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.17 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSOutPkts + oid: 1.3.6.1.4.1.12196.13.1.1.18 + type: counter + help: The total number of outgoing packets from this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.18 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryUnbalancedLoadThrshldAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.85 - type: gauge - help: The parameter is for setting the maximum acceptable percentage of 'Unbalanced - Load' between any two phases - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.85 + - name: vSInBytes + oid: 1.3.6.1.4.1.12196.13.1.1.19 + type: counter + help: The total number of incomming bytes to this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.19 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSOutBytes + oid: 1.3.6.1.4.1.12196.13.1.1.20 + type: counter + help: The number of outgoing bytes from this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.20 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryApTotal - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.90 + - name: vSActiveConns + oid: 1.3.6.1.4.1.12196.13.1.1.21 type: gauge - help: Total Apparent power for this power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.90 + help: The number of active connections for this Virtual Service - 1.3.6.1.4.1.12196.13.1.1.21 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryPfTotal - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.95 + - name: vSCurrentAvgRequest + oid: 1.3.6.1.4.1.12196.13.1.1.22 type: gauge - help: Total power factor, which is real power/apparent power for all phases - combined - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.95 + help: Request Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.22 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcResidual - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.100 + - name: vSCurrentAvgResponse + oid: 1.3.6.1.4.1.12196.13.1.1.23 type: gauge - help: The measured residual current. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.100 + help: Response Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.23 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsEntryEcResidualThrshldOvrAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.105 + - name: vSCurrentMaxRequest + oid: 1.3.6.1.4.1.12196.13.1.1.24 type: gauge - help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.105 + help: Request Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.24 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryIndex - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.5 + - name: vSCurrentMaxResponse + oid: 1.3.6.1.4.1.12196.13.1.1.25 type: gauge - help: This is the index that indicates the line/phase of the measurements in - the given row of the 'lgpPduPsLineTable'. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.5 + help: Response Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.25 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryId - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.10 + - name: vSCurrentMinRequest + oid: 1.3.6.1.4.1.12196.13.1.1.26 type: gauge - help: Unique identifier (within a PDU) for the PDU's power source - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.10 + help: Request Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.26 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryLine - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.15 + - name: vSCurrentMinResponse + oid: 1.3.6.1.4.1.12196.13.1.1.27 type: gauge - help: The line number (phase) that the measurement represents for all measurements - in a given row of the table - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.15 + help: Response Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.27 + indexes: + - labelname: vSIdx + type: gauge + - name: vSLongTermAvgRequest + oid: 1.3.6.1.4.1.12196.13.1.1.28 + type: gauge + help: Request Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.28 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: vSLongTermAvgResponse + oid: 1.3.6.1.4.1.12196.13.1.1.29 + type: gauge + help: Response Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.29 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - enum_values: - 1: phase1 - 2: phase2 - 3: phase3 - - name: lgpPduPsLineEntryEpLNTenths - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.19 + - name: vSLongTermMaxRequest + oid: 1.3.6.1.4.1.12196.13.1.1.30 type: gauge - help: Alternating Current RMS Line to Neutral Electrical Potential measurement - - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.19 + help: Request Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.30 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSLongTermMaxResponse + oid: 1.3.6.1.4.1.12196.13.1.1.31 + type: gauge + help: Response Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.31 + indexes: + - labelname: vSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: vSLongTermMinRequest + oid: 1.3.6.1.4.1.12196.13.1.1.32 + type: gauge + help: Request Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.32 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEpLN - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.20 + - name: vSLongTermMinResponse + oid: 1.3.6.1.4.1.12196.13.1.1.33 type: gauge - help: Alternating Current RMS Line to Neutral Electrical Potential measurement - - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.20 + help: Response Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.33 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSCurrentAvgRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.34 + type: gauge + help: Round Trip Times Current Average (ms) - 1.3.6.1.4.1.12196.13.1.1.34 + indexes: + - labelname: vSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: vSCurrentMaxRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.35 + type: gauge + help: Round Trip Times Current Max (ms) - 1.3.6.1.4.1.12196.13.1.1.35 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEc - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.21 + - name: vSCurrentMinRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.36 type: gauge - help: Total input line-to-neutral electrical current - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.21 + help: Round Trip Times Current Min (ms) - 1.3.6.1.4.1.12196.13.1.1.36 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: vSLongTermAvgRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.37 + type: gauge + help: Round Trip Times Long Term Average (ms) - 1.3.6.1.4.1.12196.13.1.1.37 + indexes: + - labelname: vSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: vSLongTermMaxRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.38 + type: gauge + help: Round Trip Times Long Term Max (ms) - 1.3.6.1.4.1.12196.13.1.1.38 + indexes: + - labelname: vSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcHundredths - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.22 + - name: vSLongTermMinRTTTimes + oid: 1.3.6.1.4.1.12196.13.1.1.39 type: gauge - help: Total input line-to-neutral electrical current - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.22 + help: Round Trip Times Long Term Min (ms) - 1.3.6.1.4.1.12196.13.1.1.39 indexes: - - labelname: lgpPduEntryIndex + - labelname: vSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSVsIdx + oid: 1.3.6.1.4.1.12196.13.2.1.1 + type: gauge + help: The id of the associated Virtual Service - 1.3.6.1.4.1.12196.13.2.1.1 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSIp + oid: 1.3.6.1.4.1.12196.13.2.1.2 + type: DisplayString + help: The IP address of the Real Server - 1.3.6.1.4.1.12196.13.2.1.2 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcThrshldUndrAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.35 + - name: rSPort + oid: 1.3.6.1.4.1.12196.13.2.1.3 type: gauge - help: The threshold at which an under current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.35 + help: The Real Server port number - 1.3.6.1.4.1.12196.13.2.1.3 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSAddrType + oid: 1.3.6.1.4.1.12196.13.2.1.4 + type: EnumAsInfo + help: The Real Server address type - 1.3.6.1.4.1.12196.13.2.1.4 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: rSIdx + oid: 1.3.6.1.4.1.12196.13.2.1.5 + type: gauge + help: The Real Server index - 1.3.6.1.4.1.12196.13.2.1.5 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcThrshldOvrWarn - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.36 + - name: rSForwardingMethod + oid: 1.3.6.1.4.1.12196.13.2.1.6 + type: DisplayString + help: The forwarding method used for Real Server - 1.3.6.1.4.1.12196.13.2.1.6 + indexes: + - labelname: rSIdx + type: gauge + - name: rSWeight + oid: 1.3.6.1.4.1.12196.13.2.1.7 type: gauge - help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.36 + help: The configured weight of the Real Server - 1.3.6.1.4.1.12196.13.2.1.7 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSState + oid: 1.3.6.1.4.1.12196.13.2.1.8 + type: EnumAsInfo + help: The current status of the Real Server - 1.3.6.1.4.1.12196.13.2.1.8 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + enum_values: + 1: inService + 2: outOfService + 4: disabled + - name: rSConns + oid: 1.3.6.1.4.1.12196.13.2.1.12 + type: counter + help: The total number of connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.12 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcThrshldOvrAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.37 - type: gauge - help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.37 + - name: rSInPkts + oid: 1.3.6.1.4.1.12196.13.2.1.13 + type: counter + help: The total number of incoming packets to this Real Server - 1.3.6.1.4.1.12196.13.2.1.13 + indexes: + - labelname: rSIdx + type: gauge + - name: rSOutPkts + oid: 1.3.6.1.4.1.12196.13.2.1.14 + type: counter + help: The total number of outgoing packets from this Real Server - 1.3.6.1.4.1.12196.13.2.1.14 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSInBytes + oid: 1.3.6.1.4.1.12196.13.2.1.15 + type: counter + help: The total number of incoming bytes to this Real Server - 1.3.6.1.4.1.12196.13.2.1.15 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSOutBytes + oid: 1.3.6.1.4.1.12196.13.2.1.16 + type: counter + help: The total number of outgoing bytes from this Real Server - 1.3.6.1.4.1.12196.13.2.1.16 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcAvailBeforeAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.38 + - name: rSActiveConns + oid: 1.3.6.1.4.1.12196.13.2.1.17 type: gauge - help: The amount that the current/amperage may increase from its present value - before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.38 + help: The number of active connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.17 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSInactiveConns + oid: 1.3.6.1.4.1.12196.13.2.1.18 + type: counter + help: The number of inactive connections for this Real Server - 1.3.6.1.4.1.12196.13.2.1.18 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcUsedBeforeAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.39 + - name: rSCurrentAvgRequest + oid: 1.3.6.1.4.1.12196.13.2.1.19 type: gauge - help: The percent of current utilization relative to the over current alarm - threshold. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.39 + help: Request Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.19 indexes: - - labelname: lgpPduEntryIndex - type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEpLL - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.60 + - name: rSCurrentAvgResponse + oid: 1.3.6.1.4.1.12196.13.2.1.20 type: gauge - help: Line to Line Electrical Potential - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.60 + help: Response Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.20 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSCurrentMaxRequest + oid: 1.3.6.1.4.1.12196.13.2.1.21 + type: gauge + help: Request Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.21 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSCurrentMaxResponse + oid: 1.3.6.1.4.1.12196.13.2.1.22 + type: gauge + help: Response Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.22 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEpLLTenths - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.61 + - name: rSCurrentMinRequest + oid: 1.3.6.1.4.1.12196.13.2.1.23 type: gauge - help: Line to Line Electrical Potential - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.61 + help: Request Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.23 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSCurrentMinResponse + oid: 1.3.6.1.4.1.12196.13.2.1.24 + type: gauge + help: Response Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.24 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSLongTermAvgRequest + oid: 1.3.6.1.4.1.12196.13.2.1.25 + type: gauge + help: Request Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.25 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryEcAvailBeforeAlarmHundredths - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.62 + - name: rSLongTermAvgResponse + oid: 1.3.6.1.4.1.12196.13.2.1.26 type: gauge - help: The amount that the current/amperage may increase from its present value - before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.62 + help: Response Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.26 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSLongTermMaxRequest + oid: 1.3.6.1.4.1.12196.13.2.1.27 + type: gauge + help: Request Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.27 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSLongTermMaxResponse + oid: 1.3.6.1.4.1.12196.13.2.1.28 + type: gauge + help: Response Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.28 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryPwrLN - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.63 + - name: rSLongTermMinRequest + oid: 1.3.6.1.4.1.12196.13.2.1.29 type: gauge - help: The line-to-neutral measurement of the Real Power (Watts) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.63 + help: Request Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.29 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSLongTermMinResponse + oid: 1.3.6.1.4.1.12196.13.2.1.30 + type: gauge + help: Response Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.30 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSCurrentAvgRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.31 + type: gauge + help: Round Trip Times Current Average (ms) - 1.3.6.1.4.1.12196.13.2.1.31 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryPwrLL - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.64 + - name: rSCurrentMaxRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.32 type: gauge - help: The line-to-line measurement of the Real Power (Watts) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.64 + help: Round Trip Times Current Max (ms) - 1.3.6.1.4.1.12196.13.2.1.32 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSCurrentMinRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.33 + type: gauge + help: Round Trip Times Current Min (ms) - 1.3.6.1.4.1.12196.13.2.1.33 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + - name: rSLongTermAvgRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.34 + type: gauge + help: Round Trip Times Long Term Average (ms) - 1.3.6.1.4.1.12196.13.2.1.34 + indexes: + - labelname: rSIdx type: gauge - lookups: - - labels: - - lgpPduEntryIndex - labelname: lgpPduEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 - type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryApLN - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.65 + - name: rSLongTermMaxRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.35 type: gauge - help: The line-to-neutral measurement of the Apparent Power (VA) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.65 + help: Round Trip Times Long Term Max (ms) - 1.3.6.1.4.1.12196.13.2.1.35 indexes: - - labelname: lgpPduEntryIndex + - labelname: rSIdx type: gauge - - labelname: lgpPduPsEntryIndex + - name: rSLongTermMinRTTTimes + oid: 1.3.6.1.4.1.12196.13.2.1.36 + type: gauge + help: Round Trip Times Long Term Min (ms) - 1.3.6.1.4.1.12196.13.2.1.36 + indexes: + - labelname: rSIdx type: gauge - - labelname: lgpPduPsLineEntryIndex + liebert_pdu: + walk: + - 1.3.6.1.4.1.476.1.42.3.8.20 + - 1.3.6.1.4.1.476.1.42.3.8.30.20 + - 1.3.6.1.4.1.476.1.42.3.8.30.40 + - 1.3.6.1.4.1.476.1.42.3.8.50.20 + - 1.3.6.1.4.1.476.1.42.3.8.60.10 + metrics: + - name: lgpPduEntryIndex + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.1 + type: gauge + help: This is the index that indicates the row of the 'lgpPduTable'. - 1.3.6.1.4.1.476.1.42.3.8.20.1.1 + indexes: + - labelname: lgpPduEntryIndex type: gauge lookups: - labels: @@ -11368,247 +24974,153 @@ modules: labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryApLL - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.66 + - name: lgpPduEntryId + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.5 type: gauge - help: The line-to-line measurement of the Apparent Power (VA) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.66 + help: This is an internal index representing a unique identifier for each PDU + represented by this agent - 1.3.6.1.4.1.476.1.42.3.8.20.1.5 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryPfLN - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.67 - type: gauge - help: The line-to-neutral measurement of the Power Factor of the power source - - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.67 + - name: lgpPduEntryUsrLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.10 + type: DisplayString + help: This is a user assigned label representing the PDU. - 1.3.6.1.4.1.476.1.42.3.8.20.1.10 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduPsLineEntryPfLL - oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.68 - type: gauge - help: The line-to-line measurement of the Power Factor of the power source - - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.68 + - name: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + help: System assigned identifier representing the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.15 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduPsEntryIndex - type: gauge - - labelname: lgpPduPsLineEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduPsEntryIndex - labelname: lgpPduPsEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 - type: DisplayString - - name: lgpPduRcpEntryIndex - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.1 + - name: lgpPduEntryPositionRelative + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.20 type: gauge - help: This is the index that indicates the receptacle position on the receptacle - branch - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.1 + help: This is a one-based value that indicates the PDU's relative position within + a rack or other enclosing entity. - 1.3.6.1.4.1.476.1.42.3.8.20.1.20 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryId - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.5 + - name: lgpPduEntrySysStatus + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.25 type: gauge - help: A runtime assigned receptacle identification number. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.5 + help: This value represents a bit-field of the various operational states of + the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.25 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryUsrLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.10 + - name: lgpPduEntryUsrTag1 + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.35 type: DisplayString - help: User assigned label for this receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.10 + help: This is a user assigned Tag for the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.35 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryUsrTag1 - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.15 + - name: lgpPduEntryUsrTag2 + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.40 type: DisplayString - help: User assigned Tag to assist in identifying or grouping this receptacle - within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.15 + help: This is a user assigned Tag for the PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.40 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryUsrTag2 - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.20 + - name: lgpPduEntrySerialNumber + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.45 type: DisplayString - help: User assigned Tag to assist in identifying or grouping this receptacle - within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.20 + help: System assigned serial number for this PDU - 1.3.6.1.4.1.476.1.42.3.8.20.1.45 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - help: System assigned identifier representing the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - name: lgpPduEntryRbCount + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.50 + type: gauge + help: Number of receptacle branches (Rb) within this PDU. - 1.3.6.1.4.1.476.1.42.3.8.20.1.50 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryPosition - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.30 + - name: lgpPduEntrySWOverCurrentProtection + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.55 type: gauge - help: A number representing the position of the receptacle within the receptacle - branch. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.30 + help: This is the PDU Software Over Current Protection feature which will prevent + unused receptacles from turning on when the 'PDU Over Current Warning' or + 'PDU Over Current Alarm' threshold is violated - 1.3.6.1.4.1.476.1.42.3.8.20.1.55 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex - type: gauge lookups: - labels: - lgpPduEntryIndex labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - - name: lgpPduRcpEntryType - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.40 + enum_values: + 0: disabled + 1: enable + - name: lgpPduPsEntryIndex + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.5 type: gauge - help: The type or form of receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.40 + help: This is a unique identifier for the Power Source within a given PDU - + 1.3.6.1.4.1.476.1.42.3.8.30.20.1.5 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11617,28 +25129,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: not-specified - 1: nema-5-20R-20-Amp - 2: iec-C13-sheet-F-10-Amp - 3: iec-C19-sheet-J-16-Amp - 7: cee-7-type-E-schuko - 8: nema-L6-30R-30-Amp - - name: lgpPduRcpEntryLineSource - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.45 + - name: lgpPduPsEntryId + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.10 type: gauge - help: This represents the line source that is supplying power to this receptacle - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.45 + help: This is a unique entry id representing a given PDU power source for the + PDU. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.10 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11646,32 +25149,19 @@ modules: labelname: lgpPduEntrySysAssignLabel oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 - type: DisplayString - enum_values: - 0: not-specified - 1: line-1-N - 2: line-2-N - 3: line-3-N - 4: line-1-line-2 - 5: line-2-line-3 - 6: line-3-line-1 - 7: unknown-line-neutral - 8: unknown-line-line - - name: lgpPduRcpEntryCapabilities - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.50 - type: gauge - help: Receptacle capabilities describes what an individual receptacle is capable - of - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.50 + - labels: + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 + type: DisplayString + - name: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 + type: DisplayString + help: System assigned identifier for this power source - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11680,28 +25170,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: not-specified - 1: no-optional-capabilities - 2: measurement-only - 3: measurement-and-control - 4: control-only - 5: current-measurement-only - 6: current-measurement-and-control - - name: lgpPduRcpEntryEp - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.55 - type: gauge - help: Voltage being delivered to the load attached to the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.55 + - name: lgpPduPsEntryModel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.20 + type: DisplayString + help: This is the model name (identifier) of the power supply. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.20 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11710,20 +25190,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEpTenths - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.56 + - name: lgpPduPsEntryWiringType + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.25 type: gauge - help: Voltage being delivered to the load attached to the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.56 + help: The PDU's power supply physical wiring type - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.25 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11732,21 +25210,25 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEc - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.60 + enum_values: + 0: not-specified + 1: single-phase-3-wire-L1-N-PE + 2: two-phase-3-wire-L1-L2-PE + 3: three-phase-4-wire-L1-L2-L3-PE + 4: three-phase-5-wire-L1-L2-L3-N-PE + 5: two-phase-4-wire-L1-L2-N-PE + - name: lgpPduPsEntryEpInputRated + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.30 type: gauge - help: Current (amperage) being delivered to the load attached to the receptacle - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.60 + help: Rated Input Line Voltage for the power source (i.e - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.30 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11755,21 +25237,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcHundredths - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.61 + - name: lgpPduPsEntryEcInputRated + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.35 type: gauge - help: Current (amperage) being delivered to the load attached to the receptacle - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.61 + help: This is the rated input line current for the module (it is NOT the measured + current). - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.35 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11778,21 +25258,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryPwrOut - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.65 + - name: lgpPduPsEntryFreqRated + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.40 type: gauge - help: Real Power (watts) being delivered to the load attached to the receptacle. - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.65 + help: Rated input line frequency for this power source (i.e - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.40 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11801,21 +25278,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryApOut - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.70 + - name: lgpPduPsEntryEnergyAccum + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.50 type: gauge - help: Apparent Power (volt-amps) being delivered to the load attached to the - receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.70 + help: Total accumulated energy, measured at the power source input, since the + last energy reset - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.50 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11824,21 +25299,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryPf - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.75 - type: gauge - help: Receptacle Power Factor, which is the ratio of real power to apparent - power (i.e - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.75 + - name: lgpPduPsEntrySerialNum + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.55 + type: DisplayString + help: This is a unique serial number of the power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.55 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11847,21 +25319,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryFreq - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.80 - type: gauge - help: The measured line frequency being delivered to the load attached to the - receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.80 + - name: lgpPduPsEntryFirmwareVersion + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.60 + type: DisplayString + help: This is the version of the firmware installed on the PDU's power supply. + - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.60 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11870,21 +25340,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEnergyAccum - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.85 + - name: lgpPduPsEntryPwrTotal + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.65 type: gauge - help: Total accumulated energy, measured at the module input, since the last - energy reset - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.85 + help: Total input power for this power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.65 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11893,21 +25360,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryPwrOnDelay - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.90 + - name: lgpPduPsEntryEcNeutral + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.70 type: gauge - help: The amount of time to wait before power is applied to the receptacle after - a power strip is turned on or rebooted - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.90 + help: The neutral current measured at the PDU's power source. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.70 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11916,20 +25380,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryPwrState - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.95 + - name: lgpPduPsEntryEcNeutralThrshldOvrWarn + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.75 type: gauge - help: unknown The current power state is unknown - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.95 + help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.75 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11938,26 +25400,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: unknown - 1: "off" - 2: "on" - 3: off-pending-on-delay - - name: lgpPduRcpEntryPwrUpState - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.96 + - name: lgpPduPsEntryEcNeutralThrshldOvrAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.80 type: gauge - help: The 'Power Up State' defines the state to which the receptacle shall return - after a power cycle of the PDU - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.96 + help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.80 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11966,25 +25420,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 1: "on" - 2: "off" - 3: last-state - - name: lgpPduRcpEntryControl - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.100 + - name: lgpPduPsEntryUnbalancedLoadThrshldAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.85 type: gauge - help: This object represents the current and persistent (configured) power state - of the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.100 + help: The parameter is for setting the maximum acceptable percentage of 'Unbalanced + Load' between any two phases - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.85 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -11993,24 +25441,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: "off" - 1: "on" - 2: cycle-power - - name: lgpPduRcpEntryControlLock - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.105 + - name: lgpPduPsEntryApTotal + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.90 type: gauge - help: This object represents the locked state of the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.105 + help: Total Apparent power for this power supply - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.90 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -12019,24 +25461,19 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: unknown - 1: unlocked - 2: locked - - name: lgpPduRcpEntryEcThrshldUnderAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.150 + - name: lgpPduPsEntryPfTotal + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.95 type: gauge - help: The threshold at which an under current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.150 + help: Total power factor, which is real power/apparent power for all phases + combined - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.95 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -12045,20 +25482,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcThrshldOverWarn - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.151 + - name: lgpPduPsEntryEcResidual + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.100 type: gauge - help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.151 + help: The measured residual current. - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.100 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -12067,20 +25502,18 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcThrshldOverAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.152 + - name: lgpPduPsEntryEcResidualThrshldOvrAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.105 type: gauge - help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.152 + help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.20.1.105 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex - type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge lookups: - labels: @@ -12089,21 +25522,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcAvailBeforeAlarmHundredths - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.159 + - name: lgpPduPsLineEntryIndex + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.5 type: gauge - help: The amount that the current/amperage may increase from its present value - before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.159 + help: This is the index that indicates the line/phase of the measurements in + the given row of the 'lgpPduPsLineTable'. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.5 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12112,21 +25545,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcAvailBeforeAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.160 + - name: lgpPduPsLineEntryId + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.10 type: gauge - help: The amount that the current/amperage may increase from its present value - before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.160 + help: Unique identifier (within a PDU) for the PDU's power source - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.10 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12135,21 +25567,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcUsedBeforeAlarm - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.161 + - name: lgpPduPsLineEntryLine + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.15 type: gauge - help: The percent of current utilization relative to the over current alarm - threshold. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.161 + help: The line number (phase) that the measurement represents for all measurements + in a given row of the table - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.15 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12158,21 +25590,25 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryEcCrestFactor - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.162 + enum_values: + 1: phase1 + 2: phase2 + 3: phase3 + - name: lgpPduPsLineEntryEpLNTenths + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.19 type: gauge - help: Receptacle current crest factor, which is the peak amplitude of the current - waveform divided by the RMS value of the waveform. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.162 + help: Alternating Current RMS Line to Neutral Electrical Potential measurement + - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.19 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12181,20 +25617,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryBlinkLED - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.200 + - name: lgpPduPsLineEntryEpLN + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.20 type: gauge - help: Blink the receptacle LED - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.200 + help: Alternating Current RMS Line to Neutral Electrical Potential measurement + - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.20 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12203,27 +25640,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 1: noAction - 2: blinkLED - - name: lgpPduRcpEntrySwOverTemperatureProtection - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.205 + - name: lgpPduPsLineEntryEc + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.21 type: gauge - help: 'The configuration parameter to enable or disable the Receptacle SW Over - Temperature Protection feature If the feature is enabled, in case of Over - Temperature Alarm condition, following action will be taken on the receptacles: - Locked & Off - No Change Unlocked & Off - No Change Unlocked & On - Turn it - Off - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.205' + help: Total input line-to-neutral electrical current - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.21 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12232,24 +25662,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: disable - 1: enable - - name: lgpPduRcpEntryOperationCondition - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.210 + - name: lgpPduPsLineEntryEcHundredths + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.22 type: gauge - help: Receptacle Operating Condition - indicates the condition of the receptacle - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.210 + help: Total input line-to-neutral electrical current - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.22 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12258,26 +25684,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 1: normalOperation - 2: normalWithWarning - 3: normalWithAlarm - 4: abnormal - - name: lgpPduRcpEntryCriticality - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.215 + - name: lgpPduPsLineEntryEcThrshldUndrAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.35 type: gauge - help: The configuration parameter can be used by the user to mark a receptacle - as critical or non-critical. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.215 + help: The threshold at which an under current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.35 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12286,25 +25706,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: critical - 1: notCritical - - name: lgpPduRcpEntryPostOnDelay - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.220 + - name: lgpPduPsLineEntryEcThrshldOvrWarn + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.36 type: gauge - help: The 'Post On Delay' is the time interval (in seconds) that the PDU waits - after a command is issued to switch ON a receptacle before applying power - to the receptacle A value of zero implies that there is no delay (i.e - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.220 + help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.36 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12313,23 +25728,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryPostOffDelay - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.225 + - name: lgpPduPsLineEntryEcThrshldOvrAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.37 type: gauge - help: The 'Post Off Delay' is the time interval (in seconds) that the PDU waits - after a command is issued to switch OFF a receptacle before removing power - from the receptacle A value of zero implies that there is no delay (i.e - - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.225 + help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.37 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12338,21 +25750,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryAddReceptacleToGroup - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.230 - type: OctetString - help: This receptacle can be added to a group by writing a corresponding OID - to this column - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.230 + - name: lgpPduPsLineEntryEcAvailBeforeAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.38 + type: gauge + help: The amount that the current/amperage may increase from its present value + before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.38 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12361,21 +25773,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduRcpEntryRemoveReceptacleFromGroup - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.235 - type: OctetString - help: This receptacle can be removed from a group by writing a corresponding - OID to this column - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.235 + - name: lgpPduPsLineEntryEcUsedBeforeAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.39 + type: gauge + help: The percent of current utilization relative to the over current alarm + threshold. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.39 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduRbEntryIndex + - labelname: lgpPduPsEntryIndex type: gauge - - labelname: lgpPduRcpEntryIndex + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12384,18 +25796,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduRcpEntryIndex - labelname: lgpPduRcpEntrySysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorIndex - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.1 + - name: lgpPduPsLineEntryEpLL + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.60 type: gauge - help: This is the index indicating the nth element of the table. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.1 + help: Line to Line Electrical Potential - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.60 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12404,18 +25818,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorMeasType - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.5 + - name: lgpPduPsLineEntryEpLLTenths + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.61 type: gauge - help: not-specified The type of sensor is unknown - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.5 + help: Line to Line Electrical Potential - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.61 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12424,23 +25840,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - enum_values: - 0: not-specified - 1: temperature - 2: humidity - 3: temperature-and-humidity - - name: lgpPduAuxSensorId - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.10 + - name: lgpPduPsLineEntryEcAvailBeforeAlarmHundredths + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.62 type: gauge - help: System assigned auxiliary sensor identification number - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.10 + help: The amount that the current/amperage may increase from its present value + before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.62 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12449,18 +25863,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 - type: DisplayString - help: Label assigned to the auxiliary sensor at runtime by the system - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - name: lgpPduPsLineEntryPwrLN + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.63 + type: gauge + help: The line-to-neutral measurement of the Real Power (Watts) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.63 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12469,18 +25885,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorPositionRelative - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.20 + - name: lgpPduPsLineEntryPwrLL + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.64 type: gauge - help: Auxiliary sensor relative position - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.20 + help: The line-to-line measurement of the Real Power (Watts) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.64 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12489,18 +25907,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorUsrLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.25 - type: DisplayString - help: User assigned auxiliary sensor label. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.25 + - name: lgpPduPsLineEntryApLN + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.65 + type: gauge + help: The line-to-neutral measurement of the Apparent Power (VA) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.65 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12509,19 +25929,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorUsrTag1 - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.30 - type: DisplayString - help: User assigned Tag to assist in identifying or grouping this auxiliary - sensor within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.30 + - name: lgpPduPsLineEntryApLL + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.66 + type: gauge + help: The line-to-line measurement of the Apparent Power (VA) - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.66 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12530,19 +25951,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorUsrTag2 - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.35 - type: DisplayString - help: User assigned Tag to assist in identifying or grouping this auxiliary - sensor within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.35 + - name: lgpPduPsLineEntryPfLN + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.67 + type: gauge + help: The line-to-neutral measurement of the Power Factor of the power source + - 1.3.6.1.4.1.476.1.42.3.8.30.40.1.67 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12551,19 +25974,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorTempSerialNum - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.40 - type: DisplayString - help: The temperature sensor's globally unique serial number assigned at the - time of manufacture. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.40 + - name: lgpPduPsLineEntryPfLL + oid: 1.3.6.1.4.1.476.1.42.3.8.30.40.1.68 + type: gauge + help: The line-to-line measurement of the Power Factor of the power source - + 1.3.6.1.4.1.476.1.42.3.8.30.40.1.68 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduPsEntryIndex + type: gauge + - labelname: lgpPduPsLineEntryIndex type: gauge lookups: - labels: @@ -12572,19 +25997,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduPsEntryIndex + labelname: lgpPduPsEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.30.20.1.15 type: DisplayString - - name: lgpPduAuxSensorHumSerialNum - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.45 - type: DisplayString - help: The humidity sensor's globally unique serial number assigned at the time - of manufacture. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.45 + - name: lgpPduRcpEntryIndex + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.1 + type: gauge + help: This is the index that indicates the receptacle position on the receptacle + branch - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.1 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12593,19 +26020,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempMeasurementDegF - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.50 + - name: lgpPduRcpEntryId + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.5 type: gauge - help: Temperature measured at the temperature sensor reported in degrees Fahrenheit. - - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.50 + help: A runtime assigned receptacle identification number. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.5 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12614,18 +26042,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldUndrAlmDegF - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.55 - type: gauge - help: Under temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.55 + - name: lgpPduRcpEntryUsrLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.10 + type: DisplayString + help: User assigned label for this receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.10 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12634,18 +26064,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldOvrAlmDegF - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.60 - type: gauge - help: Over temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.60 + - name: lgpPduRcpEntryUsrTag1 + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.15 + type: DisplayString + help: User assigned Tag to assist in identifying or grouping this receptacle + within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.15 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12654,18 +26087,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldUndrWarnDegF - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.65 - type: gauge - help: Under temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.65 + - name: lgpPduRcpEntryUsrTag2 + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.20 + type: DisplayString + help: User assigned Tag to assist in identifying or grouping this receptacle + within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.20 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12674,18 +26110,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldOvrWarnDegF - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.70 - type: gauge - help: Over temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.70 + - name: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + help: System assigned identifier representing the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12694,19 +26132,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempMeasurementDegC - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.75 + - name: lgpPduRcpEntryPosition + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.30 type: gauge - help: Temperature measured at the temperature sensor reported in degrees Celsius. - - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.75 + help: A number representing the position of the receptacle within the receptacle + branch. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.30 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12715,18 +26155,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldUndrAlmDegC - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.80 + - name: lgpPduRcpEntryType + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.40 type: gauge - help: Under temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.80 + help: The type or form of receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.40 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12735,18 +26177,28 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldOvrAlmDegC - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.85 + enum_values: + 0: not-specified + 1: nema-5-20R-20-Amp + 2: iec-C13-sheet-F-10-Amp + 3: iec-C19-sheet-J-16-Amp + 7: cee-7-type-E-schuko + 8: nema-L6-30R-30-Amp + - name: lgpPduRcpEntryLineSource + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.45 type: gauge - help: Over temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.85 + help: This represents the line source that is supplying power to this receptacle + - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.45 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12755,18 +26207,31 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldUndrWarnDegC - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.90 + enum_values: + 0: not-specified + 1: line-1-N + 2: line-2-N + 3: line-3-N + 4: line-1-line-2 + 5: line-2-line-3 + 6: line-3-line-1 + 7: unknown-line-neutral + 8: unknown-line-line + - name: lgpPduRcpEntryCapabilities + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.50 type: gauge - help: Under temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.90 + help: Receptacle capabilities describes what an individual receptacle is capable + of - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.50 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12775,18 +26240,28 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorTempThrshldOvrWarnDegC - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.95 + enum_values: + 0: not-specified + 1: no-optional-capabilities + 2: measurement-only + 3: measurement-and-control + 4: control-only + 5: current-measurement-only + 6: current-measurement-and-control + - name: lgpPduRcpEntryEp + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.55 type: gauge - help: Over temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.95 + help: Voltage being delivered to the load attached to the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.55 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12795,18 +26270,20 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorHumMeasurement - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.100 + - name: lgpPduRcpEntryEpTenths + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.56 type: gauge - help: Relative Humidity measured at the humidity sensor. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.100 + help: Voltage being delivered to the load attached to the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.56 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12815,18 +26292,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorHumThrshldUndrAlm - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.105 + - name: lgpPduRcpEntryEc + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.60 type: gauge - help: Under relative humidity alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.105 + help: Current (amperage) being delivered to the load attached to the receptacle + - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.60 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12835,18 +26315,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorHumThrshldOvrAlm - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.110 + - name: lgpPduRcpEntryEcHundredths + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.61 type: gauge - help: Over relative humidity alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.110 + help: Current (amperage) being delivered to the load attached to the receptacle + - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.61 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12855,18 +26338,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorHumThrshldUndrWarn - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.115 + - name: lgpPduRcpEntryPwrOut + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.65 type: gauge - help: Under relative humidity warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.115 + help: Real Power (watts) being delivered to the load attached to the receptacle. + - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.65 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12875,18 +26361,21 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: lgpPduAuxSensorHumThrshldOvrWarn - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.120 + - name: lgpPduRcpEntryApOut + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.70 type: gauge - help: Over relative humidity warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.120 + help: Apparent Power (volt-amps) being delivered to the load attached to the + receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.70 indexes: - labelname: lgpPduEntryIndex type: gauge - - labelname: lgpPduAuxSensorIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: @@ -12895,2384 +26384,2647 @@ modules: oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - labels: - - lgpPduAuxSensorIndex - labelname: lgpPduAuxSensorSysAssignLabel - oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - mikrotik: - walk: - - 1.3.6.1.2.1.25 - - 1.3.6.1.2.1.31.1.1.1.1 - - 1.3.6.1.4.1.14988 - - 1.3.6.1.4.1.2021.10.1.1 - - 1.3.6.1.4.1.2021.10.1.2 - get: - - 1.3.6.1.2.1.1.1.0 - metrics: - - name: sysDescr - oid: 1.3.6.1.2.1.1.1 - type: DisplayString - help: A textual description of the entity - 1.3.6.1.2.1.1.1 - - name: hrSystemUptime - oid: 1.3.6.1.2.1.25.1.1 - type: gauge - help: The amount of time since this host was last initialized - 1.3.6.1.2.1.25.1.1 - - name: hrSystemDate - oid: 1.3.6.1.2.1.25.1.2 - type: DateAndTime - help: The host's notion of the local date and time of day. - 1.3.6.1.2.1.25.1.2 - - name: hrSystemInitialLoadDevice - oid: 1.3.6.1.2.1.25.1.3 - type: gauge - help: The index of the hrDeviceEntry for the device from which this host is - configured to load its initial operating system configuration (i.e., which - operating system code and/or boot parameters) - 1.3.6.1.2.1.25.1.3 - - name: hrSystemInitialLoadParameters - oid: 1.3.6.1.2.1.25.1.4 - type: OctetString - help: This object contains the parameters (e.g - 1.3.6.1.2.1.25.1.4 - - name: hrSystemNumUsers - oid: 1.3.6.1.2.1.25.1.5 - type: gauge - help: The number of user sessions for which this host is storing state information - - 1.3.6.1.2.1.25.1.5 - - name: hrSystemProcesses - oid: 1.3.6.1.2.1.25.1.6 - type: gauge - help: The number of process contexts currently loaded or running on this system. - - 1.3.6.1.2.1.25.1.6 - - name: hrSystemMaxProcesses - oid: 1.3.6.1.2.1.25.1.7 - type: gauge - help: The maximum number of process contexts this system can support - 1.3.6.1.2.1.25.1.7 - - name: hrMemorySize - oid: 1.3.6.1.2.1.25.2.2 - type: gauge - help: The amount of physical read-write main memory, typically RAM, contained - by the host. - 1.3.6.1.2.1.25.2.2 - - name: hrStorageIndex - oid: 1.3.6.1.2.1.25.2.3.1.1 + - name: lgpPduRcpEntryPf + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.75 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 + help: Receptacle Power Factor, which is the ratio of real power to apparent + power (i.e - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.75 indexes: - - labelname: hrStorageIndex + - labelname: lgpPduEntryIndex type: gauge - lookups: - - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 - type: DisplayString - - name: hrStorageType - oid: 1.3.6.1.2.1.25.2.3.1.2 - type: OctetString - help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 - indexes: - - labelname: hrStorageIndex + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - 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: hrStorageIndex - type: gauge - lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: hrStorageAllocationUnits - oid: 1.3.6.1.2.1.25.2.3.1.4 + - name: lgpPduRcpEntryFreq + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.80 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 + help: The measured line frequency being delivered to the load attached to the + receptacle. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.80 indexes: - - labelname: hrStorageIndex + - labelname: lgpPduEntryIndex + type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - 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: hrStorageIndex - type: gauge - lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: hrStorageUsed - oid: 1.3.6.1.2.1.25.2.3.1.6 + - name: lgpPduRcpEntryEnergyAccum + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.85 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 + help: Total accumulated energy, measured at the module input, since the last + energy reset - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.85 indexes: - - labelname: hrStorageIndex + - labelname: lgpPduEntryIndex + type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 type: DisplayString - - 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: hrStorageIndex - type: gauge - lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 type: DisplayString - - name: hrDeviceIndex - oid: 1.3.6.1.2.1.25.3.2.1.1 - type: gauge - help: A unique value for each device contained by the host - 1.3.6.1.2.1.25.3.2.1.1 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrDeviceType - oid: 1.3.6.1.2.1.25.3.2.1.2 - type: OctetString - help: An indication of the type of device - 1.3.6.1.2.1.25.3.2.1.2 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrDeviceDescr - oid: 1.3.6.1.2.1.25.3.2.1.3 - type: DisplayString - help: A textual description of this device, including the device's manufacturer - and revision, and optionally, its serial number. - 1.3.6.1.2.1.25.3.2.1.3 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrDeviceID - oid: 1.3.6.1.2.1.25.3.2.1.4 - type: OctetString - help: The product ID for this device. - 1.3.6.1.2.1.25.3.2.1.4 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrDeviceStatus - oid: 1.3.6.1.2.1.25.3.2.1.5 - type: gauge - help: The current operational state of the device described by this row of the - table - 1.3.6.1.2.1.25.3.2.1.5 - indexes: - - labelname: hrDeviceIndex - type: gauge - enum_values: - 1: unknown - 2: running - 3: warning - 4: testing - 5: down - - name: hrDeviceErrors - oid: 1.3.6.1.2.1.25.3.2.1.6 - type: counter - help: The number of errors detected on this device - 1.3.6.1.2.1.25.3.2.1.6 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrProcessorFrwID - oid: 1.3.6.1.2.1.25.3.3.1.1 - type: OctetString - help: The product ID of the firmware associated with the processor. - 1.3.6.1.2.1.25.3.3.1.1 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrProcessorLoad - oid: 1.3.6.1.2.1.25.3.3.1.2 - type: gauge - help: The average, over the last minute, of the percentage of time that this - processor was not idle - 1.3.6.1.2.1.25.3.3.1.2 - indexes: - - labelname: hrDeviceIndex - type: gauge - - name: hrNetworkIfIndex - oid: 1.3.6.1.2.1.25.3.4.1.1 + - name: lgpPduRcpEntryPwrOnDelay + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.90 type: gauge - help: The value of ifIndex which corresponds to this network device - 1.3.6.1.2.1.25.3.4.1.1 + help: The amount of time to wait before power is applied to the receptacle after + a power strip is turned on or rebooted - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.90 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrPrinterStatus - oid: 1.3.6.1.2.1.25.3.5.1.1 - type: gauge - help: The current status of this printer device. - 1.3.6.1.2.1.25.3.5.1.1 - indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduRbEntryIndex type: gauge - enum_values: - 1: other - 2: unknown - 3: idle - 4: printing - 5: warmup - - name: hrPrinterDetectedErrorState - oid: 1.3.6.1.2.1.25.3.5.1.2 - type: OctetString - help: This object represents any error conditions detected by the printer - - 1.3.6.1.2.1.25.3.5.1.2 - indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrDiskStorageAccess - oid: 1.3.6.1.2.1.25.3.6.1.1 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryPwrState + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.95 type: gauge - help: An indication if this long-term storage device is readable and writable - or only readable - 1.3.6.1.2.1.25.3.6.1.1 + help: unknown The current power state is unknown - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.95 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString enum_values: - 1: readWrite - 2: readOnly - - name: hrDiskStorageMedia - oid: 1.3.6.1.2.1.25.3.6.1.2 + 0: unknown + 1: "off" + 2: "on" + 3: off-pending-on-delay + - name: lgpPduRcpEntryPwrUpState + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.96 type: gauge - help: An indication of the type of media used in this long- term storage device. - - 1.3.6.1.2.1.25.3.6.1.2 + help: The 'Power Up State' defines the state to which the receptacle shall return + after a power cycle of the PDU - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.96 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex + type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString enum_values: - 1: other - 2: unknown - 3: hardDisk - 4: floppyDisk - 5: opticalDiskROM - 6: opticalDiskWORM - 7: opticalDiskRW - 8: ramDisk - - name: hrDiskStorageRemoveble - oid: 1.3.6.1.2.1.25.3.6.1.3 + 1: "on" + 2: "off" + 3: last-state + - name: lgpPduRcpEntryControl + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.100 type: gauge - help: Denotes whether or not the disk media may be removed from the drive. - - 1.3.6.1.2.1.25.3.6.1.3 + help: This object represents the current and persistent (configured) power state + of the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.100 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex + type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString enum_values: - 1: "true" - 2: "false" - - name: hrDiskStorageCapacity - oid: 1.3.6.1.2.1.25.3.6.1.4 + 0: "off" + 1: "on" + 2: cycle-power + - name: lgpPduRcpEntryControlLock + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.105 type: gauge - help: The total size for this long-term storage device - 1.3.6.1.2.1.25.3.6.1.4 + help: This object represents the locked state of the receptacle - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.105 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrPartitionIndex - oid: 1.3.6.1.2.1.25.3.7.1.1 - type: gauge - help: A unique value for each partition on this long-term storage device - 1.3.6.1.2.1.25.3.7.1.1 - indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduRbEntryIndex type: gauge - - labelname: hrPartitionIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrPartitionLabel - oid: 1.3.6.1.2.1.25.3.7.1.2 - type: OctetString - help: A textual description of this partition. - 1.3.6.1.2.1.25.3.7.1.2 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + enum_values: + 0: unknown + 1: unlocked + 2: locked + - name: lgpPduRcpEntryEcThrshldUnderAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.150 + type: gauge + help: The threshold at which an under current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.150 indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrPartitionID - oid: 1.3.6.1.2.1.25.3.7.1.3 - type: OctetString - help: A descriptor which uniquely represents this partition to the responsible - operating system - 1.3.6.1.2.1.25.3.7.1.3 - indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduRbEntryIndex type: gauge - - labelname: hrPartitionIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrPartitionSize - oid: 1.3.6.1.2.1.25.3.7.1.4 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcThrshldOverWarn + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.151 type: gauge - help: The size of this partition. - 1.3.6.1.2.1.25.3.7.1.4 + help: The threshold at which an over current warning is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.151 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex type: gauge - - labelname: hrPartitionIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrPartitionFSIndex - oid: 1.3.6.1.2.1.25.3.7.1.5 + - labelname: lgpPduRcpEntryIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcThrshldOverAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.152 type: gauge - help: The index of the file system mounted on this partition - 1.3.6.1.2.1.25.3.7.1.5 + help: The threshold at which an over current alarm is activated - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.152 indexes: - - labelname: hrDeviceIndex + - labelname: lgpPduEntryIndex type: gauge - - labelname: hrPartitionIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrFSIndex - oid: 1.3.6.1.2.1.25.3.8.1.1 - type: gauge - help: A unique value for each file system local to this host - 1.3.6.1.2.1.25.3.8.1.1 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrFSMountPoint - oid: 1.3.6.1.2.1.25.3.8.1.2 - type: OctetString - help: The path name of the root of this file system. - 1.3.6.1.2.1.25.3.8.1.2 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcAvailBeforeAlarmHundredths + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.159 + type: gauge + help: The amount that the current/amperage may increase from its present value + before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.159 indexes: - - labelname: hrFSIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrFSRemoteMountPoint - oid: 1.3.6.1.2.1.25.3.8.1.3 - type: OctetString - help: A description of the name and/or address of the server that this file - system is mounted from - 1.3.6.1.2.1.25.3.8.1.3 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrFSType - oid: 1.3.6.1.2.1.25.3.8.1.4 - type: OctetString - help: The value of this object identifies the type of this file system. - 1.3.6.1.2.1.25.3.8.1.4 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrFSAccess - oid: 1.3.6.1.2.1.25.3.8.1.5 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcAvailBeforeAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.160 type: gauge - help: An indication if this file system is logically configured by the operating - system to be readable and writable or only readable - 1.3.6.1.2.1.25.3.8.1.5 + help: The amount that the current/amperage may increase from its present value + before an over current alarm occurs. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.160 indexes: - - labelname: hrFSIndex + - labelname: lgpPduEntryIndex type: gauge - enum_values: - 1: readWrite - 2: readOnly - - name: hrFSBootable - oid: 1.3.6.1.2.1.25.3.8.1.6 - type: gauge - help: A flag indicating whether this file system is bootable. - 1.3.6.1.2.1.25.3.8.1.6 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRbEntryIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: hrFSStorageIndex - oid: 1.3.6.1.2.1.25.3.8.1.7 + - labelname: lgpPduRcpEntryIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcUsedBeforeAlarm + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.161 type: gauge - help: The index of the hrStorageEntry that represents information about this - file system - 1.3.6.1.2.1.25.3.8.1.7 + help: The percent of current utilization relative to the over current alarm + threshold. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.161 indexes: - - labelname: hrFSIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrFSLastFullBackupDate - oid: 1.3.6.1.2.1.25.3.8.1.8 - type: DateAndTime - help: The last date at which this complete file system was copied to another - storage device for backup - 1.3.6.1.2.1.25.3.8.1.8 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrFSLastPartialBackupDate - oid: 1.3.6.1.2.1.25.3.8.1.9 - type: DateAndTime - help: The last date at which a portion of this file system was copied to another - storage device for backup - 1.3.6.1.2.1.25.3.8.1.9 - indexes: - - labelname: hrFSIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrSWOSIndex - oid: 1.3.6.1.2.1.25.4.1 - type: gauge - help: The value of the hrSWRunIndex for the hrSWRunEntry that represents the - primary operating system running on this host - 1.3.6.1.2.1.25.4.1 - - name: hrSWRunIndex - oid: 1.3.6.1.2.1.25.4.2.1.1 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryEcCrestFactor + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.162 type: gauge - help: A unique value for each piece of software running on the host - 1.3.6.1.2.1.25.4.2.1.1 + help: Receptacle current crest factor, which is the peak amplitude of the current + waveform divided by the RMS value of the waveform. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.162 indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrSWRunName - oid: 1.3.6.1.2.1.25.4.2.1.2 - type: OctetString - help: A textual description of this running piece of software, including the - manufacturer, revision, and the name by which it is commonly known - 1.3.6.1.2.1.25.4.2.1.2 - indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrSWRunID - oid: 1.3.6.1.2.1.25.4.2.1.3 - type: OctetString - help: The product ID of this running piece of software. - 1.3.6.1.2.1.25.4.2.1.3 - indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrSWRunPath - oid: 1.3.6.1.2.1.25.4.2.1.4 - type: OctetString - help: A description of the location on long-term storage (e.g - 1.3.6.1.2.1.25.4.2.1.4 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryBlinkLED + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.200 + type: gauge + help: Blink the receptacle LED - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.200 indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrSWRunParameters - oid: 1.3.6.1.2.1.25.4.2.1.5 - type: OctetString - help: A description of the parameters supplied to this software when it was - initially loaded. - 1.3.6.1.2.1.25.4.2.1.5 - indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrSWRunType - oid: 1.3.6.1.2.1.25.4.2.1.6 - type: gauge - help: The type of this software. - 1.3.6.1.2.1.25.4.2.1.6 - indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduRcpEntryIndex type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString enum_values: - 1: unknown - 2: operatingSystem - 3: deviceDriver - 4: application - - name: hrSWRunStatus - oid: 1.3.6.1.2.1.25.4.2.1.7 + 1: noAction + 2: blinkLED + - name: lgpPduRcpEntrySwOverTemperatureProtection + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.205 type: gauge - help: The status of this running piece of software - 1.3.6.1.2.1.25.4.2.1.7 + help: 'The configuration parameter to enable or disable the Receptacle SW Over + Temperature Protection feature If the feature is enabled, in case of Over + Temperature Alarm condition, following action will be taken on the receptacles: + Locked & Off - No Change Unlocked & Off - No Change Unlocked & On - Turn it + Off - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.205' indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduEntryIndex + type: gauge + - labelname: lgpPduRbEntryIndex + type: gauge + - labelname: lgpPduRcpEntryIndex type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString enum_values: - 1: running - 2: runnable - 3: notRunnable - 4: invalid - - name: hrSWRunPerfCPU - oid: 1.3.6.1.2.1.25.5.1.1.1 + 0: disable + 1: enable + - name: lgpPduRcpEntryOperationCondition + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.210 type: gauge - help: The number of centi-seconds of the total system's CPU resources consumed - by this process - 1.3.6.1.2.1.25.5.1.1.1 + help: Receptacle Operating Condition - indicates the condition of the receptacle + - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.210 indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrSWRunPerfMem - oid: 1.3.6.1.2.1.25.5.1.1.2 - type: gauge - help: The total amount of real system memory allocated to this process. - 1.3.6.1.2.1.25.5.1.1.2 - indexes: - - labelname: hrSWRunIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrSWInstalledLastChange - oid: 1.3.6.1.2.1.25.6.1 - type: gauge - help: The value of sysUpTime when an entry in the hrSWInstalledTable was last - added, renamed, or deleted - 1.3.6.1.2.1.25.6.1 - - name: hrSWInstalledLastUpdateTime - oid: 1.3.6.1.2.1.25.6.2 - type: gauge - help: The value of sysUpTime when the hrSWInstalledTable was last completely - updated - 1.3.6.1.2.1.25.6.2 - - name: hrSWInstalledIndex - oid: 1.3.6.1.2.1.25.6.3.1.1 + - labelname: lgpPduRcpEntryIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + enum_values: + 1: normalOperation + 2: normalWithWarning + 3: normalWithAlarm + 4: abnormal + - name: lgpPduRcpEntryCriticality + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.215 type: gauge - help: A unique value for each piece of software installed on the host - 1.3.6.1.2.1.25.6.3.1.1 + help: The configuration parameter can be used by the user to mark a receptacle + as critical or non-critical. - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.215 indexes: - - labelname: hrSWInstalledIndex + - labelname: lgpPduEntryIndex type: gauge - - name: hrSWInstalledName - oid: 1.3.6.1.2.1.25.6.3.1.2 - type: OctetString - help: A textual description of this installed piece of software, including the - manufacturer, revision, the name by which it is commonly known, and optionally, - its serial number. - 1.3.6.1.2.1.25.6.3.1.2 - indexes: - - labelname: hrSWInstalledIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: hrSWInstalledID - oid: 1.3.6.1.2.1.25.6.3.1.3 - type: OctetString - help: The product ID of this installed piece of software. - 1.3.6.1.2.1.25.6.3.1.3 - indexes: - - labelname: hrSWInstalledIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: hrSWInstalledType - oid: 1.3.6.1.2.1.25.6.3.1.4 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + enum_values: + 0: critical + 1: notCritical + - name: lgpPduRcpEntryPostOnDelay + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.220 type: gauge - help: The type of this software. - 1.3.6.1.2.1.25.6.3.1.4 + help: The 'Post On Delay' is the time interval (in seconds) that the PDU waits + after a command is issued to switch ON a receptacle before applying power + to the receptacle A value of zero implies that there is no delay (i.e - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.220 indexes: - - labelname: hrSWInstalledIndex + - labelname: lgpPduEntryIndex type: gauge - enum_values: - 1: unknown - 2: operatingSystem - 3: deviceDriver - 4: application - - name: hrSWInstalledDate - oid: 1.3.6.1.2.1.25.6.3.1.5 - type: DateAndTime - help: The last-modification date of this application as it would appear in a - directory listing - 1.3.6.1.2.1.25.6.3.1.5 - indexes: - - labelname: hrSWInstalledIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: mtxrWlStatIndex - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.1' - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: mtxrWlStatTxRate - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.2 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryPostOffDelay + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.225 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.2 + help: The 'Post Off Delay' is the time interval (in seconds) that the PDU waits + after a command is issued to switch OFF a receptacle before removing power + from the receptacle A value of zero implies that there is no delay (i.e - + 1.3.6.1.4.1.476.1.42.3.8.50.20.1.225 indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlStatRxRate - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.3 - type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.3 - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: mtxrWlStatStrength - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.4 - type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.1.1.1.4 - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: mtxrWlStatSsid - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.5 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.5' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryAddReceptacleToGroup + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.230 + type: OctetString + help: This receptacle can be added to a group by writing a corresponding OID + to this column - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.230 indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlStatBssid - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.6 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.6' - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: mtxrWlStatFreq - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.7 - type: gauge - help: megahertz - 1.3.6.1.4.1.14988.1.1.1.1.1.7 - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: mtxrWlStatBand - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.8 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.8' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduRcpEntryRemoveReceptacleFromGroup + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.235 + type: OctetString + help: This receptacle can be removed from a group by writing a corresponding + OID to this column - 1.3.6.1.4.1.476.1.42.3.8.50.20.1.235 indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlStatTxCCQ - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.9 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.9' - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRbEntryIndex type: gauge - - name: mtxrWlStatRxCCQ - oid: 1.3.6.1.4.1.14988.1.1.1.1.1.10 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.10' - indexes: - - labelname: mtxrWlStatIndex + - labelname: lgpPduRcpEntryIndex type: gauge - - name: mtxrWlRtabAddr - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.1 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.1' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduRcpEntryIndex + labelname: lgpPduRcpEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.50.20.1.25 + type: DisplayString + - name: lgpPduAuxSensorIndex + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.1 + type: gauge + help: This is the index indicating the nth element of the table. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.1 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabIface - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.2 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorMeasType + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.5 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.2' + help: not-specified The type of sensor is unknown - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.5 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabStrength - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.3 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + enum_values: + 0: not-specified + 1: temperature + 2: humidity + 3: temperature-and-humidity + - name: lgpPduAuxSensorId + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.10 type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.1.2.1.3 - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface - type: gauge - - name: mtxrWlRtabTxBytes - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.4 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.4' + help: System assigned auxiliary sensor identification number - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.10 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRxBytes - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.5 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.5' - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlRtabTxPackets - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.6 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.6' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + help: Label assigned to the auxiliary sensor at runtime by the system - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRxPackets - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.7 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.7' - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlRtabTxRate - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.8 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorPositionRelative + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.20 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.8 + help: Auxiliary sensor relative position - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.20 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRxRate - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.9 - type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.9 - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlRtabRouterOSVersion - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.10 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorUsrLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.25 type: DisplayString - help: RouterOS version - 1.3.6.1.4.1.14988.1.1.1.2.1.10 + help: User assigned auxiliary sensor label. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.25 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabUptime - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.11 - type: gauge - help: uptime - 1.3.6.1.4.1.14988.1.1.1.2.1.11 - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlRtabSignalToNoise - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.12 - type: gauge - help: Measured in dB, if value does not exist it is indicated with 0 - 1.3.6.1.4.1.14988.1.1.1.2.1.12 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorUsrTag1 + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.30 + type: DisplayString + help: User assigned Tag to assist in identifying or grouping this auxiliary + sensor within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.30 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabTxStrengthCh0 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.13 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.13' - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlRtabRxStrengthCh0 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.14 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.14' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorUsrTag2 + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.35 + type: DisplayString + help: User assigned Tag to assist in identifying or grouping this auxiliary + sensor within the end-users domain. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.35 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabTxStrengthCh1 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.15 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.15' + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempSerialNum + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.40 + type: DisplayString + help: The temperature sensor's globally unique serial number assigned at the + time of manufacture. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.40 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRxStrengthCh1 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.16 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.16' + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumSerialNum + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.45 + type: DisplayString + help: The humidity sensor's globally unique serial number assigned at the time + of manufacture. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.45 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabTxStrengthCh2 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.17 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempMeasurementDegF + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.50 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.17' + help: Temperature measured at the temperature sensor reported in degrees Fahrenheit. + - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.50 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRxStrengthCh2 - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.18 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldUndrAlmDegF + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.55 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.18' + help: Under temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.55 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabTxStrength - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.19 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldOvrAlmDegF + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.60 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.19' + help: Over temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.60 indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabRadioName - oid: 1.3.6.1.4.1.14988.1.1.1.2.1.20 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.20' - indexes: - - labelname: mtxrWlRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlApIndex - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.1 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldUndrWarnDegF + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.65 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.1' + help: Under temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.65 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApTxRate - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.2 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldOvrWarnDegF + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.70 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.2 + help: Over temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.70 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApRxRate - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.3 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempMeasurementDegC + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.75 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.3 + help: Temperature measured at the temperature sensor reported in degrees Celsius. + - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.75 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApSsid - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.4' - indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlApBssid - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.5 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.5' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldUndrAlmDegC + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.80 + type: gauge + help: Under temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.80 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApClientCount - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.6 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.6' - indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlApFreq - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.7 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldOvrAlmDegC + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.85 type: gauge - help: megahertz - 1.3.6.1.4.1.14988.1.1.1.3.1.7 + help: Over temperature alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.85 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApBand - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.8 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.8' - indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlApNoiseFloor - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.9 + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldUndrWarnDegC + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.90 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.9' + help: Under temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.90 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlApOverallTxCCQ - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.10 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.10' - indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlApAuthClientCount - oid: 1.3.6.1.4.1.14988.1.1.1.3.1.11 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.11' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorTempThrshldOvrWarnDegC + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.95 + type: gauge + help: Over temperature warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.95 indexes: - - labelname: mtxrWlApIndex + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlRtabEntryCount - oid: 1.3.6.1.4.1.14988.1.1.1.4 - type: gauge - help: Wireless registration table entry count - 1.3.6.1.4.1.14988.1.1.1.4 - - name: mtxrWlCMRtabAddr - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.1 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.1' + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumMeasurement + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.100 + type: gauge + help: Relative Humidity measured at the humidity sensor. - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.100 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlCMRtabIface - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.2 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumThrshldUndrAlm + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.105 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.2' + help: Under relative humidity alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.105 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlCMRtabUptime - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.3 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumThrshldOvrAlm + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.110 type: gauge - help: uptime - 1.3.6.1.4.1.14988.1.1.1.5.1.3 + help: Over relative humidity alarm threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.110 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlCMRtabTxBytes - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.4 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.4' - indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlCMRtabRxBytes - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.5 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.5' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumThrshldUndrWarn + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.115 + type: gauge + help: Under relative humidity warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.115 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlCMRtabTxPackets - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.6 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.6' - indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduAuxSensorIndex type: gauge - - name: mtxrWlCMRtabRxPackets - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.7 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.7' + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + - name: lgpPduAuxSensorHumThrshldOvrWarn + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.120 + type: gauge + help: Over relative humidity warning threshold - 1.3.6.1.4.1.476.1.42.3.8.60.10.1.120 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: lgpPduEntryIndex type: gauge - - name: mtxrWlCMRtabTxRate - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.8 + - labelname: lgpPduAuxSensorIndex + type: gauge + lookups: + - labels: + - lgpPduEntryIndex + labelname: lgpPduEntrySysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.20.1.15 + type: DisplayString + - labels: + - lgpPduAuxSensorIndex + labelname: lgpPduAuxSensorSysAssignLabel + oid: 1.3.6.1.4.1.476.1.42.3.8.60.10.1.15 + type: DisplayString + mikrotik: + walk: + - 1.3.6.1.2.1.31.1.1.1.1 + - 1.3.6.1.4.1.14988 + metrics: + - name: mtxrWlStatIndex + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.1 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.8 + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.1' indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabRxRate - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.9 + - name: mtxrWlStatTxRate + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.2 type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.9 + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.2 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabTxStrength - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.10 + - name: mtxrWlStatRxRate + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.3 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.10' + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.3 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabRxStrength - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.11 + - name: mtxrWlStatStrength + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.4 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.11' + help: dBm - 1.3.6.1.4.1.14988.1.1.1.1.1.4 indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabSsid - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.12 + - name: mtxrWlStatSsid + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.5 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.12' + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.5' indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabEapIdent - oid: 1.3.6.1.4.1.14988.1.1.1.5.1.13 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.13' + - name: mtxrWlStatBssid + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.6 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.6' indexes: - - labelname: mtxrWlCMRtabAddr - type: PhysAddress48 - fixed_size: 6 - - labelname: mtxrWlCMRtabIface + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRtabEntryCount - oid: 1.3.6.1.4.1.14988.1.1.1.6 - type: gauge - help: Wireless CAPSMAN registration table entry count - 1.3.6.1.4.1.14988.1.1.1.6 - - name: mtxrWlCMIndex - oid: 1.3.6.1.4.1.14988.1.1.1.7.1.1 + - name: mtxrWlStatFreq + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.7 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.1' + help: megahertz - 1.3.6.1.4.1.14988.1.1.1.1.1.7 indexes: - - labelname: mtxrWlCMIndex + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMRegClientCount - oid: 1.3.6.1.4.1.14988.1.1.1.7.1.2 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.2' + - name: mtxrWlStatBand + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.8 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.8' indexes: - - labelname: mtxrWlCMIndex + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMAuthClientCount - oid: 1.3.6.1.4.1.14988.1.1.1.7.1.3 + - name: mtxrWlStatTxCCQ + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.9 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.3' - indexes: - - labelname: mtxrWlCMIndex - type: gauge - - name: mtxrWlCMState - oid: 1.3.6.1.4.1.14988.1.1.1.7.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.4' + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.9' indexes: - - labelname: mtxrWlCMIndex + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWlCMChannel - oid: 1.3.6.1.4.1.14988.1.1.1.7.1.5 - type: DisplayString - help: for master only - 1.3.6.1.4.1.14988.1.1.1.7.1.5 + - name: mtxrWlStatRxCCQ + oid: 1.3.6.1.4.1.14988.1.1.1.1.1.10 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.10' indexes: - - labelname: mtxrWlCMIndex + - labelname: mtxrWlStatIndex type: gauge - - name: mtxrWl60GIndex - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.1' + - name: mtxrWlRtabAddr + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.1 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.1' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GMode - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.2 + - name: mtxrWlRtabIface + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.2 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.2' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - enum_values: - 0: apBridge - 1: stationBridge - 2: sniff - 3: bridge - - name: mtxrWl60GSsid - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.3 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.3' + - name: mtxrWlRtabStrength + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.3 + type: gauge + help: dBm - 1.3.6.1.4.1.14988.1.1.1.2.1.3 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GConnected - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.4 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.4' + - name: mtxrWlRtabTxBytes + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.4 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.4' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrWl60GRemote - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.5 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.5' + - name: mtxrWlRtabRxBytes + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.5 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.5' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GFreq - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.6 - type: gauge - help: Mhz - 1.3.6.1.4.1.14988.1.1.1.8.1.6 + - name: mtxrWlRtabTxPackets + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.6 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.6' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GMcs - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.7 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.7' + - name: mtxrWlRtabRxPackets + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.7 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.7' indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GSignal - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.8 + - name: mtxrWlRtabTxRate + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.8 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.8' + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.8 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GTxSector - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.9 + - name: mtxrWlRtabRxRate + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.9 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.9' + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.9 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GTxSectorInfo - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.11 + - name: mtxrWlRtabRouterOSVersion + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.10 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.11' + help: RouterOS version - 1.3.6.1.4.1.14988.1.1.1.2.1.10 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GRssi - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.12 + - name: mtxrWlRtabUptime + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.11 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.12' + help: uptime - 1.3.6.1.4.1.14988.1.1.1.2.1.11 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GPhyRate - oid: 1.3.6.1.4.1.14988.1.1.1.8.1.13 + - name: mtxrWlRtabSignalToNoise + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.12 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.13' + help: Measured in dB, if value does not exist it is indicated with 0 - 1.3.6.1.4.1.14988.1.1.1.2.1.12 indexes: - - labelname: mtxrWl60GIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaIndex - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.1 + - name: mtxrWlRtabTxStrengthCh0 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.13 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.1' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.13' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaConnected - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.2 + - name: mtxrWlRtabRxStrengthCh0 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.14 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.14' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrWl60GStaRemote - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.3 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.3' + - name: mtxrWlRtabTxStrengthCh1 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.15 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.15' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaMcs - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.4 + - name: mtxrWlRtabRxStrengthCh1 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.16 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.4' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.16' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaSignal - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.5 + - name: mtxrWlRtabTxStrengthCh2 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.17 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.5' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.17' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaTxSector - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.6 + - name: mtxrWlRtabRxStrengthCh2 + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.18 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.6' + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.18' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaPhyRate - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.8 + - name: mtxrWlRtabTxStrength + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.19 type: gauge - help: Mbits per second - 1.3.6.1.4.1.14988.1.1.1.9.1.8 + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.19' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaRssi - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.9 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.9' + - name: mtxrWlRtabRadioName + oid: 1.3.6.1.4.1.14988.1.1.1.2.1.20 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.20' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlRtabIface type: gauge - - name: mtxrWl60GStaDistance - oid: 1.3.6.1.4.1.14988.1.1.1.9.1.10 + - name: mtxrWlApIndex + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.1 type: gauge - help: meters - 1.3.6.1.4.1.14988.1.1.1.9.1.10 + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.1' indexes: - - labelname: mtxrWl60GStaIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrWlCMREntryCount - oid: 1.3.6.1.4.1.14988.1.1.1.10 - type: gauge - help: Wireless CAPSMAN remote-cap entry count - 1.3.6.1.4.1.14988.1.1.1.10 - - name: mtxrWlCMRemoteIndex - oid: 1.3.6.1.4.1.14988.1.1.1.11.1.1 + - name: mtxrWlApTxRate + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.2 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.1' + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.2 indexes: - - labelname: mtxrWlCMRemoteIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrWlCMRemoteName - oid: 1.3.6.1.4.1.14988.1.1.1.11.1.2 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.2' + - name: mtxrWlApRxRate + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.3 + type: gauge + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.3 indexes: - - labelname: mtxrWlCMRemoteIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrWlCMRemoteState - oid: 1.3.6.1.4.1.14988.1.1.1.11.1.3 + - name: mtxrWlApSsid + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.4 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.3' + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.4' indexes: - - labelname: mtxrWlCMRemoteIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrWlCMRemoteAddress - oid: 1.3.6.1.4.1.14988.1.1.1.11.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.4' + - name: mtxrWlApBssid + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.5 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.5' indexes: - - labelname: mtxrWlCMRemoteIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrWlCMRemoteRadios - oid: 1.3.6.1.4.1.14988.1.1.1.11.1.5 + - name: mtxrWlApClientCount + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.6 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.5' + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.6' indexes: - - labelname: mtxrWlCMRemoteIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleIndex - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.1 + - name: mtxrWlApFreq + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.7 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.1' + help: megahertz - 1.3.6.1.4.1.14988.1.1.1.3.1.7 indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleName - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.2 + - name: mtxrWlApBand + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.8 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.8' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleSrcAddr - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.3 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.3' + - name: mtxrWlApNoiseFloor + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.9 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.9' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleSrcMask - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.4 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.4' + - name: mtxrWlApOverallTxCCQ + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.10 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.10' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleDstAddr - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.5 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.5' + - name: mtxrWlApAuthClientCount + oid: 1.3.6.1.4.1.14988.1.1.1.3.1.11 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.11' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlApIndex type: gauge - - name: mtxrQueueSimpleDstMask - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.6 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.6' + - name: mtxrWlRtabEntryCount + oid: 1.3.6.1.4.1.14988.1.1.1.4 + type: gauge + help: Wireless registration table entry count - 1.3.6.1.4.1.14988.1.1.1.4 + - name: mtxrWlCMRtabAddr + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.1 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.1' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimpleIface - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.7 + - name: mtxrWlCMRtabIface + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.2 type: gauge - help: interface index - 1.3.6.1.4.1.14988.1.1.2.1.1.7 + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.2' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimpleBytesIn - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.8 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.8' + - name: mtxrWlCMRtabUptime + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.3 + type: gauge + help: uptime - 1.3.6.1.4.1.14988.1.1.1.5.1.3 indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimpleBytesOut - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.9 + - name: mtxrWlCMRtabTxBytes + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.4 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.9' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.4' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimplePacketsIn - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.10 + - name: mtxrWlCMRtabRxBytes + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.5 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.10' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.5' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimplePacketsOut - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.11 + - name: mtxrWlCMRtabTxPackets + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.6 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.11' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.6' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimplePCQQueuesIn - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.12 + - name: mtxrWlCMRtabRxPackets + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.7 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.12' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.7' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimplePCQQueuesOut - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.13 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.13' + - name: mtxrWlCMRtabTxRate + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.8 + type: gauge + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.8 indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimpleDroppedIn - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.14 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.14' + - name: mtxrWlCMRtabRxRate + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.9 + type: gauge + help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.9 indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueSimpleDroppedOut - oid: 1.3.6.1.4.1.14988.1.1.2.1.1.15 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.15' + - name: mtxrWlCMRtabTxStrength + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.10 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.10' indexes: - - labelname: mtxrQueueSimpleIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueTreeIndex - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.1 + - name: mtxrWlCMRtabRxStrength + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.11 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.1' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.11' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueTreeName - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.2 + - name: mtxrWlCMRtabSsid + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.12 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.12' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface type: gauge - - name: mtxrQueueTreeFlow - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.3 + - name: mtxrWlCMRtabEapIdent + oid: 1.3.6.1.4.1.14988.1.1.1.5.1.13 type: DisplayString - help: flowmark - 1.3.6.1.4.1.14988.1.1.2.2.1.3 + help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.13' indexes: - - labelname: mtxrQueueTreeIndex - type: gauge - - name: mtxrQueueTreeParentIndex - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.4 + - labelname: mtxrWlCMRtabAddr + type: PhysAddress48 + fixed_size: 6 + - labelname: mtxrWlCMRtabIface + type: gauge + - name: mtxrWlCMRtabEntryCount + oid: 1.3.6.1.4.1.14988.1.1.1.6 type: gauge - help: index of parent tree queue or parent interface - 1.3.6.1.4.1.14988.1.1.2.2.1.4 + help: Wireless CAPSMAN registration table entry count - 1.3.6.1.4.1.14988.1.1.1.6 + - name: mtxrWlCMIndex + oid: 1.3.6.1.4.1.14988.1.1.1.7.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.1' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMIndex type: gauge - - name: mtxrQueueTreeBytes - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.5 + - name: mtxrWlCMRegClientCount + oid: 1.3.6.1.4.1.14988.1.1.1.7.1.2 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.5' + help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.2' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMIndex type: gauge - - name: mtxrQueueTreePackets - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.6 + - name: mtxrWlCMAuthClientCount + oid: 1.3.6.1.4.1.14988.1.1.1.7.1.3 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.6' + help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.3' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMIndex type: gauge - - name: mtxrQueueTreeHCBytes - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.7 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.7' + - name: mtxrWlCMState + oid: 1.3.6.1.4.1.14988.1.1.1.7.1.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.4' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMIndex type: gauge - - name: mtxrQueueTreePCQQueues - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.8 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.8' + - name: mtxrWlCMChannel + oid: 1.3.6.1.4.1.14988.1.1.1.7.1.5 + type: DisplayString + help: for master only - 1.3.6.1.4.1.14988.1.1.1.7.1.5 indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWlCMIndex type: gauge - - name: mtxrQueueTreeDropped - oid: 1.3.6.1.4.1.14988.1.1.2.2.1.9 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.9' + - name: mtxrWl60GIndex + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.1' indexes: - - labelname: mtxrQueueTreeIndex + - labelname: mtxrWl60GIndex type: gauge - - name: mtxrHlCoreVoltage - oid: 1.3.6.1.4.1.14988.1.1.3.1 - type: gauge - help: core voltage - 1.3.6.1.4.1.14988.1.1.3.1 - - name: mtxrHlThreeDotThreeVoltage - oid: 1.3.6.1.4.1.14988.1.1.3.2 - type: gauge - help: 3.3V voltage - 1.3.6.1.4.1.14988.1.1.3.2 - - name: mtxrHlFiveVoltage - oid: 1.3.6.1.4.1.14988.1.1.3.3 - type: gauge - help: 5V voltage - 1.3.6.1.4.1.14988.1.1.3.3 - - name: mtxrHlTwelveVoltage - oid: 1.3.6.1.4.1.14988.1.1.3.4 - type: gauge - help: 12V voltage - 1.3.6.1.4.1.14988.1.1.3.4 - - name: mtxrHlSensorTemperature - oid: 1.3.6.1.4.1.14988.1.1.3.5 - type: gauge - help: temperature at sensor chip - 1.3.6.1.4.1.14988.1.1.3.5 - - name: mtxrHlCpuTemperature - oid: 1.3.6.1.4.1.14988.1.1.3.6 - type: gauge - help: temperature near cpu - 1.3.6.1.4.1.14988.1.1.3.6 - - name: mtxrHlBoardTemperature - oid: 1.3.6.1.4.1.14988.1.1.3.7 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.7' - - name: mtxrHlVoltage - oid: 1.3.6.1.4.1.14988.1.1.3.8 + - name: mtxrWl60GMode + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.2 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.8' - - name: mtxrHlActiveFan - oid: 1.3.6.1.4.1.14988.1.1.3.9 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.2' + indexes: + - labelname: mtxrWl60GIndex + type: gauge + enum_values: + 0: apBridge + 1: stationBridge + 2: sniff + 3: bridge + - name: mtxrWl60GSsid + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.3 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.3.9' - - name: mtxrHlTemperature - oid: 1.3.6.1.4.1.14988.1.1.3.10 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.10' - - name: mtxrHlProcessorTemperature - oid: 1.3.6.1.4.1.14988.1.1.3.11 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.11' - - name: mtxrHlPower - oid: 1.3.6.1.4.1.14988.1.1.3.12 - type: gauge - help: Watts - 1.3.6.1.4.1.14988.1.1.3.12 - - name: mtxrHlCurrent - oid: 1.3.6.1.4.1.14988.1.1.3.13 - type: gauge - help: mA - 1.3.6.1.4.1.14988.1.1.3.13 - - name: mtxrHlProcessorFrequency - oid: 1.3.6.1.4.1.14988.1.1.3.14 - type: gauge - help: Mhz - 1.3.6.1.4.1.14988.1.1.3.14 - - name: mtxrHlPowerSupplyState - oid: 1.3.6.1.4.1.14988.1.1.3.15 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.3' + indexes: + - labelname: mtxrWl60GIndex + type: gauge + - name: mtxrWl60GConnected + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.4 type: gauge - help: PSU state ok - 1.3.6.1.4.1.14988.1.1.3.15 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.4' + indexes: + - labelname: mtxrWl60GIndex + type: gauge enum_values: 0: "false" 1: "true" - - name: mtxrHlBackupPowerSupplyState - oid: 1.3.6.1.4.1.14988.1.1.3.16 + - name: mtxrWl60GRemote + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.5 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.5' + indexes: + - labelname: mtxrWl60GIndex + type: gauge + - name: mtxrWl60GFreq + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.6 type: gauge - help: backup PSU state ok - 1.3.6.1.4.1.14988.1.1.3.16 - enum_values: - 0: "false" - 1: "true" - - name: mtxrHlFanSpeed1 - oid: 1.3.6.1.4.1.14988.1.1.3.17 + help: Mhz - 1.3.6.1.4.1.14988.1.1.1.8.1.6 + indexes: + - labelname: mtxrWl60GIndex + type: gauge + - name: mtxrWl60GMcs + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.7 type: gauge - help: rpm - 1.3.6.1.4.1.14988.1.1.3.17 - - name: mtxrHlFanSpeed2 - oid: 1.3.6.1.4.1.14988.1.1.3.18 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.7' + indexes: + - labelname: mtxrWl60GIndex + type: gauge + - name: mtxrWl60GSignal + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.8 type: gauge - help: rpm - 1.3.6.1.4.1.14988.1.1.3.18 - - name: mtxrGaugeIndex - oid: 1.3.6.1.4.1.14988.1.1.3.100.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.8' + indexes: + - labelname: mtxrWl60GIndex + type: gauge + - name: mtxrWl60GTxSector + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.9 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.1' + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.9' indexes: - - labelname: mtxrGaugeIndex + - labelname: mtxrWl60GIndex type: gauge - - name: mtxrGaugeName - oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 + - name: mtxrWl60GTxSectorInfo + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.11 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.11' indexes: - - labelname: mtxrGaugeIndex + - labelname: mtxrWl60GIndex type: gauge - - name: mtxrGaugeValue - oid: 1.3.6.1.4.1.14988.1.1.3.100.1.3 + - name: mtxrWl60GRssi + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.12 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.3' + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.12' indexes: - - labelname: mtxrGaugeIndex + - labelname: mtxrWl60GIndex type: gauge - - name: mtxrGaugeUnit - oid: 1.3.6.1.4.1.14988.1.1.3.100.1.4 + - name: mtxrWl60GPhyRate + oid: 1.3.6.1.4.1.14988.1.1.1.8.1.13 type: gauge - help: units - 1.3.6.1.4.1.14988.1.1.3.100.1.4 + help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.13' indexes: - - labelname: mtxrGaugeIndex + - labelname: mtxrWl60GIndex type: gauge - enum_values: - 1: celsius - 2: rpm - 3: dV - 4: dA - 5: dW - 6: status - - name: mtxrLicSoftwareId - oid: 1.3.6.1.4.1.14988.1.1.4.1 - type: DisplayString - help: software id - 1.3.6.1.4.1.14988.1.1.4.1 - - name: mtxrLicUpgrUntil - oid: 1.3.6.1.4.1.14988.1.1.4.2 - type: DateAndTime - help: current key allows upgrading until this date - 1.3.6.1.4.1.14988.1.1.4.2 - - name: mtxrLicLevel - oid: 1.3.6.1.4.1.14988.1.1.4.3 - type: gauge - help: current key level - 1.3.6.1.4.1.14988.1.1.4.3 - - name: mtxrLicVersion - oid: 1.3.6.1.4.1.14988.1.1.4.4 - type: DisplayString - help: software version - 1.3.6.1.4.1.14988.1.1.4.4 - - name: mtxrLicUpgradableTo - oid: 1.3.6.1.4.1.14988.1.1.4.5 + - name: mtxrWl60GStaIndex + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.1 type: gauge - help: upgradable to - 1.3.6.1.4.1.14988.1.1.4.5 - - name: mtxrHotspotActiveUserIndex - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.1' + indexes: + - labelname: mtxrWl60GStaIndex + type: gauge + - name: mtxrWl60GStaConnected + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.2 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.1' + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.2' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex + type: gauge + enum_values: + 0: "false" + 1: "true" + - name: mtxrWl60GStaRemote + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.3 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.3' + indexes: + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserServerID - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.2 + - name: mtxrWl60GStaMcs + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.4 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.2' + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.4' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserName - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.3 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.3' + - name: mtxrWl60GStaSignal + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.5 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.5' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserDomain - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.4' + - name: mtxrWl60GStaTxSector + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.6 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.6' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserIP - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.5 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.5' + - name: mtxrWl60GStaPhyRate + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.8 + type: gauge + help: Mbits per second - 1.3.6.1.4.1.14988.1.1.1.9.1.8 indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserMAC - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.6 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.6' + - name: mtxrWl60GStaRssi + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.9 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.9' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserConnectTime - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.7 + - name: mtxrWl60GStaDistance + oid: 1.3.6.1.4.1.14988.1.1.1.9.1.10 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.7' + help: meters - 1.3.6.1.4.1.14988.1.1.1.9.1.10 indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWl60GStaIndex type: gauge - - name: mtxrHotspotActiveUserValidTillTime - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.8 + - name: mtxrWlCMREntryCount + oid: 1.3.6.1.4.1.14988.1.1.1.10 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.8' + help: Wireless CAPSMAN remote-cap entry count - 1.3.6.1.4.1.14988.1.1.1.10 + - name: mtxrWlCMRemoteIndex + oid: 1.3.6.1.4.1.14988.1.1.1.11.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.1' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWlCMRemoteIndex type: gauge - - name: mtxrHotspotActiveUserIdleStartTime - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.9 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.9' + - name: mtxrWlCMRemoteName + oid: 1.3.6.1.4.1.14988.1.1.1.11.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.2' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWlCMRemoteIndex type: gauge - - name: mtxrHotspotActiveUserIdleTimeout - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.10 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.10' + - name: mtxrWlCMRemoteState + oid: 1.3.6.1.4.1.14988.1.1.1.11.1.3 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.3' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWlCMRemoteIndex type: gauge - - name: mtxrHotspotActiveUserPingTimeout - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.11 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.11' + - name: mtxrWlCMRemoteAddress + oid: 1.3.6.1.4.1.14988.1.1.1.11.1.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.4' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWlCMRemoteIndex type: gauge - - name: mtxrHotspotActiveUserBytesIn - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.12 + - name: mtxrWlCMRemoteRadios + oid: 1.3.6.1.4.1.14988.1.1.1.11.1.5 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.12' + help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.5' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrWlCMRemoteIndex type: gauge - - name: mtxrHotspotActiveUserBytesOut - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.13 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.13' + - name: mtxrQueueSimpleIndex + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.1' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserPacketsIn - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.14 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.14' + - name: mtxrQueueSimpleName + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.2' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserPacketsOut - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.15 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.15' + - name: mtxrQueueSimpleSrcAddr + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.3 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.3' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserLimitBytesIn - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.16 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.16' + - name: mtxrQueueSimpleSrcMask + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.4 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.4' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserLimitBytesOut - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.17 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.17' + - name: mtxrQueueSimpleDstAddr + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.5 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.5' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserAdvertStatus - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.18 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.18' + - name: mtxrQueueSimpleDstMask + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.6 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.6' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserRadius - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.19 + - name: mtxrQueueSimpleIface + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.7 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.19' + help: interface index - 1.3.6.1.4.1.14988.1.1.2.1.1.7 indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrHotspotActiveUserBlockedByAdvert - oid: 1.3.6.1.4.1.14988.1.1.5.1.1.20 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.20' + - name: mtxrQueueSimpleBytesIn + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.8 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.8' indexes: - - labelname: mtxrHotspotActiveUserIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDHCPLeaseCount - oid: 1.3.6.1.4.1.14988.1.1.6.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.6.1' - - name: mtxrSystemReboot - oid: 1.3.6.1.4.1.14988.1.1.7.1 - type: gauge - help: set non zero to reboot - 1.3.6.1.4.1.14988.1.1.7.1 - - name: mtxrUSBPowerReset - oid: 1.3.6.1.4.1.14988.1.1.7.2 - type: gauge - help: switches off usb power for specified amout of seconds - 1.3.6.1.4.1.14988.1.1.7.2 - - name: mtxrSerialNumber - oid: 1.3.6.1.4.1.14988.1.1.7.3 - type: DisplayString - help: RouterBOARD serial number - 1.3.6.1.4.1.14988.1.1.7.3 - - name: mtxrFirmwareVersion - oid: 1.3.6.1.4.1.14988.1.1.7.4 - type: DisplayString - help: Current firmware version - 1.3.6.1.4.1.14988.1.1.7.4 - - name: mtxrNote - oid: 1.3.6.1.4.1.14988.1.1.7.5 - type: DisplayString - help: note - 1.3.6.1.4.1.14988.1.1.7.5 - - name: mtxrBuildTime - oid: 1.3.6.1.4.1.14988.1.1.7.6 - type: DisplayString - help: build time - 1.3.6.1.4.1.14988.1.1.7.6 - - name: mtxrFirmwareUpgradeVersion - oid: 1.3.6.1.4.1.14988.1.1.7.7 - type: DisplayString - help: Upgrade firmware version - 1.3.6.1.4.1.14988.1.1.7.7 - - name: mtxrBoardName - oid: 1.3.6.1.4.1.14988.1.1.7.8 - type: DisplayString - help: board name - 1.3.6.1.4.1.14988.1.1.7.8 - - name: mtxrScriptIndex - oid: 1.3.6.1.4.1.14988.1.1.8.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.1' + - name: mtxrQueueSimpleBytesOut + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.9 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.9' indexes: - - labelname: mtxrScriptIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrScriptName - oid: 1.3.6.1.4.1.14988.1.1.8.1.1.2 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.2' + - name: mtxrQueueSimplePacketsIn + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.10 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.10' indexes: - - labelname: mtxrScriptIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrScriptRunCmd - oid: 1.3.6.1.4.1.14988.1.1.8.1.1.3 - type: gauge - help: set non zero to run - 1.3.6.1.4.1.14988.1.1.8.1.1.3 + - name: mtxrQueueSimplePacketsOut + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.11 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.11' indexes: - - labelname: mtxrScriptIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDnStatIndex - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.10.1.1.1' + - name: mtxrQueueSimplePCQQueuesIn + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.12 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.12' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDnStatTxRate - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.2 - type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.2 + - name: mtxrQueueSimplePCQQueuesOut + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.13 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.13' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDnStatRxRate - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.3 - type: gauge - help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.3 + - name: mtxrQueueSimpleDroppedIn + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.14 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.14' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDnStatTxStrength - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.4 - type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.4 + - name: mtxrQueueSimpleDroppedOut + oid: 1.3.6.1.4.1.14988.1.1.2.1.1.15 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.15' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueSimpleIndex type: gauge - - name: mtxrDnStatRxStrength - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.5 + - name: mtxrQueueTreeIndex + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.1 type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.5 + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.1' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrDnConnected - oid: 1.3.6.1.4.1.14988.1.1.10.1.1.6 - type: gauge - help: 0 - not connected, connected otherwise - 1.3.6.1.4.1.14988.1.1.10.1.1.6 + - name: mtxrQueueTreeName + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.2' indexes: - - labelname: mtxrDnStatIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborIndex - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.1' + - name: mtxrQueueTreeFlow + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.3 + type: DisplayString + help: flowmark - 1.3.6.1.4.1.14988.1.1.2.2.1.3 indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborIpAddress - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.2 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.2' + - name: mtxrQueueTreeParentIndex + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.4 + type: gauge + help: index of parent tree queue or parent interface - 1.3.6.1.4.1.14988.1.1.2.2.1.4 indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborMacAddress - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.3' + - name: mtxrQueueTreeBytes + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.5 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.5' indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborVersion - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.4' + - name: mtxrQueueTreePackets + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.6 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.6' indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborPlatform - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.5 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.5' + - name: mtxrQueueTreeHCBytes + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.7 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.7' indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborIdentity - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.6 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.6' + - name: mtxrQueueTreePCQQueues + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.8 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.8' indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborSoftwareID - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.7 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.7' + - name: mtxrQueueTreeDropped + oid: 1.3.6.1.4.1.14988.1.1.2.2.1.9 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.9' indexes: - - labelname: mtxrNeighborIndex + - labelname: mtxrQueueTreeIndex type: gauge - - name: mtxrNeighborInterfaceID - oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + - name: mtxrHlCoreVoltage + oid: 1.3.6.1.4.1.14988.1.1.3.1 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.8' - indexes: - - labelname: mtxrNeighborIndex - type: gauge - - name: mtxrDate - oid: 1.3.6.1.4.1.14988.1.1.12.1 + help: core voltage - 1.3.6.1.4.1.14988.1.1.3.1 + - name: mtxrHlThreeDotThreeVoltage + oid: 1.3.6.1.4.1.14988.1.1.3.2 type: gauge - help: UNIX time - 1.3.6.1.4.1.14988.1.1.12.1 - - name: mtxrLongtitude - oid: 1.3.6.1.4.1.14988.1.1.12.2 - type: DisplayString - help: longtitude - 1.3.6.1.4.1.14988.1.1.12.2 - - name: mtxrLatitude - oid: 1.3.6.1.4.1.14988.1.1.12.3 - type: DisplayString - help: latitude - 1.3.6.1.4.1.14988.1.1.12.3 - - name: mtxrAltitude - oid: 1.3.6.1.4.1.14988.1.1.12.4 - type: DisplayString - help: altitude - 1.3.6.1.4.1.14988.1.1.12.4 - - name: mtxrSpeed - oid: 1.3.6.1.4.1.14988.1.1.12.5 - type: DisplayString - help: speed - 1.3.6.1.4.1.14988.1.1.12.5 - - name: mtxrSattelites - oid: 1.3.6.1.4.1.14988.1.1.12.6 + help: 3.3V voltage - 1.3.6.1.4.1.14988.1.1.3.2 + - name: mtxrHlFiveVoltage + oid: 1.3.6.1.4.1.14988.1.1.3.3 type: gauge - help: visible sattelite count - 1.3.6.1.4.1.14988.1.1.12.6 - - name: mtxrValid - oid: 1.3.6.1.4.1.14988.1.1.12.7 + help: 5V voltage - 1.3.6.1.4.1.14988.1.1.3.3 + - name: mtxrHlTwelveVoltage + oid: 1.3.6.1.4.1.14988.1.1.3.4 type: gauge - help: is the data valid - 1.3.6.1.4.1.14988.1.1.12.7 - - name: mtxrWirelessModemSignalStrength - oid: 1.3.6.1.4.1.14988.1.1.13.1 + help: 12V voltage - 1.3.6.1.4.1.14988.1.1.3.4 + - name: mtxrHlSensorTemperature + oid: 1.3.6.1.4.1.14988.1.1.3.5 type: gauge - help: signal strength in dBm (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.1 - - name: mtxrWirelessModemSignalECIO - oid: 1.3.6.1.4.1.14988.1.1.13.2 + help: temperature at sensor chip - 1.3.6.1.4.1.14988.1.1.3.5 + - name: mtxrHlCpuTemperature + oid: 1.3.6.1.4.1.14988.1.1.3.6 type: gauge - help: signal EC/IO in dB (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.2 - - name: mtxrInterfaceStatsIndex - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.1 + help: temperature near cpu - 1.3.6.1.4.1.14988.1.1.3.6 + - name: mtxrHlBoardTemperature + oid: 1.3.6.1.4.1.14988.1.1.3.7 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.1' - indexes: - - labelname: mtxrInterfaceStatsIndex - type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsName - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.2 + help: ' - 1.3.6.1.4.1.14988.1.1.3.7' + - name: mtxrHlVoltage + oid: 1.3.6.1.4.1.14988.1.1.3.8 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.3.8' + - name: mtxrHlActiveFan + oid: 1.3.6.1.4.1.14988.1.1.3.9 type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.2' - indexes: - - labelname: mtxrInterfaceStatsIndex - type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsDriverRxBytes - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.11 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.11' + help: ' - 1.3.6.1.4.1.14988.1.1.3.9' + - name: mtxrHlTemperature + oid: 1.3.6.1.4.1.14988.1.1.3.10 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.3.10' + - name: mtxrHlProcessorTemperature + oid: 1.3.6.1.4.1.14988.1.1.3.11 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.3.11' + - name: mtxrHlPower + oid: 1.3.6.1.4.1.14988.1.1.3.12 + type: gauge + help: Watts - 1.3.6.1.4.1.14988.1.1.3.12 + - name: mtxrHlCurrent + oid: 1.3.6.1.4.1.14988.1.1.3.13 + type: gauge + help: mA - 1.3.6.1.4.1.14988.1.1.3.13 + - name: mtxrHlProcessorFrequency + oid: 1.3.6.1.4.1.14988.1.1.3.14 + type: gauge + help: Mhz - 1.3.6.1.4.1.14988.1.1.3.14 + - name: mtxrHlPowerSupplyState + oid: 1.3.6.1.4.1.14988.1.1.3.15 + type: gauge + help: PSU state ok - 1.3.6.1.4.1.14988.1.1.3.15 + enum_values: + 0: "false" + 1: "true" + - name: mtxrHlBackupPowerSupplyState + oid: 1.3.6.1.4.1.14988.1.1.3.16 + type: gauge + help: backup PSU state ok - 1.3.6.1.4.1.14988.1.1.3.16 + enum_values: + 0: "false" + 1: "true" + - name: mtxrHlFanSpeed1 + oid: 1.3.6.1.4.1.14988.1.1.3.17 + type: gauge + help: rpm - 1.3.6.1.4.1.14988.1.1.3.17 + - name: mtxrHlFanSpeed2 + oid: 1.3.6.1.4.1.14988.1.1.3.18 + type: gauge + help: rpm - 1.3.6.1.4.1.14988.1.1.3.18 + - name: mtxrGaugeIndex + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.1' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrGaugeIndex type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 + - mtxrGaugeIndex + labelname: mtxrGaugeName + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 type: DisplayString - - name: mtxrInterfaceStatsDriverRxPackets - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.12 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.12' + - labels: [] + labelname: mtxrGaugeIndex + - name: mtxrGaugeName + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.2' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrGaugeIndex type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 + - mtxrGaugeIndex + labelname: mtxrGaugeName + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 type: DisplayString - - name: mtxrInterfaceStatsDriverTxBytes - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.13 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.13' + - labels: [] + labelname: mtxrGaugeIndex + - name: mtxrGaugeValue + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.3 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.3' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrGaugeIndex type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 + - mtxrGaugeIndex + labelname: mtxrGaugeName + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 type: DisplayString - - name: mtxrInterfaceStatsDriverTxPackets - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.14 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.14' + - labels: [] + labelname: mtxrGaugeIndex + - name: mtxrGaugeUnit + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.4 + type: gauge + help: units - 1.3.6.1.4.1.14988.1.1.3.100.1.4 indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrGaugeIndex type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 + - mtxrGaugeIndex + labelname: mtxrGaugeName + oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 type: DisplayString - - name: mtxrInterfaceStatsTxRx64 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.15 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.15' + - labels: [] + labelname: mtxrGaugeIndex + enum_values: + 1: celsius + 2: rpm + 3: dV + 4: dA + 5: dW + 6: status + - name: mtxrLicSoftwareId + oid: 1.3.6.1.4.1.14988.1.1.4.1 + type: DisplayString + help: software id - 1.3.6.1.4.1.14988.1.1.4.1 + - name: mtxrLicUpgrUntil + oid: 1.3.6.1.4.1.14988.1.1.4.2 + type: DateAndTime + help: current key allows upgrading until this date - 1.3.6.1.4.1.14988.1.1.4.2 + - name: mtxrLicLevel + oid: 1.3.6.1.4.1.14988.1.1.4.3 + type: gauge + help: current key level - 1.3.6.1.4.1.14988.1.1.4.3 + - name: mtxrLicVersion + oid: 1.3.6.1.4.1.14988.1.1.4.4 + type: DisplayString + help: software version - 1.3.6.1.4.1.14988.1.1.4.4 + - name: mtxrLicUpgradableTo + oid: 1.3.6.1.4.1.14988.1.1.4.5 + type: gauge + help: upgradable to - 1.3.6.1.4.1.14988.1.1.4.5 + - name: mtxrHotspotActiveUserIndex + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.1' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx65To127 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.16 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.16' + - name: mtxrHotspotActiveUserServerID + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.2 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.2' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx128To255 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.17 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.17' + - name: mtxrHotspotActiveUserName + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.3 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.3' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx256To511 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.18 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.18' + - name: mtxrHotspotActiveUserDomain + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.4' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx512To1023 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.19 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.19' + - name: mtxrHotspotActiveUserIP + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.5 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.5' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx1024To1518 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.20 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.20' + - name: mtxrHotspotActiveUserMAC + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.6 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.6' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsTxRx1519ToMax - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.21 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.21' + - name: mtxrHotspotActiveUserConnectTime + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.7 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.7' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxBytes - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.31 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.31' + - name: mtxrHotspotActiveUserValidTillTime + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.8 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.8' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxPackets - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.32 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.32' + - name: mtxrHotspotActiveUserIdleStartTime + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.9 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.9' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxTooShort - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.33 + - name: mtxrHotspotActiveUserIdleTimeout + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.10 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.10' + indexes: + - labelname: mtxrHotspotActiveUserIndex + type: gauge + - name: mtxrHotspotActiveUserPingTimeout + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.11 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.11' + indexes: + - labelname: mtxrHotspotActiveUserIndex + type: gauge + - name: mtxrHotspotActiveUserBytesIn + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.12 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.33' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.12' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx64 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.34 + - name: mtxrHotspotActiveUserBytesOut + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.13 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.34' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.13' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx65To127 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.35 + - name: mtxrHotspotActiveUserPacketsIn + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.14 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.35' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.14' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx128To255 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.36 + - name: mtxrHotspotActiveUserPacketsOut + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.15 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.36' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.15' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx256To511 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.37 + - name: mtxrHotspotActiveUserLimitBytesIn + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.16 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.37' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.16' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx512To1023 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.38 + - name: mtxrHotspotActiveUserLimitBytesOut + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.17 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.38' + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.17' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx1024To1518 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.39 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.39' + - name: mtxrHotspotActiveUserAdvertStatus + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.18 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.18' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRx1519ToMax - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.40 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.40' + - name: mtxrHotspotActiveUserRadius + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.19 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.19' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxTooLong - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.41 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.41' + - name: mtxrHotspotActiveUserBlockedByAdvert + oid: 1.3.6.1.4.1.14988.1.1.5.1.1.20 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.20' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrHotspotActiveUserIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxBroadcast - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.42 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.42' + - name: mtxrDHCPLeaseCount + oid: 1.3.6.1.4.1.14988.1.1.6.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.6.1' + - name: mtxrSystemReboot + oid: 1.3.6.1.4.1.14988.1.1.7.1 + type: gauge + help: set non zero to reboot - 1.3.6.1.4.1.14988.1.1.7.1 + - name: mtxrUSBPowerReset + oid: 1.3.6.1.4.1.14988.1.1.7.2 + type: gauge + help: switches off usb power for specified amout of seconds - 1.3.6.1.4.1.14988.1.1.7.2 + - name: mtxrSerialNumber + oid: 1.3.6.1.4.1.14988.1.1.7.3 + type: DisplayString + help: RouterBOARD serial number - 1.3.6.1.4.1.14988.1.1.7.3 + - name: mtxrFirmwareVersion + oid: 1.3.6.1.4.1.14988.1.1.7.4 + type: DisplayString + help: Current firmware version - 1.3.6.1.4.1.14988.1.1.7.4 + - name: mtxrNote + oid: 1.3.6.1.4.1.14988.1.1.7.5 + type: DisplayString + help: note - 1.3.6.1.4.1.14988.1.1.7.5 + - name: mtxrBuildTime + oid: 1.3.6.1.4.1.14988.1.1.7.6 + type: DisplayString + help: build time - 1.3.6.1.4.1.14988.1.1.7.6 + - name: mtxrFirmwareUpgradeVersion + oid: 1.3.6.1.4.1.14988.1.1.7.7 + type: DisplayString + help: Upgrade firmware version - 1.3.6.1.4.1.14988.1.1.7.7 + - name: mtxrBoardName + oid: 1.3.6.1.4.1.14988.1.1.7.8 + type: DisplayString + help: board name - 1.3.6.1.4.1.14988.1.1.7.8 + - name: mtxrScriptIndex + oid: 1.3.6.1.4.1.14988.1.1.8.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.1' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrScriptIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxPause - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.43 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.43' + - name: mtxrScriptName + oid: 1.3.6.1.4.1.14988.1.1.8.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.2' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrScriptIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxMulticast - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.44 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.44' + - name: mtxrScriptRunCmd + oid: 1.3.6.1.4.1.14988.1.1.8.1.1.3 + type: gauge + help: set non zero to run - 1.3.6.1.4.1.14988.1.1.8.1.1.3 indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrScriptIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxFCSError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.45 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.45' + - name: mtxrDnStatIndex + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.10.1.1.1' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrDnStatIndex type: gauge - lookups: - - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxAlignError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.46 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.46' + - name: mtxrDnStatTxRate + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.2 + type: gauge + help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.2 + indexes: + - labelname: mtxrDnStatIndex + type: gauge + - name: mtxrDnStatRxRate + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.3 + type: gauge + help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.3 + indexes: + - labelname: mtxrDnStatIndex + type: gauge + - name: mtxrDnStatTxStrength + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.4 + type: gauge + help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.4 + indexes: + - labelname: mtxrDnStatIndex + type: gauge + - name: mtxrDnStatRxStrength + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.5 + type: gauge + help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.5 + indexes: + - labelname: mtxrDnStatIndex + type: gauge + - name: mtxrDnConnected + oid: 1.3.6.1.4.1.14988.1.1.10.1.1.6 + type: gauge + help: 0 - not connected, connected otherwise - 1.3.6.1.4.1.14988.1.1.10.1.1.6 + indexes: + - labelname: mtxrDnStatIndex + type: gauge + - name: mtxrNeighborIndex + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.1' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex - labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrInterfaceStatsRxFragment - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.47 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.47' - indexes: - - labelname: mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 type: gauge - lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxOverflow - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.48 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.48' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborIpAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.2 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.2' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxControl - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.49 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.49' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.3' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxUnknownOp - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.50 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.50' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborVersion + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.4' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxLengthError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.51 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.51' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborPlatform + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.5 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.5' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxCodeError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.52 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.52' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborIdentity + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.6 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.6' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxCarrierError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.53 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.53' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborSoftwareID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.7 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.7' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxJabber - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.54 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.54' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.8' indexes: - - labelname: mtxrInterfaceStatsIndex + - labelname: mtxrNeighborIndex + type: gauge + - labelname: mtxrNeighborInterfaceID type: gauge lookups: - labels: - - mtxrInterfaceStatsIndex + - mtxrNeighborIndex + labelname: mtxrNeighborMacAddress + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 + type: PhysAddress48 + - labels: + - mtxrNeighborIndex + labelname: mtxrNeighborInterfaceID + oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 + type: gauge + - labels: + - mtxrNeighborInterfaceID labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsRxDrop - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.55 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.55' + - labels: [] + labelname: mtxrNeighborIndex + - labels: [] + labelname: mtxrNeighborInterfaceID + - name: mtxrDate + oid: 1.3.6.1.4.1.14988.1.1.12.1 + type: gauge + help: UNIX time - 1.3.6.1.4.1.14988.1.1.12.1 + - name: mtxrLongtitude + oid: 1.3.6.1.4.1.14988.1.1.12.2 + type: DisplayString + help: longtitude - 1.3.6.1.4.1.14988.1.1.12.2 + - name: mtxrLatitude + oid: 1.3.6.1.4.1.14988.1.1.12.3 + type: DisplayString + help: latitude - 1.3.6.1.4.1.14988.1.1.12.3 + - name: mtxrAltitude + oid: 1.3.6.1.4.1.14988.1.1.12.4 + type: DisplayString + help: altitude - 1.3.6.1.4.1.14988.1.1.12.4 + - name: mtxrSpeed + oid: 1.3.6.1.4.1.14988.1.1.12.5 + type: DisplayString + help: speed - 1.3.6.1.4.1.14988.1.1.12.5 + - name: mtxrSattelites + oid: 1.3.6.1.4.1.14988.1.1.12.6 + type: gauge + help: visible sattelite count - 1.3.6.1.4.1.14988.1.1.12.6 + - name: mtxrValid + oid: 1.3.6.1.4.1.14988.1.1.12.7 + type: gauge + help: is the data valid - 1.3.6.1.4.1.14988.1.1.12.7 + - name: mtxrWirelessModemSignalStrength + oid: 1.3.6.1.4.1.14988.1.1.13.1 + type: gauge + help: signal strength in dBm (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.1 + - name: mtxrWirelessModemSignalECIO + oid: 1.3.6.1.4.1.14988.1.1.13.2 + type: gauge + help: signal EC/IO in dB (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.2 + - name: mtxrInterfaceStatsIndex + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.1' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15282,10 +29034,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxBytes - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.61 - type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.61' + - name: mtxrInterfaceStatsName + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.2' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15295,10 +29047,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxPackets - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.62 + - name: mtxrInterfaceStatsDriverRxBytes + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.11 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.62' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.11' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15308,10 +29060,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxTooShort - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.63 + - name: mtxrInterfaceStatsDriverRxPackets + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.12 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.63' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.12' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15321,10 +29073,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx64 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.64 + - name: mtxrInterfaceStatsDriverTxBytes + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.13 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.64' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.13' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15334,10 +29086,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx65To127 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.65 + - name: mtxrInterfaceStatsDriverTxPackets + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.14 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.65' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.14' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15347,10 +29099,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx128To255 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.66 + - name: mtxrInterfaceStatsTxRx64 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.15 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.66' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.15' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15360,10 +29112,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx256To511 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.67 + - name: mtxrInterfaceStatsTxRx65To127 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.16 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.67' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.16' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15373,10 +29125,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx512To1023 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.68 + - name: mtxrInterfaceStatsTxRx128To255 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.17 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.68' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.17' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15386,10 +29138,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx1024To1518 - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.69 + - name: mtxrInterfaceStatsTxRx256To511 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.18 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.69' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.18' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15399,10 +29151,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTx1519ToMax - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.70 + - name: mtxrInterfaceStatsTxRx512To1023 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.19 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.70' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.19' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15412,10 +29164,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxTooLong - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.71 + - name: mtxrInterfaceStatsTxRx1024To1518 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.20 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.71' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.20' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15425,10 +29177,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxBroadcast - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.72 + - name: mtxrInterfaceStatsTxRx1519ToMax + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.21 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.72' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.21' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15438,10 +29190,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxPause - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.73 + - name: mtxrInterfaceStatsRxBytes + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.31 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.73' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.31' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15451,10 +29203,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxMulticast - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.74 + - name: mtxrInterfaceStatsRxPackets + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.32 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.74' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.32' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15464,10 +29216,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxUnderrun - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.75 + - name: mtxrInterfaceStatsRxTooShort + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.33 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.75' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.33' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15477,10 +29229,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.76 + - name: mtxrInterfaceStatsRx64 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.34 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.76' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.34' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15490,10 +29242,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxExcessiveCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.77 + - name: mtxrInterfaceStatsRx65To127 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.35 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.77' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.35' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15503,10 +29255,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxMultipleCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.78 + - name: mtxrInterfaceStatsRx128To255 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.36 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.78' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.36' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15516,10 +29268,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxSingleCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.79 + - name: mtxrInterfaceStatsRx256To511 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.37 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.79' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.37' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15529,10 +29281,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxExcessiveDeferred - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.80 + - name: mtxrInterfaceStatsRx512To1023 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.38 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.80' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.38' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15542,10 +29294,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxDeferred - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.81 + - name: mtxrInterfaceStatsRx1024To1518 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.39 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.81' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.39' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15555,10 +29307,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxLateCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.82 + - name: mtxrInterfaceStatsRx1519ToMax + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.40 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.82' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.40' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15568,10 +29320,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxTotalCollision - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.83 + - name: mtxrInterfaceStatsRxTooLong + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.41 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.83' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.41' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15581,10 +29333,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxPauseHonored - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.84 + - name: mtxrInterfaceStatsRxBroadcast + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.42 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.84' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.42' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15594,10 +29346,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxDrop - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.85 + - name: mtxrInterfaceStatsRxPause + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.43 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.85' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.43' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15607,10 +29359,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxJabber - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.86 + - name: mtxrInterfaceStatsRxMulticast + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.44 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.86' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.44' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15620,10 +29372,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxFCSError - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.87 + - name: mtxrInterfaceStatsRxFCSError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.45 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.87' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.45' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15633,10 +29385,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxControl - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.88 + - name: mtxrInterfaceStatsRxAlignError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.46 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.88' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.46' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15646,10 +29398,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsTxFragment - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.89 + - name: mtxrInterfaceStatsRxFragment + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.47 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.89' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.47' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15659,10 +29411,10 @@ modules: labelname: ifName oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - name: mtxrInterfaceStatsLinkDowns - oid: 1.3.6.1.4.1.14988.1.1.14.1.1.90 + - name: mtxrInterfaceStatsRxOverflow + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.48 type: counter - help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.90' + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.48' indexes: - labelname: mtxrInterfaceStatsIndex type: gauge @@ -15670,1600 +29422,1828 @@ modules: - labels: - mtxrInterfaceStatsIndex labelname: ifName - oid: 1.3.6.1.2.1.31.1.1.1.1 - type: DisplayString - - name: mtxrPOEInterfaceIndex - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.1' - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - - name: mtxrPOEName - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.2' - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - - name: mtxrPOEStatus - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.3 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.3' - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - enum_values: - 1: disabled - 2: waitingForLoad - 3: poweredOn - 4: overload - - name: mtxrPOEVoltage - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.4 - type: gauge - help: V - 1.3.6.1.4.1.14988.1.1.15.1.1.4 - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - - name: mtxrPOECurrent - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.5 - type: gauge - help: mA - 1.3.6.1.4.1.14988.1.1.15.1.1.5 - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - - name: mtxrPOEPower - oid: 1.3.6.1.4.1.14988.1.1.15.1.1.6 - type: gauge - help: W - 1.3.6.1.4.1.14988.1.1.15.1.1.6 - indexes: - - labelname: mtxrPOEInterfaceIndex - type: gauge - - name: mtxrLTEModemInterfaceIndex - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.1' - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemSignalRSSI - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.2 - type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.2 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemSignalRSRQ - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.3 - type: gauge - help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.3 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemSignalRSRP - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.4 - type: gauge - help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.4 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemCellId - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.5 - type: gauge - help: current cell ID - 1.3.6.1.4.1.14988.1.1.16.1.1.5 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemAccessTechnology - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.6 - type: gauge - help: as reported by +CREG - 1.3.6.1.4.1.14988.1.1.16.1.1.6 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - enum_values: - -1: unknown - 0: gsmcompact - 1: gsm - 2: utran - 3: egprs - 4: hsdpa - 5: hsupa - 6: hsdpahsupa - 7: eutran - - name: mtxrLTEModemSignalSINR - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.7 - type: gauge - help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.7 - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemEnbId - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.8 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.8' - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemSectorId - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.9 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.9' - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemLac - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.10 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.10' - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemIMEI - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.11 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.11' - indexes: - - labelname: mtxrLTEModemInterfaceIndex - type: gauge - - name: mtxrLTEModemIMSI - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.12 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.12' + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxControl + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.49 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.49' indexes: - - labelname: mtxrLTEModemInterfaceIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrLTEModemUICC - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.13 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.13' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxUnknownOp + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.50 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.50' indexes: - - labelname: mtxrLTEModemInterfaceIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrLTEModemRAT - oid: 1.3.6.1.4.1.14988.1.1.16.1.1.14 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.14' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxLengthError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.51 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.51' indexes: - - labelname: mtxrLTEModemInterfaceIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrPartitionIndex - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.1' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxCodeError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.52 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.52' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrPartitionName - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.2' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxCarrierError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.53 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.53' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrPartitionSize - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.3 - type: gauge - help: MB - 1.3.6.1.4.1.14988.1.1.17.1.1.3 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxJabber + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.54 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.54' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrPartitionVersion - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.4' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsRxDrop + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.55 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.55' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrPartitionActive - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.5 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.5' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxBytes + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.61 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.61' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrPartitionRunning - oid: 1.3.6.1.4.1.14988.1.1.17.1.1.6 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.6' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxPackets + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.62 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.62' indexes: - - labelname: mtxrPartitionIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrScriptRunIndex - oid: 1.3.6.1.4.1.14988.1.1.18.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.18.1.1.1' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxTooShort + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.63 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.63' indexes: - - labelname: mtxrScriptRunIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrScriptRunOutput - oid: 1.3.6.1.4.1.14988.1.1.18.1.1.2 - type: DisplayString - help: this oid on get request will run script and return it's output - 1.3.6.1.4.1.14988.1.1.18.1.1.2 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx64 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.64 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.64' indexes: - - labelname: mtxrScriptRunIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalIndex - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.1' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx65To127 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.65 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.65' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalName - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 - type: DisplayString - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.2' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx128To255 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.66 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.66' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalRxLoss - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.3 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.3' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx256To511 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.67 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.67' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrOpticalTxFault - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.4 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.4' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx512To1023 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.68 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.68' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrOpticalWavelength - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.5 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.5' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx1024To1518 + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.69 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.69' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalTemperature - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.6 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.6' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTx1519ToMax + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.70 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.70' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalSupplyVoltage - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.7 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.7' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxTooLong + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.71 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.71' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalTxBiasCurrent - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.8 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.8' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxBroadcast + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.72 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.72' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalTxPower - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.9 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.9' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxPause + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.73 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.73' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrOpticalRxPower - oid: 1.3.6.1.4.1.14988.1.1.19.1.1.10 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.10' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxMulticast + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.74 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.74' indexes: - - labelname: mtxrOpticalIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSACount - oid: 1.3.6.1.4.1.14988.1.1.20.1 - type: gauge - help: IKE SA count - 1.3.6.1.4.1.14988.1.1.20.1 - - name: mtxrIkeSAIndex - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.1 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.1' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxUnderrun + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.75 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.75' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAInitiatorCookie - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.2 - type: DisplayString - help: initiator SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.2 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.76 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.76' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAResponderCookie - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.3 - type: DisplayString - help: responder SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.3 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxExcessiveCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.77 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.77' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAResponder - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.4 - type: gauge - help: IKE side - 1.3.6.1.4.1.14988.1.1.20.2.1.4 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxMultipleCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.78 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.78' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrIkeSANatt - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.5 - type: gauge - help: NAT is detected - 1.3.6.1.4.1.14988.1.1.20.2.1.5 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxSingleCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.79 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.79' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: "false" - 1: "true" - - name: mtxrIkeSAVersion - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.6 - type: gauge - help: protocol version - 1.3.6.1.4.1.14988.1.1.20.2.1.6 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxExcessiveDeferred + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.80 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.80' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAState - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.7 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.7' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxDeferred + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.81 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.81' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 1: exchange - 2: established - 3: expired - 4: eap - - name: mtxrIkeSAUptime - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.8 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.8' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxLateCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.82 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.82' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSASeen - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.9 - type: gauge - help: time elapsed since last valid IKE packet - 1.3.6.1.4.1.14988.1.1.20.2.1.9 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxTotalCollision + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.83 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.83' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAIdentity - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.10 - type: DisplayString - help: peer identity - 1.3.6.1.4.1.14988.1.1.20.2.1.10 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxPauseHonored + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.84 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.84' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAPh2Count - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.11 - type: gauge - help: total ph2 SA pairs - 1.3.6.1.4.1.14988.1.1.20.2.1.11 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxDrop + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.85 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.85' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSALocalAddressType - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.12 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.12' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxJabber + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.86 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.86' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: mtxrIkeSALocalAddress - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.13 - type: InetAddress - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.13' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxFCSError + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.87 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.87' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSALocalPort - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.14 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.14' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxControl + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.88 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.88' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAPeerAddressType - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.15 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.15' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsTxFragment + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.89 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.89' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: mtxrIkeSAPeerAddress - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.16 - type: InetAddress - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.16' + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrInterfaceStatsLinkDowns + oid: 1.3.6.1.4.1.14988.1.1.14.1.1.90 + type: counter + help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.90' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrInterfaceStatsIndex type: gauge - - name: mtxrIkeSAPeerPort - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.17 + lookups: + - labels: + - mtxrInterfaceStatsIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + - name: mtxrPOEInterfaceIndex + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.1 type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.17' + help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.1' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - - name: mtxrIkeSADynamicAddressType - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.18 - type: gauge - help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.18' + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + - name: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.2' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - enum_values: - 0: unknown - 1: ipv4 - 2: ipv6 - 3: ipv4z - 4: ipv6z - 16: dns - - name: mtxrIkeSADynamicAddress - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.19 - type: InetAddress - help: dynamic address allocated by mode config - 1.3.6.1.4.1.14988.1.1.20.2.1.19 + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + - name: mtxrPOEStatus + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.3 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.3' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - - name: mtxrIkeSATxBytes - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.20 - type: counter - help: ph2 SA tx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.20 + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + enum_values: + 1: disabled + 2: waitingForLoad + 3: poweredOn + 4: overload + - name: mtxrPOEVoltage + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.4 + type: gauge + help: V - 1.3.6.1.4.1.14988.1.1.15.1.1.4 indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - - name: mtxrIkeSARxBytes - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.21 - type: counter - help: ph2 SA rx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.21 + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + - name: mtxrPOECurrent + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.5 + type: gauge + help: mA - 1.3.6.1.4.1.14988.1.1.15.1.1.5 indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - - name: mtxrIkeSATxPackets - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.22 - type: counter - help: ph2 SA tx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.22 + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + - name: mtxrPOEPower + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.6 + type: gauge + help: W - 1.3.6.1.4.1.14988.1.1.15.1.1.6 indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrPOEInterfaceIndex type: gauge - - name: mtxrIkeSARxPackets - oid: 1.3.6.1.4.1.14988.1.1.20.2.1.23 - type: counter - help: ph2 SA rx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.23 + lookups: + - labels: + - mtxrPOEInterfaceIndex + labelname: mtxrPOEName + oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 + type: DisplayString + - name: mtxrLTEModemInterfaceIndex + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.1' indexes: - - labelname: mtxrIkeSAIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: laIndex - oid: 1.3.6.1.4.1.2021.10.1.1 + - name: mtxrLTEModemSignalRSSI + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.2 type: gauge - help: reference index/row number for each observed loadave. - 1.3.6.1.4.1.2021.10.1.1 + help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.2 indexes: - - labelname: laIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - lookups: - - labels: - - laIndex - labelname: laNames - oid: 1.3.6.1.4.1.2021.10.1.2 - type: DisplayString - - labels: [] - labelname: laIndex - nec_ix: - walk: - - 1.3.6.1.4.1.119.2.3.84.11 - - 1.3.6.1.4.1.119.2.3.84.12 - - 1.3.6.1.4.1.119.2.3.84.13 - - 1.3.6.1.4.1.119.2.3.84.2 - - 1.3.6.1.4.1.119.2.3.84.3 - - 1.3.6.1.4.1.119.2.3.84.6 - - 1.3.6.1.4.1.119.2.3.84.7 - - 1.3.6.1.4.1.119.2.3.84.8 - - 1.3.6.1.4.1.119.2.3.84.9 - metrics: - - name: picoMobileDeviceIndex - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.1 + - name: mtxrLTEModemSignalRSRQ + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.3 type: gauge - help: The unique index for each Mobile module. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.1 + help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.3 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceVendorName - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.2 - type: DisplayString - help: The object of the vendor name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.2 + - name: mtxrLTEModemSignalRSRP + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.4 + type: gauge + help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.4 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceName - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.3 - type: DisplayString - help: The object of the device name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.3 + - name: mtxrLTEModemCellId + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.5 + type: gauge + help: current cell ID - 1.3.6.1.4.1.14988.1.1.16.1.1.5 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceProductID - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.4 - type: DisplayString - help: The object of the product ID. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.4 + - name: mtxrLTEModemAccessTechnology + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.6 + type: gauge + help: as reported by +CREG - 1.3.6.1.4.1.14988.1.1.16.1.1.6 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceSoftwareVersion - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.5 - type: DisplayString - help: The object of the software version. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.5 + enum_values: + -1: unknown + 0: gsmcompact + 1: gsm + 2: utran + 3: egprs + 4: hsdpa + 5: hsupa + 6: hsdpahsupa + 7: eutran + - name: mtxrLTEModemSignalSINR + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.7 + type: gauge + help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.7 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceSignalBar - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.6 + - name: mtxrLTEModemEnbId + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.8 type: gauge - help: The object of the signal bar. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.6 + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.8' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceSignalStrength - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.7 + - name: mtxrLTEModemSectorId + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.9 type: gauge - help: 'The signal strength can be: unknown(-1) :signal strength is unknown out-range(0):signal - strength is 0 weak(1) :signal strength is 1 low(2) :signal strength is 2 high(3) - :signal strength is 3 - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.7' + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.9' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - enum_values: - -1: unknown - 0: out-range - 1: weak - 2: low - 3: high - - name: picoMobileDeviceSignalQuality - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.8 - type: DisplayString - help: The object of the signal quality. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.8 + - name: mtxrLTEModemLac + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.10 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.10' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceSignalElapsedTime - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.9 - type: gauge - help: The object of the elapsed time after signal acquiring. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.9 + - name: mtxrLTEModemIMEI + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.11 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.11' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceRadioInterface - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.10 + - name: mtxrLTEModemIMSI + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.12 type: DisplayString - help: The object of the radio interface. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.10 + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.12' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceCarrier - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.11 + - name: mtxrLTEModemUICC + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.13 type: DisplayString - help: The object of the carrier name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.11 + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.13' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceDialerString - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.12 + - name: mtxrLTEModemRAT + oid: 1.3.6.1.4.1.14988.1.1.16.1.1.14 type: DisplayString - help: The object of the dialer string. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.12 + help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.14' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrLTEModemInterfaceIndex type: gauge - - name: picoMobileDeviceDialStatus - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.13 + - name: mtxrPartitionIndex + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.1 type: gauge - help: 'The dial status can be: disconnected(0):dial status is disconnected - - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.13' + help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.1' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrPartitionIndex type: gauge - enum_values: - 0: disconnected - 1: connect - 2: cancel - 3: connected - 4: postprocess - - name: picoMobileDeviceInRangeCounts - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.14 - type: gauge - help: The in-range statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.14 + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + - name: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.2' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrPartitionIndex type: gauge - - name: picoMobileDeviceOutRangeCounts - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.15 + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + - name: mtxrPartitionSize + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.3 type: gauge - help: The out-range statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.15 + help: MB - 1.3.6.1.4.1.14988.1.1.17.1.1.3 indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrPartitionIndex type: gauge - - name: picoMobileDeviceResetCounts - oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.16 - type: gauge - help: The reset device statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.16 + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + - name: mtxrPartitionVersion + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.4' indexes: - - labelname: picoMobileDeviceIndex + - labelname: mtxrPartitionIndex type: gauge - - name: picoIPv4CacheEntries - oid: 1.3.6.1.4.1.119.2.3.84.12.1.1 - type: gauge - help: The number of current IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.1 - - name: picoIPv4CachePeaks - oid: 1.3.6.1.4.1.119.2.3.84.12.1.2 - type: gauge - help: The peak value of IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.2 - - name: picoIPv4CacheCreates - oid: 1.3.6.1.4.1.119.2.3.84.12.1.3 - type: counter - help: The total count of created IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.3 - - name: picoIPv4CacheOverflows - oid: 1.3.6.1.4.1.119.2.3.84.12.1.4 - type: counter - help: The total count of IPv4 cache overflow. - 1.3.6.1.4.1.119.2.3.84.12.1.4 - - name: picoIPv4UFSCacheEntries - oid: 1.3.6.1.4.1.119.2.3.84.12.2.1 - type: gauge - help: The number of current IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.1 - - name: picoIPv4UFSCachePeaks - oid: 1.3.6.1.4.1.119.2.3.84.12.2.2 - type: gauge - help: The peak value of IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.2 - - name: picoIPv4UFSCacheCreates - oid: 1.3.6.1.4.1.119.2.3.84.12.2.3 - type: counter - help: The total count of created IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.3 - - name: picoIPv4UFSCacheOverflows - oid: 1.3.6.1.4.1.119.2.3.84.12.2.4 - type: counter - help: The total count of IPv4 UFS cache overflow - 1.3.6.1.4.1.119.2.3.84.12.2.4 - - name: picoIPv6CacheEntries - oid: 1.3.6.1.4.1.119.2.3.84.13.1.1 - type: gauge - help: The number of current IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.1 - - name: picoIPv6CachePeaks - oid: 1.3.6.1.4.1.119.2.3.84.13.1.2 - type: gauge - help: The peak value of IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.2 - - name: picoIPv6CacheCreates - oid: 1.3.6.1.4.1.119.2.3.84.13.1.3 - type: counter - help: The total count of created IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.3 - - name: picoIPv6CacheOverflows - oid: 1.3.6.1.4.1.119.2.3.84.13.1.4 - type: counter - help: The total count of IPv6 cache overflow. - 1.3.6.1.4.1.119.2.3.84.13.1.4 - - name: picoIPv6UFSCacheEntries - oid: 1.3.6.1.4.1.119.2.3.84.13.2.1 - type: gauge - help: The number of current IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.1 - - name: picoIPv6UFSCachePeaks - oid: 1.3.6.1.4.1.119.2.3.84.13.2.2 - type: gauge - help: The peak value of IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.2 - - name: picoIPv6UFSCacheCreates - oid: 1.3.6.1.4.1.119.2.3.84.13.2.3 - type: counter - help: The total count of created IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.3 - - name: picoIPv6UFSCacheOverflows - oid: 1.3.6.1.4.1.119.2.3.84.13.2.4 - type: counter - help: The total count of IPv6 UFS cache overflow - 1.3.6.1.4.1.119.2.3.84.13.2.4 - - name: picoCelsius - oid: 1.3.6.1.4.1.119.2.3.84.2.1.1 - type: gauge - help: Indicates the temperature of the equipment inside, in degree (Celsius). - - 1.3.6.1.4.1.119.2.3.84.2.1.1 - - name: picoFahrenheit - oid: 1.3.6.1.4.1.119.2.3.84.2.1.2 - type: gauge - help: Indicates the temperature of the equipment inside, in degree (Fahrenheit). - - 1.3.6.1.4.1.119.2.3.84.2.1.2 - - name: picoVoltage - oid: 1.3.6.1.4.1.119.2.3.84.2.2 + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + - name: mtxrPartitionActive + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.5 type: gauge - help: Indicates the observed voltage, in milli-volt (mV). - 1.3.6.1.4.1.119.2.3.84.2.2 - - name: picoFanIndex - oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.5' + indexes: + - labelname: mtxrPartitionIndex + type: gauge + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + enum_values: + 0: "false" + 1: "true" + - name: mtxrPartitionRunning + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.6 type: gauge - help: Unique index for each fan module. - 1.3.6.1.4.1.119.2.3.84.2.3.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.6' indexes: - - labelname: picoFanIndex + - labelname: mtxrPartitionIndex type: gauge - - name: picoFanStatus - oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.2 + lookups: + - labels: + - mtxrPartitionIndex + labelname: mtxrPartitionName + oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 + type: DisplayString + enum_values: + 0: "false" + 1: "true" + - name: mtxrScriptRunIndex + oid: 1.3.6.1.4.1.14988.1.1.18.1.1.1 type: gauge - help: Status of a fan module - 1.3.6.1.4.1.119.2.3.84.2.3.1.2 + help: ' - 1.3.6.1.4.1.14988.1.1.18.1.1.1' indexes: - - labelname: picoFanIndex + - labelname: mtxrScriptRunIndex type: gauge - enum_values: - 1: normal - 2: failure - - name: picoFanRpm - oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.3 - type: gauge - help: Fan speed (Revolution Per Minutes) - 1.3.6.1.4.1.119.2.3.84.2.3.1.3 + - name: mtxrScriptRunOutput + oid: 1.3.6.1.4.1.14988.1.1.18.1.1.2 + type: DisplayString + help: this oid on get request will run script and return it's output - 1.3.6.1.4.1.14988.1.1.18.1.1.2 indexes: - - labelname: picoFanIndex + - labelname: mtxrScriptRunIndex type: gauge - - name: picoPowerSupplyIndex - oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.1 + - name: mtxrOpticalIndex + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.1 type: gauge - help: Unique index for each power supply module. - 1.3.6.1.4.1.119.2.3.84.2.4.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.1' indexes: - - labelname: picoPowerSupplyIndex + - labelname: mtxrOpticalIndex type: gauge - - name: picoPowerSupplyType - oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.2 - type: gauge - help: Power supply module type. - 1.3.6.1.4.1.119.2.3.84.2.4.1.2 + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString + - name: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.2' indexes: - - labelname: picoPowerSupplyIndex + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 0: notInstalled - 1: systemACPS - 2: ieee802dot3af-PoE-ACPS - - name: picoPowerSupplyStatus - oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.3 + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString + - name: mtxrOpticalRxLoss + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.3 type: gauge - help: Status of a Power Supply module. - 1.3.6.1.4.1.119.2.3.84.2.4.1.3 + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.3' indexes: - - labelname: picoPowerSupplyIndex + - labelname: mtxrOpticalIndex type: gauge + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString enum_values: - 0: notInstalled - 1: normal - 2: failure - - name: picoSchedRtUtl1Sec - oid: 1.3.6.1.4.1.119.2.3.84.2.5.1 - type: gauge - help: Indicates the observed system utilization for last 1 second, in percent - (%). - 1.3.6.1.4.1.119.2.3.84.2.5.1 - - name: picoSchedRtUtl5Sec - oid: 1.3.6.1.4.1.119.2.3.84.2.5.2 - type: gauge - help: Indicates the observed system utilization for last 5 seconds, in percent - (%). - 1.3.6.1.4.1.119.2.3.84.2.5.2 - - name: picoSchedRtUtl1Min - oid: 1.3.6.1.4.1.119.2.3.84.2.5.3 - type: gauge - help: Indicates the observed system utilization for last 1 minute, in percent - (%). - 1.3.6.1.4.1.119.2.3.84.2.5.3 - - name: picoSchedRtUtl1Hour - oid: 1.3.6.1.4.1.119.2.3.84.2.5.4 - type: gauge - help: Indicates the observed system utilization for last 1 hour, in percent - (%). - 1.3.6.1.4.1.119.2.3.84.2.5.4 - - name: picoHeapSize - oid: 1.3.6.1.4.1.119.2.3.84.2.6.1 - type: gauge - help: Indicates the observed total heap size, in bytes. - 1.3.6.1.4.1.119.2.3.84.2.6.1 - - name: picoHeapUtil - oid: 1.3.6.1.4.1.119.2.3.84.2.6.2 - type: gauge - help: Indicates the observed current heap utilization, in percent (%). - 1.3.6.1.4.1.119.2.3.84.2.6.2 - - name: pipSecMibLevel - oid: 1.3.6.1.4.1.119.2.3.84.3.1.1.1 - type: gauge - help: The version of the IPsec MIB. - 1.3.6.1.4.1.119.2.3.84.3.1.1.1 - - name: pikeGlobalActiveTunnels - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1 - type: gauge - help: The number of currently active IPsec Phase-1 IKE Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1 - - name: pikeGlobalInNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6 - type: counter - help: The total number of notifys received by all currently and previously active - IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6 - - name: pikeGlobalInP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7 - type: counter - help: The total number of IPsec Phase-2 exchanges received by all currently - and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7 - - name: pikeGlobalInP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8 - type: counter - help: The total number of IPsec Phase-2 exchanges which were received and found - to be contain references to unrecognized security parameters - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8 - - name: pikeGlobalInP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9 - type: counter - help: The total number of IPsec Phase-2 exchanges which were received and validated - but were rejected by the local policy - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9 - - name: pikeGlobalInP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10 - type: counter - help: The total number of IPsec Phase-2 security association delete requests - received by all currently and previously active and IPsec Phase-1 IKE Tunnels. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10 - - name: pikeGlobalOutNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14 - type: counter - help: The total number of notifys sent by all currently and previously active - IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14 - - name: pikeGlobalOutP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15 - type: counter - help: The total number of IPsec Phase-2 exchanges which were sent by all currently - and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15 - - name: pikeGlobalOutP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16 - type: counter - help: The total number of IPsec Phase-2 exchanges which were sent and were flagged - by the peer to contain references to unrecognized security parameters - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16 - - name: pikeGlobalOutP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17 - type: counter - help: The total number of IPsec Phase-2 exchanges which were sent, validated - by the peer but were rejected by the peer's policy - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17 - - name: pikeGlobalOutP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18 - type: counter - help: The total number of IPsec Phase-2 SA delete requests sent by all currently - and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18 - - name: pikeGlobalInitTunnels - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19 - type: counter - help: The total number of IPsec Phase-1 IKE Tunnels which were locally initiated. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19 - - name: pikeGlobalInitTunnelFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20 - type: counter - help: The total number of IPsec Phase-1 IKE Tunnels which were locally initiated - and failed to activate. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20 - - name: pikeGlobalRespTunnelFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21 - type: counter - help: The total number of IPsec Phase-1 IKE Tunnels which were remotely initiated - and failed to activate. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21 - - name: pikeGlobalAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23 - type: counter - help: The total number of authentications which ended in failure by all current - and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23 - - name: pikeGlobalDecryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24 - type: counter - help: The total number of decryptions which ended in failure by all current - and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24 - - name: pikeGlobalHashValidFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25 - type: counter - help: The total number of hash validations which ended in failure by all current - and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25 - - name: pikeGlobalRespTunnels - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27 - type: counter - help: The total number of IPsec Phase-1 IKE Tunnels which were remotely initiated. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27 - - name: pikeGlobalInP1SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30 - type: counter - help: The total number of ISAKMP security association delete requests received - by all currently and previously active and ISAKMP security associations. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30 - - name: pikeGlobalOutP1SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31 - type: counter - help: The total number of ISAKMP security association delete requests sent by - all currently and previously active and ISAKMP security associations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31 - - name: pikePeerLocalType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.1 + 0: "false" + 1: "true" + - name: mtxrOpticalTxFault + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.4 type: gauge - help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.1 + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.4' indexes: - - labelname: pikePeerLocalType - type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 type: DisplayString - - labelname: pikePeerIntIndex - type: gauge enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikePeerLocalValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.2 - type: DisplayString - help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.2 + 0: "false" + 1: "true" + - name: mtxrOpticalWavelength + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.5 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.5' + indexes: + - labelname: mtxrOpticalIndex + type: gauge + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString + - name: mtxrOpticalTemperature + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.6 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.6' indexes: - - labelname: pikePeerLocalType + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 type: DisplayString - - labelname: pikePeerRemoteType + - name: mtxrOpticalSupplyVoltage + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.7 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.7' + indexes: + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrOpticalTxBiasCurrent + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.8 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.8' + indexes: + - labelname: mtxrOpticalIndex type: gauge - - name: pikePeerRemoteType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.3 + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 + type: DisplayString + - name: mtxrOpticalTxPower + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.9 type: gauge - help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.3 + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.9' indexes: - - labelname: pikePeerLocalType + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 type: DisplayString - - labelname: pikePeerRemoteType + - name: mtxrOpticalRxPower + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.10 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.10' + indexes: + - labelname: mtxrOpticalIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue + lookups: + - labels: + - mtxrOpticalIndex + labelname: mtxrOpticalName + oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSACount + oid: 1.3.6.1.4.1.14988.1.1.20.1 + type: gauge + help: IKE SA count - 1.3.6.1.4.1.14988.1.1.20.1 + - name: mtxrIkeSAIndex + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.1' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikePeerRemoteValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.4 + - name: mtxrIkeSAInitiatorCookie + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.2 type: DisplayString - help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.4 + help: initiator SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.2 indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + - name: mtxrIkeSAResponderCookie + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.3 + type: DisplayString + help: responder SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.3 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSAResponder + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.4 + type: gauge + help: IKE side - 1.3.6.1.4.1.14988.1.1.20.2.1.4 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikePeerIntIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.5 + enum_values: + 0: "false" + 1: "true" + - name: mtxrIkeSANatt + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.5 type: gauge - help: The internal index of the local-remote peer association - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.5 + help: NAT is detected - 1.3.6.1.4.1.14988.1.1.20.2.1.5 indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + enum_values: + 0: "false" + 1: "true" + - name: mtxrIkeSAVersion + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.6 + type: gauge + help: protocol version - 1.3.6.1.4.1.14988.1.1.20.2.1.6 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSAState + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.7 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.7' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikePeerLocalAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.6 - type: OctetString - help: The IP address of the local peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.6 + enum_values: + 1: exchange + 2: established + 3: expired + 4: eap + - name: mtxrIkeSAUptime + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.8 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.8' indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + - name: mtxrIkeSASeen + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.9 + type: gauge + help: time elapsed since last valid IKE packet - 1.3.6.1.4.1.14988.1.1.20.2.1.9 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSAIdentity + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.10 + type: DisplayString + help: peer identity - 1.3.6.1.4.1.14988.1.1.20.2.1.10 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikePeerRemoteAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.7 - type: OctetString - help: The IP address of the remote peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.7 + - name: mtxrIkeSAPh2Count + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.11 + type: gauge + help: total ph2 SA pairs - 1.3.6.1.4.1.14988.1.1.20.2.1.11 indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + - name: mtxrIkeSALocalAddressType + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.12 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.12' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: mtxrIkeSALocalAddress + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.13 + type: InetAddress + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.13' + indexes: + - labelname: mtxrIkeSAIndex + type: gauge + - name: mtxrIkeSALocalPort + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.14 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.14' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikePeerActiveTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.8 + - name: mtxrIkeSAPeerAddressType + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.15 type: gauge - help: The length of time that the peer association has existed in hundredths - of a second. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.8 + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.15' indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: mtxrIkeSAPeerAddress + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.16 + type: InetAddress + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.16' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSAPeerPort + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.17 + type: gauge + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.17' + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikePeerActiveTunnelIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.9 + - name: mtxrIkeSADynamicAddressType + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.18 type: gauge - help: The index of the active IPsec Phase-1 IKE Tunnel (pikeTunIndex in the - pikeTunnelTable) for this peer association - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.9 + help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.18' indexes: - - labelname: pikePeerLocalType + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerLocalValue - type: DisplayString - - labelname: pikePeerRemoteType + enum_values: + 0: unknown + 1: ipv4 + 2: ipv6 + 3: ipv4z + 4: ipv6z + 16: dns + - name: mtxrIkeSADynamicAddress + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.19 + type: InetAddress + help: dynamic address allocated by mode config - 1.3.6.1.4.1.14988.1.1.20.2.1.19 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - labelname: pikePeerRemoteValue - type: DisplayString - - labelname: pikePeerIntIndex + - name: mtxrIkeSATxBytes + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.20 + type: counter + help: ph2 SA tx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.20 + indexes: + - labelname: mtxrIkeSAIndex type: gauge - - name: pikeTunIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.1 - type: gauge - help: The index of the IPsec Phase-1 IKE Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.1 + - name: mtxrIkeSARxBytes + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.21 + type: counter + help: ph2 SA rx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.21 indexes: - - labelname: pikeTunIndex + - labelname: mtxrIkeSAIndex type: gauge - - name: pikeTunLocalType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.2 + - name: mtxrIkeSATxPackets + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.22 + type: counter + help: ph2 SA tx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.22 + indexes: + - labelname: mtxrIkeSAIndex + type: gauge + - name: mtxrIkeSARxPackets + oid: 1.3.6.1.4.1.14988.1.1.20.2.1.23 + type: counter + help: ph2 SA rx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.23 + indexes: + - labelname: mtxrIkeSAIndex + type: gauge + nec_ix: + walk: + - 1.3.6.1.4.1.119.2.3.84.11 + - 1.3.6.1.4.1.119.2.3.84.12 + - 1.3.6.1.4.1.119.2.3.84.13 + - 1.3.6.1.4.1.119.2.3.84.2 + - 1.3.6.1.4.1.119.2.3.84.3 + - 1.3.6.1.4.1.119.2.3.84.6 + - 1.3.6.1.4.1.119.2.3.84.7 + - 1.3.6.1.4.1.119.2.3.84.8 + - 1.3.6.1.4.1.119.2.3.84.9 + metrics: + - name: picoMobileDeviceIndex + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.1 type: gauge - help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.2 + help: The unique index for each Mobile module. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.1 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikeTunLocalValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.3 + - name: picoMobileDeviceVendorName + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.2 type: DisplayString - help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.3 + help: The object of the vendor name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.2 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunLocalAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.4 - type: OctetString - help: The IP address of the local endpoint for the IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.4 + - name: picoMobileDeviceName + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.3 + type: DisplayString + help: The object of the device name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.3 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunRemoteType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.6 - type: gauge - help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.6 + - name: picoMobileDeviceProductID + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.4 + type: DisplayString + help: The object of the product ID. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.4 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikeTunRemoteValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.7 + - name: picoMobileDeviceSoftwareVersion + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.5 type: DisplayString - help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.7 + help: The object of the software version. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.5 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunRemoteAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.8 - type: OctetString - help: The IP address of the remote endpoint for the IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.8 + - name: picoMobileDeviceSignalBar + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.6 + type: gauge + help: The object of the signal bar. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.6 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunNegoMode - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.10 + - name: picoMobileDeviceSignalStrength + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.7 type: gauge - help: The negotiation mode of the IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.10 + help: 'The signal strength can be: unknown(-1) :signal strength is unknown out-range(0):signal + strength is 0 weak(1) :signal strength is 1 low(2) :signal strength is 2 high(3) + :signal strength is 3 - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.7' indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge enum_values: - 1: main - 2: aggressive - - name: pikeTunDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.11 - type: gauge - help: The Diffie Hellman Group used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.11 + -1: unknown + 0: out-range + 1: weak + 2: low + 3: high + - name: picoMobileDeviceSignalQuality + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.8 + type: DisplayString + help: The object of the signal quality. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.8 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - enum_values: - 1: none - 2: modp768 - 3: modp1024 - 4: modp1536 - 5: modp2048 - - name: pikeTunEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.12 + - name: picoMobileDeviceSignalElapsedTime + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.9 type: gauge - help: The encryption algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.12 + help: The object of the elapsed time after signal acquiring. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.9 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - enum_values: - 1: none - 2: des - 3: des3 - 4: aes - 9: "null" - - name: pikeTunHashAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.13 - type: gauge - help: The hash algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.13 + - name: picoMobileDeviceRadioInterface + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.10 + type: DisplayString + help: The object of the radio interface. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.10 + indexes: + - labelname: picoMobileDeviceIndex + type: gauge + - name: picoMobileDeviceCarrier + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.11 + type: DisplayString + help: The object of the carrier name. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.11 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - enum_values: - 1: none - 2: md5 - 3: sha - 4: sha2-256 - 5: sha2-384 - 6: sha2-512 - - name: pikeTunAuthMethod - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.14 + - name: picoMobileDeviceDialerString + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.12 + type: DisplayString + help: The object of the dialer string. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.12 + indexes: + - labelname: picoMobileDeviceIndex + type: gauge + - name: picoMobileDeviceDialStatus + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.13 type: gauge - help: The authentication method used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.14 + help: 'The dial status can be: disconnected(0):dial status is disconnected - + 1.3.6.1.4.1.119.2.3.84.11.1.1.1.13' indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge enum_values: - 1: none - 2: preSharedKey - 3: rsaSig - 4: rsaEncrypt - 5: revPublicKey - - name: pikeTunLifeTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.15 + 0: disconnected + 1: connect + 2: cancel + 3: connected + 4: postprocess + - name: picoMobileDeviceInRangeCounts + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.14 type: gauge - help: The negotiated LifeTime of the IPsec Phase-1 IKE Tunnel in seconds. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.15 + help: The in-range statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.14 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunActiveTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.16 + - name: picoMobileDeviceOutRangeCounts + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.15 type: gauge - help: The length of time the IPsec Phase-1 IKE tunnel has been active in hundredths - of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.16 + help: The out-range statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.15 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunSaRefreshThreshold - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.17 + - name: picoMobileDeviceResetCounts + oid: 1.3.6.1.4.1.119.2.3.84.11.1.1.1.16 type: gauge - help: The security assoication refresh threshold in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.17 + help: The reset device statistics. - 1.3.6.1.4.1.119.2.3.84.11.1.1.1.16 indexes: - - labelname: pikeTunIndex + - labelname: picoMobileDeviceIndex type: gauge - - name: pikeTunInNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.22 + - name: picoIPv4CacheEntries + oid: 1.3.6.1.4.1.119.2.3.84.12.1.1 + type: gauge + help: The number of current IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.1 + - name: picoIPv4CachePeaks + oid: 1.3.6.1.4.1.119.2.3.84.12.1.2 + type: gauge + help: The peak value of IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.2 + - name: picoIPv4CacheCreates + oid: 1.3.6.1.4.1.119.2.3.84.12.1.3 type: counter - help: The total number of notifys received by this IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.22 - indexes: - - labelname: pikeTunIndex - type: gauge - - name: pikeTunInP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.23 + help: The total count of created IPv4 cache. - 1.3.6.1.4.1.119.2.3.84.12.1.3 + - name: picoIPv4CacheOverflows + oid: 1.3.6.1.4.1.119.2.3.84.12.1.4 type: counter - help: The total number of IPsec Phase-2 exchanges received by this IPsec Phase-1 - IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.23 + help: The total count of IPv4 cache overflow. - 1.3.6.1.4.1.119.2.3.84.12.1.4 + - name: picoIPv4UFSCacheEntries + oid: 1.3.6.1.4.1.119.2.3.84.12.2.1 + type: gauge + help: The number of current IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.1 + - name: picoIPv4UFSCachePeaks + oid: 1.3.6.1.4.1.119.2.3.84.12.2.2 + type: gauge + help: The peak value of IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.2 + - name: picoIPv4UFSCacheCreates + oid: 1.3.6.1.4.1.119.2.3.84.12.2.3 + type: counter + help: The total count of created IPv4 UFS cache - 1.3.6.1.4.1.119.2.3.84.12.2.3 + - name: picoIPv4UFSCacheOverflows + oid: 1.3.6.1.4.1.119.2.3.84.12.2.4 + type: counter + help: The total count of IPv4 UFS cache overflow - 1.3.6.1.4.1.119.2.3.84.12.2.4 + - name: picoIPv6CacheEntries + oid: 1.3.6.1.4.1.119.2.3.84.13.1.1 + type: gauge + help: The number of current IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.1 + - name: picoIPv6CachePeaks + oid: 1.3.6.1.4.1.119.2.3.84.13.1.2 + type: gauge + help: The peak value of IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.2 + - name: picoIPv6CacheCreates + oid: 1.3.6.1.4.1.119.2.3.84.13.1.3 + type: counter + help: The total count of created IPv6 cache. - 1.3.6.1.4.1.119.2.3.84.13.1.3 + - name: picoIPv6CacheOverflows + oid: 1.3.6.1.4.1.119.2.3.84.13.1.4 + type: counter + help: The total count of IPv6 cache overflow. - 1.3.6.1.4.1.119.2.3.84.13.1.4 + - name: picoIPv6UFSCacheEntries + oid: 1.3.6.1.4.1.119.2.3.84.13.2.1 + type: gauge + help: The number of current IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.1 + - name: picoIPv6UFSCachePeaks + oid: 1.3.6.1.4.1.119.2.3.84.13.2.2 + type: gauge + help: The peak value of IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.2 + - name: picoIPv6UFSCacheCreates + oid: 1.3.6.1.4.1.119.2.3.84.13.2.3 + type: counter + help: The total count of created IPv6 UFS cache - 1.3.6.1.4.1.119.2.3.84.13.2.3 + - name: picoIPv6UFSCacheOverflows + oid: 1.3.6.1.4.1.119.2.3.84.13.2.4 + type: counter + help: The total count of IPv6 UFS cache overflow - 1.3.6.1.4.1.119.2.3.84.13.2.4 + - name: picoCelsius + oid: 1.3.6.1.4.1.119.2.3.84.2.1.1 + type: gauge + help: Indicates the temperature of the equipment inside, in degree (Celsius). + - 1.3.6.1.4.1.119.2.3.84.2.1.1 + - name: picoFahrenheit + oid: 1.3.6.1.4.1.119.2.3.84.2.1.2 + type: gauge + help: Indicates the temperature of the equipment inside, in degree (Fahrenheit). + - 1.3.6.1.4.1.119.2.3.84.2.1.2 + - name: picoVoltage + oid: 1.3.6.1.4.1.119.2.3.84.2.2 + type: gauge + help: Indicates the observed voltage, in milli-volt (mV). - 1.3.6.1.4.1.119.2.3.84.2.2 + - name: picoFanIndex + oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.1 + type: gauge + help: Unique index for each fan module. - 1.3.6.1.4.1.119.2.3.84.2.3.1.1 indexes: - - labelname: pikeTunIndex + - labelname: picoFanIndex type: gauge - - name: pikeTunInP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.24 - type: counter - help: The total number of IPsec Phase-2 exchanges received on this tunnel that - were found to contain references to unrecognized security parameters. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.24 + - name: picoFanStatus + oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.2 + type: gauge + help: Status of a fan module - 1.3.6.1.4.1.119.2.3.84.2.3.1.2 indexes: - - labelname: pikeTunIndex + - labelname: picoFanIndex type: gauge - - name: pikeTunInP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.25 - type: counter - help: The total number of IPsec Phase-2 exchanges received on this tunnel that - were validated but were rejected by the local policy. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.25 + enum_values: + 1: normal + 2: failure + - name: picoFanRpm + oid: 1.3.6.1.4.1.119.2.3.84.2.3.1.3 + type: gauge + help: Fan speed (Revolution Per Minutes) - 1.3.6.1.4.1.119.2.3.84.2.3.1.3 indexes: - - labelname: pikeTunIndex + - labelname: picoFanIndex type: gauge - - name: pikeTunInP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.26 - type: counter - help: The total number of IPsec Phase-2 security association delete requests - received by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.26 + - name: picoPowerSupplyIndex + oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.1 + type: gauge + help: Unique index for each power supply module. - 1.3.6.1.4.1.119.2.3.84.2.4.1.1 indexes: - - labelname: pikeTunIndex + - labelname: picoPowerSupplyIndex type: gauge - - name: pikeTunOutNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.30 - type: counter - help: The total number of notifys sent by this IPsec Phase-1 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.30 + - name: picoPowerSupplyType + oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.2 + type: gauge + help: Power supply module type. - 1.3.6.1.4.1.119.2.3.84.2.4.1.2 indexes: - - labelname: pikeTunIndex + - labelname: picoPowerSupplyIndex type: gauge - - name: pikeTunOutP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.31 - type: counter - help: The total number of IPsec Phase-2 exchanges sent by this IPsec Phase-1 - IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.31 + enum_values: + 0: notInstalled + 1: systemACPS + 2: ieee802dot3af-PoE-ACPS + - name: picoPowerSupplyStatus + oid: 1.3.6.1.4.1.119.2.3.84.2.4.1.3 + type: gauge + help: Status of a Power Supply module. - 1.3.6.1.4.1.119.2.3.84.2.4.1.3 indexes: - - labelname: pikeTunIndex + - labelname: picoPowerSupplyIndex type: gauge - - name: pikeTunOutP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.32 + enum_values: + 0: notInstalled + 1: normal + 2: failure + - name: picoSchedRtUtl1Sec + oid: 1.3.6.1.4.1.119.2.3.84.2.5.1 + type: gauge + help: Indicates the observed system utilization for last 1 second, in percent + (%). - 1.3.6.1.4.1.119.2.3.84.2.5.1 + - name: picoSchedRtUtl5Sec + oid: 1.3.6.1.4.1.119.2.3.84.2.5.2 + type: gauge + help: Indicates the observed system utilization for last 5 seconds, in percent + (%). - 1.3.6.1.4.1.119.2.3.84.2.5.2 + - name: picoSchedRtUtl1Min + oid: 1.3.6.1.4.1.119.2.3.84.2.5.3 + type: gauge + help: Indicates the observed system utilization for last 1 minute, in percent + (%). - 1.3.6.1.4.1.119.2.3.84.2.5.3 + - name: picoSchedRtUtl1Hour + oid: 1.3.6.1.4.1.119.2.3.84.2.5.4 + type: gauge + help: Indicates the observed system utilization for last 1 hour, in percent + (%). - 1.3.6.1.4.1.119.2.3.84.2.5.4 + - name: picoHeapSize + oid: 1.3.6.1.4.1.119.2.3.84.2.6.1 + type: gauge + help: Indicates the observed total heap size, in bytes. - 1.3.6.1.4.1.119.2.3.84.2.6.1 + - name: picoHeapUtil + oid: 1.3.6.1.4.1.119.2.3.84.2.6.2 + type: gauge + help: Indicates the observed current heap utilization, in percent (%). - 1.3.6.1.4.1.119.2.3.84.2.6.2 + - name: pipSecMibLevel + oid: 1.3.6.1.4.1.119.2.3.84.3.1.1.1 + type: gauge + help: The version of the IPsec MIB. - 1.3.6.1.4.1.119.2.3.84.3.1.1.1 + - name: pikeGlobalActiveTunnels + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1 + type: gauge + help: The number of currently active IPsec Phase-1 IKE Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.1 + - name: pikeGlobalInNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6 type: counter - help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were - found by the peer to contain references to security parameters not recognized - by the peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.32 - indexes: - - labelname: pikeTunIndex - type: gauge - - name: pikeTunOutP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.33 + help: The total number of notifys received by all currently and previously active + IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.6 + - name: pikeGlobalInP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7 type: counter - help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were - validated by the peer but were rejected by the peer's policy. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.33 - indexes: - - labelname: pikeTunIndex - type: gauge - - name: pikeTunOutP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.34 + help: The total number of IPsec Phase-2 exchanges received by all currently + and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.7 + - name: pikeGlobalInP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8 type: counter - help: The total number of IPsec Phase-2 security association delete requests - sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.34 - indexes: - - labelname: pikeTunIndex - type: gauge - - name: pikeTunStatus - oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.35 - type: gauge - help: The status of the MIB table row - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.35 - indexes: - - labelname: pikeTunIndex - type: gauge - enum_values: - 1: active - 2: destroy - - name: pipSecGlobalActiveTunnels - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1 - type: gauge - help: The total number of currently active IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1 - - name: pipSecGlobalInOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3 + help: The total number of IPsec Phase-2 exchanges which were received and found + to be contain references to unrecognized security parameters - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.8 + - name: pikeGlobalInP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9 type: counter - help: The total number of octets received by all current and previous IPsec - Phase-2 Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3 - - name: pipSecGlobalInPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9 + help: The total number of IPsec Phase-2 exchanges which were received and validated + but were rejected by the local policy - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.9 + - name: pikeGlobalInP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10 type: counter - help: The total number of packets received by all current and previous IPsec - Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9 - - name: pipSecGlobalInDrops - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10 + help: The total number of IPsec Phase-2 security association delete requests + received by all currently and previously active and IPsec Phase-1 IKE Tunnels. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.10 + - name: pikeGlobalOutNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14 type: counter - help: The total number of packets dropped during receive processing by all current - and previous IPsec Phase-2 Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10 - - name: pipSecGlobalInReplayDrops - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11 + help: The total number of notifys sent by all currently and previously active + IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.14 + - name: pikeGlobalOutP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15 type: counter - help: The total number of packets dropped during receive processing due to Anti-Replay - processing by all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11 - - name: pipSecGlobalInAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12 + help: The total number of IPsec Phase-2 exchanges which were sent by all currently + and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.15 + - name: pikeGlobalOutP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16 type: counter - help: The total number of inbound authentication's performed by all current - and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12 - - name: pipSecGlobalInAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13 + help: The total number of IPsec Phase-2 exchanges which were sent and were flagged + by the peer to contain references to unrecognized security parameters - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.16 + - name: pikeGlobalOutP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17 type: counter - help: The total number of inbound authentication's which ended in failure by - all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13 - - name: pipSecGlobalInDecrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14 + help: The total number of IPsec Phase-2 exchanges which were sent, validated + by the peer but were rejected by the peer's policy - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.17 + - name: pikeGlobalOutP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18 type: counter - help: The total number of inbound decryption's performed by all current and - previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14 - - name: pipSecGlobalInDecryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15 + help: The total number of IPsec Phase-2 SA delete requests sent by all currently + and previously active IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.18 + - name: pikeGlobalInitTunnels + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19 type: counter - help: The total number of inbound decryption's which ended in failure by all - current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15 - - name: pipSecGlobalOutOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16 + help: The total number of IPsec Phase-1 IKE Tunnels which were locally initiated. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.19 + - name: pikeGlobalInitTunnelFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20 type: counter - help: The total number of octets sent by all current and previous IPsec Phase-2 - Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16 - - name: pipSecGlobalOutPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22 + help: The total number of IPsec Phase-1 IKE Tunnels which were locally initiated + and failed to activate. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.20 + - name: pikeGlobalRespTunnelFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21 type: counter - help: The total number of packets sent by all current and previous IPsec Phase-2 - Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22 - - name: pipSecGlobalOutDrops - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23 + help: The total number of IPsec Phase-1 IKE Tunnels which were remotely initiated + and failed to activate. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.21 + - name: pikeGlobalAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23 type: counter - help: The total number of packets dropped during send processing by all current - and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23 - - name: pipSecGlobalOutAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24 + help: The total number of authentications which ended in failure by all current + and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.23 + - name: pikeGlobalDecryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24 type: counter - help: The total number of outbound authentication's performed by all current - and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24 - - name: pipSecGlobalOutAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25 + help: The total number of decryptions which ended in failure by all current + and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.24 + - name: pikeGlobalHashValidFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25 type: counter - help: The total number of outbound authentication's which ended in failure by - all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25 - - name: pipSecGlobalOutEncrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26 + help: The total number of hash validations which ended in failure by all current + and previous IPsec Phase-1 IKE Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.25 + - name: pikeGlobalRespTunnels + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27 type: counter - help: The total number of outbound encryption's performed by all current and - previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26 - - name: pipSecGlobalOutEncryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27 + help: The total number of IPsec Phase-1 IKE Tunnels which were remotely initiated. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.27 + - name: pikeGlobalInP1SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30 type: counter - help: The total number of outbound encryption's which ended in failure by all - current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27 - - name: pipSecGlobalNoSaFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33 + help: The total number of ISAKMP security association delete requests received + by all currently and previously active and ISAKMP security associations. - + 1.3.6.1.4.1.119.2.3.84.3.1.2.1.30 + - name: pikeGlobalOutP1SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31 type: counter - help: The total number of non-existent Security Assocication in failures which - occurred during processing of all current and previous IPsec Phase-2 Tunnels. - - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33 - - name: pipSecTunIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.1 + help: The total number of ISAKMP security association delete requests sent by + all currently and previously active and ISAKMP security associations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.1.31 + - name: pikePeerLocalType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.1 type: gauge - help: The index of the IPsec Phase-2 Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.1 + help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.1 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikePeerLocalValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.2 + type: DisplayString + help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.2 + indexes: + - labelname: pikePeerLocalType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerRemoteType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.3 + type: gauge + help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.3 + indexes: + - labelname: pikePeerLocalType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex type: gauge - - name: pipSecTunIkeTunnelIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.2 - type: gauge - help: The index of the associated IPsec Phase-1 IKE Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.2 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikePeerRemoteValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.4 + type: DisplayString + help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.4 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - - name: pipSecTunIkeTunnelAlive - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.3 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerIntIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.5 type: gauge - help: An indicator which specifies whether or not the IPsec Phase-1 IKE Tunnel - currently exists. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.3 + help: The internal index of the local-remote peer association - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.5 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - enum_values: - 1: "true" - 2: "false" - - name: pipSecTunLocalAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.4 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerLocalAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.6 type: OctetString - help: The IP address of the local endpoint for the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.4 + help: The IP address of the local peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.6 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - - name: pipSecTunRemoteAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.5 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerRemoteAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.7 type: OctetString - help: The IP address of the remote endpoint for the IPsec Phase-2 Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.5 + help: The IP address of the remote peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.7 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - - name: pipSecTunKeyType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.6 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerActiveTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.8 type: gauge - help: The type of key used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.6 + help: The length of time that the peer association has existed in hundredths + of a second. - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.8 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - enum_values: - 1: ike - 2: manual - - name: pipSecTunEncapMode - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.7 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikePeerActiveTunnelIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.9 type: gauge - help: The encapsulation mode used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.7 + help: The index of the active IPsec Phase-1 IKE Tunnel (pikeTunIndex in the + pikeTunnelTable) for this peer association - 1.3.6.1.4.1.119.2.3.84.3.1.2.2.1.9 indexes: - - labelname: pipSecTunIndex + - labelname: pikePeerLocalType type: gauge - enum_values: - 1: tunnel - 2: transport - - name: pipSecTunLifeSize - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.8 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerLocalValue + type: DisplayString + - labelname: pikePeerRemoteType + type: gauge + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - labelname: pikePeerRemoteValue + type: DisplayString + - labelname: pikePeerIntIndex + type: gauge + - name: pikeTunIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.1 type: gauge - help: The negotiated LifeSize of the IPsec Phase-2 Tunnel in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.8 + help: The index of the IPsec Phase-1 IKE Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.1 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunLifeTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.9 + - name: pikeTunLocalType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.2 type: gauge - help: The negotiated LifeTime of the IPsec Phase-2 Tunnel in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.9 + help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.2 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunActiveTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.10 - type: gauge - help: The length of time the IPsec Phase-2 Tunnel has been active in hundredths - of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.10 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikeTunLocalValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.3 + type: DisplayString + help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.3 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunSaLifeSizeThreshold - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.11 - type: gauge - help: The security association LifeSize refresh threshold in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.11 + - name: pikeTunLocalAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.4 + type: OctetString + help: The IP address of the local endpoint for the IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.4 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunSaLifeTimeThreshold - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.12 + - name: pikeTunRemoteType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.6 type: gauge - help: The security association LifeTime refresh threshold in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.12 + help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.6 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunTotalRefreshes - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.13 - type: counter - help: The total number of security association refreshes performed. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.13 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikeTunRemoteValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.7 + type: DisplayString + help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.7 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunExpiredSaInstances - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.14 - type: counter - help: The total number of security associations which have expired. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.14 + - name: pikeTunRemoteAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.8 + type: OctetString + help: The IP address of the remote endpoint for the IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.8 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunCurrentSaInstances - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.15 + - name: pikeTunNegoMode + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.10 type: gauge - help: The number of security associations which are currently active or expiring. - - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.15 + help: The negotiation mode of the IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.10 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInSaDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.16 + enum_values: + 1: main + 2: aggressive + - name: pikeTunDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.11 type: gauge - help: The Diffie Hellman Group used by the inbound security association of the - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.16 + help: The Diffie Hellman Group used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.11 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge enum_values: 1: none @@ -17271,13 +31251,12 @@ modules: 3: modp1024 4: modp1536 5: modp2048 - - name: pipSecTunInSaEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.17 + - name: pikeTunEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.12 type: gauge - help: The encryption algorithm used by the inbound security association of the - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.17 + help: The encryption algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.12 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge enum_values: 1: none @@ -17285,391 +31264,414 @@ modules: 3: des3 4: aes 9: "null" - - name: pipSecTunInSaAhAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.18 + - name: pikeTunHashAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.13 type: gauge - help: The authentication algorithm used by the inbound authentication header - (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.18 + help: The hash algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.13 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge enum_values: 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunInSaEspAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.19 + 2: md5 + 3: sha + 4: sha2-256 + 5: sha2-384 + 6: sha2-512 + - name: pikeTunAuthMethod + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.14 type: gauge - help: The authentication algorithm used by the inbound ecapsulation security - protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.19 + help: The authentication method used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.14 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge enum_values: 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunOutSaDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.21 + 2: preSharedKey + 3: rsaSig + 4: rsaEncrypt + 5: revPublicKey + - name: pikeTunLifeTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.15 type: gauge - help: The Diffie Hellman Group used by the outbound security association of - the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.21 + help: The negotiated LifeTime of the IPsec Phase-1 IKE Tunnel in seconds. - + 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.15 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - enum_values: - 1: none - 2: modp768 - 3: modp1024 - 4: modp1536 - 5: modp2048 - - name: pipSecTunOutSaEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.22 + - name: pikeTunActiveTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.16 type: gauge - help: The encryption algorithm used by the outbound security association of - the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.22 + help: The length of time the IPsec Phase-1 IKE tunnel has been active in hundredths + of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.16 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - enum_values: - 1: none - 2: des - 3: des3 - 4: aes - 9: "null" - - name: pipSecTunOutSaAhAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.23 + - name: pikeTunSaRefreshThreshold + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.17 type: gauge - help: The authentication algorithm used by the outbound authentication header - (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.23 + help: The security assoication refresh threshold in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.17 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - enum_values: - 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunOutSaEspAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.24 - type: gauge - help: The authentication algorithm used by the inbound encapsulation security - protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.24 + - name: pikeTunInNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.22 + type: counter + help: The total number of notifys received by this IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.22 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - enum_values: - 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunPmtu - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.26 - type: gauge - help: The Path MTU that has been determined for this IPsec Phase-2 tunnel - - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.26 + - name: pikeTunInP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.23 + type: counter + help: The total number of IPsec Phase-2 exchanges received by this IPsec Phase-1 + IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.23 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.27 + - name: pikeTunInP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.24 type: counter - help: The total number of octets received by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.27 + help: The total number of IPsec Phase-2 exchanges received on this tunnel that + were found to contain references to unrecognized security parameters. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.24 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.33 + - name: pikeTunInP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.25 type: counter - help: The total number of packets received by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.33 + help: The total number of IPsec Phase-2 exchanges received on this tunnel that + were validated but were rejected by the local policy. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.25 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.34 + - name: pikeTunInP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.26 type: counter - help: The total number of packets dropped during receive processing by this - IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.34 + help: The total number of IPsec Phase-2 security association delete requests + received by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.26 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInReplayDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.35 + - name: pikeTunOutNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.30 type: counter - help: The total number of packets dropped during receive processing due to Anti-Replay - processing by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.35 + help: The total number of notifys sent by this IPsec Phase-1 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.30 indexes: - - labelname: pipSecTunIndex + - labelname: pikeTunIndex type: gauge - - name: pipSecTunInAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.36 + - name: pikeTunOutP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.31 + type: counter + help: The total number of IPsec Phase-2 exchanges sent by this IPsec Phase-1 + IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.31 + indexes: + - labelname: pikeTunIndex + type: gauge + - name: pikeTunOutP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.32 + type: counter + help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were + found by the peer to contain references to security parameters not recognized + by the peer. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.32 + indexes: + - labelname: pikeTunIndex + type: gauge + - name: pikeTunOutP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.33 + type: counter + help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were + validated by the peer but were rejected by the peer's policy. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.33 + indexes: + - labelname: pikeTunIndex + type: gauge + - name: pikeTunOutP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.34 + type: counter + help: The total number of IPsec Phase-2 security association delete requests + sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.34 + indexes: + - labelname: pikeTunIndex + type: gauge + - name: pikeTunStatus + oid: 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.35 + type: gauge + help: The status of the MIB table row - 1.3.6.1.4.1.119.2.3.84.3.1.2.3.1.35 + indexes: + - labelname: pikeTunIndex + type: gauge + enum_values: + 1: active + 2: destroy + - name: pipSecGlobalActiveTunnels + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1 + type: gauge + help: The total number of currently active IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.1 + - name: pipSecGlobalInOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3 + type: counter + help: The total number of octets received by all current and previous IPsec + Phase-2 Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.3 + - name: pipSecGlobalInPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9 + type: counter + help: The total number of packets received by all current and previous IPsec + Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.9 + - name: pipSecGlobalInDrops + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10 + type: counter + help: The total number of packets dropped during receive processing by all current + and previous IPsec Phase-2 Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.10 + - name: pipSecGlobalInReplayDrops + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11 + type: counter + help: The total number of packets dropped during receive processing due to Anti-Replay + processing by all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.11 + - name: pipSecGlobalInAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12 type: counter - help: The total number of inbound authentication's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.36 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunInAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.37 + help: The total number of inbound authentication's performed by all current + and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.12 + - name: pipSecGlobalInAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13 type: counter help: The total number of inbound authentication's which ended in failure by - this IPsec Phase-2 Tunnel . - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.37 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunInDecrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.38 + all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.13 + - name: pipSecGlobalInDecrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14 type: counter - help: The total number of inbound decryption's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.38 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunInDecryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.39 + help: The total number of inbound decryption's performed by all current and + previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.14 + - name: pipSecGlobalInDecryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15 type: counter - help: The total number of inbound decryption's which ended in failure by this - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.39 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.40 + help: The total number of inbound decryption's which ended in failure by all + current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.15 + - name: pipSecGlobalOutOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16 type: counter - help: The total number of octets sent by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.40 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.46 + help: The total number of octets sent by all current and previous IPsec Phase-2 + Tunnels - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.16 + - name: pipSecGlobalOutPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22 type: counter - help: The total number of packets sent by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.46 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.47 + help: The total number of packets sent by all current and previous IPsec Phase-2 + Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.22 + - name: pipSecGlobalOutDrops + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23 type: counter - help: The total number of packets dropped during send processing by this IPsec - Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.47 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.48 + help: The total number of packets dropped during send processing by all current + and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.23 + - name: pipSecGlobalOutAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24 type: counter - help: The total number of outbound authentication's performed by this IPsec - Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.48 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.49 + help: The total number of outbound authentication's performed by all current + and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.24 + - name: pipSecGlobalOutAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25 type: counter help: The total number of outbound authentication's which ended in failure by - this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.49 - indexes: - - labelname: pipSecTunIndex - type: gauge - - name: pipSecTunOutEncrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.50 + all current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.25 + - name: pipSecGlobalOutEncrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26 type: counter - help: The total number of outbound encryption's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.50 + help: The total number of outbound encryption's performed by all current and + previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.26 + - name: pipSecGlobalOutEncryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27 + type: counter + help: The total number of outbound encryption's which ended in failure by all + current and previous IPsec Phase-2 Tunnels. - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.27 + - name: pipSecGlobalNoSaFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33 + type: counter + help: The total number of non-existent Security Assocication in failures which + occurred during processing of all current and previous IPsec Phase-2 Tunnels. + - 1.3.6.1.4.1.119.2.3.84.3.1.3.1.33 + - name: pipSecTunIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.1 + type: gauge + help: The index of the IPsec Phase-2 Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.1 indexes: - labelname: pipSecTunIndex type: gauge - - name: pipSecTunOutEncryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.51 - type: counter - help: The total number of outbound encryption's which ended in failure by this - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.51 + - name: pipSecTunIkeTunnelIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.2 + type: gauge + help: The index of the associated IPsec Phase-1 IKE Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.2 indexes: - labelname: pipSecTunIndex type: gauge - - name: pipSecTunStatus - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.56 + - name: pipSecTunIkeTunnelAlive + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.3 type: gauge - help: The status of the MIB table row - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.56 + help: An indicator which specifies whether or not the IPsec Phase-1 IKE Tunnel + currently exists. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.3 indexes: - labelname: pipSecTunIndex type: gauge enum_values: - 1: active - 2: destroy - - name: pipSecSpiIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.1 - type: gauge - help: The number of the SPI associated with the Phase-2 Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.1 + 1: "true" + 2: "false" + - name: pipSecTunLocalAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.4 + type: OctetString + help: The IP address of the local endpoint for the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.4 indexes: - labelname: pipSecTunIndex type: gauge - - labelname: pipSecSpiIndex + - name: pipSecTunRemoteAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.5 + type: OctetString + help: The IP address of the remote endpoint for the IPsec Phase-2 Tunnel. - + 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.5 + indexes: + - labelname: pipSecTunIndex type: gauge - - name: pipSecSpiDirection - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.2 + - name: pipSecTunKeyType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.6 type: gauge - help: The direction of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.2 + help: The type of key used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.6 indexes: - labelname: pipSecTunIndex type: gauge - - labelname: pipSecSpiIndex - type: gauge enum_values: - 1: in - 2: out - - name: pipSecSpiValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.3 + 1: ike + 2: manual + - name: pipSecTunEncapMode + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.7 type: gauge - help: The value of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.3 + help: The encapsulation mode used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.7 indexes: - labelname: pipSecTunIndex type: gauge - - labelname: pipSecSpiIndex - type: gauge - - name: pipSecSpiProtocol - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.4 + enum_values: + 1: tunnel + 2: transport + - name: pipSecTunLifeSize + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.8 type: gauge - help: The protocol of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.4 + help: The negotiated LifeSize of the IPsec Phase-2 Tunnel in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.8 indexes: - labelname: pipSecTunIndex type: gauge - - labelname: pipSecSpiIndex - type: gauge - enum_values: - 1: ah - 2: esp - 3: ipcomp - - name: pipSecSpiStatus - oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.5 + - name: pipSecTunLifeTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.9 type: gauge - help: The status of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.5 + help: The negotiated LifeTime of the IPsec Phase-2 Tunnel in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.9 indexes: - labelname: pipSecTunIndex type: gauge - - labelname: pipSecSpiIndex - type: gauge - enum_values: - 1: active - 2: expiring - - name: pikeTunHistIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.1 + - name: pipSecTunActiveTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.10 type: gauge - help: The index of the IPsec Phase-1 IKE Tunnel History Table - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.1 + help: The length of time the IPsec Phase-2 Tunnel has been active in hundredths + of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.10 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistTermReason - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.2 + - name: pipSecTunSaLifeSizeThreshold + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.11 type: gauge - help: The reason the IPsec Phase-1 IKE Tunnel was terminated - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.2 + help: The security association LifeSize refresh threshold in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.11 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - enum_values: - 1: other - 2: normal - 3: operRequest - 4: peerDelRequest - 5: peerLost - 6: applicationInitiated - 7: xauthFailure - 8: localFailure - 9: checkPointReg - - name: pikeTunHistActiveIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.3 + - name: pipSecTunSaLifeTimeThreshold + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.12 type: gauge - help: The index of the previously active IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.3 + help: The security association LifeTime refresh threshold in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.12 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistPeerLocalType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.4 - type: gauge - help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.4 + - name: pipSecTunTotalRefreshes + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.13 + type: counter + help: The total number of security association refreshes performed. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.13 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikeTunHistPeerLocalValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.5 - type: DisplayString - help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.5 + - name: pipSecTunExpiredSaInstances + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.14 + type: counter + help: The total number of security associations which have expired. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.14 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistPeerIntIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.6 + - name: pipSecTunCurrentSaInstances + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.15 type: gauge - help: The internal index of the local-remote peer association - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.6 + help: The number of security associations which are currently active or expiring. + - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.15 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistPeerRemoteType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.7 + - name: pipSecTunInSaDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.16 type: gauge - help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.7 + help: The Diffie Hellman Group used by the inbound security association of the + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.16 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: - 1: idIpv4Addr - 2: idFqdn - 3: idDn - 4: idIpv6Addr - - name: pikeTunHistPeerRemoteValue - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.8 - type: DisplayString - help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.8 - indexes: - - labelname: pikeTunHistIndex - type: gauge - - name: pikeTunHistLocalAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.9 - type: OctetString - help: The IP address of the local endpoint for the IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.9 + 1: none + 2: modp768 + 3: modp1024 + 4: modp1536 + 5: modp2048 + - name: pipSecTunInSaEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.17 + type: gauge + help: The encryption algorithm used by the inbound security association of the + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.17 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistRemoteAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.11 - type: OctetString - help: The IP address of the remote endpoint for the IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.11 + enum_values: + 1: none + 2: des + 3: des3 + 4: aes + 9: "null" + - name: pipSecTunInSaAhAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.18 + type: gauge + help: The authentication algorithm used by the inbound authentication header + (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.18 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistNegoMode - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.13 + enum_values: + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunInSaEspAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.19 type: gauge - help: The negotiation mode of the IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.13 + help: The authentication algorithm used by the inbound ecapsulation security + protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.19 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: - 1: main - 2: aggressive - - name: pikeTunHistDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.14 + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunOutSaDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.21 type: gauge - help: The Diffie Hellman Group used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.14 + help: The Diffie Hellman Group used by the outbound security association of + the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.21 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: 1: none @@ -17677,12 +31679,13 @@ modules: 3: modp1024 4: modp1536 5: modp2048 - - name: pikeTunHistEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.15 + - name: pipSecTunOutSaEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.22 type: gauge - help: The encryption algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.15 + help: The encryption algorithm used by the outbound security association of + the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.22 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: 1: none @@ -17690,313 +31693,333 @@ modules: 3: des3 4: aes 9: "null" - - name: pikeTunHistHashAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.16 + - name: pipSecTunOutSaAhAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.23 type: gauge - help: The hash algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.16 + help: The authentication algorithm used by the outbound authentication header + (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.23 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: 1: none - 2: md5 - 3: sha - 4: sha2-256 - 5: sha2-384 - 6: sha2-512 - - name: pikeTunHistAuthMethod - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.17 + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunOutSaEspAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.24 type: gauge - help: The authentication method used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.17 + help: The authentication algorithm used by the inbound encapsulation security + protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.24 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: 1: none - 2: preSharedKey - 3: rsaSig - 4: rsaEncrypt - 5: revPublicKey - - name: pikeTunHistLifeTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.18 + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunPmtu + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.26 type: gauge - help: The negotiated LifeTime of the IPsec Phase-1 IKE Tunnel in seconds. - - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.18 + help: The Path MTU that has been determined for this IPsec Phase-2 tunnel - + 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.26 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistStartTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.19 - type: gauge - help: The value of sysUpTime in hundredths of seconds when the IPsec Phase-1 - IKE tunnel was started. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.19 + - name: pipSecTunInOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.27 + type: counter + help: The total number of octets received by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.27 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistActiveTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.20 - type: gauge - help: The length of time the IPsec Phase-1 IKE tunnel was been active in hundredths - of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.20 + - name: pipSecTunInPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.33 + type: counter + help: The total number of packets received by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.33 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistInNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.26 + - name: pipSecTunInDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.34 type: counter - help: The total number of notifys received by this IPsec Phase-1 IKE Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.26 + help: The total number of packets dropped during receive processing by this + IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.34 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistInP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.27 + - name: pipSecTunInReplayDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.35 type: counter - help: The total number of IPsec Phase-2 exchanges received by this IPsec Phase-1 - IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.27 + help: The total number of packets dropped during receive processing due to Anti-Replay + processing by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.35 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistInP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.28 + - name: pipSecTunInAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.36 type: counter - help: The total number of IPsec Phase-2 exchanges received on this tunnel that - were found to contain references to unrecognized security parameters. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.28 + help: The total number of inbound authentication's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.36 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistInP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.29 + - name: pipSecTunInAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.37 type: counter - help: The total number of IPsec Phase-2 exchanges received on this tunnel that - were validated but were rejected by the local policy. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.29 + help: The total number of inbound authentication's which ended in failure by + this IPsec Phase-2 Tunnel . - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.37 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistInP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.30 + - name: pipSecTunInDecrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.38 type: counter - help: The total number of IPsec Phase-2 security association delete requests - received by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.30 + help: The total number of inbound decryption's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.38 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistOutNotifys - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.34 + - name: pipSecTunInDecryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.39 type: counter - help: The total number of notifys sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.34 + help: The total number of inbound decryption's which ended in failure by this + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.39 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistOutP2Exchgs - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.35 + - name: pipSecTunOutOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.40 type: counter - help: The total number of IPsec Phase-2 exchanges sent by this IPsec Phase-1 - IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.35 + help: The total number of octets sent by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.40 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex + type: gauge + - name: pipSecTunOutPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.46 + type: counter + help: The total number of packets sent by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.46 + indexes: + - labelname: pipSecTunIndex + type: gauge + - name: pipSecTunOutDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.47 + type: counter + help: The total number of packets dropped during send processing by this IPsec + Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.47 + indexes: + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistOutP2ExchgInvalids - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.36 + - name: pipSecTunOutAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.48 type: counter - help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were - found by the peer to contain references to security parameters not recognized - by the peer. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.36 + help: The total number of outbound authentication's performed by this IPsec + Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.48 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistOutP2ExchgRejects - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.37 + - name: pipSecTunOutAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.49 type: counter - help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were - validated by the peer but were rejected by the peer's policy. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.37 + help: The total number of outbound authentication's which ended in failure by + this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.49 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pikeTunHistOutP2SaDelRequests - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.38 + - name: pipSecTunOutEncrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.50 type: counter - help: The total number of IPsec Phase-2 security association delete requests - sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.38 + help: The total number of outbound encryption's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.50 indexes: - - labelname: pikeTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pipSecTunHistIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.1 - type: gauge - help: The index of the IPsec Phase-2 Tunnel History Table - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.1 + - name: pipSecTunOutEncryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.51 + type: counter + help: The total number of outbound encryption's which ended in failure by this + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.51 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pipSecTunHistTermReason - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.2 + - name: pipSecTunStatus + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.56 type: gauge - help: The reason the IPsec Phase-2 Tunnel was terminated - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.2 + help: The status of the MIB table row - 1.3.6.1.4.1.119.2.3.84.3.1.3.2.1.56 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex type: gauge enum_values: - 1: other - 2: normal - 3: operRequest - 4: peerDelRequest - 5: peerLost - 6: applicationInitiated - 7: xauthFailure - 8: seqNumRollOver - 9: checkPointReq - - name: pipSecTunHistActiveIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.3 + 1: active + 2: destroy + - name: pipSecSpiIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.1 type: gauge - help: The index of the previously active IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.3 + help: The number of the SPI associated with the Phase-2 Tunnel Table - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.1 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pipSecTunHistIkeTunnelIndex - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.4 + - labelname: pipSecSpiIndex + type: gauge + - name: pipSecSpiDirection + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.2 type: gauge - help: The index of the associated IPsec Phase-1 Tunnel (pikeTunIndex in the - pikeTunnelTable). - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.4 + help: The direction of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.2 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pipSecTunHistLocalAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.5 - type: OctetString - help: The IP address of the local endpoint for the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.5 - indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecSpiIndex type: gauge - - name: pipSecTunHistRemoteAddr - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.6 - type: OctetString - help: The IP address of the remote endpoint for the IPsec Phase-2 Tunnel. - - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.6 + enum_values: + 1: in + 2: out + - name: pipSecSpiValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.3 + type: gauge + help: The value of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.3 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex type: gauge - - name: pipSecTunHistKeyType - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.7 + - labelname: pipSecSpiIndex + type: gauge + - name: pipSecSpiProtocol + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.4 type: gauge - help: The type of key used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.7 + help: The protocol of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.4 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex + type: gauge + - labelname: pipSecSpiIndex type: gauge enum_values: - 1: ike - 2: manual - - name: pipSecTunHistEncapMode - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.8 + 1: ah + 2: esp + 3: ipcomp + - name: pipSecSpiStatus + oid: 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.5 type: gauge - help: The encapsulation mode used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.8 + help: The status of the SPI. - 1.3.6.1.4.1.119.2.3.84.3.1.3.4.1.5 indexes: - - labelname: pipSecTunHistIndex + - labelname: pipSecTunIndex + type: gauge + - labelname: pipSecSpiIndex type: gauge enum_values: - 1: tunnel - 2: transport - - name: pipSecTunHistLifeSize - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.9 + 1: active + 2: expiring + - name: pikeTunHistIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.1 type: gauge - help: The negotiated LifeSize of the IPsec Phase-2 Tunnel in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.9 + help: The index of the IPsec Phase-1 IKE Tunnel History Table - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.1 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistLifeTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.10 + - name: pikeTunHistTermReason + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.2 type: gauge - help: The negotiated LifeTime of the IPsec Phase-2 Tunnel in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.10 + help: The reason the IPsec Phase-1 IKE Tunnel was terminated - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.2 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistStartTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.11 + enum_values: + 1: other + 2: normal + 3: operRequest + 4: peerDelRequest + 5: peerLost + 6: applicationInitiated + 7: xauthFailure + 8: localFailure + 9: checkPointReg + - name: pikeTunHistActiveIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.3 type: gauge - help: The value of sysUpTime in hundredths of seconds when the IPsec Phase-2 - Tunnel was started. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.11 + help: The index of the previously active IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.3 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistActiveTime - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.12 + - name: pikeTunHistPeerLocalType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.4 type: gauge - help: The length of time the IPsec Phase-2 Tunnel has been active in hundredths - of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.12 + help: The type of local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.4 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistTotalRefreshes - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.13 - type: counter - help: The total number of security association refreshes performed. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.13 + enum_values: + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikeTunHistPeerLocalValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.5 + type: DisplayString + help: The value of the local peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.5 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInSaDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.15 + - name: pikeTunHistPeerIntIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.6 type: gauge - help: The Diffie Hellman Group used by the inbound security association of the - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.15 + help: The internal index of the local-remote peer association - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.6 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - enum_values: - 1: none - 2: modp768 - 3: modp1024 - 4: modp1536 - 5: modp2048 - - name: pipSecTunHistInSaEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.16 + - name: pikeTunHistPeerRemoteType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.7 type: gauge - help: The encryption algorithm used by the inbound security association of the - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.16 + help: The type of remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.7 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: - 1: none - 2: des - 3: des3 - 4: aes - 9: "null" - - name: pipSecTunHistInSaAhAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.17 - type: gauge - help: The authentication algorithm used by the inbound authentication header - (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.17 + 1: idIpv4Addr + 2: idFqdn + 3: idDn + 4: idIpv6Addr + - name: pikeTunHistPeerRemoteValue + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.8 + type: DisplayString + help: The value of the remote peer identity - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.8 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - enum_values: - 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunHistInSaEspAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.18 + - name: pikeTunHistLocalAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.9 + type: OctetString + help: The IP address of the local endpoint for the IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.9 + indexes: + - labelname: pikeTunHistIndex + type: gauge + - name: pikeTunHistRemoteAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.11 + type: OctetString + help: The IP address of the remote endpoint for the IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.11 + indexes: + - labelname: pikeTunHistIndex + type: gauge + - name: pikeTunHistNegoMode + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.13 type: gauge - help: The authentication algorithm used by the inbound encapsulation security - protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.18 + help: The negotiation mode of the IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.13 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: - 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunHistOutSaDiffHellmanGrp - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.20 + 1: main + 2: aggressive + - name: pikeTunHistDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.14 type: gauge - help: The Diffie Hellman Group used by the outbound security association of - the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.20 + help: The Diffie Hellman Group used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.14 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: 1: none @@ -18004,13 +32027,12 @@ modules: 3: modp1024 4: modp1536 5: modp2048 - - name: pipSecTunHistOutSaEncryptAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.21 + - name: pikeTunHistEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.15 type: gauge - help: The encryption algorithm used by the outbound security association of - the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.21 + help: The encryption algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.15 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: 1: none @@ -18018,803 +32040,778 @@ modules: 3: des3 4: aes 9: "null" - - name: pipSecTunHistOutSaAhAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.22 + - name: pikeTunHistHashAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.16 type: gauge - help: The authentication algorithm used by the outbound authentication header - (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.22 + help: The hash algorithm used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.16 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunHistOutSaEspAuthAlgo - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.23 + 2: md5 + 3: sha + 4: sha2-256 + 5: sha2-384 + 6: sha2-512 + - name: pikeTunHistAuthMethod + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.17 type: gauge - help: The authentication algorithm used by the inbound ecapsulation security - protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.23 + help: The authentication method used in IPsec Phase-1 IKE negotiations. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.17 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge enum_values: 1: none - 2: hmacMd5 - 3: hmacSha - 4: hmacSha2-256 - 5: hmacSha2-384 - 6: hmacSha2-512 - - name: pipSecTunHistPmtu - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.25 + 2: preSharedKey + 3: rsaSig + 4: rsaEncrypt + 5: revPublicKey + - name: pikeTunHistLifeTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.18 type: gauge - help: The Path MTU that was determined for this IPsec Phase-2 tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.25 + help: The negotiated LifeTime of the IPsec Phase-1 IKE Tunnel in seconds. - + 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.18 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.26 + - name: pikeTunHistStartTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.19 + type: gauge + help: The value of sysUpTime in hundredths of seconds when the IPsec Phase-1 + IKE tunnel was started. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.19 + indexes: + - labelname: pikeTunHistIndex + type: gauge + - name: pikeTunHistActiveTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.20 + type: gauge + help: The length of time the IPsec Phase-1 IKE tunnel was been active in hundredths + of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.20 + indexes: + - labelname: pikeTunHistIndex + type: gauge + - name: pikeTunHistInNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.26 type: counter - help: The total number of octets received by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.26 + help: The total number of notifys received by this IPsec Phase-1 IKE Tunnel. + - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.26 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.32 + - name: pikeTunHistInP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.27 type: counter - help: The total number of packets received by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.32 + help: The total number of IPsec Phase-2 exchanges received by this IPsec Phase-1 + IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.27 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.33 + - name: pikeTunHistInP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.28 type: counter - help: The total number of packets dropped during receive processing by this - IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.33 + help: The total number of IPsec Phase-2 exchanges received on this tunnel that + were found to contain references to unrecognized security parameters. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.28 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInReplayDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.34 + - name: pikeTunHistInP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.29 type: counter - help: The total number of packets dropped during receive processing due to Anti-Replay - processing by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.34 + help: The total number of IPsec Phase-2 exchanges received on this tunnel that + were validated but were rejected by the local policy. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.29 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.35 + - name: pikeTunHistInP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.30 type: counter - help: The total number of inbound authentication's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.35 + help: The total number of IPsec Phase-2 security association delete requests + received by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.30 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.36 + - name: pikeTunHistOutNotifys + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.34 type: counter - help: The total number of inbound authentication's which ended in failure by - this IPsec Phase-2 Tunnel . - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.36 + help: The total number of notifys sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.34 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInDecrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.37 + - name: pikeTunHistOutP2Exchgs + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.35 type: counter - help: The total number of inbound decryption's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.37 + help: The total number of IPsec Phase-2 exchanges sent by this IPsec Phase-1 + IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.35 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistInDecryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.38 + - name: pikeTunHistOutP2ExchgInvalids + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.36 type: counter - help: The total number of inbound decryption's which ended in failure by this - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.38 + help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were + found by the peer to contain references to security parameters not recognized + by the peer. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.36 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistOutOctets - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.39 + - name: pikeTunHistOutP2ExchgRejects + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.37 type: counter - help: The total number of octets sent by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.39 + help: The total number of IPsec Phase-2 exchanges sent on this tunnel that were + validated by the peer but were rejected by the peer's policy. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.37 indexes: - - labelname: pipSecTunHistIndex + - labelname: pikeTunHistIndex type: gauge - - name: pipSecTunHistOutPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.45 + - name: pikeTunHistOutP2SaDelRequests + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.38 type: counter - help: The total number of packets sent by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.45 + help: The total number of IPsec Phase-2 security association delete requests + sent by this IPsec Phase-1 IKE Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.2.1.1.38 + indexes: + - labelname: pikeTunHistIndex + type: gauge + - name: pipSecTunHistIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.1 + type: gauge + help: The index of the IPsec Phase-2 Tunnel History Table - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.1 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: pipSecTunHistOutDropPkts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.46 - type: counter - help: The total number of packets dropped during send processing by this IPsec - Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.46 + - name: pipSecTunHistTermReason + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.2 + type: gauge + help: The reason the IPsec Phase-2 Tunnel was terminated - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.2 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: pipSecTunHistOutAuths - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.47 - type: counter - help: The total number of outbound authentication's performed by this IPsec - Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.47 + enum_values: + 1: other + 2: normal + 3: operRequest + 4: peerDelRequest + 5: peerLost + 6: applicationInitiated + 7: xauthFailure + 8: seqNumRollOver + 9: checkPointReq + - name: pipSecTunHistActiveIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.3 + type: gauge + help: The index of the previously active IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.3 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: pipSecTunHistOutAuthFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.48 - type: counter - help: The total number of outbound authentication's which ended in failure by - this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.48 + - name: pipSecTunHistIkeTunnelIndex + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.4 + type: gauge + help: The index of the associated IPsec Phase-1 Tunnel (pikeTunIndex in the + pikeTunnelTable). - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.4 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: pipSecTunHistOutEncrypts - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.49 - type: counter - help: The total number of outbound encryption's performed by this IPsec Phase-2 - Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.49 + - name: pipSecTunHistLocalAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.5 + type: OctetString + help: The IP address of the local endpoint for the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.5 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: pipSecTunHistOutEncryptFails - oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.50 - type: counter - help: The total number of outbound encryption's which ended in failure by this - IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.50 + - name: pipSecTunHistRemoteAddr + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.6 + type: OctetString + help: The IP address of the remote endpoint for the IPsec Phase-2 Tunnel. - + 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.6 indexes: - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfInstalledSlot - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.1 + - name: pipSecTunHistKeyType + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.7 type: gauge - help: The slot number in which the extension card was installed. - 1.3.6.1.4.1.119.2.3.84.6.1.1.1 + help: The type of key used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.7 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfIndex - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.2 + enum_values: + 1: ike + 2: manual + - name: pipSecTunHistEncapMode + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.8 type: gauge - help: A unique value for each extension card. - 1.3.6.1.4.1.119.2.3.84.6.1.1.2 + help: The encapsulation mode used by the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.8 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfDescr - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.3 - type: DisplayString - help: A textual string containing information about the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.3 + enum_values: + 1: tunnel + 2: transport + - name: pipSecTunHistLifeSize + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.9 + type: gauge + help: The negotiated LifeSize of the IPsec Phase-2 Tunnel in kilobytes. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.9 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfUpperLayer - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.4 + - name: pipSecTunHistLifeTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.10 type: gauge - help: Index of interface to upper layers. - 1.3.6.1.4.1.119.2.3.84.6.1.1.4 + help: The negotiated LifeTime of the IPsec Phase-2 Tunnel in seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.10 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfType - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.5 + - name: pipSecTunHistStartTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.11 type: gauge - help: The type of interface,, distinguished according to the physical/link protocol(s) - immediately `below' the network layer in the protocol stack. - 1.3.6.1.4.1.119.2.3.84.6.1.1.5 + help: The value of sysUpTime in hundredths of seconds when the IPsec Phase-2 + Tunnel was started. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.11 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - enum_values: - 6: ethernet-csmacd - 62: fastEther - - name: picoExtIfSpeed - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.6 + - name: pipSecTunHistActiveTime + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.12 type: gauge - help: An estimate of the interface's current bandwidth in bits per second. - - 1.3.6.1.4.1.119.2.3.84.6.1.1.6 + help: The length of time the IPsec Phase-2 Tunnel has been active in hundredths + of seconds. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.12 indexes: - - labelname: picoExtIfInstalledSlot + - labelname: pipSecTunHistIndex type: gauge - - labelname: picoExtIfIndex + - name: pipSecTunHistTotalRefreshes + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.13 + type: counter + help: The total number of security association refreshes performed. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.13 + indexes: + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfDuplex - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.7 + - name: pipSecTunHistInSaDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.15 type: gauge - help: The current mode of this link. - 1.3.6.1.4.1.119.2.3.84.6.1.1.7 + help: The Diffie Hellman Group used by the inbound security association of the + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.15 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge enum_values: - 1: halfduplex - 2: fullduplex - - name: picoExtIfEffectiveMtu - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.8 + 1: none + 2: modp768 + 3: modp1024 + 4: modp1536 + 5: modp2048 + - name: pipSecTunHistInSaEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.16 type: gauge - help: The size of the largest datagram which can be sent/received on the interface, - specified in octets. - 1.3.6.1.4.1.119.2.3.84.6.1.1.8 - indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex - type: gauge - - name: picoExtIfPhysicalAddress - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.9 - type: PhysAddress48 - help: The interface's address at the protocol layer immediately `below' the - network layer in the protocol stack. - 1.3.6.1.4.1.119.2.3.84.6.1.1.9 + help: The encryption algorithm used by the inbound security association of the + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.16 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoExtIfAdminStatus - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.10 + enum_values: + 1: none + 2: des + 3: des3 + 4: aes + 9: "null" + - name: pipSecTunHistInSaAhAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.17 type: gauge - help: The desired state of the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.10 + help: The authentication algorithm used by the inbound authentication header + (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.17 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge enum_values: - 1: up - 2: down - 3: testing - - name: picoExtIfOperStatus - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.11 + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunHistInSaEspAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.18 type: gauge - help: The current operational state of the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.11 + help: The authentication algorithm used by the inbound encapsulation security + protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.18 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge enum_values: - 1: up - 2: down - 3: testing - - name: picoExtIfLastChange - oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.12 + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunHistOutSaDiffHellmanGrp + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.20 type: gauge - help: The value of sysUpTime at the time the interface entered its current operational - state. - 1.3.6.1.4.1.119.2.3.84.6.1.1.12 + help: The Diffie Hellman Group used by the outbound security association of + the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.20 indexes: - - labelname: picoExtIfInstalledSlot - type: gauge - - labelname: picoExtIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNetmonWatchgroupIndex - oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.1 + enum_values: + 1: none + 2: modp768 + 3: modp1024 + 4: modp1536 + 5: modp2048 + - name: pipSecTunHistOutSaEncryptAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.21 type: gauge - help: Unique index for each Netmon Watchgroup. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.1 - indexes: - - labelname: picoNetmonWatchgroupIndex - type: gauge - - name: picoNetmonWatchgroupName - oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.2 - type: DisplayString - help: Netmon Watchgroup Name. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.2 + help: The encryption algorithm used by the outbound security association of + the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.21 indexes: - - labelname: picoNetmonWatchgroupIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNetmonWatchgroupSequenceNumber - oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.3 + enum_values: + 1: none + 2: des + 3: des3 + 4: aes + 9: "null" + - name: pipSecTunHistOutSaAhAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.22 type: gauge - help: Netmon Watchgroup sequence number. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.3 + help: The authentication algorithm used by the outbound authentication header + (AH) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.22 indexes: - - labelname: picoNetmonWatchgroupIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNetmonWatchgroupStatus - oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.4 + enum_values: + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunHistOutSaEspAuthAlgo + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.23 type: gauge - help: Status of a Netmon Watchgroup. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.4 + help: The authentication algorithm used by the inbound ecapsulation security + protocol (ESP) security association of the IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.23 indexes: - - labelname: picoNetmonWatchgroupIndex + - labelname: pipSecTunHistIndex type: gauge enum_values: - 1: normal - 2: stand - 3: disable - - name: picoNetmonWatchgroupVarianceCounts - oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.5 + 1: none + 2: hmacMd5 + 3: hmacSha + 4: hmacSha2-256 + 5: hmacSha2-384 + 6: hmacSha2-512 + - name: pipSecTunHistPmtu + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.25 type: gauge - help: Netmon Watchgroup variance statistics. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.5 + help: The Path MTU that was determined for this IPsec Phase-2 tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.25 + indexes: + - labelname: pipSecTunHistIndex + type: gauge + - name: pipSecTunHistInOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.26 + type: counter + help: The total number of octets received by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.26 + indexes: + - labelname: pipSecTunHistIndex + type: gauge + - name: pipSecTunHistInPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.32 + type: counter + help: The total number of packets received by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.32 indexes: - - labelname: picoNetmonWatchgroupIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnIfIndex - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.1 - type: gauge - help: The interface index value of the interface for which NGN is enabled. - - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.1 + - name: pipSecTunHistInDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.33 + type: counter + help: The total number of packets dropped during receive processing by this + IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.33 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnType - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.2 - type: gauge - help: 'The mode of the NGN service can be: standard(1) :NGN service is standard - - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.2' + - name: pipSecTunHistInReplayDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.34 + type: counter + help: The total number of packets dropped during receive processing due to Anti-Replay + processing by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.34 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - enum_values: - 1: standard - 2: numbergate - - name: picoNgnIfType - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.3 - type: gauge - help: 'The type of the NGN interface can be: global(1) :NGN interface type is - global - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.3' + - name: pipSecTunHistInAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.35 + type: counter + help: The total number of inbound authentication's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.35 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - enum_values: - 1: global - 2: private - - name: picoNgnStatus - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.4 - type: gauge - help: 'The state of the NGN SIP-UA register can be: notReady(1) :NGN service - is not Ready - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.4' + - name: pipSecTunHistInAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.36 + type: counter + help: The total number of inbound authentication's which ended in failure by + this IPsec Phase-2 Tunnel . - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.36 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - enum_values: - 1: notReady - 2: initializing - 3: registering - 4: registered - - name: picoNgnSipServerIpAddress - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.5 - type: InetAddressIPv4 - help: The object of the SIP server address. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.5 + - name: pipSecTunHistInDecrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.37 + type: counter + help: The total number of inbound decryption's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.37 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnSipUri - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.6 - type: DisplayString - help: The object of the SIP URI. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.6 + - name: pipSecTunHistInDecryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.38 + type: counter + help: The total number of inbound decryption's which ended in failure by this + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.38 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnUpTime - oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.7 - type: gauge - help: The time elapsed since registered. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.7 + - name: pipSecTunHistOutOctets + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.39 + type: counter + help: The total number of octets sent by this IPsec Phase-2 Tunnel - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.39 indexes: - - labelname: picoNgnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnIfIndex - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.1 - type: gauge - help: The interface index value of the interface for which NGN binding is enabled. - - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.1 + - name: pipSecTunHistOutPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.45 + type: counter + help: The total number of packets sent by this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.45 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnStatus - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.2 - type: gauge - help: 'The state of the NGN SIP-UA session can be: disconnected(1):SIP session - is disconnected - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.2' + - name: pipSecTunHistOutDropPkts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.46 + type: counter + help: The total number of packets dropped during send processing by this IPsec + Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.46 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - enum_values: - 1: disconnected - 2: connecting - 3: connected - - name: picoNgnVpnPeerAddress - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.3 - type: DisplayString - help: The object of the NGN peer address. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.3 + - name: pipSecTunHistOutAuths + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.47 + type: counter + help: The total number of outbound authentication's performed by this IPsec + Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.47 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnBandwidth - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.4 - type: gauge - help: The object of the NGN session bandwidth. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.4 + - name: pipSecTunHistOutAuthFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.48 + type: counter + help: The total number of outbound authentication's which ended in failure by + this IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.48 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnUsedTime - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.5 - type: gauge - help: The time elapsed since this connected NGN session. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.5 + - name: pipSecTunHistOutEncrypts + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.49 + type: counter + help: The total number of outbound encryption's performed by this IPsec Phase-2 + Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.49 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnSbcIpAddress - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.6 - type: InetAddressIPv4 - help: The object of the NGN session SBC address. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.6 + - name: pipSecTunHistOutEncryptFails + oid: 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.50 + type: counter + help: The total number of outbound encryption's which ended in failure by this + IPsec Phase-2 Tunnel. - 1.3.6.1.4.1.119.2.3.84.3.1.4.3.1.1.50 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: pipSecTunHistIndex type: gauge - - name: picoNgnVpnSbcPort - oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.7 + - name: picoExtIfInstalledSlot + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.1 type: gauge - help: The object of the NGN session SBC port. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.7 + help: The slot number in which the extension card was installed. - 1.3.6.1.4.1.119.2.3.84.6.1.1.1 indexes: - - labelname: picoNgnVpnIfIndex + - labelname: picoExtIfInstalledSlot type: gauge - paloalto_fw: - walk: - - 1.3.6.1.2.1.25.1 - - 1.3.6.1.2.1.25.2 - - 1.3.6.1.2.1.25.3 - - 1.3.6.1.4.1.25461.2.1.2.1 - - 1.3.6.1.4.1.25461.2.1.2.3 - - 1.3.6.1.4.1.25461.2.1.2.5 - metrics: - - name: hrSystemUptime - oid: 1.3.6.1.2.1.25.1.1 - type: gauge - help: The amount of time since this host was last initialized - 1.3.6.1.2.1.25.1.1 - - name: hrSystemDate - oid: 1.3.6.1.2.1.25.1.2 - type: DateAndTime - help: The host's notion of the local date and time of day. - 1.3.6.1.2.1.25.1.2 - - name: hrSystemInitialLoadDevice - oid: 1.3.6.1.2.1.25.1.3 - type: gauge - help: The index of the hrDeviceEntry for the device from which this host is - configured to load its initial operating system configuration (i.e., which - operating system code and/or boot parameters) - 1.3.6.1.2.1.25.1.3 - - name: hrSystemInitialLoadParameters - oid: 1.3.6.1.2.1.25.1.4 - type: OctetString - help: This object contains the parameters (e.g - 1.3.6.1.2.1.25.1.4 - - name: hrSystemNumUsers - oid: 1.3.6.1.2.1.25.1.5 - type: gauge - help: The number of user sessions for which this host is storing state information - - 1.3.6.1.2.1.25.1.5 - - name: hrSystemProcesses - oid: 1.3.6.1.2.1.25.1.6 - type: gauge - help: The number of process contexts currently loaded or running on this system. - - 1.3.6.1.2.1.25.1.6 - - name: hrSystemMaxProcesses - oid: 1.3.6.1.2.1.25.1.7 - type: gauge - help: The maximum number of process contexts this system can support - 1.3.6.1.2.1.25.1.7 - - name: hrMemorySize - oid: 1.3.6.1.2.1.25.2.2 - type: gauge - help: The amount of physical read-write main memory, typically RAM, contained - by the host. - 1.3.6.1.2.1.25.2.2 - - name: hrStorageIndex - oid: 1.3.6.1.2.1.25.2.3.1.1 + - labelname: picoExtIfIndex + type: gauge + - name: picoExtIfIndex + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.2 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 + help: A unique value for each extension card. - 1.3.6.1.4.1.119.2.3.84.6.1.1.2 indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrStorageType - oid: 1.3.6.1.2.1.25.2.3.1.2 - type: OctetString - help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 - indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfIndex type: gauge - - name: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - name: picoExtIfDescr + oid: 1.3.6.1.4.1.119.2.3.84.6.1.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 + help: A textual string containing information about the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.3 + indexes: + - labelname: picoExtIfInstalledSlot + type: gauge + - labelname: picoExtIfIndex + type: gauge + - name: picoExtIfUpperLayer + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.4 + type: gauge + help: Index of interface to upper layers. - 1.3.6.1.4.1.119.2.3.84.6.1.1.4 indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrStorageAllocationUnits - oid: 1.3.6.1.2.1.25.2.3.1.4 + - labelname: picoExtIfIndex + type: gauge + - name: picoExtIfType + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.5 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 + help: The type of interface,, distinguished according to the physical/link protocol(s) + immediately `below' the network layer in the protocol stack. - 1.3.6.1.4.1.119.2.3.84.6.1.1.5 indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrStorageSize - oid: 1.3.6.1.2.1.25.2.3.1.5 + - labelname: picoExtIfIndex + type: gauge + enum_values: + 6: ethernet-csmacd + 62: fastEther + - name: picoExtIfSpeed + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.6 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 + help: An estimate of the interface's current bandwidth in bits per second. - + 1.3.6.1.4.1.119.2.3.84.6.1.1.6 indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrStorageUsed - oid: 1.3.6.1.2.1.25.2.3.1.6 + - labelname: picoExtIfIndex + type: gauge + - name: picoExtIfDuplex + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.7 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 + help: The current mode of this link. - 1.3.6.1.4.1.119.2.3.84.6.1.1.7 indexes: - - labelname: hrStorageIndex + - labelname: picoExtIfInstalledSlot type: gauge - - 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: hrStorageIndex + - labelname: picoExtIfIndex type: gauge - - name: hrDeviceIndex - oid: 1.3.6.1.2.1.25.3.2.1.1 + enum_values: + 1: halfduplex + 2: fullduplex + - name: picoExtIfEffectiveMtu + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.8 type: gauge - help: A unique value for each device contained by the host - 1.3.6.1.2.1.25.3.2.1.1 + help: The size of the largest datagram which can be sent/received on the interface, + specified in octets. - 1.3.6.1.4.1.119.2.3.84.6.1.1.8 indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrDeviceType - oid: 1.3.6.1.2.1.25.3.2.1.2 - type: OctetString - help: An indication of the type of device - 1.3.6.1.2.1.25.3.2.1.2 - indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfIndex type: gauge - - name: hrDeviceDescr - oid: 1.3.6.1.2.1.25.3.2.1.3 - type: DisplayString - help: A textual description of this device, including the device's manufacturer - and revision, and optionally, its serial number. - 1.3.6.1.2.1.25.3.2.1.3 + - name: picoExtIfPhysicalAddress + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.9 + type: PhysAddress48 + help: The interface's address at the protocol layer immediately `below' the + network layer in the protocol stack. - 1.3.6.1.4.1.119.2.3.84.6.1.1.9 indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrDeviceID - oid: 1.3.6.1.2.1.25.3.2.1.4 - type: OctetString - help: The product ID for this device. - 1.3.6.1.2.1.25.3.2.1.4 - indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfIndex type: gauge - - name: hrDeviceStatus - oid: 1.3.6.1.2.1.25.3.2.1.5 + - name: picoExtIfAdminStatus + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.10 type: gauge - help: The current operational state of the device described by this row of the - table - 1.3.6.1.2.1.25.3.2.1.5 + help: The desired state of the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.10 indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfInstalledSlot + type: gauge + - labelname: picoExtIfIndex type: gauge enum_values: - 1: unknown - 2: running - 3: warning - 4: testing - 5: down - - name: hrDeviceErrors - oid: 1.3.6.1.2.1.25.3.2.1.6 - type: counter - help: The number of errors detected on this device - 1.3.6.1.2.1.25.3.2.1.6 + 1: up + 2: down + 3: testing + - name: picoExtIfOperStatus + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.11 + type: gauge + help: The current operational state of the interface. - 1.3.6.1.4.1.119.2.3.84.6.1.1.11 indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrProcessorFrwID - oid: 1.3.6.1.2.1.25.3.3.1.1 - type: OctetString - help: The product ID of the firmware associated with the processor. - 1.3.6.1.2.1.25.3.3.1.1 - indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfIndex type: gauge - - name: hrProcessorLoad - oid: 1.3.6.1.2.1.25.3.3.1.2 + enum_values: + 1: up + 2: down + 3: testing + - name: picoExtIfLastChange + oid: 1.3.6.1.4.1.119.2.3.84.6.1.1.12 type: gauge - help: The average, over the last minute, of the percentage of time that this - processor was not idle - 1.3.6.1.2.1.25.3.3.1.2 + help: The value of sysUpTime at the time the interface entered its current operational + state. - 1.3.6.1.4.1.119.2.3.84.6.1.1.12 indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfInstalledSlot type: gauge - - name: hrNetworkIfIndex - oid: 1.3.6.1.2.1.25.3.4.1.1 - type: gauge - help: The value of ifIndex which corresponds to this network device - 1.3.6.1.2.1.25.3.4.1.1 - indexes: - - labelname: hrDeviceIndex + - labelname: picoExtIfIndex type: gauge - - name: hrPrinterStatus - oid: 1.3.6.1.2.1.25.3.5.1.1 + - name: picoNetmonWatchgroupIndex + oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.1 type: gauge - help: The current status of this printer device. - 1.3.6.1.2.1.25.3.5.1.1 + help: Unique index for each Netmon Watchgroup. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.1 indexes: - - labelname: hrDeviceIndex + - labelname: picoNetmonWatchgroupIndex type: gauge - enum_values: - 1: other - 2: unknown - 3: idle - 4: printing - 5: warmup - - name: hrPrinterDetectedErrorState - oid: 1.3.6.1.2.1.25.3.5.1.2 - type: OctetString - help: This object represents any error conditions detected by the printer - - 1.3.6.1.2.1.25.3.5.1.2 + - name: picoNetmonWatchgroupName + oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.2 + type: DisplayString + help: Netmon Watchgroup Name. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.2 indexes: - - labelname: hrDeviceIndex + - labelname: picoNetmonWatchgroupIndex type: gauge - - name: hrDiskStorageAccess - oid: 1.3.6.1.2.1.25.3.6.1.1 + - name: picoNetmonWatchgroupSequenceNumber + oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.3 type: gauge - help: An indication if this long-term storage device is readable and writable - or only readable - 1.3.6.1.2.1.25.3.6.1.1 + help: Netmon Watchgroup sequence number. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.3 indexes: - - labelname: hrDeviceIndex + - labelname: picoNetmonWatchgroupIndex type: gauge - enum_values: - 1: readWrite - 2: readOnly - - name: hrDiskStorageMedia - oid: 1.3.6.1.2.1.25.3.6.1.2 + - name: picoNetmonWatchgroupStatus + oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.4 type: gauge - help: An indication of the type of media used in this long- term storage device. - - 1.3.6.1.2.1.25.3.6.1.2 + help: Status of a Netmon Watchgroup. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.4 indexes: - - labelname: hrDeviceIndex + - labelname: picoNetmonWatchgroupIndex type: gauge enum_values: - 1: other - 2: unknown - 3: hardDisk - 4: floppyDisk - 5: opticalDiskROM - 6: opticalDiskWORM - 7: opticalDiskRW - 8: ramDisk - - name: hrDiskStorageRemoveble - oid: 1.3.6.1.2.1.25.3.6.1.3 + 1: normal + 2: stand + 3: disable + - name: picoNetmonWatchgroupVarianceCounts + oid: 1.3.6.1.4.1.119.2.3.84.7.1.1.1.5 type: gauge - help: Denotes whether or not the disk media may be removed from the drive. - - 1.3.6.1.2.1.25.3.6.1.3 + help: Netmon Watchgroup variance statistics. - 1.3.6.1.4.1.119.2.3.84.7.1.1.1.5 indexes: - - labelname: hrDeviceIndex + - labelname: picoNetmonWatchgroupIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: hrDiskStorageCapacity - oid: 1.3.6.1.2.1.25.3.6.1.4 + - name: picoNgnIfIndex + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.1 type: gauge - help: The total size for this long-term storage device - 1.3.6.1.2.1.25.3.6.1.4 + help: The interface index value of the interface for which NGN is enabled. - + 1.3.6.1.4.1.119.2.3.84.9.1.1.1.1 indexes: - - labelname: hrDeviceIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrPartitionIndex - oid: 1.3.6.1.2.1.25.3.7.1.1 + - name: picoNgnType + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.2 type: gauge - help: A unique value for each partition on this long-term storage device - 1.3.6.1.2.1.25.3.7.1.1 - indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex - type: gauge - - name: hrPartitionLabel - oid: 1.3.6.1.2.1.25.3.7.1.2 - type: OctetString - help: A textual description of this partition. - 1.3.6.1.2.1.25.3.7.1.2 - indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex - type: gauge - - name: hrPartitionID - oid: 1.3.6.1.2.1.25.3.7.1.3 - type: OctetString - help: A descriptor which uniquely represents this partition to the responsible - operating system - 1.3.6.1.2.1.25.3.7.1.3 + help: 'The mode of the NGN service can be: standard(1) :NGN service is standard + - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.2' indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrPartitionSize - oid: 1.3.6.1.2.1.25.3.7.1.4 + enum_values: + 1: standard + 2: numbergate + - name: picoNgnIfType + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.3 type: gauge - help: The size of this partition. - 1.3.6.1.2.1.25.3.7.1.4 + help: 'The type of the NGN interface can be: global(1) :NGN interface type is + global - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.3' indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrPartitionFSIndex - oid: 1.3.6.1.2.1.25.3.7.1.5 + enum_values: + 1: global + 2: private + - name: picoNgnStatus + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.4 type: gauge - help: The index of the file system mounted on this partition - 1.3.6.1.2.1.25.3.7.1.5 + help: 'The state of the NGN SIP-UA register can be: notReady(1) :NGN service + is not Ready - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.4' indexes: - - labelname: hrDeviceIndex - type: gauge - - labelname: hrPartitionIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrFSIndex - oid: 1.3.6.1.2.1.25.3.8.1.1 - type: gauge - help: A unique value for each file system local to this host - 1.3.6.1.2.1.25.3.8.1.1 + enum_values: + 1: notReady + 2: initializing + 3: registering + 4: registered + - name: picoNgnSipServerIpAddress + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.5 + type: InetAddressIPv4 + help: The object of the SIP server address. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.5 indexes: - - labelname: hrFSIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrFSMountPoint - oid: 1.3.6.1.2.1.25.3.8.1.2 - type: OctetString - help: The path name of the root of this file system. - 1.3.6.1.2.1.25.3.8.1.2 + - name: picoNgnSipUri + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.6 + type: DisplayString + help: The object of the SIP URI. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.6 indexes: - - labelname: hrFSIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrFSRemoteMountPoint - oid: 1.3.6.1.2.1.25.3.8.1.3 - type: OctetString - help: A description of the name and/or address of the server that this file - system is mounted from - 1.3.6.1.2.1.25.3.8.1.3 + - name: picoNgnUpTime + oid: 1.3.6.1.4.1.119.2.3.84.9.1.1.1.7 + type: gauge + help: The time elapsed since registered. - 1.3.6.1.4.1.119.2.3.84.9.1.1.1.7 indexes: - - labelname: hrFSIndex + - labelname: picoNgnIfIndex type: gauge - - name: hrFSType - oid: 1.3.6.1.2.1.25.3.8.1.4 - type: OctetString - help: The value of this object identifies the type of this file system. - 1.3.6.1.2.1.25.3.8.1.4 + - name: picoNgnVpnIfIndex + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.1 + type: gauge + help: The interface index value of the interface for which NGN binding is enabled. + - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.1 indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge - - name: hrFSAccess - oid: 1.3.6.1.2.1.25.3.8.1.5 + - name: picoNgnVpnStatus + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.2 type: gauge - help: An indication if this file system is logically configured by the operating - system to be readable and writable or only readable - 1.3.6.1.2.1.25.3.8.1.5 + help: 'The state of the NGN SIP-UA session can be: disconnected(1):SIP session + is disconnected - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.2' indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge enum_values: - 1: readWrite - 2: readOnly - - name: hrFSBootable - oid: 1.3.6.1.2.1.25.3.8.1.6 + 1: disconnected + 2: connecting + 3: connected + - name: picoNgnVpnPeerAddress + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.3 + type: DisplayString + help: The object of the NGN peer address. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.3 + indexes: + - labelname: picoNgnVpnIfIndex + type: gauge + - name: picoNgnVpnBandwidth + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.4 type: gauge - help: A flag indicating whether this file system is bootable. - 1.3.6.1.2.1.25.3.8.1.6 + help: The object of the NGN session bandwidth. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.4 indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge - enum_values: - 1: "true" - 2: "false" - - name: hrFSStorageIndex - oid: 1.3.6.1.2.1.25.3.8.1.7 + - name: picoNgnVpnUsedTime + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.5 type: gauge - help: The index of the hrStorageEntry that represents information about this - file system - 1.3.6.1.2.1.25.3.8.1.7 + help: The time elapsed since this connected NGN session. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.5 indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge - - name: hrFSLastFullBackupDate - oid: 1.3.6.1.2.1.25.3.8.1.8 - type: DateAndTime - help: The last date at which this complete file system was copied to another - storage device for backup - 1.3.6.1.2.1.25.3.8.1.8 + - name: picoNgnVpnSbcIpAddress + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.6 + type: InetAddressIPv4 + help: The object of the NGN session SBC address. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.6 indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge - - name: hrFSLastPartialBackupDate - oid: 1.3.6.1.2.1.25.3.8.1.9 - type: DateAndTime - help: The last date at which a portion of this file system was copied to another - storage device for backup - 1.3.6.1.2.1.25.3.8.1.9 + - name: picoNgnVpnSbcPort + oid: 1.3.6.1.4.1.119.2.3.84.9.1.2.1.7 + type: gauge + help: The object of the NGN session SBC port. - 1.3.6.1.4.1.119.2.3.84.9.1.2.1.7 indexes: - - labelname: hrFSIndex + - labelname: picoNgnVpnIfIndex type: gauge + paloalto_fw: + walk: + - 1.3.6.1.4.1.25461.2.1.2.1 + - 1.3.6.1.4.1.25461.2.1.2.3 + - 1.3.6.1.4.1.25461.2.1.2.5 + metrics: - name: panSysSwVersion oid: 1.3.6.1.4.1.25461.2.1.2.1.1 type: DisplayString @@ -19544,10 +33541,427 @@ modules: - name: panGPGWUtilizationActiveTunnels oid: 1.3.6.1.4.1.25461.2.1.2.5.1.3 type: gauge - help: Number of active tunnels - 1.3.6.1.4.1.25461.2.1.2.5.1.3 + help: Number of active tunnels - 1.3.6.1.4.1.25461.2.1.2.5.1.3 + powercom: + get: + - 1.3.6.1.4.1.935.1.1.1.1.1.1.0 + - 1.3.6.1.4.1.935.1.1.1.1.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.1.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.1.2.4.0 + - 1.3.6.1.4.1.935.1.1.1.2.1.1.0 + - 1.3.6.1.4.1.935.1.1.1.2.1.2.0 + - 1.3.6.1.4.1.935.1.1.1.2.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.2.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.2.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.2.2.6.0 + - 1.3.6.1.4.1.935.1.1.1.3.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.3.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.3.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.3.2.4.0 + - 1.3.6.1.4.1.935.1.1.1.3.2.5.0 + - 1.3.6.1.4.1.935.1.1.1.4.1.1.0 + - 1.3.6.1.4.1.935.1.1.1.4.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.4.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.4.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.4.2.7.0 + - 1.3.6.1.4.1.935.1.1.1.4.2.8.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.10.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.11.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.4.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.5.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.6.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.7.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.8.0 + - 1.3.6.1.4.1.935.1.1.1.5.2.9.0 + - 1.3.6.1.4.1.935.1.1.1.7.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.7.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.1.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.2.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.3.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.5.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.6.0 + - 1.3.6.1.4.1.935.1.1.1.8.5.7.0 + - 1.3.6.1.4.1.935.1.1.1.8.6.1.0 + - 1.3.6.1.4.1.935.1.1.1.8.6.2.0 + - 1.3.6.1.4.1.935.1.1.1.8.6.3.0 + - 1.3.6.1.4.1.935.1.1.1.8.6.4.0 + - 1.3.6.1.4.1.935.1.1.1.8.6.5.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.1.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.2.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.3.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.4.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.5.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.6.0 + - 1.3.6.1.4.1.935.1.1.1.8.7.7.0 + - 1.3.6.1.4.1.935.1.1.1.9.1.1.0 + - 1.3.6.1.4.1.935.1.1.1.9.1.2.0 + - 1.3.6.1.4.1.935.1.1.1.9.2.1.0 + - 1.3.6.1.4.1.935.1.1.1.9.2.2.0 + - 1.3.6.1.4.1.935.1.1.1.9.2.3.0 + - 1.3.6.1.4.1.935.1.1.1.9.2.4.0 + metrics: + - name: upsBaseIdentModel + oid: 1.3.6.1.4.1.935.1.1.1.1.1.1 + type: DisplayString + help: The UPS model name (e.g - 1.3.6.1.4.1.935.1.1.1.1.1.1 + - name: upsSmartIdentFirmwareRevision + oid: 1.3.6.1.4.1.935.1.1.1.1.2.1 + type: DisplayString + help: The firmware revision of the UPS system. - 1.3.6.1.4.1.935.1.1.1.1.2.1 + - name: upsSmartIdentDateOfManufacture + oid: 1.3.6.1.4.1.935.1.1.1.1.2.2 + type: DisplayString + help: The date when the UPS was manufactured in mm/dd/yy format. - 1.3.6.1.4.1.935.1.1.1.1.2.2 + - name: upsSmartIdentAgentFirmwareRevision + oid: 1.3.6.1.4.1.935.1.1.1.1.2.4 + type: DisplayString + help: The firmware revision of the UPS SNMP Proxy agent. - 1.3.6.1.4.1.935.1.1.1.1.2.4 + - name: upsBaseBatteryStatus + oid: 1.3.6.1.4.1.935.1.1.1.2.1.1 + type: gauge + help: The status of the UPS batteries - 1.3.6.1.4.1.935.1.1.1.2.1.1 + enum_values: + 1: unknown + 2: batteryNormal + 3: batteryLow + - name: upsBaseBatteryTimeOnBattery + oid: 1.3.6.1.4.1.935.1.1.1.2.1.2 + type: gauge + help: The elapsed time in seconds since the UPS has switched to battery power. + - 1.3.6.1.4.1.935.1.1.1.2.1.2 + - name: upsSmartBatteryCapacity + oid: 1.3.6.1.4.1.935.1.1.1.2.2.1 + type: gauge + help: The remaining battery capacity expressed in percent of full capacity. + - 1.3.6.1.4.1.935.1.1.1.2.2.1 + - name: upsSmartBatteryVoltage + oid: 1.3.6.1.4.1.935.1.1.1.2.2.2 + type: gauge + help: The current battery voltage expressed in 1/10 VDC. - 1.3.6.1.4.1.935.1.1.1.2.2.2 + - name: upsSmartBatteryTemperature + oid: 1.3.6.1.4.1.935.1.1.1.2.2.3 + type: gauge + help: The current internal UPS temperature expressed in tenths of a Celsius + degree. - 1.3.6.1.4.1.935.1.1.1.2.2.3 + - name: upsSmartBatteryFullChargeVoltage + oid: 1.3.6.1.4.1.935.1.1.1.2.2.6 + type: gauge + help: The fully charged battery voltage of the battery system used in the UPS, + expressed in tenths of a volt. - 1.3.6.1.4.1.935.1.1.1.2.2.6 + - name: upsSmartInputLineVoltage + oid: 1.3.6.1.4.1.935.1.1.1.3.2.1 + type: gauge + help: The current utility line voltage in 1/10 VAC. - 1.3.6.1.4.1.935.1.1.1.3.2.1 + - name: upsSmartInputMaxLineVoltage + oid: 1.3.6.1.4.1.935.1.1.1.3.2.2 + type: gauge + help: The maximum utility line voltage in 1/10 VAC over the previous 1 minute + period. - 1.3.6.1.4.1.935.1.1.1.3.2.2 + - name: upsSmartInputMinLineVoltage + oid: 1.3.6.1.4.1.935.1.1.1.3.2.3 + type: gauge + help: The minimum utility line voltage in 1/10 VAC over the previous 1 minute + period. - 1.3.6.1.4.1.935.1.1.1.3.2.3 + - name: upsSmartInputFrequency + oid: 1.3.6.1.4.1.935.1.1.1.3.2.4 + type: gauge + help: The current input frequency to the UPS system in 1/10 Hz. - 1.3.6.1.4.1.935.1.1.1.3.2.4 + - name: upsSmartInputLineFailCause + oid: 1.3.6.1.4.1.935.1.1.1.3.2.5 + type: gauge + help: The reason for the occurrence of the last transfer to UPS battery power + - 1.3.6.1.4.1.935.1.1.1.3.2.5 + enum_values: + 1: noTransfer + 2: highLineVoltage + 3: brownout + 4: blackout + 5: smallMomentarySag + 6: deepMomentarySag + 7: smallMomentarySpike + 8: largeMomentarySpike + - name: upsBaseOutputStatus + oid: 1.3.6.1.4.1.935.1.1.1.4.1.1 + type: gauge + help: The current state of the UPS - 1.3.6.1.4.1.935.1.1.1.4.1.1 + enum_values: + 1: unknown + 2: onLine + 3: onBattery + 4: onBoost + 5: sleeping + 6: onBypass + 7: rebooting + 8: standBy + 9: onBuck + - name: upsSmartOutputVoltage + oid: 1.3.6.1.4.1.935.1.1.1.4.2.1 + type: gauge + help: The output voltage of the UPS system in 1/10 VAC. - 1.3.6.1.4.1.935.1.1.1.4.2.1 + - name: upsSmartOutputFrequency + oid: 1.3.6.1.4.1.935.1.1.1.4.2.2 + type: gauge + help: The current output frequency of the UPS system in 1/10 Hz. - 1.3.6.1.4.1.935.1.1.1.4.2.2 + - name: upsSmartOutputLoad + oid: 1.3.6.1.4.1.935.1.1.1.4.2.3 + type: gauge + help: The current UPS load expressed in percent of rated capacity. - 1.3.6.1.4.1.935.1.1.1.4.2.3 + - name: upsSmartOutputOverLoad + oid: 1.3.6.1.4.1.935.1.1.1.4.2.7 + type: gauge + help: The UPS OverLoad information. - 1.3.6.1.4.1.935.1.1.1.4.2.7 + enum_values: + 0: unknown + 1: normal + 2: OverLoad + - name: upsSmartOutputOverVoltage + oid: 1.3.6.1.4.1.935.1.1.1.4.2.8 + type: gauge + help: The UPS OverVoltage information. - 1.3.6.1.4.1.935.1.1.1.4.2.8 + enum_values: + 0: unknown + 1: normal + 2: OverVoltage + - name: upsSmartConfigRatedOutputVoltage + oid: 1.3.6.1.4.1.935.1.1.1.5.2.1 + type: gauge + help: The nominal output voltage from the UPS in 1/10 VAC - 1.3.6.1.4.1.935.1.1.1.5.2.1 + - name: upsSmartConfigShutoffDelay + oid: 1.3.6.1.4.1.935.1.1.1.5.2.10 + type: gauge + help: The delay in seconds the UPS remains on after being told to turn off - + 1.3.6.1.4.1.935.1.1.1.5.2.10 + - name: upsSmartConfigUpsSleepTime + oid: 1.3.6.1.4.1.935.1.1.1.5.2.11 + type: gauge + help: The time in minutes for the UPS to go to 'sleep' when instructed - 1.3.6.1.4.1.935.1.1.1.5.2.11 + - name: upsSmartConfigHighTransferVolt + oid: 1.3.6.1.4.1.935.1.1.1.5.2.2 + type: gauge + help: The maximum line voltage in 1/10 VAC allowed before the UPS system transfers + to battery backup - 1.3.6.1.4.1.935.1.1.1.5.2.2 + - name: upsSmartConfigLowTransferVolt + oid: 1.3.6.1.4.1.935.1.1.1.5.2.3 + type: gauge + help: The minimum line voltage in 1/10 VAC allowed before the UPS system transfers + to battery backup - 1.3.6.1.4.1.935.1.1.1.5.2.3 + - name: upsSmartConfigAlarm + oid: 1.3.6.1.4.1.935.1.1.1.5.2.4 + type: gauge + help: A flag indicating how the UPS should handle audible line fail alarms. + - 1.3.6.1.4.1.935.1.1.1.5.2.4 + enum_values: + 1: timed + 2: atLowBattery + 3: never + - name: upsSmartConfigAlarmTimer + oid: 1.3.6.1.4.1.935.1.1.1.5.2.5 + type: gauge + help: The time in seconds after initial line failure at which the UPS begins + emitting audible alarms (beeping) - 1.3.6.1.4.1.935.1.1.1.5.2.5 + - name: upsSmartConfigMinReturnCapacity + oid: 1.3.6.1.4.1.935.1.1.1.5.2.6 + type: gauge + help: The minimum battery capacity as a percent of full capacity required before + the UPS will return from a low battery shutdown condition - 1.3.6.1.4.1.935.1.1.1.5.2.6 + - name: upsSmartConfigSensitivity + oid: 1.3.6.1.4.1.935.1.1.1.5.2.7 + type: gauge + help: The sensitivity of the UPS to utility line abnormalities or noises. - + 1.3.6.1.4.1.935.1.1.1.5.2.7 + enum_values: + 1: auto + 2: low + 3: medium + 4: high + - name: upsSmartConfigLowBatteryRunTime + oid: 1.3.6.1.4.1.935.1.1.1.5.2.8 + type: gauge + help: The desired run time in seconds once the low battery condition is reached + - 1.3.6.1.4.1.935.1.1.1.5.2.8 + - name: upsSmartConfigReturnDelay + oid: 1.3.6.1.4.1.935.1.1.1.5.2.9 + type: gauge + help: The delay in seconds after utility line power returns before the UPS will + turn on - 1.3.6.1.4.1.935.1.1.1.5.2.9 + - name: upsSmartTestDiagnosticSchedule + oid: 1.3.6.1.4.1.935.1.1.1.7.2.1 + type: gauge + help: The UPS system's automatic battery test schedule. - 1.3.6.1.4.1.935.1.1.1.7.2.1 + enum_values: + 1: unknown + 2: biweekly + 3: weekly + 4: never + - name: upsSmartTestDiagnosticsResults + oid: 1.3.6.1.4.1.935.1.1.1.7.2.3 + type: gauge + help: The results of the last UPS diagnostics test performed. - 1.3.6.1.4.1.935.1.1.1.7.2.3 + enum_values: + 1: ok + 2: failed + 3: invalidTest + 4: testInProgress + - name: upsThreePhaseDCandRectifierStatusRecRotError + oid: 1.3.6.1.4.1.935.1.1.1.8.5.1 + type: gauge + help: Rectifier Rotation Error - 1.3.6.1.4.1.935.1.1.1.8.5.1 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseDCandRectifierStatusLowBatteryShutdown + oid: 1.3.6.1.4.1.935.1.1.1.8.5.2 + type: gauge + help: Low Battery Shutdown - 1.3.6.1.4.1.935.1.1.1.8.5.2 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseDCandRectifierStatusLowBattery + oid: 1.3.6.1.4.1.935.1.1.1.8.5.3 + type: gauge + help: Low Battery - 1.3.6.1.4.1.935.1.1.1.8.5.3 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseDCandRectifierStatusBatteryStatus + oid: 1.3.6.1.4.1.935.1.1.1.8.5.5 + type: gauge + help: Back Status - 1.3.6.1.4.1.935.1.1.1.8.5.5 + enum_values: + 4: backup + 5: acnormal + - name: upsThreePhaseDCandRectifierStatusChargeStatus + oid: 1.3.6.1.4.1.935.1.1.1.8.5.6 + type: gauge + help: Charge Status - 1.3.6.1.4.1.935.1.1.1.8.5.6 + enum_values: + 6: boost + 7: float + 16: "no" + - name: upsThreePhaseDCandRectifierStatusRecOperating + oid: 1.3.6.1.4.1.935.1.1.1.8.5.7 + type: gauge + help: Rectifier Operating - 1.3.6.1.4.1.935.1.1.1.8.5.7 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseUPSStatusBypassFreqFail + oid: 1.3.6.1.4.1.935.1.1.1.8.6.1 + type: gauge + help: Bypass Status - 1.3.6.1.4.1.935.1.1.1.8.6.1 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseUPSStatusManualBypassBreaker + oid: 1.3.6.1.4.1.935.1.1.1.8.6.2 + type: gauge + help: Breaker Status - 1.3.6.1.4.1.935.1.1.1.8.6.2 + enum_values: + 8: close + 9: open + - name: upsThreePhaseUPSStatusACStatus + oid: 1.3.6.1.4.1.935.1.1.1.8.6.3 + type: gauge + help: AC Status - 1.3.6.1.4.1.935.1.1.1.8.6.3 + enum_values: + 10: normal + 11: abnormal + - name: upsThreePhaseUPSStaticSwitchMode + oid: 1.3.6.1.4.1.935.1.1.1.8.6.4 + type: gauge + help: Switch Mode - 1.3.6.1.4.1.935.1.1.1.8.6.4 + enum_values: + 12: invermode + 13: bypassmode + - name: upsThreePhaseUPSStatusInverterOperating + oid: 1.3.6.1.4.1.935.1.1.1.8.6.5 + type: gauge + help: Operating - 1.3.6.1.4.1.935.1.1.1.8.6.5 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusEmergencyStop + oid: 1.3.6.1.4.1.935.1.1.1.8.7.1 + type: gauge + help: Emergency Stop - 1.3.6.1.4.1.935.1.1.1.8.7.1 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusHighDCShutdown + oid: 1.3.6.1.4.1.935.1.1.1.8.7.2 + type: gauge + help: High DC Shutdown - 1.3.6.1.4.1.935.1.1.1.8.7.2 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusBypassBreaker + oid: 1.3.6.1.4.1.935.1.1.1.8.7.3 + type: gauge + help: Bypass Breaker - 1.3.6.1.4.1.935.1.1.1.8.7.3 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusOverLoad + oid: 1.3.6.1.4.1.935.1.1.1.8.7.4 + type: gauge + help: Over Load - 1.3.6.1.4.1.935.1.1.1.8.7.4 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusInverterOutputFail + oid: 1.3.6.1.4.1.935.1.1.1.8.7.5 + type: gauge + help: Output Fail - 1.3.6.1.4.1.935.1.1.1.8.7.5 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusOverTemperature + oid: 1.3.6.1.4.1.935.1.1.1.8.7.6 + type: gauge + help: Over Temperature - 1.3.6.1.4.1.935.1.1.1.8.7.6 + enum_values: + 14: "yes" + 16: "no" + - name: upsThreePhaseFaultStatusShortCircuit + oid: 1.3.6.1.4.1.935.1.1.1.8.7.7 + type: gauge + help: Short Circuit - 1.3.6.1.4.1.935.1.1.1.8.7.7 + enum_values: + 14: "yes" + 16: "no" + - name: upsEnvTemperature + oid: 1.3.6.1.4.1.935.1.1.1.9.1.1 + type: gauge + help: The ambient environment temperature. - 1.3.6.1.4.1.935.1.1.1.9.1.1 + - name: upsEnvHumidity + oid: 1.3.6.1.4.1.935.1.1.1.9.1.2 + type: gauge + help: The environment humidity. - 1.3.6.1.4.1.935.1.1.1.9.1.2 + - name: upsEnvOverTemperature + oid: 1.3.6.1.4.1.935.1.1.1.9.2.1 + type: gauge + help: Alarm dupsAlarmOverTemperature on when the environment temperature over + the value. - 1.3.6.1.4.1.935.1.1.1.9.2.1 + - name: upsEnvUnderTemperature + oid: 1.3.6.1.4.1.935.1.1.1.9.2.2 + type: gauge + help: Alarm dupsAlarmUnderTemperature on when the environment temperature below + the value. - 1.3.6.1.4.1.935.1.1.1.9.2.2 + - name: upsEnvOverHumidity + oid: 1.3.6.1.4.1.935.1.1.1.9.2.3 + type: gauge + help: Alarm dupsAlarmOverHumidity on when the environment humidity over the + value. - 1.3.6.1.4.1.935.1.1.1.9.2.3 + - name: upsEnvUnderHumidity + oid: 1.3.6.1.4.1.935.1.1.1.9.2.4 + type: gauge + help: Alarm dupsAlarmUnderHumidity on when the environment humidity below the + value. - 1.3.6.1.4.1.935.1.1.1.9.2.4 printer_mib: walk: - - 1.3.6.1.2.1.25.3.5.1.1 - 1.3.6.1.2.1.43.11.1.1.5 - 1.3.6.1.2.1.43.11.1.1.6 - 1.3.6.1.2.1.43.11.1.1.8 @@ -19560,19 +33974,6 @@ modules: - 1.3.6.1.2.1.43.5.1.1.3 - 1.3.6.1.2.1.43.6.1.1.3 metrics: - - name: hrPrinterStatus - oid: 1.3.6.1.2.1.25.3.5.1.1 - type: EnumAsStateSet - help: The current status of this printer device. - 1.3.6.1.2.1.25.3.5.1.1 - indexes: - - labelname: hrDeviceIndex - type: gauge - enum_values: - 1: other - 2: unknown - 3: idle - 4: printing - 5: warmup - name: prtMarkerSuppliesType oid: 1.3.6.1.2.1.43.11.1.1.5 type: gauge @@ -19760,6 +34161,7 @@ modules: - 1.3.6.1.4.1.13742.4.1.20.2.1.7 - 1.3.6.1.4.1.13742.4.1.20.2.1.8 - 1.3.6.1.4.1.13742.4.1.20.2.1.9 + - 1.3.6.1.4.1.13742.6.5.5.3.1 get: - 1.3.6.1.4.1.13742.4.1.3.1.5.0 metrics: @@ -19851,30 +34253,718 @@ modules: - name: inletCurrent oid: 1.3.6.1.4.1.13742.4.1.20.2.1.7 type: gauge - help: A unique value for the current sensor attached to the inlet - 1.3.6.1.4.1.13742.4.1.20.2.1.7 + help: A unique value for the current sensor attached to the inlet - 1.3.6.1.4.1.13742.4.1.20.2.1.7 + indexes: + - labelname: inletIndex + type: gauge + - name: inletVoltage + oid: 1.3.6.1.4.1.13742.4.1.20.2.1.8 + type: gauge + help: A unique value for the voltage sensor attached to the intlet.This value + is reported in millivolts (1/1000th of a volt) - 1.3.6.1.4.1.13742.4.1.20.2.1.8 + indexes: + - labelname: inletIndex + type: gauge + - name: inletActivePower + oid: 1.3.6.1.4.1.13742.4.1.20.2.1.9 + type: gauge + help: The active power for the inlet This value is reported in Watts. - 1.3.6.1.4.1.13742.4.1.20.2.1.9 + indexes: + - labelname: inletIndex + type: gauge + - name: unitCpuTemp + oid: 1.3.6.1.4.1.13742.4.1.3.1.5 + type: gauge + help: The value for the unit's CPU temperature sensor in tenth degrees celsius. + - 1.3.6.1.4.1.13742.4.1.3.1.5 + - name: measurementsExternalSensorIsAvailable + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.2 + type: gauge + help: The sensor is present. - 1.3.6.1.4.1.13742.6.5.5.3.1.2 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: measurementsExternalSensorState + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.3 + type: gauge + help: The sensor state. - 1.3.6.1.4.1.13742.6.5.5.3.1.3 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + enum_values: + -1: unavailable + 0: open + 1: closed + 2: belowLowerCritical + 3: belowLowerWarning + 4: normal + 5: aboveUpperWarning + 6: aboveUpperCritical + 7: "on" + 8: "off" + 9: detected + 10: notDetected + 11: alarmed + 12: ok + 14: fail + 15: "yes" + 16: "no" + 17: standby + 18: one + 19: two + 20: inSync + 21: outOfSync + 22: i1OpenFault + 23: i1ShortFault + 24: i2OpenFault + 25: i2ShortFault + 26: fault + 27: warning + 28: critical + 29: selfTest + 30: nonRedundant + - name: measurementsExternalSensorValue + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.4 + type: gauge + help: The sensor reading as a signed integer - 1.3.6.1.4.1.13742.6.5.5.3.1.4 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorTimeStamp + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.5 + type: gauge + help: The timestamp for reading. - 1.3.6.1.4.1.13742.6.5.5.3.1.5 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorMinMaxValid + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.7 + type: gauge + help: The minimum and maximum values of sensor reading and their timestamps + provided as measurementsExternalSensor[Signed]{Min|Max}{Value|TimeStamp} are + valid - 1.3.6.1.4.1.13742.6.5.5.3.1.7 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: measurementsExternalSensorMinValue + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.8 + type: gauge + help: The minimum value of sensor reading since last reset as a signed integer + The value of this OID variable should be scaled by externalSensorDecimalDigits + - 1.3.6.1.4.1.13742.6.5.5.3.1.8 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorMinTimeStamp + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.10 + type: gauge + help: The timestamp of last change of the minimum value of sensor reading provided + as measurementExternalSensor[Signed]MinValue - 1.3.6.1.4.1.13742.6.5.5.3.1.10 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorMaxValue + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.11 + type: gauge + help: The maximum value of sensor reading since last reset as a signed integer + The value of this OID variable should be scaled by externalSensorDecimalDigits + - 1.3.6.1.4.1.13742.6.5.5.3.1.11 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorMaxTimeStamp + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.13 + type: gauge + help: The timestamp of last change of the maximum value of sensor reading provided + as measurementExternalSensor[Signed]MaxValue - 1.3.6.1.4.1.13742.6.5.5.3.1.13 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + - name: measurementsExternalSensorMinMaxResetTimeStamp + oid: 1.3.6.1.4.1.13742.6.5.5.3.1.14 + type: gauge + help: The timestamp of last reset of all minimum and maximum values of sensor + reading including their timestamps, provided as measurementsExternalSensor[Signed]{Min|Max}{Value|TimeStamp} + and measurementsExternalSensorMinMaxValid - 1.3.6.1.4.1.13742.6.5.5.3.1.14 + indexes: + - labelname: pduId + type: gauge + - labelname: sensorID + type: gauge + readynas: + walk: + - 1.3.6.1.4.1.4526 + metrics: + - name: nasMgrSoftwareVersion + oid: 1.3.6.1.4.1.4526.18.1 + type: DisplayString + help: Version information for the ReadyNAS NAS Manager software. - 1.3.6.1.4.1.4526.18.1 + - name: diskNumber + oid: 1.3.6.1.4.1.4526.18.3.1.1 + type: gauge + help: Instance number of the disk entry. - 1.3.6.1.4.1.4526.18.3.1.1 + indexes: + - labelname: diskNumber + type: gauge + - name: diskChannel + oid: 1.3.6.1.4.1.4526.18.3.1.2 + type: gauge + help: Channel number that the disk is connected to. - 1.3.6.1.4.1.4526.18.3.1.2 + indexes: + - labelname: diskNumber + type: gauge + - name: diskModel + oid: 1.3.6.1.4.1.4526.18.3.1.3 + type: DisplayString + help: The disk drive's model name. - 1.3.6.1.4.1.4526.18.3.1.3 + indexes: + - labelname: diskNumber + type: gauge + - name: diskState + oid: 1.3.6.1.4.1.4526.18.3.1.4 + type: DisplayString + help: The current state of the Disk - 1.3.6.1.4.1.4526.18.3.1.4 + indexes: + - labelname: diskNumber + type: gauge + - name: diskTemperature + oid: 1.3.6.1.4.1.4526.18.3.1.5 + type: gauge + help: temperature of this disk. - 1.3.6.1.4.1.4526.18.3.1.5 + indexes: + - labelname: diskNumber + type: gauge + - name: fanNumber + oid: 1.3.6.1.4.1.4526.18.4.1.1 + type: gauge + help: Instance number of this fan entry. - 1.3.6.1.4.1.4526.18.4.1.1 + indexes: + - labelname: fanNumber + type: gauge + - name: fanRPM + oid: 1.3.6.1.4.1.4526.18.4.1.2 + type: gauge + help: The current speed of the fan. - 1.3.6.1.4.1.4526.18.4.1.2 + indexes: + - labelname: fanNumber + type: gauge + - name: fanType + oid: 1.3.6.1.4.1.4526.18.4.1.3 + type: DisplayString + help: 'What fan is used for: SYS: for system board CPU: for CPU CAS: for system + case - 1.3.6.1.4.1.4526.18.4.1.3' + indexes: + - labelname: fanNumber + type: gauge + - name: temperatureNumber + oid: 1.3.6.1.4.1.4526.18.5.1.1 + type: gauge + help: Instance number of this temperature probe entry. - 1.3.6.1.4.1.4526.18.5.1.1 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureValue + oid: 1.3.6.1.4.1.4526.18.5.1.2 + type: gauge + help: The current temperature of this probe. - 1.3.6.1.4.1.4526.18.5.1.2 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureStatus + oid: 1.3.6.1.4.1.4526.18.5.1.3 + type: DisplayString + help: The current temperature status. - 1.3.6.1.4.1.4526.18.5.1.3 + indexes: + - labelname: temperatureNumber + type: gauge + - name: volumeNumber + oid: 1.3.6.1.4.1.4526.18.7.1.1 + type: gauge + help: Instance number of the volume entry. - 1.3.6.1.4.1.4526.18.7.1.1 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeName + oid: 1.3.6.1.4.1.4526.18.7.1.2 + type: DisplayString + help: The name of the volume. - 1.3.6.1.4.1.4526.18.7.1.2 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeRAIDLevel + oid: 1.3.6.1.4.1.4526.18.7.1.3 + type: DisplayString + help: The RAID level of the volume. - 1.3.6.1.4.1.4526.18.7.1.3 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeStatus + oid: 1.3.6.1.4.1.4526.18.7.1.4 + type: DisplayString + help: The severity of the volume - 1.3.6.1.4.1.4526.18.7.1.4 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeSize + oid: 1.3.6.1.4.1.4526.18.7.1.5 + type: gauge + help: The size of the volume in megabytes. - 1.3.6.1.4.1.4526.18.7.1.5 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeFreeSpace + oid: 1.3.6.1.4.1.4526.18.7.1.6 + type: gauge + help: Free space on the volume in megabytes. - 1.3.6.1.4.1.4526.18.7.1.6 + indexes: + - labelname: volumeNumber + type: gauge + - name: psuNumber + oid: 1.3.6.1.4.1.4526.18.8.1.1 + type: gauge + help: Instance number of this power supply unit. - 1.3.6.1.4.1.4526.18.8.1.1 + indexes: + - labelname: psuNumber + type: gauge + - name: psuDesc + oid: 1.3.6.1.4.1.4526.18.8.1.2 + type: DisplayString + help: The description of this PSU. - 1.3.6.1.4.1.4526.18.8.1.2 + indexes: + - labelname: psuNumber + type: gauge + - name: psuStatus + oid: 1.3.6.1.4.1.4526.18.8.1.3 + type: DisplayString + help: The current PSU status. - 1.3.6.1.4.1.4526.18.8.1.3 + indexes: + - labelname: psuNumber + type: gauge + - name: controllerNameEv + oid: 1.3.6.1.4.1.4526.18.200.201 + type: DisplayString + help: Controller Name for which trap is generated. - 1.3.6.1.4.1.4526.18.200.201 + - name: channelNumberEv + oid: 1.3.6.1.4.1.4526.18.200.202 + type: gauge + help: Channel Number for which trap is generated. - 1.3.6.1.4.1.4526.18.200.202 + - name: targetIDEv + oid: 1.3.6.1.4.1.4526.18.200.203 + type: gauge + help: SCSI ID of the device for which trap is generated. - 1.3.6.1.4.1.4526.18.200.203 + - name: virtualDiskNameEv + oid: 1.3.6.1.4.1.4526.18.200.204 + type: DisplayString + help: Virtual Disk for which trap is generated. - 1.3.6.1.4.1.4526.18.200.204 + - name: arrayDiskNameEv + oid: 1.3.6.1.4.1.4526.18.200.205 + type: DisplayString + help: Array Disk for which trap is generated. - 1.3.6.1.4.1.4526.18.200.205 + - name: oldVDConfigEv + oid: 1.3.6.1.4.1.4526.18.200.206 + type: DisplayString + help: Current Virtual Disk configuration for which trap is generated - 1.3.6.1.4.1.4526.18.200.206 + - name: newVDConfigEv + oid: 1.3.6.1.4.1.4526.18.200.207 + type: DisplayString + help: New Virtual Disk configuration for which trap is generated. - 1.3.6.1.4.1.4526.18.200.207 + - name: enclosureNumberEv + oid: 1.3.6.1.4.1.4526.18.200.208 + type: gauge + help: Enclosure Number for which trap is generated. - 1.3.6.1.4.1.4526.18.200.208 + - name: unitNumberEv + oid: 1.3.6.1.4.1.4526.18.200.209 + type: gauge + help: Unit Number for which trap is generated - 1.3.6.1.4.1.4526.18.200.209 + - name: enclosureNameEv + oid: 1.3.6.1.4.1.4526.18.200.210 + type: DisplayString + help: Enclosure Name for which trap is generated. - 1.3.6.1.4.1.4526.18.200.210 + - name: unitNameEv + oid: 1.3.6.1.4.1.4526.18.200.211 + type: DisplayString + help: Unit Number for which trap is generated - 1.3.6.1.4.1.4526.18.200.211 + - name: timeEv + oid: 1.3.6.1.4.1.4526.18.200.212 + type: gauge + help: Amount of time specified in the trap message. - 1.3.6.1.4.1.4526.18.200.212 + - name: volumeNameEv + oid: 1.3.6.1.4.1.4526.18.200.213 + type: DisplayString + help: Volume Drive Letter for which trap is generated. - 1.3.6.1.4.1.4526.18.200.213 + - name: fanFailureMesg + oid: 1.3.6.1.4.1.4526.18.400 + type: DisplayString + help: Failure message for Fan - 1.3.6.1.4.1.4526.18.400 + - name: tempFailureMesg + oid: 1.3.6.1.4.1.4526.18.401 + type: DisplayString + help: Failure message for system temperature - 1.3.6.1.4.1.4526.18.401 + - name: powerFailureMesg + oid: 1.3.6.1.4.1.4526.18.402 + type: DisplayString + help: Failure message for system power - 1.3.6.1.4.1.4526.18.402 + - name: raidMesg + oid: 1.3.6.1.4.1.4526.18.403 + type: DisplayString + help: RAID hotplug event message - 1.3.6.1.4.1.4526.18.403 + - name: snapshotMesg + oid: 1.3.6.1.4.1.4526.18.404 + type: DisplayString + help: Snapshot messages - 1.3.6.1.4.1.4526.18.404 + - name: upsMesg + oid: 1.3.6.1.4.1.4526.18.405 + type: DisplayString + help: UPS status message - 1.3.6.1.4.1.4526.18.405 + - name: sataMesg + oid: 1.3.6.1.4.1.4526.18.406 + type: DisplayString + help: SATA hotplug event messages - 1.3.6.1.4.1.4526.18.406 + - name: volumeMesg + oid: 1.3.6.1.4.1.4526.18.407 + type: DisplayString + help: Disk usage warning - 1.3.6.1.4.1.4526.18.407 + - name: diskTempWarningMesg + oid: 1.3.6.1.4.1.4526.18.408 + type: DisplayString + help: Disk temperature warning messages - 1.3.6.1.4.1.4526.18.408 + - name: backupMesg + oid: 1.3.6.1.4.1.4526.18.409 + type: DisplayString + help: Backup job status messages - 1.3.6.1.4.1.4526.18.409 + - name: smartMesg + oid: 1.3.6.1.4.1.4526.18.410 + type: DisplayString + help: Disk SMART messages - 1.3.6.1.4.1.4526.18.410 + - name: psuMesg + oid: 1.3.6.1.4.1.4526.18.411 + type: DisplayString + help: PSU status messages - 1.3.6.1.4.1.4526.18.411 + - name: nasMgrSoftwareVersion + oid: 1.3.6.1.4.1.4526.22.1 + type: DisplayString + help: Version information for the ReadyDATAOS ngNasManager software. - 1.3.6.1.4.1.4526.22.1 + - name: diskNumber + oid: 1.3.6.1.4.1.4526.22.3.1.1 + type: gauge + help: Instance number of the disk entry. - 1.3.6.1.4.1.4526.22.3.1.1 + indexes: + - labelname: diskNumber + type: gauge + - name: diskID + oid: 1.3.6.1.4.1.4526.22.3.1.2 + type: DisplayString + help: Disk ID. - 1.3.6.1.4.1.4526.22.3.1.2 + indexes: + - labelname: diskNumber + type: gauge + - name: diskSlotName + oid: 1.3.6.1.4.1.4526.22.3.1.3 + type: DisplayString + help: The slot location of the disk. - 1.3.6.1.4.1.4526.22.3.1.3 + indexes: + - labelname: diskNumber + type: gauge + - name: diskSerial + oid: 1.3.6.1.4.1.4526.22.3.1.4 + type: DisplayString + help: Disk Serial number. - 1.3.6.1.4.1.4526.22.3.1.4 + indexes: + - labelname: diskNumber + type: gauge + - name: diskModel + oid: 1.3.6.1.4.1.4526.22.3.1.5 + type: DisplayString + help: The disk drive's model name. - 1.3.6.1.4.1.4526.22.3.1.5 + indexes: + - labelname: diskNumber + type: gauge + - name: ataError + oid: 1.3.6.1.4.1.4526.22.3.1.6 + type: gauge + help: ATA error number for this disk from S.M.A.R.T read. - 1.3.6.1.4.1.4526.22.3.1.6 + indexes: + - labelname: diskNumber + type: gauge + - name: diskCapacity + oid: 1.3.6.1.4.1.4526.22.3.1.7 + type: DisplayString + help: The capacity of the disk in bytes. - 1.3.6.1.4.1.4526.22.3.1.7 + indexes: + - labelname: diskNumber + type: gauge + - name: diskInterface + oid: 1.3.6.1.4.1.4526.22.3.1.8 + type: DisplayString + help: The disk connect interface, such as SATA, USB etc. - 1.3.6.1.4.1.4526.22.3.1.8 + indexes: + - labelname: diskNumber + type: gauge + - name: diskState + oid: 1.3.6.1.4.1.4526.22.3.1.9 + type: DisplayString + help: The current state of the Disk - 1.3.6.1.4.1.4526.22.3.1.9 + indexes: + - labelname: diskNumber + type: gauge + - name: diskTemperature + oid: 1.3.6.1.4.1.4526.22.3.1.10 + type: gauge + help: temperature of this disk(in Fahrenheit unit). - 1.3.6.1.4.1.4526.22.3.1.10 + indexes: + - labelname: diskNumber + type: gauge + - name: fanNumber + oid: 1.3.6.1.4.1.4526.22.4.1.1 + type: gauge + help: Instance number of this fan entry. - 1.3.6.1.4.1.4526.22.4.1.1 + indexes: + - labelname: fanNumber + type: gauge + - name: fanRPM + oid: 1.3.6.1.4.1.4526.22.4.1.2 + type: gauge + help: The current speed of the fan. - 1.3.6.1.4.1.4526.22.4.1.2 + indexes: + - labelname: fanNumber + type: gauge + - name: fanStatus + oid: 1.3.6.1.4.1.4526.22.4.1.3 + type: DisplayString + help: The status of Fan - 1.3.6.1.4.1.4526.22.4.1.3 + indexes: + - labelname: fanNumber + type: gauge + - name: fanType + oid: 1.3.6.1.4.1.4526.22.4.1.4 + type: DisplayString + help: 'What fan is used for: SYS: for system board CPU: for CPU CASE: for system + case - 1.3.6.1.4.1.4526.22.4.1.4' + indexes: + - labelname: fanNumber + type: gauge + - name: temperatureNumber + oid: 1.3.6.1.4.1.4526.22.5.1.1 + type: gauge + help: Instance number of this temperature probe entry. - 1.3.6.1.4.1.4526.22.5.1.1 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureValue + oid: 1.3.6.1.4.1.4526.22.5.1.2 + type: gauge + help: The current temperature of this probe (in Fahrenheit unit). - 1.3.6.1.4.1.4526.22.5.1.2 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureTyoe + oid: 1.3.6.1.4.1.4526.22.5.1.3 + type: DisplayString + help: The current temperature refer to - 1.3.6.1.4.1.4526.22.5.1.3 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureMin + oid: 1.3.6.1.4.1.4526.22.5.1.4 + type: gauge + help: The min temperature of this probe (in Fahrenheit unit). - 1.3.6.1.4.1.4526.22.5.1.4 + indexes: + - labelname: temperatureNumber + type: gauge + - name: temperatureMax + oid: 1.3.6.1.4.1.4526.22.5.1.5 + type: gauge + help: The max temperature of this probe (in Fahrenheit unit). - 1.3.6.1.4.1.4526.22.5.1.5 + indexes: + - labelname: temperatureNumber + type: gauge + - name: volumeNumber + oid: 1.3.6.1.4.1.4526.22.7.1.1 + type: gauge + help: Instance number of the volume entry. - 1.3.6.1.4.1.4526.22.7.1.1 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeName + oid: 1.3.6.1.4.1.4526.22.7.1.2 + type: DisplayString + help: The name of the volume. - 1.3.6.1.4.1.4526.22.7.1.2 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeRAIDLevel + oid: 1.3.6.1.4.1.4526.22.7.1.3 + type: DisplayString + help: The RAID level of the volume. - 1.3.6.1.4.1.4526.22.7.1.3 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeStatus + oid: 1.3.6.1.4.1.4526.22.7.1.4 + type: DisplayString + help: The severity of the volume - 1.3.6.1.4.1.4526.22.7.1.4 + indexes: + - labelname: volumeNumber + type: gauge + - name: volumeSize + oid: 1.3.6.1.4.1.4526.22.7.1.5 + type: gauge + help: The size of the volume in megabytes. - 1.3.6.1.4.1.4526.22.7.1.5 indexes: - - labelname: inletIndex + - labelname: volumeNumber type: gauge - - name: inletVoltage - oid: 1.3.6.1.4.1.13742.4.1.20.2.1.8 + - name: volumeFreeSpace + oid: 1.3.6.1.4.1.4526.22.7.1.6 type: gauge - help: A unique value for the voltage sensor attached to the intlet.This value - is reported in millivolts (1/1000th of a volt) - 1.3.6.1.4.1.13742.4.1.20.2.1.8 + help: Free space on the volume in megabytes. - 1.3.6.1.4.1.4526.22.7.1.6 indexes: - - labelname: inletIndex + - labelname: volumeNumber type: gauge - - name: inletActivePower - oid: 1.3.6.1.4.1.13742.4.1.20.2.1.9 + - name: psuNumber + oid: 1.3.6.1.4.1.4526.22.8.1.1 type: gauge - help: The active power for the inlet This value is reported in Watts. - 1.3.6.1.4.1.13742.4.1.20.2.1.9 + help: Instance number of this power supply unit. - 1.3.6.1.4.1.4526.22.8.1.1 indexes: - - labelname: inletIndex + - labelname: psuNumber type: gauge - - name: unitCpuTemp - oid: 1.3.6.1.4.1.13742.4.1.3.1.5 + - name: psuDesc + oid: 1.3.6.1.4.1.4526.22.8.1.2 + type: DisplayString + help: The description of this PSU. - 1.3.6.1.4.1.4526.22.8.1.2 + indexes: + - labelname: psuNumber + type: gauge + - name: psuStatus + oid: 1.3.6.1.4.1.4526.22.8.1.3 + type: DisplayString + help: The current PSU status. - 1.3.6.1.4.1.4526.22.8.1.3 + indexes: + - labelname: psuNumber + type: gauge + - name: controllerNameEv + oid: 1.3.6.1.4.1.4526.22.200.201 + type: DisplayString + help: Controller Name for which trap is generated. - 1.3.6.1.4.1.4526.22.200.201 + - name: channelNumberEv + oid: 1.3.6.1.4.1.4526.22.200.202 type: gauge - help: The value for the unit's CPU temperature sensor in tenth degrees celsius. - - 1.3.6.1.4.1.13742.4.1.3.1.5 + help: Channel Number for which trap is generated. - 1.3.6.1.4.1.4526.22.200.202 + - name: targetIDEv + oid: 1.3.6.1.4.1.4526.22.200.203 + type: gauge + help: SCSI ID of the device for which trap is generated. - 1.3.6.1.4.1.4526.22.200.203 + - name: virtualDiskNameEv + oid: 1.3.6.1.4.1.4526.22.200.204 + type: DisplayString + help: Virtual Disk for which trap is generated. - 1.3.6.1.4.1.4526.22.200.204 + - name: arrayDiskNameEv + oid: 1.3.6.1.4.1.4526.22.200.205 + type: DisplayString + help: Array Disk for which trap is generated. - 1.3.6.1.4.1.4526.22.200.205 + - name: oldVDConfigEv + oid: 1.3.6.1.4.1.4526.22.200.206 + type: DisplayString + help: Current Virtual Disk configuration for which trap is generated - 1.3.6.1.4.1.4526.22.200.206 + - name: newVDConfigEv + oid: 1.3.6.1.4.1.4526.22.200.207 + type: DisplayString + help: New Virtual Disk configuration for which trap is generated. - 1.3.6.1.4.1.4526.22.200.207 + - name: enclosureNumberEv + oid: 1.3.6.1.4.1.4526.22.200.208 + type: gauge + help: Enclosure Number for which trap is generated. - 1.3.6.1.4.1.4526.22.200.208 + - name: unitNumberEv + oid: 1.3.6.1.4.1.4526.22.200.209 + type: gauge + help: Unit Number for which trap is generated - 1.3.6.1.4.1.4526.22.200.209 + - name: enclosureNameEv + oid: 1.3.6.1.4.1.4526.22.200.210 + type: DisplayString + help: Enclosure Name for which trap is generated. - 1.3.6.1.4.1.4526.22.200.210 + - name: unitNameEv + oid: 1.3.6.1.4.1.4526.22.200.211 + type: DisplayString + help: Unit Number for which trap is generated - 1.3.6.1.4.1.4526.22.200.211 + - name: timeEv + oid: 1.3.6.1.4.1.4526.22.200.212 + type: gauge + help: Amount of time specified in the trap message. - 1.3.6.1.4.1.4526.22.200.212 + - name: volumeNameEv + oid: 1.3.6.1.4.1.4526.22.200.213 + type: DisplayString + help: Volume Drive Letter for which trap is generated. - 1.3.6.1.4.1.4526.22.200.213 + - name: fanFailureMesg + oid: 1.3.6.1.4.1.4526.22.400 + type: DisplayString + help: Failure message for Fan - 1.3.6.1.4.1.4526.22.400 + - name: tempFailureMesg + oid: 1.3.6.1.4.1.4526.22.401 + type: DisplayString + help: Failure message for system temperature - 1.3.6.1.4.1.4526.22.401 + - name: powerVoltageMesg + oid: 1.3.6.1.4.1.4526.22.402 + type: DisplayString + help: Failure message for system power - 1.3.6.1.4.1.4526.22.402 + - name: raidEventNoticeMesg + oid: 1.3.6.1.4.1.4526.22.403 + type: DisplayString + help: RAID hotplug event message - 1.3.6.1.4.1.4526.22.403 + - name: snapshotEventNoticeMesg + oid: 1.3.6.1.4.1.4526.22.404 + type: DisplayString + help: Snapshot messages - 1.3.6.1.4.1.4526.22.404 + - name: upsEventNoticeMesg + oid: 1.3.6.1.4.1.4526.22.405 + type: DisplayString + help: UPS status message - 1.3.6.1.4.1.4526.22.405 + - name: hotplugDiskNoticeMesg + oid: 1.3.6.1.4.1.4526.22.406 + type: DisplayString + help: Disk hotplug event messages - 1.3.6.1.4.1.4526.22.406 + - name: volumeNoticeMesg + oid: 1.3.6.1.4.1.4526.22.407 + type: DisplayString + help: Disk usage warning - 1.3.6.1.4.1.4526.22.407 + - name: diskTempWarningMesg + oid: 1.3.6.1.4.1.4526.22.408 + type: DisplayString + help: Disk temperature warning messages - 1.3.6.1.4.1.4526.22.408 + - name: backupNoticeMesg + oid: 1.3.6.1.4.1.4526.22.409 + type: DisplayString + help: Backup job status messages - 1.3.6.1.4.1.4526.22.409 + - name: diskSmartWarningMesg + oid: 1.3.6.1.4.1.4526.22.410 + type: DisplayString + help: Disk SMART messages - 1.3.6.1.4.1.4526.22.410 + - name: psuWarningMesg + oid: 1.3.6.1.4.1.4526.22.411 + type: DisplayString + help: PSU status messages - 1.3.6.1.4.1.4526.22.411 servertech_sentry3: walk: - 1.3.6.1.4.1.1718.3.2.2 @@ -20404,6 +35494,7 @@ modules: type: gauge - labelname: outletIndex type: gauge + max_repetitions: 4 servertech_sentry4: walk: - 1.3.6.1.4.1.1718.4.1.14.3 @@ -22646,408 +37737,681 @@ modules: oid: 1.3.6.1.4.1.1718.4.1.8.3.1.14 type: gauge help: The total energy consumption of the device plugged into the outlet in - Watt-Hours. - 1.3.6.1.4.1.1718.4.1.8.3.1.14 - indexes: - - labelname: st4UnitIndex - type: gauge - - labelname: st4InputCordIndex - type: gauge - - labelname: st4OutletIndex - type: gauge - lookups: - - labels: - - st4UnitIndex - labelname: st4UnitName - oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 - type: DisplayString - - labels: - - st4UnitIndex - - st4InputCordIndex - labelname: st4InputCordName - oid: 1.3.6.1.4.1.1718.4.1.3.2.1.3 - type: DisplayString - - labels: - - st4UnitIndex - - st4InputCordIndex - - st4OutletIndex - labelname: st4OutletName - oid: 1.3.6.1.4.1.1718.4.1.8.2.1.3 - type: DisplayString - - labels: [] - labelname: st4UnitIndex - - labels: [] - labelname: st4InputCordIndex - - labels: [] - labelname: st4UnitIndex - - labels: [] - labelname: st4InputCordIndex - - labels: [] - labelname: st4OutletIndex - - name: st4TempSensorValue - oid: 1.3.6.1.4.1.1718.4.1.9.3.1.1 - type: gauge - help: The measured temperature on the sensor in tenth degrees using the scale - selected by st4TempSensorScale - 1.3.6.1.4.1.1718.4.1.9.3.1.1 - indexes: - - labelname: st4UnitIndex - type: gauge - - labelname: st4TempSensorIndex - type: gauge - lookups: - - labels: - - st4UnitIndex - labelname: st4UnitName - oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 - type: DisplayString - - name: st4TempSensorStatus - oid: 1.3.6.1.4.1.1718.4.1.9.3.1.2 - type: gauge - help: The status of the temperature sensor. - 1.3.6.1.4.1.1718.4.1.9.3.1.2 - indexes: - - labelname: st4UnitIndex - type: gauge - - labelname: st4TempSensorIndex - type: gauge - lookups: - - labels: - - st4UnitIndex - labelname: st4UnitName - oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 - type: DisplayString - enum_values: - 0: normal - 1: disabled - 2: purged - 5: reading - 6: settle - 7: notFound - 8: lost - 9: readError - 10: noComm - 11: pwrError - 12: breakerTripped - 13: fuseBlown - 14: lowAlarm - 15: lowWarning - 16: highWarning - 17: highAlarm - 18: alarm - 19: underLimit - 20: overLimit - 21: nvmFail - 22: profileError - 23: conflict - synology: - walk: - - 1.3.6.1.2.1.25.2 - - 1.3.6.1.4.1.2021.10.1.2 - - 1.3.6.1.4.1.2021.10.1.5 - - 1.3.6.1.4.1.2021.4 - - 1.3.6.1.4.1.6574.1 - - 1.3.6.1.4.1.6574.101 - - 1.3.6.1.4.1.6574.102 - - 1.3.6.1.4.1.6574.104 - - 1.3.6.1.4.1.6574.2 - - 1.3.6.1.4.1.6574.3 - - 1.3.6.1.4.1.6574.4 - - 1.3.6.1.4.1.6574.5 - - 1.3.6.1.4.1.6574.6 - get: - - 1.3.6.1.4.1.2021.11.10.0 - - 1.3.6.1.4.1.2021.11.11.0 - - 1.3.6.1.4.1.2021.11.9.0 - metrics: - - name: hrMemorySize - oid: 1.3.6.1.2.1.25.2.2 - type: gauge - help: The amount of physical read-write main memory, typically RAM, contained - by the host. - 1.3.6.1.2.1.25.2.2 - - name: hrStorageIndex - oid: 1.3.6.1.2.1.25.2.3.1.1 - 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: hrStorageIndex - type: gauge - lookups: - - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 - type: DisplayString - - labels: [] - labelname: hrStorageIndex - - name: hrStorageType - oid: 1.3.6.1.2.1.25.2.3.1.2 - type: OctetString - help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 - indexes: - - labelname: hrStorageIndex - type: gauge - lookups: - - labels: - - 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: hrStorageIndex - type: gauge - lookups: - - labels: - - 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: hrStorageIndex - type: gauge - lookups: - - labels: - - 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: hrStorageIndex - type: gauge - lookups: - - labels: - - 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: hrStorageIndex - type: gauge - lookups: - - labels: - - 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 + Watt-Hours. - 1.3.6.1.4.1.1718.4.1.8.3.1.14 indexes: - - labelname: hrStorageIndex + - labelname: st4UnitIndex + type: gauge + - labelname: st4InputCordIndex + type: gauge + - labelname: st4OutletIndex type: gauge lookups: - labels: - - hrStorageIndex - labelname: hrStorageDescr - oid: 1.3.6.1.2.1.25.2.3.1.3 + - st4UnitIndex + labelname: st4UnitName + oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 + type: DisplayString + - labels: + - st4UnitIndex + - st4InputCordIndex + labelname: st4InputCordName + oid: 1.3.6.1.4.1.1718.4.1.3.2.1.3 + type: DisplayString + - labels: + - st4UnitIndex + - st4InputCordIndex + - st4OutletIndex + labelname: st4OutletName + oid: 1.3.6.1.4.1.1718.4.1.8.2.1.3 type: DisplayString - labels: [] - labelname: hrStorageIndex - - 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 + labelname: st4UnitIndex + - labels: [] + labelname: st4InputCordIndex + - labels: [] + labelname: st4UnitIndex + - labels: [] + labelname: st4InputCordIndex + - labels: [] + labelname: st4OutletIndex + - name: st4TempSensorValue + oid: 1.3.6.1.4.1.1718.4.1.9.3.1.1 + type: gauge + help: The measured temperature on the sensor in degrees using the scale selected + by st4TempSensorScale - 1.3.6.1.4.1.1718.4.1.9.3.1.1 indexes: - - labelname: laIndex + - labelname: st4UnitIndex + type: gauge + - labelname: st4TempSensorIndex type: gauge lookups: - labels: - - laIndex - labelname: laNames - oid: 1.3.6.1.4.1.2021.10.1.2 + - st4UnitIndex + labelname: st4UnitName + oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 type: DisplayString - - labels: [] - labelname: laIndex - - name: laLoadInt - oid: 1.3.6.1.4.1.2021.10.1.5 + scale: 0.1 + - name: st4TempSensorStatus + oid: 1.3.6.1.4.1.1718.4.1.9.3.1.2 type: gauge - help: The 1,5 and 15 minute load averages as an integer - 1.3.6.1.4.1.2021.10.1.5 + help: The status of the temperature sensor. - 1.3.6.1.4.1.1718.4.1.9.3.1.2 indexes: - - labelname: laIndex + - labelname: st4UnitIndex + type: gauge + - labelname: st4TempSensorIndex type: gauge lookups: - labels: - - laIndex - labelname: laNames - oid: 1.3.6.1.4.1.2021.10.1.2 + - st4UnitIndex + labelname: st4UnitName + oid: 1.3.6.1.4.1.1718.4.1.2.2.1.3 type: DisplayString - - labels: [] - labelname: laIndex - - name: ssCpuSystem - oid: 1.3.6.1.4.1.2021.11.10 - type: gauge - help: The percentage of CPU time spent processing system-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.10 - - name: ssCpuIdle - oid: 1.3.6.1.4.1.2021.11.11 - type: gauge - help: The percentage of processor time spent idle, calculated over the last - minute - 1.3.6.1.4.1.2021.11.11 - - name: ssCpuUser - oid: 1.3.6.1.4.1.2021.11.9 - type: gauge - help: The percentage of CPU time spent processing user-level code, calculated - over the last minute - 1.3.6.1.4.1.2021.11.9 - - name: memIndex - oid: 1.3.6.1.4.1.2021.4.1 - type: gauge - help: Bogus Index - 1.3.6.1.4.1.2021.4.1 - - name: memErrorName - oid: 1.3.6.1.4.1.2021.4.2 - type: DisplayString - help: Bogus Name - 1.3.6.1.4.1.2021.4.2 - - name: memTotalSwap - oid: 1.3.6.1.4.1.2021.4.3 - type: gauge - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.3 - - name: memAvailSwap - oid: 1.3.6.1.4.1.2021.4.4 - type: gauge - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.4 - - name: memTotalReal - oid: 1.3.6.1.4.1.2021.4.5 - type: gauge - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.5 - - name: memAvailReal - oid: 1.3.6.1.4.1.2021.4.6 - type: gauge - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.6 - - name: memTotalSwapTXT - oid: 1.3.6.1.4.1.2021.4.7 - type: gauge - help: The total amount of swap space or virtual memory allocated for text pages - on this host - 1.3.6.1.4.1.2021.4.7 - - name: memAvailSwapTXT - oid: 1.3.6.1.4.1.2021.4.8 - type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.8 - - name: memTotalRealTXT - oid: 1.3.6.1.4.1.2021.4.9 - type: gauge - help: The total amount of real/physical memory allocated for text pages on this - host - 1.3.6.1.4.1.2021.4.9 - - name: memAvailRealTXT - oid: 1.3.6.1.4.1.2021.4.10 - type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.10 - - name: memTotalFree - oid: 1.3.6.1.4.1.2021.4.11 - type: gauge - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.11 - - name: memMinimumSwap - oid: 1.3.6.1.4.1.2021.4.12 - type: gauge - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.12 - - name: memShared - oid: 1.3.6.1.4.1.2021.4.13 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.13 - - name: memBuffer - oid: 1.3.6.1.4.1.2021.4.14 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.14 - - name: memCached - oid: 1.3.6.1.4.1.2021.4.15 - type: gauge - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.15 - - name: memUsedSwapTXT - oid: 1.3.6.1.4.1.2021.4.16 - type: gauge - help: The amount of swap space or virtual memory currently being used by text - pages on this host - 1.3.6.1.4.1.2021.4.16 - - name: memUsedRealTXT - oid: 1.3.6.1.4.1.2021.4.17 - type: gauge - help: The amount of real/physical memory currently being used by text pages - on this host - 1.3.6.1.4.1.2021.4.17 - - name: memTotalSwapX - oid: 1.3.6.1.4.1.2021.4.18 - type: counter - help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.18 - - name: memAvailSwapX - oid: 1.3.6.1.4.1.2021.4.19 - type: counter - help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.19 - - name: memTotalRealX - oid: 1.3.6.1.4.1.2021.4.20 - type: counter - help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.20 - - name: memAvailRealX - oid: 1.3.6.1.4.1.2021.4.21 - type: counter - help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.21 - - name: memTotalFreeX - oid: 1.3.6.1.4.1.2021.4.22 - type: counter - help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.22 - - name: memMinimumSwapX - oid: 1.3.6.1.4.1.2021.4.23 - type: counter - help: The minimum amount of swap space expected to be kept free or available - during normal operation of this host - 1.3.6.1.4.1.2021.4.23 - - name: memSharedX - oid: 1.3.6.1.4.1.2021.4.24 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as shared memory - 1.3.6.1.4.1.2021.4.24 - - name: memBufferX - oid: 1.3.6.1.4.1.2021.4.25 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as memory buffers - 1.3.6.1.4.1.2021.4.25 - - name: memCachedX - oid: 1.3.6.1.4.1.2021.4.26 - type: counter - help: The total amount of real or virtual memory currently allocated for use - as cached memory - 1.3.6.1.4.1.2021.4.26 - - name: memSwapError - oid: 1.3.6.1.4.1.2021.4.100 - type: gauge - help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 enum_values: - 0: noError - 1: error - - name: memSwapErrorMsg - oid: 1.3.6.1.4.1.2021.4.101 + 0: normal + 1: disabled + 2: purged + 5: reading + 6: settle + 7: notFound + 8: lost + 9: readError + 10: noComm + 11: pwrError + 12: breakerTripped + 13: fuseBlown + 14: lowAlarm + 15: lowWarning + 16: highWarning + 17: highAlarm + 18: alarm + 19: underLimit + 20: overLimit + 21: nvmFail + 22: profileError + 23: conflict + sophos_xg: + walk: + - 1.3.6.1.4.1.2604.5.1.1 + - 1.3.6.1.4.1.2604.5.1.2 + - 1.3.6.1.4.1.2604.5.1.3 + - 1.3.6.1.4.1.2604.5.1.4 + - 1.3.6.1.4.1.2604.5.1.5 + metrics: + - name: sfosDeviceName + oid: 1.3.6.1.4.1.2604.5.1.1.1 + type: DisplayString + help: hostname of the SFOS XG Device - 1.3.6.1.4.1.2604.5.1.1.1 + - name: sfosDeviceType + oid: 1.3.6.1.4.1.2604.5.1.1.2 + type: DisplayString + help: Type of Device like XG-85, XG-210 - 1.3.6.1.4.1.2604.5.1.1.2 + - name: sfosDeviceFWVersion + oid: 1.3.6.1.4.1.2604.5.1.1.3 + type: DisplayString + help: Current running firmware version of SFOS - 1.3.6.1.4.1.2604.5.1.1.3 + - name: sfosDeviceAppKey + oid: 1.3.6.1.4.1.2604.5.1.1.4 + type: DisplayString + help: Appliance Key of SFOS Device - 1.3.6.1.4.1.2604.5.1.1.4 + - name: sfosWebcatVersion + oid: 1.3.6.1.4.1.2604.5.1.1.5 + type: DisplayString + help: Current webcat version running in SFOS - 1.3.6.1.4.1.2604.5.1.1.5 + - name: sfosIPSVersion + oid: 1.3.6.1.4.1.2604.5.1.1.6 + type: DisplayString + help: Current snort version running in SFOS - 1.3.6.1.4.1.2604.5.1.1.6 + - name: sfosCurrentDate + oid: 1.3.6.1.4.1.2604.5.1.2.1 + type: ParseDateAndTime + help: Current system date and time - 1.3.6.1.4.1.2604.5.1.2.1 + datetime_pattern: '%a %b %d %H:%M:%S %Y' + - name: sfosUpTime + oid: 1.3.6.1.4.1.2604.5.1.2.2 + type: gauge + help: sysUpTime will display the SNMP agent up time - 1.3.6.1.4.1.2604.5.1.2.2 + - name: sfosDiskCapacity + oid: 1.3.6.1.4.1.2604.5.1.2.4.1 + type: gauge + help: Disk capacity in MB - 1.3.6.1.4.1.2604.5.1.2.4.1 + - name: sfosDiskPercentUsage + oid: 1.3.6.1.4.1.2604.5.1.2.4.2 + type: gauge + help: '% Disk usage - 1.3.6.1.4.1.2604.5.1.2.4.2' + - name: sfosMemoryCapacity + oid: 1.3.6.1.4.1.2604.5.1.2.5.1 + type: gauge + help: Memory capacity in MB - 1.3.6.1.4.1.2604.5.1.2.5.1 + - name: sfosMemoryPercentUsage + oid: 1.3.6.1.4.1.2604.5.1.2.5.2 + type: gauge + help: '% usage of main memory - 1.3.6.1.4.1.2604.5.1.2.5.2' + - name: sfosSwapCapacity + oid: 1.3.6.1.4.1.2604.5.1.2.5.3 + type: gauge + help: Swap Capacity in MB - 1.3.6.1.4.1.2604.5.1.2.5.3 + - name: sfosSwapPercentUsage + oid: 1.3.6.1.4.1.2604.5.1.2.5.4 + type: gauge + help: '% usage of swap - 1.3.6.1.4.1.2604.5.1.2.5.4' + - name: sfosLiveUsersCount + oid: 1.3.6.1.4.1.2604.5.1.2.6 + type: gauge + help: Display live user count login into captive portal - 1.3.6.1.4.1.2604.5.1.2.6 + - name: sfosHTTPHits + oid: 1.3.6.1.4.1.2604.5.1.2.7 + type: counter + help: ' - 1.3.6.1.4.1.2604.5.1.2.7' + - name: sfosFTPHits + oid: 1.3.6.1.4.1.2604.5.1.2.8 + type: counter + help: ' - 1.3.6.1.4.1.2604.5.1.2.8' + - name: sfosPOP3Hits + oid: 1.3.6.1.4.1.2604.5.1.2.9.1 + type: counter + help: ' - 1.3.6.1.4.1.2604.5.1.2.9.1' + - name: sfosImapHits + oid: 1.3.6.1.4.1.2604.5.1.2.9.2 + type: counter + help: ' - 1.3.6.1.4.1.2604.5.1.2.9.2' + - name: sfosSmtpHits + oid: 1.3.6.1.4.1.2604.5.1.2.9.3 + type: counter + help: ' - 1.3.6.1.4.1.2604.5.1.2.9.3' + - name: sfosPoP3Service + oid: 1.3.6.1.4.1.2604.5.1.3.1 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.1' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosImap4Service + oid: 1.3.6.1.4.1.2604.5.1.3.2 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.2' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosSmtpService + oid: 1.3.6.1.4.1.2604.5.1.3.3 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.3' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosFtpService + oid: 1.3.6.1.4.1.2604.5.1.3.4 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.4' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosHttpService + oid: 1.3.6.1.4.1.2604.5.1.3.5 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.5' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosAVService + oid: 1.3.6.1.4.1.2604.5.1.3.6 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.6' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosASService + oid: 1.3.6.1.4.1.2604.5.1.3.7 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.7' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosDNSService + oid: 1.3.6.1.4.1.2604.5.1.3.8 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.8' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosHAService + oid: 1.3.6.1.4.1.2604.5.1.3.9 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.9' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosIPSService + oid: 1.3.6.1.4.1.2604.5.1.3.10 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.10' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosApacheService + oid: 1.3.6.1.4.1.2604.5.1.3.11 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.11' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosNtpService + oid: 1.3.6.1.4.1.2604.5.1.3.12 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.12' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosTomcatService + oid: 1.3.6.1.4.1.2604.5.1.3.13 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.13' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosSSLVpnService + oid: 1.3.6.1.4.1.2604.5.1.3.14 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.14' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosIPSecVpnService + oid: 1.3.6.1.4.1.2604.5.1.3.15 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.15' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosDatabaseservice + oid: 1.3.6.1.4.1.2604.5.1.3.16 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.16' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosNetworkService + oid: 1.3.6.1.4.1.2604.5.1.3.17 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.17' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosGarnerService + oid: 1.3.6.1.4.1.2604.5.1.3.18 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.18' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosDroutingService + oid: 1.3.6.1.4.1.2604.5.1.3.19 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.19' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosSSHdService + oid: 1.3.6.1.4.1.2604.5.1.3.20 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.20' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosDgdService + oid: 1.3.6.1.4.1.2604.5.1.3.21 + type: EnumAsStateSet + help: ' - 1.3.6.1.4.1.2604.5.1.3.21' + enum_values: + 0: untouched + 1: stopped + 2: initializing + 3: running + 4: exiting + 5: dead + 6: frozen + 7: unregistered + - name: sfosHAStatus + oid: 1.3.6.1.4.1.2604.5.1.4.1 + type: EnumAsInfo + help: ' - 1.3.6.1.4.1.2604.5.1.4.1' + enum_values: + 0: disabled + 1: enabled + - name: sfosDeviceCurrentHAState + oid: 1.3.6.1.4.1.2604.5.1.4.4 + type: EnumAsStateSet + help: HA State of current Device - 1.3.6.1.4.1.2604.5.1.4.4 + enum_values: + 0: notapplicable + 1: auxiliary + 2: standAlone + 3: primary + 4: faulty + 5: ready + - name: sfosDevicePeerHAState + oid: 1.3.6.1.4.1.2604.5.1.4.5 + type: EnumAsStateSet + help: HA State of peer Device - 1.3.6.1.4.1.2604.5.1.4.5 + enum_values: + 0: notapplicable + 1: auxiliary + 2: standAlone + 3: primary + 4: faulty + 5: ready + - name: sfosDeviceHAConfigMode + oid: 1.3.6.1.4.1.2604.5.1.4.6 + type: DisplayString + help: HA State of peer Device - 1.3.6.1.4.1.2604.5.1.4.6 + - name: sfosDeviceLoadBalancing + oid: 1.3.6.1.4.1.2604.5.1.4.7 + type: EnumAsInfo + help: sfos device load device - 1.3.6.1.4.1.2604.5.1.4.7 + enum_values: + 0: notapplicable + 1: loadBalanceOff + 2: loadBalanceOn + - name: sfosDeviceHAPort + oid: 1.3.6.1.4.1.2604.5.1.4.8 type: DisplayString - help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), - is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 + help: SFOS dedciated port for HA - 1.3.6.1.4.1.2604.5.1.4.8 + - name: sfosDeviceHACurrentIP + oid: 1.3.6.1.4.1.2604.5.1.4.9 + type: InetAddressIPv4 + help: IPAddress of current Device for HA - 1.3.6.1.4.1.2604.5.1.4.9 + - name: sfosDeviceHAPeerIP + oid: 1.3.6.1.4.1.2604.5.1.4.10 + type: InetAddressIPv4 + help: Peer device IP Address - 1.3.6.1.4.1.2604.5.1.4.10 + - name: sfosDeviceAuxAdminPort + oid: 1.3.6.1.4.1.2604.5.1.4.11.1 + type: DisplayString + help: SFOS Auxiliary Admin Port - 1.3.6.1.4.1.2604.5.1.4.11.1 + - name: sfosDeviceHAAuxAdminIP + oid: 1.3.6.1.4.1.2604.5.1.4.11.2 + type: InetAddressIPv4 + help: SFOS Auxiliary Admin IP - 1.3.6.1.4.1.2604.5.1.4.11.2 + - name: sfosDeviceHAAuxAdminIPv6 + oid: 1.3.6.1.4.1.2604.5.1.4.11.3 + type: OctetString + help: SFOS Auxiliary Admin IPv6 - 1.3.6.1.4.1.2604.5.1.4.11.3 + - name: sfosBaseFWLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.1.1 + type: EnumAsStateSet + help: Base Firewall protection Lic status - 1.3.6.1.4.1.2604.5.1.5.1.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosBaseFWLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.1.2 + type: ParseDateAndTime + help: Base Firewall protection Lic expiry date - 1.3.6.1.4.1.2604.5.1.5.1.2 + datetime_pattern: '%b %d %Y' + - name: sfosNetProtectionLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.2.1 + type: EnumAsStateSet + help: Network Protection registration Lic status - 1.3.6.1.4.1.2604.5.1.5.2.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosNetProtectionLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.2.2 + type: ParseDateAndTime + help: Network Protection Lic Expiry Date - 1.3.6.1.4.1.2604.5.1.5.2.2 + datetime_pattern: '%b %d %Y' + - name: sfosWebProtectionLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.3.1 + type: EnumAsStateSet + help: Web Protection registration Lic status - 1.3.6.1.4.1.2604.5.1.5.3.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosWebProtectionLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.3.2 + type: ParseDateAndTime + help: Web Protection Lic Expiry Date - 1.3.6.1.4.1.2604.5.1.5.3.2 + datetime_pattern: '%b %d %Y' + - name: sfosMailProtectionLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.4.1 + type: EnumAsStateSet + help: EMail Protection Lic Status - 1.3.6.1.4.1.2604.5.1.5.4.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosMailProtectionLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.4.2 + type: ParseDateAndTime + help: EMail Protection Lic Expiry Date - 1.3.6.1.4.1.2604.5.1.5.4.2 + datetime_pattern: '%b %d %Y' + - name: sfosWebServerProtectionLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.5.1 + type: EnumAsStateSet + help: web server Protection Lic status - 1.3.6.1.4.1.2604.5.1.5.5.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosWebServerProtectionLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.5.2 + type: ParseDateAndTime + help: web server Protection Lic Expiry Date - 1.3.6.1.4.1.2604.5.1.5.5.2 + datetime_pattern: '%b %d %Y' + - name: sfosSandstromLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.6.1 + type: EnumAsStateSet + help: sandstrom Protection Lic status - 1.3.6.1.4.1.2604.5.1.5.6.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosSandstromLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.6.2 + type: ParseDateAndTime + help: sandstrom Protection Lic Expiry Date - 1.3.6.1.4.1.2604.5.1.5.6.2 + datetime_pattern: '%b %d %Y' + - name: sfosEnhancedSupportLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.7.1 + type: EnumAsStateSet + help: Enhanced Support Lic Status - 1.3.6.1.4.1.2604.5.1.5.7.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosEnhancedSupportLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.7.2 + type: ParseDateAndTime + help: Enhanced Support Lic expiry date - 1.3.6.1.4.1.2604.5.1.5.7.2 + datetime_pattern: '%b %d %Y' + - name: sfosEnhancedPlusLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.8.1 + type: EnumAsStateSet + help: Enhanced Plus Support Lic Status - 1.3.6.1.4.1.2604.5.1.5.8.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosEnhancedPlusLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.8.2 + type: ParseDateAndTime + help: Enhanced Plus Support Lic expiry date - 1.3.6.1.4.1.2604.5.1.5.8.2 + datetime_pattern: '%b %d %Y' + - name: sfosCentralOrchestrationLicRegStatus + oid: 1.3.6.1.4.1.2604.5.1.5.9.1 + type: EnumAsStateSet + help: Central Orchestration registration Lic Status - 1.3.6.1.4.1.2604.5.1.5.9.1 + enum_values: + 0: none + 1: evaluating + 2: notsubscribed + 3: subscribed + 4: expired + 5: deactivated + - name: sfosCentralOrchestrationLicExpiryDate + oid: 1.3.6.1.4.1.2604.5.1.5.9.2 + type: ParseDateAndTime + help: Central Orchestration Lic expiry date - 1.3.6.1.4.1.2604.5.1.5.9.2 + datetime_pattern: '%b %d %Y' + synology: + walk: + - 1.3.6.1.4.1.6574.1 + - 1.3.6.1.4.1.6574.101 + - 1.3.6.1.4.1.6574.102 + - 1.3.6.1.4.1.6574.104 + - 1.3.6.1.4.1.6574.2 + - 1.3.6.1.4.1.6574.3 + - 1.3.6.1.4.1.6574.4 + - 1.3.6.1.4.1.6574.5 + - 1.3.6.1.4.1.6574.6 + metrics: - name: systemStatus oid: 1.3.6.1.4.1.6574.1.1 type: gauge @@ -24476,42 +39840,313 @@ modules: type: gauge lookups: - labels: - - serviceInfoIndex - labelname: serviceName - oid: 1.3.6.1.4.1.6574.6.1.1.2 + - serviceInfoIndex + labelname: serviceName + oid: 1.3.6.1.4.1.6574.6.1.1.2 + type: DisplayString + - labels: [] + labelname: serviceInfoIndex + - name: serviceName + oid: 1.3.6.1.4.1.6574.6.1.1.2 + type: DisplayString + help: Service name - 1.3.6.1.4.1.6574.6.1.1.2 + indexes: + - labelname: serviceInfoIndex + type: gauge + lookups: + - labels: + - serviceInfoIndex + labelname: serviceName + oid: 1.3.6.1.4.1.6574.6.1.1.2 + type: DisplayString + - 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: serviceInfoIndex + type: gauge + lookups: + - labels: + - serviceInfoIndex + labelname: serviceName + oid: 1.3.6.1.4.1.6574.6.1.1.2 + type: DisplayString + - labels: [] + labelname: serviceInfoIndex + system: + walk: + - 1.3.6.1.2.1.1 + metrics: + - name: sysDescr + oid: 1.3.6.1.2.1.1.1 + type: DisplayString + help: A textual description of the entity - 1.3.6.1.2.1.1.1 + - name: sysObjectID + oid: 1.3.6.1.2.1.1.2 + type: OctetString + help: The vendor's authoritative identification of the network management subsystem + contained in the entity - 1.3.6.1.2.1.1.2 + - name: sysUpTime + oid: 1.3.6.1.2.1.1.3 + type: gauge + help: The time (in hundredths of a second) since the network management portion + of the system was last re-initialized. - 1.3.6.1.2.1.1.3 + - name: sysContact + oid: 1.3.6.1.2.1.1.4 + type: DisplayString + help: The textual identification of the contact person for this managed node, + together with information on how to contact this person - 1.3.6.1.2.1.1.4 + - name: sysName + oid: 1.3.6.1.2.1.1.5 + type: DisplayString + help: An administratively-assigned name for this managed node - 1.3.6.1.2.1.1.5 + - name: sysLocation + oid: 1.3.6.1.2.1.1.6 + type: DisplayString + help: The physical location of this node (e.g., 'telephone closet, 3rd floor') + - 1.3.6.1.2.1.1.6 + - name: sysServices + oid: 1.3.6.1.2.1.1.7 + type: gauge + help: A value which indicates the set of services that this entity may potentially + offer - 1.3.6.1.2.1.1.7 + - name: sysORLastChange + oid: 1.3.6.1.2.1.1.8 + type: gauge + help: The value of sysUpTime at the time of the most recent change in state + or value of any instance of sysORID. - 1.3.6.1.2.1.1.8 + - name: sysORIndex + oid: 1.3.6.1.2.1.1.9.1.1 + type: gauge + help: The auxiliary variable used for identifying instances of the columnar + objects in the sysORTable. - 1.3.6.1.2.1.1.9.1.1 + indexes: + - labelname: sysORIndex + type: gauge + lookups: + - labels: + - sysORIndex + labelname: sysORDescr + oid: 1.3.6.1.2.1.1.9.1.3 + type: DisplayString + - name: sysORID + oid: 1.3.6.1.2.1.1.9.1.2 + type: OctetString + help: An authoritative identification of a capabilities statement with respect + to various MIB modules supported by the local SNMP application acting as a + command responder. - 1.3.6.1.2.1.1.9.1.2 + indexes: + - labelname: sysORIndex + type: gauge + lookups: + - labels: + - sysORIndex + labelname: sysORDescr + oid: 1.3.6.1.2.1.1.9.1.3 + type: DisplayString + - name: sysORDescr + oid: 1.3.6.1.2.1.1.9.1.3 + type: DisplayString + help: A textual description of the capabilities identified by the corresponding + instance of sysORID. - 1.3.6.1.2.1.1.9.1.3 + indexes: + - labelname: sysORIndex + type: gauge + lookups: + - labels: + - sysORIndex + labelname: sysORDescr + oid: 1.3.6.1.2.1.1.9.1.3 + type: DisplayString + - name: sysORUpTime + oid: 1.3.6.1.2.1.1.9.1.4 + type: gauge + help: The value of sysUpTime at the time this conceptual row was last instantiated. + - 1.3.6.1.2.1.1.9.1.4 + indexes: + - labelname: sysORIndex + type: gauge + lookups: + - labels: + - sysORIndex + labelname: sysORDescr + oid: 1.3.6.1.2.1.1.9.1.3 + type: DisplayString + tplink-ddm: + walk: + - 1.3.6.1.2.1.31.1.1.1.1 + - 1.3.6.1.2.1.31.1.1.1.18 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.2 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.3 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.4 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.5 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.6 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.8 + - 1.3.6.1.4.1.11863.6.96.1.7.1.1.9 + metrics: + - name: ddmStatusTemperature + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.2 + type: DisplayString + help: This object indicates the temperature of the port. - 1.3.6.1.4.1.11863.6.96.1.7.1.1.2 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: $1 + regex: ^(?:^(\d+\.\d+).*)$ + - name: ddmStatusVoltage + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.3 + type: DisplayString + help: This object indicates the voltage of the port. - 1.3.6.1.4.1.11863.6.96.1.7.1.1.3 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: $1 + regex: ^(?:^(\d+\.\d+).*)$ + - name: ddmStatusBiasCurrent + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.4 + type: DisplayString + help: This object indicates the bias current of the port. - 1.3.6.1.4.1.11863.6.96.1.7.1.1.4 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: $1 + regex: ^(?:^(\d+\.\d+).*)$ + - name: ddmStatusTxPow + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.5 + type: DisplayString + help: This object indicates the tx power of the port. - 1.3.6.1.4.1.11863.6.96.1.7.1.1.5 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: $1 + regex: ^(?:^(\d+\.\d+).*)$ + - name: ddmStatusRxPow + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.6 + type: DisplayString + help: This object indicates the rx power of the port. - 1.3.6.1.4.1.11863.6.96.1.7.1.1.6 + indexes: + - labelname: ifIndex + type: gauge + lookups: + - labels: + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 + type: DisplayString + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 type: DisplayString - - labels: [] - labelname: serviceInfoIndex - - name: serviceName - oid: 1.3.6.1.4.1.6574.6.1.1.2 + regex_extracts: + "": + - value: $1 + regex: ^(?:^(\d+\.\d+).*)$ + - name: ddmStatusLossSignal + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.8 type: DisplayString - help: Service name - 1.3.6.1.4.1.6574.6.1.1.2 + help: This object indicates whether local SFP reports signal loss or not. - + 1.3.6.1.4.1.11863.6.96.1.7.1.1.8 indexes: - - labelname: serviceInfoIndex + - labelname: ifIndex type: gauge lookups: - labels: - - serviceInfoIndex - labelname: serviceName - oid: 1.3.6.1.4.1.6574.6.1.1.2 + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 type: DisplayString - - 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 + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: "0" + regex: ^(?:False)$ + - value: "1" + regex: ^(?:True)$ + - name: ddmStatusTxFault + oid: 1.3.6.1.4.1.11863.6.96.1.7.1.1.9 + type: DisplayString + help: This object indicates whether remote SFP reports signal loss or not. - + 1.3.6.1.4.1.11863.6.96.1.7.1.1.9 indexes: - - labelname: serviceInfoIndex + - labelname: ifIndex type: gauge lookups: - labels: - - serviceInfoIndex - labelname: serviceName - oid: 1.3.6.1.4.1.6574.6.1.1.2 + - ifIndex + labelname: ifAlias + oid: 1.3.6.1.2.1.31.1.1.1.18 type: DisplayString - - labels: [] - labelname: serviceInfoIndex + - labels: + - ifIndex + labelname: ifName + oid: 1.3.6.1.2.1.31.1.1.1.1 + type: DisplayString + regex_extracts: + "": + - value: "0" + regex: ^(?:False)$ + - value: "1" + regex: ^(?:True)$ ubiquiti_airfiber: walk: - 1.3.6.1.4.1.41112.1.3 @@ -26773,22445 +42408,526 @@ modules: type: gauge help: ' - 1.3.6.1.4.1.41112.1.6.1.2.1.21' indexes: - - labelname: unifiVapIndex + - labelname: unifiVapIndex + type: gauge + lookups: + - labels: + - unifiVapIndex + labelname: unifiVapName + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 + type: DisplayString + - labels: + - unifiVapIndex + labelname: unifiVapEssId + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + type: DisplayString + - name: unifiVapUp + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.22 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.1.2.1.22' + indexes: + - labelname: unifiVapIndex + type: gauge + lookups: + - labels: + - unifiVapIndex + labelname: unifiVapName + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 + type: DisplayString + - labels: + - unifiVapIndex + labelname: unifiVapEssId + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + type: DisplayString + enum_values: + 1: "true" + 2: "false" + - name: unifiVapUsage + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.23 + type: DisplayString + help: guest or regular user - 1.3.6.1.4.1.41112.1.6.1.2.1.23 + indexes: + - labelname: unifiVapIndex + type: gauge + lookups: + - labels: + - unifiVapIndex + labelname: unifiVapName + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 + type: DisplayString + - labels: + - unifiVapIndex + labelname: unifiVapEssId + oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + type: DisplayString + - name: unifiIfIndex + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.1 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.1' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfFullDuplex + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.2 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.2' + indexes: + - labelname: unifiIfIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: unifiIfIp + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.3 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.3' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfMac + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.4 + type: PhysAddress48 + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.4' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfName + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.5 + type: DisplayString + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.5' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfRxBytes + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.6 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.6' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfRxDropped + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.7 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.7' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfRxError + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.8 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.8' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfRxMulticast + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.9 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.9' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfRxPackets + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.10 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.10' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfSpeed + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.11 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.11' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfTxBytes + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.12 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.12' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfTxDropped + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.13 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.13' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfTxError + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.14 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.14' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfTxPackets + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.15 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.15' + indexes: + - labelname: unifiIfIndex + type: gauge + - name: unifiIfUp + oid: 1.3.6.1.4.1.41112.1.6.2.1.1.16 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.16' + indexes: + - labelname: unifiIfIndex + type: gauge + enum_values: + 1: "true" + 2: "false" + - name: unifiApSystemIp + oid: 1.3.6.1.4.1.41112.1.6.3.1 + type: InetAddressIPv4 + help: ' - 1.3.6.1.4.1.41112.1.6.3.1' + - name: unifiApSystemIsolated + oid: 1.3.6.1.4.1.41112.1.6.3.2 + type: gauge + help: ' - 1.3.6.1.4.1.41112.1.6.3.2' + enum_values: + 1: "true" + 2: "false" + - name: unifiApSystemModel + oid: 1.3.6.1.4.1.41112.1.6.3.3 + type: DisplayString + help: ' - 1.3.6.1.4.1.41112.1.6.3.3' + - name: unifiApSystemUplink + oid: 1.3.6.1.4.1.41112.1.6.3.4 + type: DisplayString + help: ' - 1.3.6.1.4.1.41112.1.6.3.4' + - name: unifiApSystemUptime + oid: 1.3.6.1.4.1.41112.1.6.3.5 + type: counter + help: ' - 1.3.6.1.4.1.41112.1.6.3.5' + - name: unifiApSystemVersion + oid: 1.3.6.1.4.1.41112.1.6.3.6 + type: DisplayString + help: ' - 1.3.6.1.4.1.41112.1.6.3.6' + ucd_la_table: + walk: + - 1.3.6.1.4.1.2021.10.1.2 + - 1.3.6.1.4.1.2021.10.1.5 + - 1.3.6.1.4.1.2021.10.1.6 + metrics: + - 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: laIndex type: gauge lookups: - labels: - - unifiVapIndex - labelname: unifiVapName - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 - type: DisplayString - - labels: - - unifiVapIndex - labelname: unifiVapEssId - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + - laIndex + labelname: laNames + oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString - - name: unifiVapUp - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.22 + - labels: [] + labelname: laIndex + - name: laLoadInt + oid: 1.3.6.1.4.1.2021.10.1.5 type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.1.2.1.22' + help: The 1,5 and 15 minute load averages as an integer - 1.3.6.1.4.1.2021.10.1.5 indexes: - - labelname: unifiVapIndex + - labelname: laIndex type: gauge lookups: - labels: - - unifiVapIndex - labelname: unifiVapName - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 - type: DisplayString - - labels: - - unifiVapIndex - labelname: unifiVapEssId - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + - laIndex + labelname: laNames + oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString - enum_values: - 1: "true" - 2: "false" - - name: unifiVapUsage - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.23 - type: DisplayString - help: guest or regular user - 1.3.6.1.4.1.41112.1.6.1.2.1.23 + - labels: [] + labelname: laIndex + - name: laLoadFloat + oid: 1.3.6.1.4.1.2021.10.1.6 + type: Float + help: The 1,5 and 15 minute load averages as an opaquely wrapped floating point + number. - 1.3.6.1.4.1.2021.10.1.6 indexes: - - labelname: unifiVapIndex + - labelname: laIndex type: gauge lookups: - labels: - - unifiVapIndex - labelname: unifiVapName - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.7 - type: DisplayString - - labels: - - unifiVapIndex - labelname: unifiVapEssId - oid: 1.3.6.1.4.1.41112.1.6.1.2.1.6 + - laIndex + labelname: laNames + oid: 1.3.6.1.4.1.2021.10.1.2 type: DisplayString - - name: unifiIfIndex - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.1 + - labels: [] + labelname: laIndex + ucd_memory: + walk: + - 1.3.6.1.4.1.2021.4 + metrics: + - name: memIndex + oid: 1.3.6.1.4.1.2021.4.1 type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.1' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfFullDuplex - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.2 + help: Bogus Index - 1.3.6.1.4.1.2021.4.1 + - name: memErrorName + oid: 1.3.6.1.4.1.2021.4.2 + type: DisplayString + help: Bogus Name - 1.3.6.1.4.1.2021.4.2 + - name: memTotalSwap + oid: 1.3.6.1.4.1.2021.4.3 type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.2' - indexes: - - labelname: unifiIfIndex - type: gauge + help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.3 + - name: memAvailSwap + oid: 1.3.6.1.4.1.2021.4.4 + type: gauge + help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.4 + - name: memTotalReal + oid: 1.3.6.1.4.1.2021.4.5 + type: gauge + help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.5 + - name: memAvailReal + oid: 1.3.6.1.4.1.2021.4.6 + type: gauge + help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.6 + - name: memTotalSwapTXT + oid: 1.3.6.1.4.1.2021.4.7 + type: gauge + help: The total amount of swap space or virtual memory allocated for text pages + on this host - 1.3.6.1.4.1.2021.4.7 + - name: memAvailSwapTXT + oid: 1.3.6.1.4.1.2021.4.8 + type: gauge + help: The amount of swap space or virtual memory currently being used by text + pages on this host - 1.3.6.1.4.1.2021.4.8 + - name: memTotalRealTXT + oid: 1.3.6.1.4.1.2021.4.9 + type: gauge + help: The total amount of real/physical memory allocated for text pages on this + host - 1.3.6.1.4.1.2021.4.9 + - name: memAvailRealTXT + oid: 1.3.6.1.4.1.2021.4.10 + type: gauge + help: The amount of real/physical memory currently being used by text pages + on this host - 1.3.6.1.4.1.2021.4.10 + - name: memTotalFree + oid: 1.3.6.1.4.1.2021.4.11 + type: gauge + help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.11 + - name: memMinimumSwap + oid: 1.3.6.1.4.1.2021.4.12 + type: gauge + help: The minimum amount of swap space expected to be kept free or available + during normal operation of this host - 1.3.6.1.4.1.2021.4.12 + - name: memShared + oid: 1.3.6.1.4.1.2021.4.13 + type: gauge + help: The total amount of real or virtual memory currently allocated for use + as shared memory - 1.3.6.1.4.1.2021.4.13 + - name: memBuffer + oid: 1.3.6.1.4.1.2021.4.14 + type: gauge + help: The total amount of real or virtual memory currently allocated for use + as memory buffers - 1.3.6.1.4.1.2021.4.14 + - name: memCached + oid: 1.3.6.1.4.1.2021.4.15 + type: gauge + help: The total amount of real or virtual memory currently allocated for use + as cached memory - 1.3.6.1.4.1.2021.4.15 + - name: memUsedSwapTXT + oid: 1.3.6.1.4.1.2021.4.16 + type: gauge + help: The amount of swap space or virtual memory currently being used by text + pages on this host - 1.3.6.1.4.1.2021.4.16 + - name: memUsedRealTXT + oid: 1.3.6.1.4.1.2021.4.17 + type: gauge + help: The amount of real/physical memory currently being used by text pages + on this host - 1.3.6.1.4.1.2021.4.17 + - name: memTotalSwapX + oid: 1.3.6.1.4.1.2021.4.18 + type: counter + help: The total amount of swap space configured for this host. - 1.3.6.1.4.1.2021.4.18 + - name: memAvailSwapX + oid: 1.3.6.1.4.1.2021.4.19 + type: counter + help: The amount of swap space currently unused or available. - 1.3.6.1.4.1.2021.4.19 + - name: memTotalRealX + oid: 1.3.6.1.4.1.2021.4.20 + type: counter + help: The total amount of real/physical memory installed on this host. - 1.3.6.1.4.1.2021.4.20 + - name: memAvailRealX + oid: 1.3.6.1.4.1.2021.4.21 + type: counter + help: The amount of real/physical memory currently unused or available. - 1.3.6.1.4.1.2021.4.21 + - name: memTotalFreeX + oid: 1.3.6.1.4.1.2021.4.22 + type: counter + help: The total amount of memory free or available for use on this host - 1.3.6.1.4.1.2021.4.22 + - name: memMinimumSwapX + oid: 1.3.6.1.4.1.2021.4.23 + type: counter + help: The minimum amount of swap space expected to be kept free or available + during normal operation of this host - 1.3.6.1.4.1.2021.4.23 + - name: memSharedX + oid: 1.3.6.1.4.1.2021.4.24 + type: counter + help: The total amount of real or virtual memory currently allocated for use + as shared memory - 1.3.6.1.4.1.2021.4.24 + - name: memBufferX + oid: 1.3.6.1.4.1.2021.4.25 + type: counter + help: The total amount of real or virtual memory currently allocated for use + as memory buffers - 1.3.6.1.4.1.2021.4.25 + - name: memCachedX + oid: 1.3.6.1.4.1.2021.4.26 + type: counter + help: The total amount of real or virtual memory currently allocated for use + as cached memory - 1.3.6.1.4.1.2021.4.26 + - name: memSwapError + oid: 1.3.6.1.4.1.2021.4.100 + type: gauge + help: Indicates whether the amount of available swap space (as reported by 'memAvailSwap(4)'), + is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.100 enum_values: - 1: "true" - 2: "false" - - name: unifiIfIp - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.3 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.3' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfMac - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.4 - type: PhysAddress48 - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.4' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfName - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.5 + 0: noError + 1: error + - name: memSwapErrorMsg + oid: 1.3.6.1.4.1.2021.4.101 type: DisplayString - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.5' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfRxBytes - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.6 + help: Describes whether the amount of available swap space (as reported by 'memAvailSwap(4)'), + is less than the desired minimum (specified by 'memMinimumSwap(12)'). - 1.3.6.1.4.1.2021.4.101 + ucd_system_stats: + walk: + - 1.3.6.1.4.1.2021.11 + metrics: + - name: ssIndex + oid: 1.3.6.1.4.1.2021.11.1 + type: gauge + help: Bogus Index - 1.3.6.1.4.1.2021.11.1 + - name: ssErrorName + oid: 1.3.6.1.4.1.2021.11.2 + type: DisplayString + help: Bogus Name - 1.3.6.1.4.1.2021.11.2 + - name: ssSwapIn + oid: 1.3.6.1.4.1.2021.11.3 + type: gauge + help: The average amount of memory swapped in from disk, calculated over the + last minute. - 1.3.6.1.4.1.2021.11.3 + - name: ssSwapOut + oid: 1.3.6.1.4.1.2021.11.4 + type: gauge + help: The average amount of memory swapped out to disk, calculated over the + last minute. - 1.3.6.1.4.1.2021.11.4 + - name: ssIOSent + oid: 1.3.6.1.4.1.2021.11.5 + type: gauge + help: The average amount of data written to disk or other block device, calculated + over the last minute - 1.3.6.1.4.1.2021.11.5 + - name: ssIOReceive + oid: 1.3.6.1.4.1.2021.11.6 + type: gauge + help: The average amount of data read from disk or other block device, calculated + over the last minute - 1.3.6.1.4.1.2021.11.6 + - name: ssSysInterrupts + oid: 1.3.6.1.4.1.2021.11.7 + type: gauge + help: The average rate of interrupts processed (including the clock) calculated + over the last minute - 1.3.6.1.4.1.2021.11.7 + - name: ssSysContext + oid: 1.3.6.1.4.1.2021.11.8 + type: gauge + help: The average rate of context switches, calculated over the last minute + - 1.3.6.1.4.1.2021.11.8 + - name: ssCpuUser + oid: 1.3.6.1.4.1.2021.11.9 + type: gauge + help: The percentage of CPU time spent processing user-level code, calculated + over the last minute - 1.3.6.1.4.1.2021.11.9 + - name: ssCpuSystem + oid: 1.3.6.1.4.1.2021.11.10 + type: gauge + help: The percentage of CPU time spent processing system-level code, calculated + over the last minute - 1.3.6.1.4.1.2021.11.10 + - name: ssCpuIdle + oid: 1.3.6.1.4.1.2021.11.11 + type: gauge + help: The percentage of processor time spent idle, calculated over the last + minute - 1.3.6.1.4.1.2021.11.11 + - name: ssCpuRawUser + oid: 1.3.6.1.4.1.2021.11.50 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.6' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfRxDropped - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.7 + help: The number of 'ticks' (typically 1/100s) spent processing user-level code + - 1.3.6.1.4.1.2021.11.50 + - name: ssCpuRawNice + oid: 1.3.6.1.4.1.2021.11.51 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.7' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfRxError - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.8 + help: The number of 'ticks' (typically 1/100s) spent processing reduced-priority + code - 1.3.6.1.4.1.2021.11.51 + - name: ssCpuRawSystem + oid: 1.3.6.1.4.1.2021.11.52 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.8' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfRxMulticast - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.9 + help: The number of 'ticks' (typically 1/100s) spent processing system-level + code - 1.3.6.1.4.1.2021.11.52 + - name: ssCpuRawIdle + oid: 1.3.6.1.4.1.2021.11.53 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.9' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfRxPackets - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.10 + help: The number of 'ticks' (typically 1/100s) spent idle - 1.3.6.1.4.1.2021.11.53 + - name: ssCpuRawWait + oid: 1.3.6.1.4.1.2021.11.54 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.10' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfSpeed - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.11 - type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.11' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfTxBytes - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.12 + help: The number of 'ticks' (typically 1/100s) spent waiting for IO - 1.3.6.1.4.1.2021.11.54 + - name: ssCpuRawKernel + oid: 1.3.6.1.4.1.2021.11.55 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.12' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfTxDropped - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.13 + help: The number of 'ticks' (typically 1/100s) spent processing kernel-level + code - 1.3.6.1.4.1.2021.11.55 + - name: ssCpuRawInterrupt + oid: 1.3.6.1.4.1.2021.11.56 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.13' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfTxError - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.14 + help: The number of 'ticks' (typically 1/100s) spent processing hardware interrupts + - 1.3.6.1.4.1.2021.11.56 + - name: ssIORawSent + oid: 1.3.6.1.4.1.2021.11.57 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.14' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfTxPackets - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.15 + help: Number of blocks sent to a block device - 1.3.6.1.4.1.2021.11.57 + - name: ssIORawReceived + oid: 1.3.6.1.4.1.2021.11.58 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.15' - indexes: - - labelname: unifiIfIndex - type: gauge - - name: unifiIfUp - oid: 1.3.6.1.4.1.41112.1.6.2.1.1.16 - type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.2.1.1.16' - indexes: - - labelname: unifiIfIndex - type: gauge - enum_values: - 1: "true" - 2: "false" - - name: unifiApSystemIp - oid: 1.3.6.1.4.1.41112.1.6.3.1 - type: InetAddressIPv4 - help: ' - 1.3.6.1.4.1.41112.1.6.3.1' - - name: unifiApSystemIsolated - oid: 1.3.6.1.4.1.41112.1.6.3.2 - type: gauge - help: ' - 1.3.6.1.4.1.41112.1.6.3.2' - enum_values: - 1: "true" - 2: "false" - - name: unifiApSystemModel - oid: 1.3.6.1.4.1.41112.1.6.3.3 - type: DisplayString - help: ' - 1.3.6.1.4.1.41112.1.6.3.3' - - name: unifiApSystemUplink - oid: 1.3.6.1.4.1.41112.1.6.3.4 - type: DisplayString - help: ' - 1.3.6.1.4.1.41112.1.6.3.4' - - name: unifiApSystemUptime - oid: 1.3.6.1.4.1.41112.1.6.3.5 + help: Number of blocks received from a block device - 1.3.6.1.4.1.2021.11.58 + - name: ssRawInterrupts + oid: 1.3.6.1.4.1.2021.11.59 type: counter - help: ' - 1.3.6.1.4.1.41112.1.6.3.5' - - name: unifiApSystemVersion - oid: 1.3.6.1.4.1.41112.1.6.3.6 - type: DisplayString - help: ' - 1.3.6.1.4.1.41112.1.6.3.6' - wiener_mpod: - walk: - - 1.3.6.1.4.1.19947.1.3.2.1.10 - - 1.3.6.1.4.1.19947.1.3.2.1.11 - - 1.3.6.1.4.1.19947.1.3.2.1.12 - - 1.3.6.1.4.1.19947.1.3.2.1.13 - - 1.3.6.1.4.1.19947.1.3.2.1.14 - - 1.3.6.1.4.1.19947.1.3.2.1.15 - - 1.3.6.1.4.1.19947.1.3.2.1.5 - - 1.3.6.1.4.1.19947.1.3.2.1.6 - - 1.3.6.1.4.1.19947.1.3.2.1.7 - - 1.3.6.1.4.1.19947.1.3.2.1.8 - - 1.3.6.1.4.1.19947.1.3.2.1.9 - - 1.3.6.1.4.1.19947.1.3.6.1.8 - - 1.3.6.1.4.1.19947.1.3.6.1.9 - - 1.3.6.1.4.1.19947.1.4.2.1.2 - - 1.3.6.1.4.1.19947.1.7.8.1.2 - get: - - 1.3.6.1.4.1.19947.1.1.1.0 - - 1.3.6.1.4.1.19947.1.1.11.0 - - 1.3.6.1.4.1.19947.1.1.2.0 - - 1.3.6.1.4.1.19947.1.3.1.0 - metrics: - - name: sysMainSwitch - oid: 1.3.6.1.4.1.19947.1.1.1 - type: gauge - help: 'Read: An enumerated value which shows the current state of the crates - main switch - 1.3.6.1.4.1.19947.1.1.1' - enum_values: - 0: "off" - 1: "on" - - name: sysOperatingTime - oid: 1.3.6.1.4.1.19947.1.1.11 + help: Number of interrupts processed - 1.3.6.1.4.1.2021.11.59 + - name: ssRawContexts + oid: 1.3.6.1.4.1.2021.11.60 + type: counter + help: Number of context switches - 1.3.6.1.4.1.2021.11.60 + - name: ssCpuRawSoftIRQ + oid: 1.3.6.1.4.1.2021.11.61 + type: counter + help: The number of 'ticks' (typically 1/100s) spent processing software interrupts + - 1.3.6.1.4.1.2021.11.61 + - name: ssRawSwapIn + oid: 1.3.6.1.4.1.2021.11.62 + type: counter + help: Number of blocks swapped in - 1.3.6.1.4.1.2021.11.62 + - name: ssRawSwapOut + oid: 1.3.6.1.4.1.2021.11.63 + type: counter + help: Number of blocks swapped out - 1.3.6.1.4.1.2021.11.63 + - name: ssCpuRawSteal + oid: 1.3.6.1.4.1.2021.11.64 + type: counter + help: The number of 'ticks' (typically 1/100s) spent by the hypervisor code + to run other VMs even though the CPU in the current VM had something runnable + - 1.3.6.1.4.1.2021.11.64 + - name: ssCpuRawGuest + oid: 1.3.6.1.4.1.2021.11.65 + type: counter + help: The number of 'ticks' (typically 1/100s) spent by the CPU to run a virtual + CPU (guest) - 1.3.6.1.4.1.2021.11.65 + - name: ssCpuRawGuestNice + oid: 1.3.6.1.4.1.2021.11.66 + type: counter + help: The number of 'ticks' (typically 1/100s) spent by the CPU to run a niced + virtual CPU (guest) - 1.3.6.1.4.1.2021.11.66 + - name: ssCpuNumCpus + oid: 1.3.6.1.4.1.2021.11.67 type: gauge - help: The time in seconds for how long the controller was in action. - 1.3.6.1.4.1.19947.1.1.11 - - name: sysStatus - oid: 1.3.6.1.4.1.19947.1.1.2 - type: Bits - help: A bit string which shows the status (health) of the complete crate - 1.3.6.1.4.1.19947.1.1.2 - enum_values: - 0: mainOn - 1: mainInhibit - 2: localControlOnly - 3: inputFailure - 4: outputFailure - 5: fantrayFailure - 6: sensorFailure - 7: vmeSysfail - 8: plugAndPlayIncompatible - 9: busReset - 10: supplyDerating - 11: supplyFailure - 12: supplyDerating2 - 13: supplyFailure2 - - name: outputNumber - oid: 1.3.6.1.4.1.19947.1.3.1 - type: gauge - help: The number of output channels of the crate. - 1.3.6.1.4.1.19947.1.3.1 - - name: outputVoltage - oid: 1.3.6.1.4.1.19947.1.3.2.1.10 - type: Float - help: The nominal output voltage of the channel. - 1.3.6.1.4.1.19947.1.3.2.1.10 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputAdjustVoltage - oid: 1.3.6.1.4.1.19947.1.3.2.1.11 - type: gauge - help: A posibillity to make small changes of the output voltage. - 1.3.6.1.4.1.19947.1.3.2.1.11 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputCurrent - oid: 1.3.6.1.4.1.19947.1.3.2.1.12 - type: Float - help: The current limit of the channel. - 1.3.6.1.4.1.19947.1.3.2.1.12 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputVoltageRiseRate - oid: 1.3.6.1.4.1.19947.1.3.2.1.13 - type: Float - help: Voltage Fall Slew Rate [V/s] - 1.3.6.1.4.1.19947.1.3.2.1.13 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputVoltageFallRate - oid: 1.3.6.1.4.1.19947.1.3.2.1.14 - type: Float - help: Voltage Rise Slew Rate [V/s] - 1.3.6.1.4.1.19947.1.3.2.1.14 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputSupervisionBehavior - oid: 1.3.6.1.4.1.19947.1.3.2.1.15 - type: gauge - help: A bit field packed into an integer which define the behavior of the output - channel / power supply after failures - 1.3.6.1.4.1.19947.1.3.2.1.15 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputMeasurementSenseVoltage - oid: 1.3.6.1.4.1.19947.1.3.2.1.5 - type: Float - help: The measured voltage at the sense input lines. - 1.3.6.1.4.1.19947.1.3.2.1.5 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputMeasurementTerminalVoltage - oid: 1.3.6.1.4.1.19947.1.3.2.1.6 - type: Float - help: The measured voltage at the output terminals. - 1.3.6.1.4.1.19947.1.3.2.1.6 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputMeasurementCurrent - oid: 1.3.6.1.4.1.19947.1.3.2.1.7 - type: Float - help: The measured output current. - 1.3.6.1.4.1.19947.1.3.2.1.7 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - - name: outputMeasurementTemperature - oid: 1.3.6.1.4.1.19947.1.3.2.1.8 - type: gauge - help: The measured temperature of the power module. - 1.3.6.1.4.1.19947.1.3.2.1.8 - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - enum_values: - -128: ok - 127: failure - - name: outputSwitch - oid: 1.3.6.1.4.1.19947.1.3.2.1.9 - type: gauge - help: 'Read: An enumerated value which shows the current state of the output - channel - 1.3.6.1.4.1.19947.1.3.2.1.9' - indexes: - - labelname: outputIndex - type: gauge - enum_values: - 1: u0 - 2: u1 - 3: u2 - 4: u3 - 5: u4 - 6: u5 - 7: u6 - 8: u7 - 9: u8 - 10: u9 - 11: u10 - 12: u11 - 13: u12 - 14: u13 - 15: u14 - 16: u15 - 17: u16 - 18: u17 - 19: u18 - 20: u19 - 21: u20 - 22: u21 - 23: u22 - 24: u23 - 25: u24 - 26: u25 - 27: u26 - 28: u27 - 29: u28 - 30: u29 - 31: u30 - 32: u31 - 33: u32 - 34: u33 - 35: u34 - 36: u35 - 37: u36 - 38: u37 - 39: u38 - 40: u39 - 41: u40 - 42: u41 - 43: u42 - 44: u43 - 45: u44 - 46: u45 - 47: u46 - 48: u47 - 49: u48 - 50: u49 - 51: u50 - 52: u51 - 53: u52 - 54: u53 - 55: u54 - 56: u55 - 57: u56 - 58: u57 - 59: u58 - 60: u59 - 61: u60 - 62: u61 - 63: u62 - 64: u63 - 65: u64 - 66: u65 - 67: u66 - 68: u67 - 69: u68 - 70: u69 - 71: u70 - 72: u71 - 73: u72 - 74: u73 - 75: u74 - 76: u75 - 77: u76 - 78: u77 - 79: u78 - 80: u79 - 81: u80 - 82: u81 - 83: u82 - 84: u83 - 85: u84 - 86: u85 - 87: u86 - 88: u87 - 89: u88 - 90: u89 - 91: u90 - 92: u91 - 93: u92 - 94: u93 - 95: u94 - 96: u95 - 97: u96 - 98: u97 - 99: u98 - 100: u99 - 101: u100 - 102: u101 - 103: u102 - 104: u103 - 105: u104 - 106: u105 - 107: u106 - 108: u107 - 109: u108 - 110: u109 - 111: u110 - 112: u111 - 113: u112 - 114: u113 - 115: u114 - 116: u115 - 117: u116 - 118: u117 - 119: u118 - 120: u119 - 121: u120 - 122: u121 - 123: u122 - 124: u123 - 125: u124 - 126: u125 - 127: u126 - 128: u127 - 129: u128 - 130: u129 - 131: u130 - 132: u131 - 133: u132 - 134: u133 - 135: u134 - 136: u135 - 137: u136 - 138: u137 - 139: u138 - 140: u139 - 141: u140 - 142: u141 - 143: u142 - 144: u143 - 145: u144 - 146: u145 - 147: u146 - 148: u147 - 149: u148 - 150: u149 - 151: u150 - 152: u151 - 153: u152 - 154: u153 - 155: u154 - 156: u155 - 157: u156 - 158: u157 - 159: u158 - 160: u159 - 161: u160 - 162: u161 - 163: u162 - 164: u163 - 165: u164 - 166: u165 - 167: u166 - 168: u167 - 169: u168 - 170: u169 - 171: u170 - 172: u171 - 173: u172 - 174: u173 - 175: u174 - 176: u175 - 177: u176 - 178: u177 - 179: u178 - 180: u179 - 181: u180 - 182: u181 - 183: u182 - 184: u183 - 185: u184 - 186: u185 - 187: u186 - 188: u187 - 189: u188 - 190: u189 - 191: u190 - 192: u191 - 193: u192 - 194: u193 - 195: u194 - 196: u195 - 197: u196 - 198: u197 - 199: u198 - 200: u199 - 201: u200 - 202: u201 - 203: u202 - 204: u203 - 205: u204 - 206: u205 - 207: u206 - 208: u207 - 209: u208 - 210: u209 - 211: u210 - 212: u211 - 213: u212 - 214: u213 - 215: u214 - 216: u215 - 217: u216 - 218: u217 - 219: u218 - 220: u219 - 221: u220 - 222: u221 - 223: u222 - 224: u223 - 225: u224 - 226: u225 - 227: u226 - 228: u227 - 229: u228 - 230: u229 - 231: u230 - 232: u231 - 233: u232 - 234: u233 - 235: u234 - 236: u235 - 237: u236 - 238: u237 - 239: u238 - 240: u239 - 241: u240 - 242: u241 - 243: u242 - 244: u243 - 245: u244 - 246: u245 - 247: u246 - 248: u247 - 249: u248 - 250: u249 - 251: u250 - 252: u251 - 253: u252 - 254: u253 - 255: u254 - 256: u255 - 257: u256 - 258: u257 - 259: u258 - 260: u259 - 261: u260 - 262: u261 - 263: u262 - 264: u263 - 265: u264 - 266: u265 - 267: u266 - 268: u267 - 269: u268 - 270: u269 - 271: u270 - 272: u271 - 273: u272 - 274: u273 - 275: u274 - 276: u275 - 277: u276 - 278: u277 - 279: u278 - 280: u279 - 281: u280 - 282: u281 - 283: u282 - 284: u283 - 285: u284 - 286: u285 - 287: u286 - 288: u287 - 289: u288 - 290: u289 - 291: u290 - 292: u291 - 293: u292 - 294: u293 - 295: u294 - 296: u295 - 297: u296 - 298: u297 - 299: u298 - 300: u299 - 301: u300 - 302: u301 - 303: u302 - 304: u303 - 305: u304 - 306: u305 - 307: u306 - 308: u307 - 309: u308 - 310: u309 - 311: u310 - 312: u311 - 313: u312 - 314: u313 - 315: u314 - 316: u315 - 317: u316 - 318: u317 - 319: u318 - 320: u319 - 321: u320 - 322: u321 - 323: u322 - 324: u323 - 325: u324 - 326: u325 - 327: u326 - 328: u327 - 329: u328 - 330: u329 - 331: u330 - 332: u331 - 333: u332 - 334: u333 - 335: u334 - 336: u335 - 337: u336 - 338: u337 - 339: u338 - 340: u339 - 341: u340 - 342: u341 - 343: u342 - 344: u343 - 345: u344 - 346: u345 - 347: u346 - 348: u347 - 349: u348 - 350: u349 - 351: u350 - 352: u351 - 353: u352 - 354: u353 - 355: u354 - 356: u355 - 357: u356 - 358: u357 - 359: u358 - 360: u359 - 361: u360 - 362: u361 - 363: u362 - 364: u363 - 365: u364 - 366: u365 - 367: u366 - 368: u367 - 369: u368 - 370: u369 - 371: u370 - 372: u371 - 373: u372 - 374: u373 - 375: u374 - 376: u375 - 377: u376 - 378: u377 - 379: u378 - 380: u379 - 381: u380 - 382: u381 - 383: u382 - 384: u383 - 385: u384 - 386: u385 - 387: u386 - 388: u387 - 389: u388 - 390: u389 - 391: u390 - 392: u391 - 393: u392 - 394: u393 - 395: u394 - 396: u395 - 397: u396 - 398: u397 - 399: u398 - 400: u399 - 401: u400 - 402: u401 - 403: u402 - 404: u403 - 405: u404 - 406: u405 - 407: u406 - 408: u407 - 409: u408 - 410: u409 - 411: u410 - 412: u411 - 413: u412 - 414: u413 - 415: u414 - 416: u415 - 417: u416 - 418: u417 - 419: u418 - 420: u419 - 421: u420 - 422: u421 - 423: u422 - 424: u423 - 425: u424 - 426: u425 - 427: u426 - 428: u427 - 429: u428 - 430: u429 - 431: u430 - 432: u431 - 433: u432 - 434: u433 - 435: u434 - 436: u435 - 437: u436 - 438: u437 - 439: u438 - 440: u439 - 441: u440 - 442: u441 - 443: u442 - 444: u443 - 445: u444 - 446: u445 - 447: u446 - 448: u447 - 449: u448 - 450: u449 - 451: u450 - 452: u451 - 453: u452 - 454: u453 - 455: u454 - 456: u455 - 457: u456 - 458: u457 - 459: u458 - 460: u459 - 461: u460 - 462: u461 - 463: u462 - 464: u463 - 465: u464 - 466: u465 - 467: u466 - 468: u467 - 469: u468 - 470: u469 - 471: u470 - 472: u471 - 473: u472 - 474: u473 - 475: u474 - 476: u475 - 477: u476 - 478: u477 - 479: u478 - 480: u479 - 481: u480 - 482: u481 - 483: u482 - 484: u483 - 485: u484 - 486: u485 - 487: u486 - 488: u487 - 489: u488 - 490: u489 - 491: u490 - 492: u491 - 493: u492 - 494: u493 - 495: u494 - 496: u495 - 497: u496 - 498: u497 - 499: u498 - 500: u499 - 501: u500 - 502: u501 - 503: u502 - 504: u503 - 505: u504 - 506: u505 - 507: u506 - 508: u507 - 509: u508 - 510: u509 - 511: u510 - 512: u511 - 513: u512 - 514: u513 - 515: u514 - 516: u515 - 517: u516 - 518: u517 - 519: u518 - 520: u519 - 521: u520 - 522: u521 - 523: u522 - 524: u523 - 525: u524 - 526: u525 - 527: u526 - 528: u527 - 529: u528 - 530: u529 - 531: u530 - 532: u531 - 533: u532 - 534: u533 - 535: u534 - 536: u535 - 537: u536 - 538: u537 - 539: u538 - 540: u539 - 541: u540 - 542: u541 - 543: u542 - 544: u543 - 545: u544 - 546: u545 - 547: u546 - 548: u547 - 549: u548 - 550: u549 - 551: u550 - 552: u551 - 553: u552 - 554: u553 - 555: u554 - 556: u555 - 557: u556 - 558: u557 - 559: u558 - 560: u559 - 561: u560 - 562: u561 - 563: u562 - 564: u563 - 565: u564 - 566: u565 - 567: u566 - 568: u567 - 569: u568 - 570: u569 - 571: u570 - 572: u571 - 573: u572 - 574: u573 - 575: u574 - 576: u575 - 577: u576 - 578: u577 - 579: u578 - 580: u579 - 581: u580 - 582: u581 - 583: u582 - 584: u583 - 585: u584 - 586: u585 - 587: u586 - 588: u587 - 589: u588 - 590: u589 - 591: u590 - 592: u591 - 593: u592 - 594: u593 - 595: u594 - 596: u595 - 597: u596 - 598: u597 - 599: u598 - 600: u599 - 601: u600 - 602: u601 - 603: u602 - 604: u603 - 605: u604 - 606: u605 - 607: u606 - 608: u607 - 609: u608 - 610: u609 - 611: u610 - 612: u611 - 613: u612 - 614: u613 - 615: u614 - 616: u615 - 617: u616 - 618: u617 - 619: u618 - 620: u619 - 621: u620 - 622: u621 - 623: u622 - 624: u623 - 625: u624 - 626: u625 - 627: u626 - 628: u627 - 629: u628 - 630: u629 - 631: u630 - 632: u631 - 633: u632 - 634: u633 - 635: u634 - 636: u635 - 637: u636 - 638: u637 - 639: u638 - 640: u639 - 641: u640 - 642: u641 - 643: u642 - 644: u643 - 645: u644 - 646: u645 - 647: u646 - 648: u647 - 649: u648 - 650: u649 - 651: u650 - 652: u651 - 653: u652 - 654: u653 - 655: u654 - 656: u655 - 657: u656 - 658: u657 - 659: u658 - 660: u659 - 661: u660 - 662: u661 - 663: u662 - 664: u663 - 665: u664 - 666: u665 - 667: u666 - 668: u667 - 669: u668 - 670: u669 - 671: u670 - 672: u671 - 673: u672 - 674: u673 - 675: u674 - 676: u675 - 677: u676 - 678: u677 - 679: u678 - 680: u679 - 681: u680 - 682: u681 - 683: u682 - 684: u683 - 685: u684 - 686: u685 - 687: u686 - 688: u687 - 689: u688 - 690: u689 - 691: u690 - 692: u691 - 693: u692 - 694: u693 - 695: u694 - 696: u695 - 697: u696 - 698: u697 - 699: u698 - 700: u699 - 701: u700 - 702: u701 - 703: u702 - 704: u703 - 705: u704 - 706: u705 - 707: u706 - 708: u707 - 709: u708 - 710: u709 - 711: u710 - 712: u711 - 713: u712 - 714: u713 - 715: u714 - 716: u715 - 717: u716 - 718: u717 - 719: u718 - 720: u719 - 721: u720 - 722: u721 - 723: u722 - 724: u723 - 725: u724 - 726: u725 - 727: u726 - 728: u727 - 729: u728 - 730: u729 - 731: u730 - 732: u731 - 733: u732 - 734: u733 - 735: u734 - 736: u735 - 737: u736 - 738: u737 - 739: u738 - 740: u739 - 741: u740 - 742: u741 - 743: u742 - 744: u743 - 745: u744 - 746: u745 - 747: u746 - 748: u747 - 749: u748 - 750: u749 - 751: u750 - 752: u751 - 753: u752 - 754: u753 - 755: u754 - 756: u755 - 757: u756 - 758: u757 - 759: u758 - 760: u759 - 761: u760 - 762: u761 - 763: u762 - 764: u763 - 765: u764 - 766: u765 - 767: u766 - 768: u767 - 769: u768 - 770: u769 - 771: u770 - 772: u771 - 773: u772 - 774: u773 - 775: u774 - 776: u775 - 777: u776 - 778: u777 - 779: u778 - 780: u779 - 781: u780 - 782: u781 - 783: u782 - 784: u783 - 785: u784 - 786: u785 - 787: u786 - 788: u787 - 789: u788 - 790: u789 - 791: u790 - 792: u791 - 793: u792 - 794: u793 - 795: u794 - 796: u795 - 797: u796 - 798: u797 - 799: u798 - 800: u799 - 801: u800 - 802: u801 - 803: u802 - 804: u803 - 805: u804 - 806: u805 - 807: u806 - 808: u807 - 809: u808 - 810: u809 - 811: u810 - 812: u811 - 813: u812 - 814: u813 - 815: u814 - 816: u815 - 817: u816 - 818: u817 - 819: u818 - 820: u819 - 821: u820 - 822: u821 - 823: u822 - 824: u823 - 825: u824 - 826: u825 - 827: u826 - 828: u827 - 829: u828 - 830: u829 - 831: u830 - 832: u831 - 833: u832 - 834: u833 - 835: u834 - 836: u835 - 837: u836 - 838: u837 - 839: u838 - 840: u839 - 841: u840 - 842: u841 - 843: u842 - 844: u843 - 845: u844 - 846: u845 - 847: u846 - 848: u847 - 849: u848 - 850: u849 - 851: u850 - 852: u851 - 853: u852 - 854: u853 - 855: u854 - 856: u855 - 857: u856 - 858: u857 - 859: u858 - 860: u859 - 861: u860 - 862: u861 - 863: u862 - 864: u863 - 865: u864 - 866: u865 - 867: u866 - 868: u867 - 869: u868 - 870: u869 - 871: u870 - 872: u871 - 873: u872 - 874: u873 - 875: u874 - 876: u875 - 877: u876 - 878: u877 - 879: u878 - 880: u879 - 881: u880 - 882: u881 - 883: u882 - 884: u883 - 885: u884 - 886: u885 - 887: u886 - 888: u887 - 889: u888 - 890: u889 - 891: u890 - 892: u891 - 893: u892 - 894: u893 - 895: u894 - 896: u895 - 897: u896 - 898: u897 - 899: u898 - 900: u899 - 901: u900 - 902: u901 - 903: u902 - 904: u903 - 905: u904 - 906: u905 - 907: u906 - 908: u907 - 909: u908 - 910: u909 - 911: u910 - 912: u911 - 913: u912 - 914: u913 - 915: u914 - 916: u915 - 917: u916 - 918: u917 - 919: u918 - 920: u919 - 921: u920 - 922: u921 - 923: u922 - 924: u923 - 925: u924 - 926: u925 - 927: u926 - 928: u927 - 929: u928 - 930: u929 - 931: u930 - 932: u931 - 933: u932 - 934: u933 - 935: u934 - 936: u935 - 937: u936 - 938: u937 - 939: u938 - 940: u939 - 941: u940 - 942: u941 - 943: u942 - 944: u943 - 945: u944 - 946: u945 - 947: u946 - 948: u947 - 949: u948 - 950: u949 - 951: u950 - 952: u951 - 953: u952 - 954: u953 - 955: u954 - 956: u955 - 957: u956 - 958: u957 - 959: u958 - 960: u959 - 961: u960 - 962: u961 - 963: u962 - 964: u963 - 965: u964 - 966: u965 - 967: u966 - 968: u967 - 969: u968 - 970: u969 - 971: u970 - 972: u971 - 973: u972 - 974: u973 - 975: u974 - 976: u975 - 977: u976 - 978: u977 - 979: u978 - 980: u979 - 981: u980 - 982: u981 - 983: u982 - 984: u983 - 985: u984 - 986: u985 - 987: u986 - 988: u987 - 989: u988 - 990: u989 - 991: u990 - 992: u991 - 993: u992 - 994: u993 - 995: u994 - 996: u995 - 997: u996 - 998: u997 - 999: u998 - 1000: u999 - 1001: u1000 - 1002: u1001 - 1003: u1002 - 1004: u1003 - 1005: u1004 - 1006: u1005 - 1007: u1006 - 1008: u1007 - 1009: u1008 - 1010: u1009 - 1011: u1010 - 1012: u1011 - 1013: u1012 - 1014: u1013 - 1015: u1014 - 1016: u1015 - 1017: u1016 - 1018: u1017 - 1019: u1018 - 1020: u1019 - 1021: u1020 - 1022: u1021 - 1023: u1022 - 1024: u1023 - 1025: u1024 - 1026: u1025 - 1027: u1026 - 1028: u1027 - 1029: u1028 - 1030: u1029 - 1031: u1030 - 1032: u1031 - 1033: u1032 - 1034: u1033 - 1035: u1034 - 1036: u1035 - 1037: u1036 - 1038: u1037 - 1039: u1038 - 1040: u1039 - 1041: u1040 - 1042: u1041 - 1043: u1042 - 1044: u1043 - 1045: u1044 - 1046: u1045 - 1047: u1046 - 1048: u1047 - 1049: u1048 - 1050: u1049 - 1051: u1050 - 1052: u1051 - 1053: u1052 - 1054: u1053 - 1055: u1054 - 1056: u1055 - 1057: u1056 - 1058: u1057 - 1059: u1058 - 1060: u1059 - 1061: u1060 - 1062: u1061 - 1063: u1062 - 1064: u1063 - 1065: u1064 - 1066: u1065 - 1067: u1066 - 1068: u1067 - 1069: u1068 - 1070: u1069 - 1071: u1070 - 1072: u1071 - 1073: u1072 - 1074: u1073 - 1075: u1074 - 1076: u1075 - 1077: u1076 - 1078: u1077 - 1079: u1078 - 1080: u1079 - 1081: u1080 - 1082: u1081 - 1083: u1082 - 1084: u1083 - 1085: u1084 - 1086: u1085 - 1087: u1086 - 1088: u1087 - 1089: u1088 - 1090: u1089 - 1091: u1090 - 1092: u1091 - 1093: u1092 - 1094: u1093 - 1095: u1094 - 1096: u1095 - 1097: u1096 - 1098: u1097 - 1099: u1098 - 1100: u1099 - 1101: u1100 - 1102: u1101 - 1103: u1102 - 1104: u1103 - 1105: u1104 - 1106: u1105 - 1107: u1106 - 1108: u1107 - 1109: u1108 - 1110: u1109 - 1111: u1110 - 1112: u1111 - 1113: u1112 - 1114: u1113 - 1115: u1114 - 1116: u1115 - 1117: u1116 - 1118: u1117 - 1119: u1118 - 1120: u1119 - 1121: u1120 - 1122: u1121 - 1123: u1122 - 1124: u1123 - 1125: u1124 - 1126: u1125 - 1127: u1126 - 1128: u1127 - 1129: u1128 - 1130: u1129 - 1131: u1130 - 1132: u1131 - 1133: u1132 - 1134: u1133 - 1135: u1134 - 1136: u1135 - 1137: u1136 - 1138: u1137 - 1139: u1138 - 1140: u1139 - 1141: u1140 - 1142: u1141 - 1143: u1142 - 1144: u1143 - 1145: u1144 - 1146: u1145 - 1147: u1146 - 1148: u1147 - 1149: u1148 - 1150: u1149 - 1151: u1150 - 1152: u1151 - 1153: u1152 - 1154: u1153 - 1155: u1154 - 1156: u1155 - 1157: u1156 - 1158: u1157 - 1159: u1158 - 1160: u1159 - 1161: u1160 - 1162: u1161 - 1163: u1162 - 1164: u1163 - 1165: u1164 - 1166: u1165 - 1167: u1166 - 1168: u1167 - 1169: u1168 - 1170: u1169 - 1171: u1170 - 1172: u1171 - 1173: u1172 - 1174: u1173 - 1175: u1174 - 1176: u1175 - 1177: u1176 - 1178: u1177 - 1179: u1178 - 1180: u1179 - 1181: u1180 - 1182: u1181 - 1183: u1182 - 1184: u1183 - 1185: u1184 - 1186: u1185 - 1187: u1186 - 1188: u1187 - 1189: u1188 - 1190: u1189 - 1191: u1190 - 1192: u1191 - 1193: u1192 - 1194: u1193 - 1195: u1194 - 1196: u1195 - 1197: u1196 - 1198: u1197 - 1199: u1198 - 1200: u1199 - 1201: u1200 - 1202: u1201 - 1203: u1202 - 1204: u1203 - 1205: u1204 - 1206: u1205 - 1207: u1206 - 1208: u1207 - 1209: u1208 - 1210: u1209 - 1211: u1210 - 1212: u1211 - 1213: u1212 - 1214: u1213 - 1215: u1214 - 1216: u1215 - 1217: u1216 - 1218: u1217 - 1219: u1218 - 1220: u1219 - 1221: u1220 - 1222: u1221 - 1223: u1222 - 1224: u1223 - 1225: u1224 - 1226: u1225 - 1227: u1226 - 1228: u1227 - 1229: u1228 - 1230: u1229 - 1231: u1230 - 1232: u1231 - 1233: u1232 - 1234: u1233 - 1235: u1234 - 1236: u1235 - 1237: u1236 - 1238: u1237 - 1239: u1238 - 1240: u1239 - 1241: u1240 - 1242: u1241 - 1243: u1242 - 1244: u1243 - 1245: u1244 - 1246: u1245 - 1247: u1246 - 1248: u1247 - 1249: u1248 - 1250: u1249 - 1251: u1250 - 1252: u1251 - 1253: u1252 - 1254: u1253 - 1255: u1254 - 1256: u1255 - 1257: u1256 - 1258: u1257 - 1259: u1258 - 1260: u1259 - 1261: u1260 - 1262: u1261 - 1263: u1262 - 1264: u1263 - 1265: u1264 - 1266: u1265 - 1267: u1266 - 1268: u1267 - 1269: u1268 - 1270: u1269 - 1271: u1270 - 1272: u1271 - 1273: u1272 - 1274: u1273 - 1275: u1274 - 1276: u1275 - 1277: u1276 - 1278: u1277 - 1279: u1278 - 1280: u1279 - 1281: u1280 - 1282: u1281 - 1283: u1282 - 1284: u1283 - 1285: u1284 - 1286: u1285 - 1287: u1286 - 1288: u1287 - 1289: u1288 - 1290: u1289 - 1291: u1290 - 1292: u1291 - 1293: u1292 - 1294: u1293 - 1295: u1294 - 1296: u1295 - 1297: u1296 - 1298: u1297 - 1299: u1298 - 1300: u1299 - 1301: u1300 - 1302: u1301 - 1303: u1302 - 1304: u1303 - 1305: u1304 - 1306: u1305 - 1307: u1306 - 1308: u1307 - 1309: u1308 - 1310: u1309 - 1311: u1310 - 1312: u1311 - 1313: u1312 - 1314: u1313 - 1315: u1314 - 1316: u1315 - 1317: u1316 - 1318: u1317 - 1319: u1318 - 1320: u1319 - 1321: u1320 - 1322: u1321 - 1323: u1322 - 1324: u1323 - 1325: u1324 - 1326: u1325 - 1327: u1326 - 1328: u1327 - 1329: u1328 - 1330: u1329 - 1331: u1330 - 1332: u1331 - 1333: u1332 - 1334: u1333 - 1335: u1334 - 1336: u1335 - 1337: u1336 - 1338: u1337 - 1339: u1338 - 1340: u1339 - 1341: u1340 - 1342: u1341 - 1343: u1342 - 1344: u1343 - 1345: u1344 - 1346: u1345 - 1347: u1346 - 1348: u1347 - 1349: u1348 - 1350: u1349 - 1351: u1350 - 1352: u1351 - 1353: u1352 - 1354: u1353 - 1355: u1354 - 1356: u1355 - 1357: u1356 - 1358: u1357 - 1359: u1358 - 1360: u1359 - 1361: u1360 - 1362: u1361 - 1363: u1362 - 1364: u1363 - 1365: u1364 - 1366: u1365 - 1367: u1366 - 1368: u1367 - 1369: u1368 - 1370: u1369 - 1371: u1370 - 1372: u1371 - 1373: u1372 - 1374: u1373 - 1375: u1374 - 1376: u1375 - 1377: u1376 - 1378: u1377 - 1379: u1378 - 1380: u1379 - 1381: u1380 - 1382: u1381 - 1383: u1382 - 1384: u1383 - 1385: u1384 - 1386: u1385 - 1387: u1386 - 1388: u1387 - 1389: u1388 - 1390: u1389 - 1391: u1390 - 1392: u1391 - 1393: u1392 - 1394: u1393 - 1395: u1394 - 1396: u1395 - 1397: u1396 - 1398: u1397 - 1399: u1398 - 1400: u1399 - 1401: u1400 - 1402: u1401 - 1403: u1402 - 1404: u1403 - 1405: u1404 - 1406: u1405 - 1407: u1406 - 1408: u1407 - 1409: u1408 - 1410: u1409 - 1411: u1410 - 1412: u1411 - 1413: u1412 - 1414: u1413 - 1415: u1414 - 1416: u1415 - 1417: u1416 - 1418: u1417 - 1419: u1418 - 1420: u1419 - 1421: u1420 - 1422: u1421 - 1423: u1422 - 1424: u1423 - 1425: u1424 - 1426: u1425 - 1427: u1426 - 1428: u1427 - 1429: u1428 - 1430: u1429 - 1431: u1430 - 1432: u1431 - 1433: u1432 - 1434: u1433 - 1435: u1434 - 1436: u1435 - 1437: u1436 - 1438: u1437 - 1439: u1438 - 1440: u1439 - 1441: u1440 - 1442: u1441 - 1443: u1442 - 1444: u1443 - 1445: u1444 - 1446: u1445 - 1447: u1446 - 1448: u1447 - 1449: u1448 - 1450: u1449 - 1451: u1450 - 1452: u1451 - 1453: u1452 - 1454: u1453 - 1455: u1454 - 1456: u1455 - 1457: u1456 - 1458: u1457 - 1459: u1458 - 1460: u1459 - 1461: u1460 - 1462: u1461 - 1463: u1462 - 1464: u1463 - 1465: u1464 - 1466: u1465 - 1467: u1466 - 1468: u1467 - 1469: u1468 - 1470: u1469 - 1471: u1470 - 1472: u1471 - 1473: u1472 - 1474: u1473 - 1475: u1474 - 1476: u1475 - 1477: u1476 - 1478: u1477 - 1479: u1478 - 1480: u1479 - 1481: u1480 - 1482: u1481 - 1483: u1482 - 1484: u1483 - 1485: u1484 - 1486: u1485 - 1487: u1486 - 1488: u1487 - 1489: u1488 - 1490: u1489 - 1491: u1490 - 1492: u1491 - 1493: u1492 - 1494: u1493 - 1495: u1494 - 1496: u1495 - 1497: u1496 - 1498: u1497 - 1499: u1498 - 1500: u1499 - 1501: u1500 - 1502: u1501 - 1503: u1502 - 1504: u1503 - 1505: u1504 - 1506: u1505 - 1507: u1506 - 1508: u1507 - 1509: u1508 - 1510: u1509 - 1511: u1510 - 1512: u1511 - 1513: u1512 - 1514: u1513 - 1515: u1514 - 1516: u1515 - 1517: u1516 - 1518: u1517 - 1519: u1518 - 1520: u1519 - 1521: u1520 - 1522: u1521 - 1523: u1522 - 1524: u1523 - 1525: u1524 - 1526: u1525 - 1527: u1526 - 1528: u1527 - 1529: u1528 - 1530: u1529 - 1531: u1530 - 1532: u1531 - 1533: u1532 - 1534: u1533 - 1535: u1534 - 1536: u1535 - 1537: u1536 - 1538: u1537 - 1539: u1538 - 1540: u1539 - 1541: u1540 - 1542: u1541 - 1543: u1542 - 1544: u1543 - 1545: u1544 - 1546: u1545 - 1547: u1546 - 1548: u1547 - 1549: u1548 - 1550: u1549 - 1551: u1550 - 1552: u1551 - 1553: u1552 - 1554: u1553 - 1555: u1554 - 1556: u1555 - 1557: u1556 - 1558: u1557 - 1559: u1558 - 1560: u1559 - 1561: u1560 - 1562: u1561 - 1563: u1562 - 1564: u1563 - 1565: u1564 - 1566: u1565 - 1567: u1566 - 1568: u1567 - 1569: u1568 - 1570: u1569 - 1571: u1570 - 1572: u1571 - 1573: u1572 - 1574: u1573 - 1575: u1574 - 1576: u1575 - 1577: u1576 - 1578: u1577 - 1579: u1578 - 1580: u1579 - 1581: u1580 - 1582: u1581 - 1583: u1582 - 1584: u1583 - 1585: u1584 - 1586: u1585 - 1587: u1586 - 1588: u1587 - 1589: u1588 - 1590: u1589 - 1591: u1590 - 1592: u1591 - 1593: u1592 - 1594: u1593 - 1595: u1594 - 1596: u1595 - 1597: u1596 - 1598: u1597 - 1599: u1598 - 1600: u1599 - 1601: u1600 - 1602: u1601 - 1603: u1602 - 1604: u1603 - 1605: u1604 - 1606: u1605 - 1607: u1606 - 1608: u1607 - 1609: u1608 - 1610: u1609 - 1611: u1610 - 1612: u1611 - 1613: u1612 - 1614: u1613 - 1615: u1614 - 1616: u1615 - 1617: u1616 - 1618: u1617 - 1619: u1618 - 1620: u1619 - 1621: u1620 - 1622: u1621 - 1623: u1622 - 1624: u1623 - 1625: u1624 - 1626: u1625 - 1627: u1626 - 1628: u1627 - 1629: u1628 - 1630: u1629 - 1631: u1630 - 1632: u1631 - 1633: u1632 - 1634: u1633 - 1635: u1634 - 1636: u1635 - 1637: u1636 - 1638: u1637 - 1639: u1638 - 1640: u1639 - 1641: u1640 - 1642: u1641 - 1643: u1642 - 1644: u1643 - 1645: u1644 - 1646: u1645 - 1647: u1646 - 1648: u1647 - 1649: u1648 - 1650: u1649 - 1651: u1650 - 1652: u1651 - 1653: u1652 - 1654: u1653 - 1655: u1654 - 1656: u1655 - 1657: u1656 - 1658: u1657 - 1659: u1658 - 1660: u1659 - 1661: u1660 - 1662: u1661 - 1663: u1662 - 1664: u1663 - 1665: u1664 - 1666: u1665 - 1667: u1666 - 1668: u1667 - 1669: u1668 - 1670: u1669 - 1671: u1670 - 1672: u1671 - 1673: u1672 - 1674: u1673 - 1675: u1674 - 1676: u1675 - 1677: u1676 - 1678: u1677 - 1679: u1678 - 1680: u1679 - 1681: u1680 - 1682: u1681 - 1683: u1682 - 1684: u1683 - 1685: u1684 - 1686: u1685 - 1687: u1686 - 1688: u1687 - 1689: u1688 - 1690: u1689 - 1691: u1690 - 1692: u1691 - 1693: u1692 - 1694: u1693 - 1695: u1694 - 1696: u1695 - 1697: u1696 - 1698: u1697 - 1699: u1698 - 1700: u1699 - 1701: u1700 - 1702: u1701 - 1703: u1702 - 1704: u1703 - 1705: u1704 - 1706: u1705 - 1707: u1706 - 1708: u1707 - 1709: u1708 - 1710: u1709 - 1711: u1710 - 1712: u1711 - 1713: u1712 - 1714: u1713 - 1715: u1714 - 1716: u1715 - 1717: u1716 - 1718: u1717 - 1719: u1718 - 1720: u1719 - 1721: u1720 - 1722: u1721 - 1723: u1722 - 1724: u1723 - 1725: u1724 - 1726: u1725 - 1727: u1726 - 1728: u1727 - 1729: u1728 - 1730: u1729 - 1731: u1730 - 1732: u1731 - 1733: u1732 - 1734: u1733 - 1735: u1734 - 1736: u1735 - 1737: u1736 - 1738: u1737 - 1739: u1738 - 1740: u1739 - 1741: u1740 - 1742: u1741 - 1743: u1742 - 1744: u1743 - 1745: u1744 - 1746: u1745 - 1747: u1746 - 1748: u1747 - 1749: u1748 - 1750: u1749 - 1751: u1750 - 1752: u1751 - 1753: u1752 - 1754: u1753 - 1755: u1754 - 1756: u1755 - 1757: u1756 - 1758: u1757 - 1759: u1758 - 1760: u1759 - 1761: u1760 - 1762: u1761 - 1763: u1762 - 1764: u1763 - 1765: u1764 - 1766: u1765 - 1767: u1766 - 1768: u1767 - 1769: u1768 - 1770: u1769 - 1771: u1770 - 1772: u1771 - 1773: u1772 - 1774: u1773 - 1775: u1774 - 1776: u1775 - 1777: u1776 - 1778: u1777 - 1779: u1778 - 1780: u1779 - 1781: u1780 - 1782: u1781 - 1783: u1782 - 1784: u1783 - 1785: u1784 - 1786: u1785 - 1787: u1786 - 1788: u1787 - 1789: u1788 - 1790: u1789 - 1791: u1790 - 1792: u1791 - 1793: u1792 - 1794: u1793 - 1795: u1794 - 1796: u1795 - 1797: u1796 - 1798: u1797 - 1799: u1798 - 1800: u1799 - 1801: u1800 - 1802: u1801 - 1803: u1802 - 1804: u1803 - 1805: u1804 - 1806: u1805 - 1807: u1806 - 1808: u1807 - 1809: u1808 - 1810: u1809 - 1811: u1810 - 1812: u1811 - 1813: u1812 - 1814: u1813 - 1815: u1814 - 1816: u1815 - 1817: u1816 - 1818: u1817 - 1819: u1818 - 1820: u1819 - 1821: u1820 - 1822: u1821 - 1823: u1822 - 1824: u1823 - 1825: u1824 - 1826: u1825 - 1827: u1826 - 1828: u1827 - 1829: u1828 - 1830: u1829 - 1831: u1830 - 1832: u1831 - 1833: u1832 - 1834: u1833 - 1835: u1834 - 1836: u1835 - 1837: u1836 - 1838: u1837 - 1839: u1838 - 1840: u1839 - 1841: u1840 - 1842: u1841 - 1843: u1842 - 1844: u1843 - 1845: u1844 - 1846: u1845 - 1847: u1846 - 1848: u1847 - 1849: u1848 - 1850: u1849 - 1851: u1850 - 1852: u1851 - 1853: u1852 - 1854: u1853 - 1855: u1854 - 1856: u1855 - 1857: u1856 - 1858: u1857 - 1859: u1858 - 1860: u1859 - 1861: u1860 - 1862: u1861 - 1863: u1862 - 1864: u1863 - 1865: u1864 - 1866: u1865 - 1867: u1866 - 1868: u1867 - 1869: u1868 - 1870: u1869 - 1871: u1870 - 1872: u1871 - 1873: u1872 - 1874: u1873 - 1875: u1874 - 1876: u1875 - 1877: u1876 - 1878: u1877 - 1879: u1878 - 1880: u1879 - 1881: u1880 - 1882: u1881 - 1883: u1882 - 1884: u1883 - 1885: u1884 - 1886: u1885 - 1887: u1886 - 1888: u1887 - 1889: u1888 - 1890: u1889 - 1891: u1890 - 1892: u1891 - 1893: u1892 - 1894: u1893 - 1895: u1894 - 1896: u1895 - 1897: u1896 - 1898: u1897 - 1899: u1898 - 1900: u1899 - 1901: u1900 - 1902: u1901 - 1903: u1902 - 1904: u1903 - 1905: u1904 - 1906: u1905 - 1907: u1906 - 1908: u1907 - 1909: u1908 - 1910: u1909 - 1911: u1910 - 1912: u1911 - 1913: u1912 - 1914: u1913 - 1915: u1914 - 1916: u1915 - 1917: u1916 - 1918: u1917 - 1919: u1918 - 1920: u1919 - 1921: u1920 - 1922: u1921 - 1923: u1922 - 1924: u1923 - 1925: u1924 - 1926: u1925 - 1927: u1926 - 1928: u1927 - 1929: u1928 - 1930: u1929 - 1931: u1930 - 1932: u1931 - 1933: u1932 - 1934: u1933 - 1935: u1934 - 1936: u1935 - 1937: u1936 - 1938: u1937 - 1939: u1938 - 1940: u1939 - 1941: u1940 - 1942: u1941 - 1943: u1942 - 1944: u1943 - 1945: u1944 - 1946: u1945 - 1947: u1946 - 1948: u1947 - 1949: u1948 - 1950: u1949 - 1951: u1950 - 1952: u1951 - 1953: u1952 - 1954: u1953 - 1955: u1954 - 1956: u1955 - 1957: u1956 - 1958: u1957 - 1959: u1958 - 1960: u1959 - 1961: u1960 - 1962: u1961 - 1963: u1962 - 1964: u1963 - 1965: u1964 - 1966: u1965 - 1967: u1966 - 1968: u1967 - 1969: u1968 - 1970: u1969 - 1971: u1970 - 1972: u1971 - 1973: u1972 - 1974: u1973 - 1975: u1974 - 1976: u1975 - 1977: u1976 - 1978: u1977 - 1979: u1978 - 1980: u1979 - 1981: u1980 - 1982: u1981 - 1983: u1982 - 1984: u1983 - 1985: u1984 - 1986: u1985 - 1987: u1986 - 1988: u1987 - 1989: u1988 - 1990: u1989 - 1991: u1990 - 1992: u1991 - 1993: u1992 - 1994: u1993 - 1995: u1994 - 1996: u1995 - 1997: u1996 - 1998: u1997 - 1999: u1998 - 2000: u1999 - enum_values: - 0: "off" - 1: "on" - 2: resetEmergencyOff - 3: setEmergencyOff - 10: clearEvents - 20: setVoltageRippleMeasurementOff - 21: setVoltageMeasurementOn - 22: setRippleMeasurementOn - 23: setVoltageRippleMeasurementOn - - name: moduleStatus - oid: 1.3.6.1.4.1.19947.1.3.6.1.8 - type: Bits - help: A bit string which shows the current module status - 1.3.6.1.4.1.19947.1.3.6.1.8 - indexes: - - labelname: moduleIndex - type: gauge - enum_values: - 1: ma0 - 2: ma1 - 3: ma2 - 4: ma3 - 5: ma4 - 6: ma5 - 7: ma6 - 8: ma7 - 9: ma8 - 10: ma9 - enum_values: - 0: moduleIsFineAdjustment - 2: moduleIsLiveInsertion - 3: moduleIsHighVoltageOn - 4: moduleNeedService - 5: moduleHardwareLimitVoltageIsGood - 6: moduleIsInputError - 8: moduleIsNoSumError - 9: moduleIsNoRamp - 10: moduleSafetyLoopIsGood - 11: moduleIsEventActive - 12: moduleIsGood - 13: moduleSupplyIsGood - 14: moduleTemperatureIsGood - 15: moduleIsKillEnable - - name: moduleEventStatus - oid: 1.3.6.1.4.1.19947.1.3.6.1.9 - type: Bits - help: A bit string which shows the current module status - 1.3.6.1.4.1.19947.1.3.6.1.9 - indexes: - - labelname: moduleIndex - type: gauge - enum_values: - 1: ma0 - 2: ma1 - 3: ma2 - 4: ma3 - 5: ma4 - 6: ma5 - 7: ma6 - 8: ma7 - 9: ma8 - 10: ma9 - enum_values: - 0: moduleEventPowerFail - 2: moduleEventLiveInsertion - 4: moduleEventService - 5: moduleHardwareLimitVoltageNotGood - 6: moduleEventInputError - 10: moduleEventSafetyLoopNotGood - 13: moduleEventSupplyNotGood - 14: moduleEventTemperatureNotGood - - name: sensorTemperature - oid: 1.3.6.1.4.1.19947.1.4.2.1.2 - type: gauge - help: The measured temperature of the sensor - 1.3.6.1.4.1.19947.1.4.2.1.2 - indexes: - - labelname: sensorIndex - type: gauge - enum_values: - 1: temp1 - 2: temp2 - 3: temp3 - 4: temp4 - 5: temp5 - 6: temp6 - 7: temp7 - 8: temp8 - - name: fanSpeed - oid: 1.3.6.1.4.1.19947.1.7.8.1.2 - type: gauge - help: The measured fan rotation speed (RPM, Revolutions Per Minute) - 1.3.6.1.4.1.19947.1.7.8.1.2 - indexes: - - labelname: fanNumber - type: gauge -version: 2 + help: The number of processors, as counted by the agent - 1.3.6.1.4.1.2021.11.67 diff --git a/internal/static/integrations/snmp_exporter/common/snmp.yml.gz b/internal/static/integrations/snmp_exporter/common/snmp.yml.gz index 83880a3565..479ae22953 100644 Binary files a/internal/static/integrations/snmp_exporter/common/snmp.yml.gz and b/internal/static/integrations/snmp_exporter/common/snmp.yml.gz differ diff --git a/internal/static/integrations/snmp_exporter/snmp.go b/internal/static/integrations/snmp_exporter/snmp.go index 1ddc42f6a9..5ef5fc1ae4 100644 --- a/internal/static/integrations/snmp_exporter/snmp.go +++ b/internal/static/integrations/snmp_exporter/snmp.go @@ -3,10 +3,14 @@ package snmp_exporter import ( "fmt" "net/http" + "strings" "time" + "log/slog" + "github.com/go-kit/log" "github.com/go-kit/log/level" + "github.com/grafana/alloy/internal/runtime/logging" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/prometheus/snmp_exporter/collector" @@ -15,10 +19,6 @@ import ( const ( namespace = "snmp" - // This is the default value for snmp.module-concurrency in snmp_exporter. - // For now we set to 1 as we don't support multi-module handling. - // More info: https://github.com/prometheus/snmp_exporter#multi-module-handling - concurrency = 1 ) type snmpHandler struct { @@ -28,7 +28,7 @@ type snmpHandler struct { } func Handler(w http.ResponseWriter, r *http.Request, logger log.Logger, snmpCfg *snmp_config.Config, - targets []SNMPTarget, wParams map[string]snmp_config.WalkParams) { + targets []SNMPTarget, wParams map[string]snmp_config.WalkParams, concurrency int) { query := r.URL.Query() @@ -51,13 +51,13 @@ func Handler(w http.ResponseWriter, r *http.Request, logger log.Logger, snmpCfg target = targetName } - moduleName := query.Get("module") + moduleParam := query.Get("module") if len(query["module"]) > 1 { http.Error(w, "'module' parameter must only be specified once", http.StatusBadRequest) return } - if moduleName == "" { - moduleName = "if_mib" + if moduleParam == "" { + moduleParam = "if_mib" } authName := query.Get("auth") @@ -75,51 +75,57 @@ func Handler(w http.ResponseWriter, r *http.Request, logger log.Logger, snmpCfg return } - module, ok := (*snmpCfg).Modules[moduleName] - if !ok { - http.Error(w, fmt.Sprintf("Unknown module '%s'", moduleName), http.StatusBadRequest) - return - } - - auth, ok := (*snmpCfg).Auths[authName] - if !ok { - http.Error(w, fmt.Sprintf("Unknown auth '%s'", authName), http.StatusBadRequest) - return - } - - // override module connection details with custom walk params if provided walkParams := query.Get("walk_params") if len(query["walk_params"]) > 1 { http.Error(w, "'walk_params' parameter must only be specified once", http.StatusBadRequest) return } - if walkParams != "" { - zeroRetries := 0 - if wp, ok := wParams[walkParams]; ok { - if wp.MaxRepetitions != 0 { - module.WalkParams.MaxRepetitions = wp.MaxRepetitions - } - if wp.Retries != nil && wp.Retries != &zeroRetries { - module.WalkParams.Retries = wp.Retries - } - if wp.Timeout != 0 { - module.WalkParams.Timeout = wp.Timeout - } - } else { - http.Error(w, fmt.Sprintf("Unknown walk_params '%s'", walkParams), http.StatusBadRequest) + + var nmodules []*collector.NamedModule + for _, moduleName := range strings.Split(moduleParam, ",") { + module, ok := (*snmpCfg).Modules[moduleName] + if !ok { + http.Error(w, fmt.Sprintf("Unknown module '%s'", moduleName), http.StatusBadRequest) return } - logger = log.With(logger, "module", moduleName, "target", target, "walk_params", walkParams) + + // override module connection details with custom walk params if provided + if walkParams != "" { + zeroRetries := 0 + if wp, ok := wParams[walkParams]; ok { + if wp.MaxRepetitions != 0 { + module.WalkParams.MaxRepetitions = wp.MaxRepetitions + } + if wp.Retries != nil && wp.Retries != &zeroRetries { + module.WalkParams.Retries = wp.Retries + } + if wp.Timeout != 0 { + module.WalkParams.Timeout = wp.Timeout + } + } else { + http.Error(w, fmt.Sprintf("Unknown walk_params '%s'", walkParams), http.StatusBadRequest) + return + } + } + nmodules = append(nmodules, collector.NewNamedModule(moduleName, module)) + } + if walkParams != "" { + logger = log.With(logger, "module_param", moduleParam, "target", target, "walk_params", walkParams) } else { - logger = log.With(logger, "module", moduleName, "target", target) + logger = log.With(logger, "module_param", moduleParam, "target", target) } - var nmodules []*collector.NamedModule - nmodules = append(nmodules, collector.NewNamedModule(moduleName, module)) + + auth, ok := (*snmpCfg).Auths[authName] + if !ok { + http.Error(w, fmt.Sprintf("Unknown auth '%s'", authName), http.StatusBadRequest) + return + } + level.Debug(logger).Log("msg", "Starting scrape") start := time.Now() registry := prometheus.NewRegistry() - c := collector.New(r.Context(), target, authName, snmpContext, auth, nmodules, logger, NewSNMPMetrics(registry), concurrency, false) + c := collector.New(r.Context(), target, authName, snmpContext, auth, nmodules, slog.New(logging.NewSlogGoKitHandler(logger)), NewSNMPMetrics(registry), concurrency, false) registry.MustRegister(c) // Delegate http serving to Prometheus client library, which will call collector.Collect. h := promhttp.HandlerFor(registry, promhttp.HandlerOpts{}) @@ -129,5 +135,5 @@ func Handler(w http.ResponseWriter, r *http.Request, logger log.Logger, snmpCfg } func (sh snmpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { - Handler(w, r, sh.log, sh.snmpCfg, sh.cfg.SnmpTargets, sh.cfg.WalkParams) + Handler(w, r, sh.log, sh.snmpCfg, sh.cfg.SnmpTargets, sh.cfg.WalkParams, sh.cfg.SnmpConcurrency) } diff --git a/internal/static/integrations/snmp_exporter/snmp_exporter.go b/internal/static/integrations/snmp_exporter/snmp_exporter.go index 841604d0b7..971820885d 100644 --- a/internal/static/integrations/snmp_exporter/snmp_exporter.go +++ b/internal/static/integrations/snmp_exporter/snmp_exporter.go @@ -19,10 +19,11 @@ import ( // DefaultConfig holds the default settings for the snmp_exporter integration. var DefaultConfig = Config{ - WalkParams: make(map[string]snmp_config.WalkParams), - SnmpConfigFile: "", - SnmpTargets: make([]SNMPTarget, 0), - SnmpConfig: snmp_config.Config{}, + WalkParams: make(map[string]snmp_config.WalkParams), + SnmpConfigFile: "", + SnmpConcurrency: 1, + SnmpTargets: make([]SNMPTarget, 0), + SnmpConfig: snmp_config.Config{}, } // SNMPTarget defines a target device to be used by the integration. @@ -38,10 +39,11 @@ type SNMPTarget struct { // Config configures the SNMP integration. type Config struct { - WalkParams map[string]snmp_config.WalkParams `yaml:"walk_params,omitempty"` - SnmpConfigFile string `yaml:"config_file,omitempty"` - SnmpTargets []SNMPTarget `yaml:"snmp_targets"` - SnmpConfig snmp_config.Config `yaml:"snmp_config,omitempty"` + WalkParams map[string]snmp_config.WalkParams `yaml:"walk_params,omitempty"` + SnmpConfigFile string `yaml:"config_file,omitempty"` + SnmpConcurrency int `yaml:"concurrency,omitempty"` + SnmpTargets []SNMPTarget `yaml:"snmp_targets"` + SnmpConfig snmp_config.Config `yaml:"snmp_config,omitempty"` } // UnmarshalYAML implements yaml.Unmarshaler for Config. diff --git a/internal/static/integrations/snmp_exporter/snmp_exporter_test.go b/internal/static/integrations/snmp_exporter/snmp_exporter_test.go index c8b9c2be7c..00fb4c92a6 100644 --- a/internal/static/integrations/snmp_exporter/snmp_exporter_test.go +++ b/internal/static/integrations/snmp_exporter/snmp_exporter_test.go @@ -17,7 +17,7 @@ func TestLoadSNMPConfig(t *testing.T) { { name: "passing a config file", cfg: Config{SnmpConfigFile: "common/snmp.yml", SnmpTargets: []SNMPTarget{{Name: "test", Target: "localhost"}}}, - expectedNumModules: 22, + expectedNumModules: 39, }, { name: "passing a snmp config", @@ -30,7 +30,7 @@ func TestLoadSNMPConfig(t *testing.T) { { name: "using embedded config", cfg: Config{SnmpTargets: []SNMPTarget{{Name: "test", Target: "localhost"}}}, - expectedNumModules: 22, + expectedNumModules: 39, }, } for _, tt := range tests { diff --git a/internal/static/integrations/v2/snmp_exporter/snmp.go b/internal/static/integrations/v2/snmp_exporter/snmp.go index ca71e1482d..4ac0bd7af1 100644 --- a/internal/static/integrations/v2/snmp_exporter/snmp.go +++ b/internal/static/integrations/v2/snmp_exporter/snmp.go @@ -126,6 +126,6 @@ func (sh *snmpHandler) RunIntegration(ctx context.Context) error { func (sh *snmpHandler) createHandler() http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - snmp_exporter.Handler(w, r, sh.log, sh.snmpCfg, sh.cfg.SnmpTargets, sh.cfg.WalkParams) + snmp_exporter.Handler(w, r, sh.log, sh.snmpCfg, sh.cfg.SnmpTargets, sh.cfg.WalkParams, sh.cfg.SnmpConcurrency) } } diff --git a/internal/static/integrations/v2/snmp_exporter/snmp_exporter.go b/internal/static/integrations/v2/snmp_exporter/snmp_exporter.go index 842dfc014b..2c068c697f 100644 --- a/internal/static/integrations/v2/snmp_exporter/snmp_exporter.go +++ b/internal/static/integrations/v2/snmp_exporter/snmp_exporter.go @@ -11,17 +11,19 @@ import ( // DefaultConfig holds the default settings for the snmp_exporter integration. var DefaultConfig = Config{ - WalkParams: make(map[string]snmp_config.WalkParams), - SnmpConfigFile: "", + WalkParams: make(map[string]snmp_config.WalkParams), + SnmpConfigFile: "", + SnmpConcurrency: 1, } // Config configures the SNMP integration. type Config struct { - WalkParams map[string]snmp_config.WalkParams `yaml:"walk_params,omitempty"` - SnmpConfigFile string `yaml:"config_file,omitempty"` - SnmpTargets []snmp_exporter.SNMPTarget `yaml:"snmp_targets"` - SnmpConfig snmp_config.Config `yaml:"snmp_config,omitempty"` - Common common.MetricsConfig `yaml:",inline"` + WalkParams map[string]snmp_config.WalkParams `yaml:"walk_params,omitempty"` + SnmpConfigFile string `yaml:"config_file,omitempty"` + SnmpConcurrency int `yaml:"concurrency,omitempty"` + SnmpTargets []snmp_exporter.SNMPTarget `yaml:"snmp_targets"` + SnmpConfig snmp_config.Config `yaml:"snmp_config,omitempty"` + Common common.MetricsConfig `yaml:",inline"` globals integrations_v2.Globals }