diff --git a/cmd/check_interface_metrics.go b/cmd/check_interface_metrics.go index 2fb3c16..3eb5e82 100644 --- a/cmd/check_interface_metrics.go +++ b/cmd/check_interface_metrics.go @@ -12,7 +12,6 @@ func init() { checkCMD.AddCommand(checkInterfaceMetricsCMD) checkInterfaceMetricsCMD.Flags().Bool("print-interfaces", false, "Print interfaces to plugin output") - checkInterfaceMetricsCMD.Flags().Bool("print-interfaces-csv", false, "Print interfaces to plugin output as CSV") checkInterfaceMetricsCMD.Flags().Bool("snmp-gets-instead-of-walk", false, "Use SNMP Gets instead of Walks") checkInterfaceMetricsCMD.Flags().String("ifDescr-regex", "", "Apply a regex on the ifDescr of the interfaces. Use it together with the 'ifDescr-regex-replace' flag") checkInterfaceMetricsCMD.Flags().String("ifDescr-regex-replace", "", "Apply a regex on the ifDescr of the interfaces. Use it together with the 'ifDescr-regex' flag") @@ -30,10 +29,6 @@ var checkInterfaceMetricsCMD = &cobra.Command{ if err != nil { log.Fatal().Err(err).Msg("print-interfaces needs to be a boolean") } - printInterfacesCSV, err := cmd.Flags().GetBool("print-interfaces-csv") - if err != nil { - log.Fatal().Err(err).Msg("print-interfaces-csv needs to be a boolean") - } snmpGetsInsteadOfWalk, err := cmd.Flags().GetBool("snmp-gets-instead-of-walk") if err != nil { log.Fatal().Err(err).Msg("snmp-gets-instead-of-walk needs to be a boolean") @@ -63,7 +58,6 @@ var checkInterfaceMetricsCMD = &cobra.Command{ r := request.CheckInterfaceMetricsRequest{ CheckDeviceRequest: getCheckDeviceRequest(args[0]), PrintInterfaces: printInterfaces, - PrintInterfacesCSV: printInterfacesCSV, IfDescrRegex: utility.IfThenElse(cmd.Flags().Changed("ifDescr-regex"), &ifDescrRegex, nullString).(*string), IfDescrRegexReplace: utility.IfThenElse(cmd.Flags().Changed("ifDescr-regex-replace"), &ifDescrRegexReplace, nullString).(*string), IfTypeFilter: ifTypeFilter, diff --git a/go.mod b/go.mod index 4fc266d..0441c3e 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/gomodule/redigo v1.8.4 github.com/google/go-cmp v0.5.4 github.com/gosnmp/gosnmp v1.30.0 - github.com/inexio/go-monitoringplugin v1.0.8 + github.com/inexio/go-monitoringplugin v1.0.10 github.com/jmoiron/sqlx v1.2.0 github.com/labstack/echo/v4 v4.2.1 github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db diff --git a/go.sum b/go.sum index 519dda9..04dae47 100644 --- a/go.sum +++ b/go.sum @@ -141,8 +141,8 @@ github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/J github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/inexio/go-monitoringplugin v1.0.8 h1:MpfLgxrXzQNz6uYYph+I/voatFQ0g4VBDeO/6ghZtDs= -github.com/inexio/go-monitoringplugin v1.0.8/go.mod h1:kzHRJGZ2iE/0IElB4NYI38h3h0HM5wqTTH7KyUCjkM8= +github.com/inexio/go-monitoringplugin v1.0.10 h1:mUGPvmalnB06NwgwZSbyvGLpvqZLU+Eyzj40zSGh9J4= +github.com/inexio/go-monitoringplugin v1.0.10/go.mod h1:kzHRJGZ2iE/0IElB4NYI38h3h0HM5wqTTH7KyUCjkM8= github.com/jmoiron/sqlx v1.2.0 h1:41Ip0zITnmWNR/vHV+S4m+VoUivnWY5E4OJfLZjCJMA= github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= diff --git a/internal/request/check_interface_metrics_request.go b/internal/request/check_interface_metrics_request.go index 6f9b1f6..8ddcf1d 100644 --- a/internal/request/check_interface_metrics_request.go +++ b/internal/request/check_interface_metrics_request.go @@ -13,7 +13,6 @@ import ( // swagger:model type CheckInterfaceMetricsRequest struct { PrintInterfaces bool `yaml:"print_interfaces" json:"print_interfaces" xml:"print_interfaces"` - PrintInterfacesCSV bool `yaml:"print_interfaces_csv" json:"print_interfaces_csv" xml:"print_interfaces_csv"` IfDescrRegex *string `yaml:"ifDescr_regex" json:"ifDescr_regex" xml:"ifDescr_regex"` ifDescrRegex *regexp.Regexp IfDescrRegexReplace *string `yaml:"ifDescr_regex_replace" json:"ifDescr_regex_replace" xml:"ifDescr_regex_replace"` diff --git a/internal/request/check_interface_metrics_request_process.go b/internal/request/check_interface_metrics_request_process.go index 39b1340..740584b 100644 --- a/internal/request/check_interface_metrics_request_process.go +++ b/internal/request/check_interface_metrics_request_process.go @@ -90,13 +90,7 @@ func (r *CheckInterfaceMetricsRequest) process(ctx context.Context) (Response, e interfaceOutput = append(interfaceOutput, currentOutput) } if len(interfaceOutput) > 0 { - var output []byte - if r.PrintInterfacesCSV { - output, err = parser.Parse(interfaceOutput, "csv") - - } else { - output, err = parser.Parse(interfaceOutput, "json") - } + output, err := parser.Parse(interfaceOutput, "csv") if r.mon.UpdateStatusOnError(err, monitoringplugin.UNKNOWN, "error while marshalling output", true) { r.mon.PrintPerformanceData(false) return &CheckResponse{r.mon.GetInfo()}, nil diff --git a/internal/request/check_request.go b/internal/request/check_request.go index 6287d5b..1bafc27 100644 --- a/internal/request/check_request.go +++ b/internal/request/check_request.go @@ -17,6 +17,7 @@ type CheckRequest struct { func (r *CheckRequest) init() { r.mon = monitoringplugin.NewResponse("checked") + _ = r.mon.SetInvalidCharacterBehavior(monitoringplugin.InvalidCharacterReplaceWithErrorAndSetUNKNOWN, "") r.mon.PrintPerformanceData(r.PrintPerformanceData) r.mon.SetPerformanceDataJSONLabel(r.JSONMetrics) } diff --git a/test/testdata/devices/arista_eos/device_1/public.testdata b/test/testdata/devices/arista_eos/device_1/public.testdata index 244a04b..e94d807 100644 --- a/test/testdata/devices/arista_eos/device_1/public.testdata +++ b/test/testdata/devices/arista_eos/device_1/public.testdata @@ -18,10 +18,10 @@ "status_code": 0, "performance_data": [ { - "metric": "packet_counter_multicast_out", - "label": "Ethernet2", - "value": 237534, - "unit": "c", + "metric": "interface_oper_status", + "label": "Ethernet1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -32,8 +32,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "Ethernet2", + "metric": "error_counter_frame_too_longs", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -46,10 +46,10 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "Ethernet2", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "Management1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -60,10 +60,10 @@ "max": null }, { - "metric": "error_counter_out", - "label": "Ethernet3", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "Ethernet1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -74,10 +74,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "Ethernet3", - "value": 30003997, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "Management1", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -88,10 +88,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "Ethernet1", + "metric": "error_counter_late_collisions", + "label": "Management1", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -102,8 +102,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "Ethernet1", + "metric": "error_counter_internal_mac_receive_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -116,10 +116,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "Ethernet3", - "value": 1, - "unit": "", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "Ethernet1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -130,9 +130,9 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "Ethernet3", - "value": 0, + "metric": "traffic_counter_out", + "label": "Ethernet2", + "value": 30003997, "unit": "c", "thresholds": { "warningMin": null, @@ -144,7 +144,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "error_counter_in", "label": "Ethernet2", "value": 0, "unit": "c", @@ -158,10 +158,10 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "interface_maxspeed_out", "label": "Ethernet2", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -172,7 +172,7 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", + "metric": "error_counter_frame_too_longs", "label": "Ethernet3", "value": 0, "unit": "c", @@ -186,8 +186,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "Management1", + "metric": "error_counter_multiple_collision_frames", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -200,8 +200,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "Ethernet2", + "metric": "packet_counter_discard_in", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -214,8 +214,8 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", - "label": "Ethernet2", + "metric": "error_counter_carrier_sense_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -228,8 +228,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "Ethernet3", + "metric": "error_counter_multiple_collision_frames", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -242,9 +242,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", + "metric": "traffic_counter_out", "label": "Ethernet1", - "value": 0, + "value": 30003997, "unit": "c", "thresholds": { "warningMin": null, @@ -256,10 +256,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "Ethernet2", + "metric": "interface_maxspeed_in", + "label": "Ethernet1", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -270,10 +270,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "Management1", - "value": 156523, - "unit": "c", + "metric": "interface_admin_status", + "label": "Ethernet2", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -284,8 +284,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "Management1", + "metric": "error_counter_SQETest_errors", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -298,7 +298,7 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", + "metric": "error_counter_deferred_transmissions", "label": "Management1", "value": 0, "unit": "c", @@ -312,8 +312,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "Ethernet2", + "metric": "error_counter_in", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -326,10 +326,10 @@ "max": null }, { - "metric": "error_counter_in", + "metric": "interface_maxspeed_out", "label": "Management1", - "value": 0, - "unit": "c", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -340,9 +340,9 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "Management1", - "value": 0, + "metric": "traffic_counter_out", + "label": "Ethernet3", + "value": 30003997, "unit": "c", "thresholds": { "warningMin": null, @@ -354,9 +354,9 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "error_counter_deferred_transmissions", "label": "Ethernet1", - "value": 237534, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -368,10 +368,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "Management1", - "value": 1000000000, - "unit": "", + "metric": "error_counter_CRCAlign_errors", + "label": "Ethernet1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -382,8 +382,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "Ethernet2", + "metric": "packet_counter_multicast_in", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -396,8 +396,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "Ethernet2", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -410,8 +410,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "Ethernet3", + "metric": "packet_counter_unicast_in", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -424,9 +424,9 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "packet_counter_unicast_out", "label": "Ethernet3", - "value": 237534, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -438,7 +438,7 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "error_counter_deferred_transmissions", "label": "Ethernet3", "value": 0, "unit": "c", @@ -452,9 +452,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "Management1", - "value": 0, + "metric": "packet_counter_multicast_out", + "label": "Ethernet2", + "value": 237534, "unit": "c", "thresholds": { "warningMin": null, @@ -466,10 +466,10 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "Ethernet1", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "Ethernet2", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -480,10 +480,10 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "Ethernet1", + "metric": "interface_maxspeed_in", + "label": "Ethernet2", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -494,10 +494,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "Management1", - "value": 1, - "unit": "", + "metric": "error_counter_FCSErrors", + "label": "Ethernet1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -508,8 +508,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "Management1", + "metric": "error_counter_SQETest_errors", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -522,7 +522,7 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", + "metric": "error_counter_internal_mac_transmit_errors", "label": "Ethernet2", "value": 0, "unit": "c", @@ -536,8 +536,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "Ethernet3", + "metric": "error_counter_internal_mac_receive_errors", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -550,8 +550,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "Ethernet3", + "metric": "error_counter_out", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -564,7 +564,7 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", + "metric": "packet_counter_discard_out", "label": "Management1", "value": 0, "unit": "c", @@ -578,7 +578,7 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", + "metric": "error_counter_single_collision_frames", "label": "Management1", "value": 0, "unit": "c", @@ -592,8 +592,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "Ethernet2", + "metric": "error_counter_CRCAlign_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -606,10 +606,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_broadcast_in", "label": "Ethernet2", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -620,8 +620,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "Ethernet3", + "metric": "packet_counter_unicast_out", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -634,8 +634,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "Management1", + "metric": "error_counter_late_collisions", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -648,8 +648,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "Ethernet1", + "metric": "packet_counter_discard_out", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -662,10 +662,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", + "metric": "traffic_counter_in", "label": "Ethernet3", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -676,8 +676,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "Management1", + "metric": "error_counter_late_collisions", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -690,8 +690,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "Ethernet1", + "metric": "error_counter_out", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -704,10 +704,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "Ethernet2", - "value": 1, - "unit": "", + "metric": "error_counter_late_collisions", + "label": "Ethernet1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -718,8 +718,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "Management1", + "metric": "error_counter_FCSErrors", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -733,7 +733,7 @@ }, { "metric": "error_counter_FCSErrors", - "label": "Ethernet3", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -746,8 +746,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "Management1", + "metric": "packet_counter_unicast_in", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -760,8 +760,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "Management1", + "metric": "error_counter_multiple_collision_frames", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -774,8 +774,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "Ethernet1", + "metric": "error_counter_in", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -789,7 +789,7 @@ }, { "metric": "error_counter_frame_too_longs", - "label": "Ethernet1", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -802,9 +802,9 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "Ethernet2", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "Management1", + "value": 156523, "unit": "c", "thresholds": { "warningMin": null, @@ -816,10 +816,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "Ethernet1", + "metric": "error_counter_multiple_collision_frames", + "label": "Management1", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -830,7 +830,7 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", + "metric": "error_counter_CRCAlign_errors", "label": "Ethernet2", "value": 0, "unit": "c", @@ -844,8 +844,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "Ethernet1", + "metric": "error_counter_CRCAlign_errors", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -859,8 +859,8 @@ }, { "metric": "traffic_counter_out", - "label": "Ethernet1", - "value": 30003997, + "label": "Management1", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -872,8 +872,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "Ethernet1", + "metric": "error_counter_FCSErrors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -886,7 +886,7 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "packet_counter_broadcast_out", "label": "Ethernet3", "value": 0, "unit": "c", @@ -900,8 +900,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "Ethernet1", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -914,8 +914,8 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", - "label": "Ethernet1", + "metric": "error_counter_SQETest_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -928,8 +928,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "Ethernet3", + "metric": "packet_counter_discard_out", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -942,8 +942,8 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", - "label": "Ethernet3", + "metric": "packet_counter_multicast_in", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -956,8 +956,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "Management1", + "metric": "error_counter_excessive_collisions", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -970,7 +970,7 @@ "max": null }, { - "metric": "packet_counter_discard_out", + "metric": "error_counter_alignment_errors", "label": "Ethernet2", "value": 0, "unit": "c", @@ -984,10 +984,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "Ethernet2", + "metric": "error_counter_carrier_sense_errors", + "label": "Ethernet3", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -998,8 +998,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "Ethernet3", + "metric": "packet_counter_unicast_in", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1012,8 +1012,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "Ethernet1", + "metric": "error_counter_alignment_errors", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1026,7 +1026,7 @@ "max": null }, { - "metric": "error_counter_in", + "metric": "error_counter_carrier_sense_errors", "label": "Ethernet1", "value": 0, "unit": "c", @@ -1040,9 +1040,9 @@ "max": null }, { - "metric": "interface_admin_status", + "metric": "interface_maxspeed_out", "label": "Ethernet1", - "value": 1, + "value": 0, "unit": "", "thresholds": { "warningMin": null, @@ -1054,10 +1054,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "Management1", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "Ethernet2", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1068,8 +1068,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "Management1", + "metric": "error_counter_carrier_sense_errors", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1082,9 +1082,9 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "Ethernet2", - "value": 0, + "metric": "packet_counter_multicast_out", + "label": "Ethernet3", + "value": 237534, "unit": "c", "thresholds": { "warningMin": null, @@ -1096,10 +1096,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "Ethernet3", - "value": 1, - "unit": "", + "metric": "traffic_counter_in", + "label": "Management1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1110,10 +1110,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_broadcast_out", "label": "Management1", - "value": 1000000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1124,9 +1124,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "packet_counter_multicast_out", "label": "Ethernet1", - "value": 0, + "value": 237534, "unit": "c", "thresholds": { "warningMin": null, @@ -1138,8 +1138,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "Ethernet2", + "metric": "error_counter_alignment_errors", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1152,10 +1152,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "Ethernet3", + "metric": "packet_counter_broadcast_out", + "label": "Ethernet2", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1166,8 +1166,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "Ethernet3", + "metric": "error_counter_single_collision_frames", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1180,8 +1180,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "Management1", + "metric": "error_counter_internal_mac_receive_errors", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -1194,7 +1194,7 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "packet_counter_broadcast_in", "label": "Ethernet1", "value": 0, "unit": "c", @@ -1208,8 +1208,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "Ethernet2", + "metric": "error_counter_internal_mac_receive_errors", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1222,7 +1222,7 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", + "metric": "error_counter_out", "label": "Ethernet3", "value": 0, "unit": "c", @@ -1236,10 +1236,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "Management1", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "Ethernet3", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1250,8 +1250,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "Management1", + "metric": "error_counter_single_collision_frames", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -1264,8 +1264,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "Management1", + "metric": "packet_counter_discard_in", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1279,7 +1279,7 @@ }, { "metric": "interface_oper_status", - "label": "Ethernet1", + "label": "Ethernet3", "value": 1, "unit": "", "thresholds": { @@ -1293,7 +1293,7 @@ }, { "metric": "error_counter_single_collision_frames", - "label": "Ethernet2", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1306,8 +1306,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "Ethernet3", + "metric": "error_counter_SQETest_errors", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1320,8 +1320,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "Ethernet3", + "metric": "error_counter_deferred_transmissions", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1334,10 +1334,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "Ethernet2", - "value": 1, - "unit": "", + "metric": "error_counter_in", + "label": "Ethernet3", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1348,10 +1348,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "Ethernet2", - "value": 30003997, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "Ethernet3", + "value": 0, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1362,8 +1362,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "Ethernet3", + "metric": "packet_counter_unicast_out", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1376,8 +1376,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "Ethernet3", + "metric": "traffic_counter_in", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1390,8 +1390,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "Ethernet1", + "metric": "packet_counter_broadcast_in", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -1404,8 +1404,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "Ethernet1", + "metric": "packet_counter_discard_in", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1418,8 +1418,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "Management1", + "metric": "error_counter_excessive_collisions", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1432,8 +1432,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "Ethernet2", + "metric": "packet_counter_broadcast_in", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1446,8 +1446,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "Ethernet3", + "metric": "error_counter_excessive_collisions", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1460,8 +1460,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "Ethernet1", + "metric": "error_counter_frame_too_longs", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1474,7 +1474,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "packet_counter_discard_out", "label": "Ethernet1", "value": 0, "unit": "c", @@ -1488,10 +1488,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "Ethernet1", + "metric": "interface_maxspeed_in", + "label": "Ethernet3", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1503,7 +1503,7 @@ }, { "metric": "error_counter_alignment_errors", - "label": "Management1", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -1516,7 +1516,7 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", + "metric": "traffic_counter_in", "label": "Ethernet1", "value": 0, "unit": "c", @@ -1530,8 +1530,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "Management1", + "metric": "packet_counter_discard_in", + "label": "Ethernet3", "value": 0, "unit": "c", "thresholds": { @@ -1544,10 +1544,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "Ethernet2", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "Management1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1558,8 +1558,8 @@ "max": null }, { - "metric": "error_counter_alignment_errors", - "label": "Ethernet2", + "metric": "packet_counter_multicast_out", + "label": "Management1", "value": 0, "unit": "c", "thresholds": { @@ -1572,8 +1572,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "Ethernet3", + "metric": "error_counter_excessive_collisions", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1586,8 +1586,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "Ethernet3", + "metric": "packet_counter_multicast_in", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1600,8 +1600,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "Management1", + "metric": "packet_counter_broadcast_out", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1614,8 +1614,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "Ethernet1", + "metric": "packet_counter_multicast_in", + "label": "Ethernet2", "value": 0, "unit": "c", "thresholds": { @@ -1628,8 +1628,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "Ethernet2", + "metric": "error_counter_out", + "label": "Ethernet1", "value": 0, "unit": "c", "thresholds": { @@ -1646,7 +1646,7 @@ "messages": [ { "status": 0, - "message": "[{\"ifIndex\":\"1\",\"ifDescr\":\"Ethernet1\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"Ethernet1\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:03:00:01\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"2\",\"ifDescr\":\"Ethernet2\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"Ethernet2\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:03:00:02\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"3\",\"ifDescr\":\"Ethernet3\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"Ethernet3\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:03:00:03\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"999001\",\"ifDescr\":\"Management1\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"Management1\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:03:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null}]" + "message": "ifIndex,ifDescr,ifType,ifName,ifAlias,ifPhysAddress,ifAdminStatus,ifOperStatus,maxSpeedIn,maxSpeedOut,subType\n1,Ethernet1,ethernetCsmacd,Ethernet1,,50:00:00:03:00:01,up,up,0,0,\n2,Ethernet2,ethernetCsmacd,Ethernet2,,50:00:00:03:00:02,up,up,0,0,\n3,Ethernet3,ethernetCsmacd,Ethernet3,,50:00:00:03:00:03,up,up,0,0,\n999001,Management1,ethernetCsmacd,Management1,,50:00:00:03:00:00,up,up,1000000000,1000000000,\n" } ] }, diff --git a/test/testdata/devices/comware/VSR1000/public.testdata b/test/testdata/devices/comware/VSR1000/public.testdata index 6dfc58e..be3c754 100644 --- a/test/testdata/devices/comware/VSR1000/public.testdata +++ b/test/testdata/devices/comware/VSR1000/public.testdata @@ -18,8 +18,8 @@ "status_code": 0, "performance_data": [ { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet8/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -32,9 +32,9 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet8/0", - "value": 185, + "metric": "error_counter_late_collisions", + "label": "GigabitEthernet5/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -46,8 +46,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "GigabitEthernet4/0", + "metric": "error_counter_out", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -60,21 +60,7 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet5/0", - "value": 1, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "error_counter_alignment_errors", + "metric": "packet_counter_multicast_out", "label": "GigabitEthernet7/0", "value": 0, "unit": "c", @@ -88,8 +74,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet1/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -102,7 +88,7 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "error_counter_internal_mac_transmit_errors", "label": "GigabitEthernet3/0", "value": 0, "unit": "c", @@ -116,8 +102,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "InLoopBack0", + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -130,8 +116,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet5/0", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -144,8 +130,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet6/0", + "metric": "error_counter_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -158,9 +144,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet8/0", - "value": 7255, + "metric": "error_counter_alignment_errors", + "label": "GigabitEthernet4/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -172,8 +158,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet8/0", + "metric": "error_counter_FCSErrors", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -186,8 +172,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet8/0", + "metric": "traffic_counter_in", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -200,8 +186,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet2/0", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -214,10 +200,10 @@ "max": null }, { - "metric": "interface_oper_status", + "metric": "error_counter_internal_mac_receive_errors", "label": "GigabitEthernet4/0", - "value": 1, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -228,8 +214,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet5/0", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -242,10 +228,10 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", + "metric": "interface_admin_status", "label": "GigabitEthernet7/0", - "value": 0, - "unit": "c", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -256,7 +242,7 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "error_counter_FCSErrors", "label": "GigabitEthernet2/0", "value": 0, "unit": "c", @@ -270,8 +256,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet3/0", + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -284,22 +270,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet3/0", - "value": 1000000000, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet6/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -312,21 +284,7 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "NULL0", - "value": 1, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "traffic_counter_in", + "metric": "error_counter_FCSErrors", "label": "GigabitEthernet1/0", "value": 0, "unit": "c", @@ -340,7 +298,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "error_counter_alignment_errors", "label": "GigabitEthernet6/0", "value": 0, "unit": "c", @@ -354,7 +312,7 @@ "max": null }, { - "metric": "packet_counter_unicast_out", + "metric": "error_counter_deferred_transmissions", "label": "GigabitEthernet6/0", "value": 0, "unit": "c", @@ -368,7 +326,7 @@ "max": null }, { - "metric": "error_counter_in", + "metric": "error_counter_late_collisions", "label": "GigabitEthernet7/0", "value": 0, "unit": "c", @@ -382,10 +340,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet7/0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "NULL0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -396,10 +354,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet8/0", - "value": 693224, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet3/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -411,7 +369,7 @@ }, { "metric": "packet_counter_discard_in", - "label": "NULL0", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -424,8 +382,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet1/0", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -438,8 +396,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet3/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -452,8 +410,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet3/0", + "metric": "error_counter_in", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -466,8 +424,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet7/0", + "metric": "error_counter_alignment_errors", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -480,8 +438,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "InLoopBack0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -494,8 +452,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet2/0", + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -508,8 +466,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet4/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -522,8 +480,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet6/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -536,7 +494,7 @@ "max": null }, { - "metric": "packet_counter_multicast_in", + "metric": "error_counter_alignment_errors", "label": "GigabitEthernet2/0", "value": 0, "unit": "c", @@ -550,7 +508,7 @@ "max": null }, { - "metric": "interface_oper_status", + "metric": "interface_admin_status", "label": "GigabitEthernet3/0", "value": 1, "unit": "", @@ -564,10 +522,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_unicast_in", "label": "GigabitEthernet3/0", - "value": 1000000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -578,8 +536,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet4/0", + "metric": "error_counter_out", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -592,8 +550,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet2/0", + "metric": "error_counter_out", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -606,8 +564,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet2/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -620,8 +578,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_discard_out", + "label": "Register-Tunnel0", "value": 0, "unit": "c", "thresholds": { @@ -634,7 +592,7 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", + "metric": "packet_counter_discard_in", "label": "GigabitEthernet1/0", "value": 0, "unit": "c", @@ -648,8 +606,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet6/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -662,10 +620,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet8/0", - "value": 185, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "Register-Tunnel0", + "value": 0, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -676,8 +634,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet2/0", + "metric": "error_counter_out", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -690,8 +648,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "NULL0", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -704,7 +662,7 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", + "metric": "error_counter_FCSErrors", "label": "GigabitEthernet8/0", "value": 0, "unit": "c", @@ -718,8 +676,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet5/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -732,8 +690,8 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "NULL0", + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet4/0", "value": 1000000000, "unit": "", "thresholds": { @@ -746,8 +704,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet2/0", + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -760,10 +718,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet4/0", - "value": 1, - "unit": "", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet5/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -774,8 +732,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet4/0", + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -788,8 +746,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet5/0", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -802,10 +760,10 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet7/0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "GigabitEthernet6/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -817,7 +775,7 @@ }, { "metric": "interface_oper_status", - "label": "GigabitEthernet8/0", + "label": "Register-Tunnel0", "value": 1, "unit": "", "thresholds": { @@ -830,8 +788,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet1/0", + "metric": "traffic_counter_in", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -844,8 +802,22 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "interface_oper_status", "label": "GigabitEthernet4/0", + "value": 1, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "error_counter_out", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -858,8 +830,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_discard_in", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -872,8 +844,8 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "InLoopBack0", + "metric": "interface_oper_status", + "label": "GigabitEthernet2/0", "value": 1, "unit": "", "thresholds": { @@ -886,7 +858,7 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "error_counter_frame_too_longs", "label": "GigabitEthernet2/0", "value": 0, "unit": "c", @@ -900,8 +872,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet2/0", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -914,9 +886,9 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet8/0", - "value": 27, + "metric": "traffic_counter_in", + "label": "GigabitEthernet7/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -928,10 +900,10 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet3/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "GigabitEthernet1/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -942,8 +914,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -956,8 +928,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet5/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -970,10 +942,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet3/0", - "value": 1, - "unit": "", + "metric": "error_counter_late_collisions", + "label": "GigabitEthernet1/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -984,8 +956,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet2/0", + "metric": "packet_counter_discard_in", + "label": "Register-Tunnel0", "value": 0, "unit": "c", "thresholds": { @@ -998,10 +970,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet7/0", - "value": 1000000000, - "unit": "", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet3/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1012,9 +984,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet8/0", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "GigabitEthernet7/0", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -1026,8 +998,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1040,8 +1012,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -1054,7 +1026,7 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", + "metric": "error_counter_excessive_collisions", "label": "GigabitEthernet6/0", "value": 0, "unit": "c", @@ -1068,8 +1040,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet7/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -1082,9 +1054,9 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet7/0", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet8/0", + "value": 7288, "unit": "c", "thresholds": { "warningMin": null, @@ -1096,10 +1068,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "Register-Tunnel0", + "metric": "error_counter_in", + "label": "GigabitEthernet1/0", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1110,7 +1082,7 @@ "max": null }, { - "metric": "packet_counter_discard_out", + "metric": "error_counter_late_collisions", "label": "GigabitEthernet3/0", "value": 0, "unit": "c", @@ -1124,7 +1096,7 @@ "max": null }, { - "metric": "packet_counter_discard_out", + "metric": "packet_counter_discard_in", "label": "GigabitEthernet4/0", "value": 0, "unit": "c", @@ -1138,8 +1110,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet4/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -1152,8 +1124,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet1/0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -1166,10 +1138,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_discard_out", "label": "GigabitEthernet1/0", - "value": 1000000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1180,8 +1152,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -1194,7 +1166,7 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", + "metric": "packet_counter_discard_in", "label": "GigabitEthernet6/0", "value": 0, "unit": "c", @@ -1208,8 +1180,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_discard_in", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -1222,9 +1194,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "InLoopBack0", - "value": 0, + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet8/0", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -1236,8 +1208,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -1250,10 +1222,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet4/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet5/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1265,7 +1237,7 @@ }, { "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet4/0", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -1278,10 +1250,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet6/0", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet7/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1292,8 +1264,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -1307,8 +1279,8 @@ }, { "metric": "traffic_counter_in", - "label": "NULL0", - "value": 0, + "label": "GigabitEthernet8/0", + "value": 693224, "unit": "c", "thresholds": { "warningMin": null, @@ -1320,8 +1292,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet5/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -1335,7 +1307,7 @@ }, { "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet6/0", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -1348,10 +1320,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "Register-Tunnel0", - "value": 1, - "unit": "", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet8/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1362,10 +1334,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet1/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "GigabitEthernet4/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1376,10 +1348,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet5/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "GigabitEthernet8/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1390,8 +1362,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet7/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -1405,7 +1377,7 @@ }, { "metric": "interface_oper_status", - "label": "NULL0", + "label": "GigabitEthernet5/0", "value": 1, "unit": "", "thresholds": { @@ -1418,8 +1390,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet3/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -1432,8 +1404,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet5/0", + "metric": "error_counter_late_collisions", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -1446,8 +1418,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet6/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -1460,10 +1432,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet2/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet7/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1474,10 +1446,10 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet2/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "NULL0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1488,10 +1460,10 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet6/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "Register-Tunnel0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1502,10 +1474,10 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet7/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "GigabitEthernet2/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1516,10 +1488,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "Register-Tunnel0", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet3/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1530,8 +1502,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet1/0", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -1544,8 +1516,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_discard_out", + "label": "NULL0", "value": 0, "unit": "c", "thresholds": { @@ -1558,8 +1530,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet5/0", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1572,10 +1544,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "GigabitEthernet6/0", - "value": 1, - "unit": "", + "metric": "traffic_counter_in", + "label": "NULL0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1586,8 +1558,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet7/0", + "metric": "traffic_counter_in", + "label": "Register-Tunnel0", "value": 0, "unit": "c", "thresholds": { @@ -1600,10 +1572,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet8/0", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet2/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1614,8 +1586,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet8/0", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -1628,8 +1600,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet1/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -1642,10 +1614,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet4/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet6/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1656,10 +1628,10 @@ "max": null }, { - "metric": "error_counter_alignment_errors", - "label": "GigabitEthernet6/0", + "metric": "interface_maxspeed_in", + "label": "InLoopBack0", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1670,7 +1642,7 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "error_counter_alignment_errors", "label": "GigabitEthernet1/0", "value": 0, "unit": "c", @@ -1684,8 +1656,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet6/0", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1698,10 +1670,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet7/0", - "value": 1000000000, - "unit": "", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet2/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1712,7 +1684,7 @@ "max": null }, { - "metric": "error_counter_late_collisions", + "metric": "packet_counter_discard_in", "label": "GigabitEthernet3/0", "value": 0, "unit": "c", @@ -1726,10 +1698,10 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "GigabitEthernet5/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet1/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1740,8 +1712,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet6/0", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -1754,10 +1726,10 @@ "max": null }, { - "metric": "packet_counter_multicast_in", + "metric": "interface_maxspeed_in", "label": "GigabitEthernet6/0", - "value": 0, - "unit": "c", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1768,8 +1740,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet2/0", + "metric": "error_counter_out", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1782,8 +1754,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1796,8 +1768,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet3/0", + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1810,10 +1782,10 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet8/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet7/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1824,7 +1796,7 @@ "max": null }, { - "metric": "traffic_counter_out", + "metric": "packet_counter_discard_in", "label": "NULL0", "value": 0, "unit": "c", @@ -1838,10 +1810,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet2/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "NULL0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1852,8 +1824,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "GigabitEthernet2/0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1866,8 +1838,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet7/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -1880,8 +1852,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet3/0", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -1894,8 +1866,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet2/0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -1908,8 +1880,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet3/0", + "metric": "traffic_counter_in", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -1922,7 +1894,7 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", + "metric": "error_counter_internal_mac_transmit_errors", "label": "GigabitEthernet5/0", "value": 0, "unit": "c", @@ -1936,8 +1908,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet5/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -1950,10 +1922,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet8/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet5/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1964,8 +1936,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet2/0", + "metric": "traffic_counter_out", + "label": "Register-Tunnel0", "value": 0, "unit": "c", "thresholds": { @@ -1978,8 +1950,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet5/0", + "metric": "error_counter_late_collisions", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -1992,8 +1964,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet5/0", + "metric": "error_counter_FCSErrors", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -2006,10 +1978,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet2/0", - "value": 1000000000, - "unit": "", + "metric": "error_counter_in", + "label": "GigabitEthernet5/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2020,10 +1992,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "InLoopBack0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet8/0", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2034,9 +2006,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet5/0", - "value": 0, + "metric": "error_counter_in", + "label": "GigabitEthernet8/0", + "value": 185, "unit": "c", "thresholds": { "warningMin": null, @@ -2048,10 +2020,10 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet5/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet8/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2062,7 +2034,7 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", + "metric": "error_counter_internal_mac_receive_errors", "label": "GigabitEthernet5/0", "value": 0, "unit": "c", @@ -2076,8 +2048,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet8/0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2091,7 +2063,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet1/0", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2104,8 +2076,8 @@ "max": null }, { - "metric": "error_counter_alignment_errors", - "label": "GigabitEthernet1/0", + "metric": "packet_counter_discard_in", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -2118,8 +2090,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -2132,10 +2104,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet7/0", - "value": 1, - "unit": "", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet3/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2146,9 +2118,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet8/0", - "value": 5, + "metric": "traffic_counter_in", + "label": "GigabitEthernet5/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2160,10 +2132,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "GigabitEthernet2/0", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "GigabitEthernet6/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2174,8 +2146,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet4/0", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2188,9 +2160,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet5/0", - "value": 0, + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet8/0", + "value": 27, "unit": "c", "thresholds": { "warningMin": null, @@ -2202,8 +2174,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet1/0", + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -2216,8 +2188,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -2230,8 +2202,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2244,7 +2216,7 @@ "max": null }, { - "metric": "error_counter_FCSErrors", + "metric": "error_counter_SQETest_errors", "label": "GigabitEthernet7/0", "value": 0, "unit": "c", @@ -2258,10 +2230,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet7/0", + "metric": "interface_maxspeed_out", + "label": "InLoopBack0", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2272,9 +2244,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet8/0", - "value": 7288, + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet2/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2286,10 +2258,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "InLoopBack0", - "value": 1, - "unit": "", + "metric": "error_counter_in", + "label": "GigabitEthernet4/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2300,7 +2272,7 @@ "max": null }, { - "metric": "interface_oper_status", + "metric": "interface_admin_status", "label": "GigabitEthernet5/0", "value": 1, "unit": "", @@ -2314,8 +2286,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet5/0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2329,7 +2301,7 @@ }, { "metric": "interface_oper_status", - "label": "GigabitEthernet7/0", + "label": "GigabitEthernet3/0", "value": 1, "unit": "", "thresholds": { @@ -2342,8 +2314,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet2/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -2356,8 +2328,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -2370,8 +2342,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet6/0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -2384,10 +2356,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet2/0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "GigabitEthernet1/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2398,8 +2370,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet5/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -2412,7 +2384,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "error_counter_deferred_transmissions", "label": "GigabitEthernet1/0", "value": 0, "unit": "c", @@ -2426,9 +2398,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet1/0", - "value": 1, + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet2/0", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -2440,8 +2412,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet1/0", + "metric": "error_counter_FCSErrors", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2468,8 +2440,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2482,8 +2454,8 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet1/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2496,8 +2468,22 @@ "max": null }, { - "metric": "error_counter_alignment_errors", - "label": "GigabitEthernet4/0", + "metric": "interface_maxspeed_in", + "label": "Register-Tunnel0", + "value": 0, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2510,7 +2496,7 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "error_counter_excessive_collisions", "label": "GigabitEthernet8/0", "value": 0, "unit": "c", @@ -2524,8 +2510,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet4/0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -2538,8 +2524,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet8/0", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -2552,8 +2538,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "InLoopBack0", + "metric": "error_counter_in", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2567,7 +2553,7 @@ }, { "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet1/0", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2580,8 +2566,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "GigabitEthernet6/0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -2594,10 +2580,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet6/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet4/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2608,8 +2594,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet3/0", + "metric": "packet_counter_discard_out", + "label": "InLoopBack0", "value": 0, "unit": "c", "thresholds": { @@ -2622,8 +2608,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "GigabitEthernet6/0", + "metric": "traffic_counter_out", + "label": "InLoopBack0", "value": 0, "unit": "c", "thresholds": { @@ -2636,8 +2622,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet8/0", + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2650,10 +2636,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet8/0", - "value": 1000000000, - "unit": "", + "metric": "error_counter_FCSErrors", + "label": "GigabitEthernet5/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2664,8 +2650,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "InLoopBack0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2678,9 +2664,9 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "GigabitEthernet1/0", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "NULL0", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -2692,8 +2678,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet1/0", + "metric": "traffic_counter_in", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -2706,8 +2692,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet2/0", + "metric": "error_counter_in", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -2720,10 +2706,10 @@ "max": null }, { - "metric": "error_counter_FCSErrors", + "metric": "interface_maxspeed_in", "label": "GigabitEthernet4/0", - "value": 0, - "unit": "c", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2748,10 +2734,24 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "GigabitEthernet6/0", - "value": 0, - "unit": "c", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "GigabitEthernet2/0", + "value": 0, + "unit": "c", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "interface_maxspeed_in", + "label": "GigabitEthernet3/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2762,7 +2762,7 @@ "max": null }, { - "metric": "error_counter_late_collisions", + "metric": "error_counter_in", "label": "GigabitEthernet6/0", "value": 0, "unit": "c", @@ -2776,8 +2776,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2790,8 +2790,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet1/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -2804,8 +2804,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet1/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -2818,10 +2818,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet2/0", - "value": 1000000000, - "unit": "", + "metric": "error_counter_FCSErrors", + "label": "GigabitEthernet7/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2832,7 +2832,7 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "error_counter_single_collision_frames", "label": "GigabitEthernet7/0", "value": 0, "unit": "c", @@ -2846,9 +2846,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "GigabitEthernet2/0", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet1/0", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -2860,10 +2860,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet4/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet3/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2874,8 +2874,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "Register-Tunnel0", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -2888,8 +2888,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "GigabitEthernet8/0", + "metric": "error_counter_carrier_sense_errors", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -2902,10 +2902,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "Register-Tunnel0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "GigabitEthernet8/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2916,10 +2916,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "GigabitEthernet1/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet8/0", + "value": 5, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2930,8 +2930,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet1/0", + "metric": "traffic_counter_in", + "label": "InLoopBack0", "value": 0, "unit": "c", "thresholds": { @@ -2944,7 +2944,7 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", + "metric": "error_counter_late_collisions", "label": "GigabitEthernet4/0", "value": 0, "unit": "c", @@ -2958,8 +2958,8 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", - "label": "GigabitEthernet1/0", + "metric": "error_counter_alignment_errors", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -2972,8 +2972,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet5/0", + "metric": "traffic_counter_in", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -2986,10 +2986,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet5/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "GigabitEthernet8/0", + "value": 7255, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3000,10 +3000,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "NULL0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "GigabitEthernet8/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3014,8 +3014,8 @@ "max": null }, { - "metric": "error_counter_alignment_errors", - "label": "GigabitEthernet5/0", + "metric": "error_counter_late_collisions", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -3028,10 +3028,10 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet7/0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "InLoopBack0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3042,8 +3042,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -3056,8 +3056,8 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "GigabitEthernet6/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -3070,8 +3070,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "Register-Tunnel0", + "metric": "error_counter_multiple_collision_frames", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -3084,8 +3084,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "Register-Tunnel0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -3098,8 +3098,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet1/0", + "metric": "error_counter_alignment_errors", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -3112,9 +3112,9 @@ "max": null }, { - "metric": "error_counter_out", - "label": "GigabitEthernet3/0", - "value": 0, + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet8/0", + "value": 185, "unit": "c", "thresholds": { "warningMin": null, @@ -3126,8 +3126,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet6/0", + "metric": "error_counter_excessive_collisions", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -3140,9 +3140,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet8/0", - "value": 1315474, + "metric": "packet_counter_broadcast_in", + "label": "GigabitEthernet4/0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3154,8 +3154,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "GigabitEthernet8/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -3168,9 +3168,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "Register-Tunnel0", - "value": 0, + "metric": "interface_admin_status", + "label": "GigabitEthernet6/0", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -3183,7 +3183,7 @@ }, { "metric": "traffic_counter_out", - "label": "GigabitEthernet1/0", + "label": "NULL0", "value": 0, "unit": "c", "thresholds": { @@ -3196,8 +3196,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet3/0", + "metric": "error_counter_alignment_errors", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -3210,8 +3210,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "GigabitEthernet7/0", + "metric": "error_counter_deferred_transmissions", + "label": "GigabitEthernet5/0", "value": 0, "unit": "c", "thresholds": { @@ -3224,9 +3224,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "GigabitEthernet6/0", - "value": 0, + "metric": "traffic_counter_out", + "label": "GigabitEthernet8/0", + "value": 1315474, "unit": "c", "thresholds": { "warningMin": null, @@ -3239,7 +3239,7 @@ }, { "metric": "packet_counter_discard_in", - "label": "GigabitEthernet8/0", + "label": "InLoopBack0", "value": 0, "unit": "c", "thresholds": { @@ -3252,8 +3252,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet2/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -3266,8 +3266,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "GigabitEthernet4/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet8/0", "value": 0, "unit": "c", "thresholds": { @@ -3280,10 +3280,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet5/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "InLoopBack0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3294,8 +3294,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "GigabitEthernet5/0", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -3308,8 +3308,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet7/0", + "metric": "packet_counter_broadcast_out", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -3322,8 +3322,8 @@ "max": null }, { - "metric": "error_counter_late_collisions", - "label": "GigabitEthernet8/0", + "metric": "error_counter_single_collision_frames", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -3336,8 +3336,8 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", - "label": "GigabitEthernet2/0", + "metric": "error_counter_out", + "label": "GigabitEthernet6/0", "value": 0, "unit": "c", "thresholds": { @@ -3350,8 +3350,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "GigabitEthernet3/0", + "metric": "error_counter_frame_too_longs", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -3364,8 +3364,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "GigabitEthernet4/0", + "metric": "packet_counter_multicast_in", + "label": "GigabitEthernet7/0", "value": 0, "unit": "c", "thresholds": { @@ -3378,8 +3378,8 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", - "label": "GigabitEthernet3/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -3392,8 +3392,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "GigabitEthernet4/0", + "metric": "error_counter_internal_mac_receive_errors", + "label": "GigabitEthernet1/0", "value": 0, "unit": "c", "thresholds": { @@ -3406,8 +3406,8 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", - "label": "GigabitEthernet6/0", + "metric": "error_counter_SQETest_errors", + "label": "GigabitEthernet3/0", "value": 0, "unit": "c", "thresholds": { @@ -3420,8 +3420,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "GigabitEthernet7/0", + "metric": "traffic_counter_out", + "label": "GigabitEthernet4/0", "value": 0, "unit": "c", "thresholds": { @@ -3434,8 +3434,8 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", - "label": "GigabitEthernet8/0", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet2/0", "value": 0, "unit": "c", "thresholds": { @@ -3448,10 +3448,10 @@ "max": null }, { - "metric": "error_counter_FCSErrors", - "label": "GigabitEthernet3/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "GigabitEthernet2/0", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3462,7 +3462,7 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", + "metric": "error_counter_carrier_sense_errors", "label": "GigabitEthernet3/0", "value": 0, "unit": "c", @@ -3476,10 +3476,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "GigabitEthernet6/0", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "GigabitEthernet7/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3494,7 +3494,7 @@ "messages": [ { "status": 0, - "message": "[{\"ifIndex\":\"17\",\"ifDescr\":\"GigabitEthernet1/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet1/0\",\"ifAlias\":\"GigabitEthernet1/0 Interface\",\"ifPhysAddress\":\"52:54:00:A0:CA:01\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"33\",\"ifDescr\":\"GigabitEthernet2/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet2/0\",\"ifAlias\":\"GigabitEthernet2/0 Interface\",\"ifPhysAddress\":\"52:54:00:D1:2D:02\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"49\",\"ifDescr\":\"GigabitEthernet3/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet3/0\",\"ifAlias\":\"GigabitEthernet3/0 Interface\",\"ifPhysAddress\":\"52:54:00:FC:26:03\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"65\",\"ifDescr\":\"GigabitEthernet4/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet4/0\",\"ifAlias\":\"GigabitEthernet4/0 Interface\",\"ifPhysAddress\":\"52:54:00:CB:2A:04\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"81\",\"ifDescr\":\"GigabitEthernet5/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet5/0\",\"ifAlias\":\"GigabitEthernet5/0 Interface\",\"ifPhysAddress\":\"52:54:00:EA:66:05\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"97\",\"ifDescr\":\"GigabitEthernet6/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet6/0\",\"ifAlias\":\"GigabitEthernet6/0 Interface\",\"ifPhysAddress\":\"52:54:00:30:75:06\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"113\",\"ifDescr\":\"GigabitEthernet7/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet7/0\",\"ifAlias\":\"GigabitEthernet7/0 Interface\",\"ifPhysAddress\":\"52:54:00:77:9D:07\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"129\",\"ifDescr\":\"GigabitEthernet8/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"GigabitEthernet8/0\",\"ifAlias\":\"GigabitEthernet8/0 Interface\",\"ifPhysAddress\":\"52:54:00:BB:FC:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"401\",\"ifDescr\":\"NULL0\",\"ifType\":\"other\",\"ifName\":\"NULL0\",\"ifAlias\":\"NULL0 Interface\",\"ifPhysAddress\":\"00:00:00:00:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"402\",\"ifDescr\":\"InLoopBack0\",\"ifType\":\"softwareLoopback\",\"ifName\":\"InLoopBack0\",\"ifAlias\":\"InLoopBack0 Interface\",\"ifPhysAddress\":\"00:00:00:00:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"403\",\"ifDescr\":\"Register-Tunnel0\",\"ifType\":\"other\",\"ifName\":\"Register-Tunnel0\",\"ifAlias\":\"Register-Tunnel0 Interface\",\"ifPhysAddress\":\"00:00:00:00:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null}]" + "message": "ifIndex,ifDescr,ifType,ifName,ifAlias,ifPhysAddress,ifAdminStatus,ifOperStatus,maxSpeedIn,maxSpeedOut,subType\n17,GigabitEthernet1/0,ethernetCsmacd,GigabitEthernet1/0,GigabitEthernet1/0 Interface,52:54:00:A0:CA:01,up,up,1000000000,1000000000,\n33,GigabitEthernet2/0,ethernetCsmacd,GigabitEthernet2/0,GigabitEthernet2/0 Interface,52:54:00:D1:2D:02,up,up,1000000000,1000000000,\n49,GigabitEthernet3/0,ethernetCsmacd,GigabitEthernet3/0,GigabitEthernet3/0 Interface,52:54:00:FC:26:03,up,up,1000000000,1000000000,\n65,GigabitEthernet4/0,ethernetCsmacd,GigabitEthernet4/0,GigabitEthernet4/0 Interface,52:54:00:CB:2A:04,up,up,1000000000,1000000000,\n81,GigabitEthernet5/0,ethernetCsmacd,GigabitEthernet5/0,GigabitEthernet5/0 Interface,52:54:00:EA:66:05,up,up,1000000000,1000000000,\n97,GigabitEthernet6/0,ethernetCsmacd,GigabitEthernet6/0,GigabitEthernet6/0 Interface,52:54:00:30:75:06,up,up,1000000000,1000000000,\n113,GigabitEthernet7/0,ethernetCsmacd,GigabitEthernet7/0,GigabitEthernet7/0 Interface,52:54:00:77:9D:07,up,up,1000000000,1000000000,\n129,GigabitEthernet8/0,ethernetCsmacd,GigabitEthernet8/0,GigabitEthernet8/0 Interface,52:54:00:BB:FC:00,up,up,1000000000,1000000000,\n401,NULL0,other,NULL0,NULL0 Interface,00:00:00:00:00:00,up,up,1000000000,1000000000,\n402,InLoopBack0,softwareLoopback,InLoopBack0,InLoopBack0 Interface,00:00:00:00:00:00,up,up,0,0,\n403,Register-Tunnel0,other,Register-Tunnel0,Register-Tunnel0 Interface,00:00:00:00:00:00,up,up,0,0,\n" } ] }, diff --git a/test/testdata/devices/ios/7206VXR/public.testdata b/test/testdata/devices/ios/7206VXR/public.testdata index 82079df..6d7b32d 100644 --- a/test/testdata/devices/ios/7206VXR/public.testdata +++ b/test/testdata/devices/ios/7206VXR/public.testdata @@ -18,22 +18,8 @@ "status_code": 0, "performance_data": [ { - "metric": "interface_admin_status", - "label": "FastEthernet0/0", - "value": 1, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "error_counter_internal_mac_transmit_errors", - "label": "FastEthernet0/0", + "metric": "packet_counter_multicast_in", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -46,9 +32,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "VoIP-Null0", - "value": 0, + "metric": "traffic_counter_out", + "label": "FastEthernet0/0", + "value": 3399486, "unit": "c", "thresholds": { "warningMin": null, @@ -60,9 +46,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "VoIP-Null0", - "value": 0, + "metric": "packet_counter_unicast_in", + "label": "FastEthernet0/0", + "value": 9091, "unit": "c", "thresholds": { "warningMin": null, @@ -74,8 +60,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "VoIP-Null0", + "metric": "error_counter_internal_mac_transmit_errors", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -88,9 +74,9 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "error_counter_internal_mac_receive_errors", "label": "FastEthernet0/0", - "value": 7040724, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -116,10 +102,10 @@ "max": null }, { - "metric": "error_counter_out", - "label": "FastEthernet0/0", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "Null0", + "value": 10000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -130,9 +116,9 @@ "max": null }, { - "metric": "error_counter_deferred_transmissions", + "metric": "packet_counter_unicast_out", "label": "FastEthernet0/0", - "value": 0, + "value": 22951, "unit": "c", "thresholds": { "warningMin": null, @@ -144,7 +130,7 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "packet_counter_unicast_out", "label": "VoIP-Null0", "value": 0, "unit": "c", @@ -158,7 +144,7 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "packet_counter_broadcast_out", "label": "VoIP-Null0", "value": 0, "unit": "c", @@ -172,10 +158,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "VoIP-Null0", - "value": 10000000000, - "unit": "", + "metric": "error_counter_out", + "label": "Null0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -186,7 +172,7 @@ "max": null }, { - "metric": "traffic_counter_out", + "metric": "packet_counter_discard_out", "label": "Null0", "value": 0, "unit": "c", @@ -200,10 +186,10 @@ "max": null }, { - "metric": "interface_oper_status", + "metric": "packet_counter_multicast_in", "label": "FastEthernet0/0", - "value": 1, - "unit": "", + "value": 19554, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -214,8 +200,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "VoIP-Null0", + "metric": "error_counter_deferred_transmissions", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -228,8 +214,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "Null0", + "metric": "error_counter_frame_too_longs", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -242,10 +228,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "FastEthernet0/0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "Null0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -256,10 +242,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "FastEthernet0/0", - "value": 22951, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "Null0", + "value": 10000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -270,10 +256,10 @@ "max": null }, { - "metric": "error_counter_multiple_collision_frames", + "metric": "interface_admin_status", "label": "FastEthernet0/0", - "value": 0, - "unit": "c", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -285,7 +271,7 @@ }, { "metric": "interface_oper_status", - "label": "Null0", + "label": "VoIP-Null0", "value": 1, "unit": "", "thresholds": { @@ -298,9 +284,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "FastEthernet0/0", - "value": 3399486, + "metric": "packet_counter_multicast_in", + "label": "VoIP-Null0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -312,8 +298,8 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", - "label": "FastEthernet0/0", + "metric": "traffic_counter_in", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -326,7 +312,7 @@ "max": null }, { - "metric": "packet_counter_unicast_out", + "metric": "packet_counter_broadcast_out", "label": "Null0", "value": 0, "unit": "c", @@ -340,8 +326,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "Null0", + "metric": "error_counter_single_collision_frames", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -354,10 +340,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_unicast_out", "label": "Null0", - "value": 10000000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -368,10 +354,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "Null0", - "value": 10000000000, - "unit": "", + "metric": "error_counter_out", + "label": "FastEthernet0/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -382,9 +368,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "error_counter_SQETest_errors", "label": "FastEthernet0/0", - "value": 23653, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -396,10 +382,10 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "interface_admin_status", "label": "Null0", - "value": 0, - "unit": "c", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -410,8 +396,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "Null0", + "metric": "traffic_counter_in", + "label": "VoIP-Null0", "value": 0, "unit": "c", "thresholds": { @@ -424,9 +410,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "FastEthernet0/0", - "value": 9091, + "metric": "packet_counter_broadcast_in", + "label": "VoIP-Null0", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -438,9 +424,9 @@ "max": null }, { - "metric": "error_counter_alignment_errors", + "metric": "packet_counter_broadcast_in", "label": "FastEthernet0/0", - "value": 0, + "value": 23653, "unit": "c", "thresholds": { "warningMin": null, @@ -452,9 +438,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "VoIP-Null0", - "value": 0, + "metric": "packet_counter_broadcast_out", + "label": "FastEthernet0/0", + "value": 2, "unit": "c", "thresholds": { "warningMin": null, @@ -466,8 +452,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "VoIP-Null0", + "metric": "error_counter_multiple_collision_frames", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -480,10 +466,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "VoIP-Null0", - "value": 1, - "unit": "", + "metric": "error_counter_carrier_sense_errors", + "label": "FastEthernet0/0", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -494,7 +480,7 @@ "max": null }, { - "metric": "packet_counter_unicast_out", + "metric": "error_counter_out", "label": "VoIP-Null0", "value": 0, "unit": "c", @@ -508,8 +494,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "VoIP-Null0", + "metric": "packet_counter_discard_out", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -522,10 +508,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "FastEthernet0/0", - "value": 4854, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "VoIP-Null0", + "value": 10000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -536,8 +522,8 @@ "max": null }, { - "metric": "error_counter_SQETest_errors", - "label": "FastEthernet0/0", + "metric": "error_counter_in", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -550,8 +536,8 @@ "max": null }, { - "metric": "error_counter_internal_mac_receive_errors", - "label": "FastEthernet0/0", + "metric": "traffic_counter_out", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -564,7 +550,7 @@ "max": null }, { - "metric": "error_counter_late_collisions", + "metric": "packet_counter_discard_in", "label": "FastEthernet0/0", "value": 0, "unit": "c", @@ -578,10 +564,10 @@ "max": null }, { - "metric": "error_counter_excessive_collisions", - "label": "FastEthernet0/0", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "VoIP-Null0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -592,9 +578,9 @@ "max": null }, { - "metric": "interface_admin_status", + "metric": "interface_maxspeed_out", "label": "VoIP-Null0", - "value": 1, + "value": 10000000000, "unit": "", "thresholds": { "warningMin": null, @@ -606,8 +592,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "Null0", + "metric": "error_counter_late_collisions", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -620,8 +606,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "Null0", + "metric": "packet_counter_multicast_out", + "label": "VoIP-Null0", "value": 0, "unit": "c", "thresholds": { @@ -634,8 +620,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "Null0", + "metric": "packet_counter_unicast_in", + "label": "VoIP-Null0", "value": 0, "unit": "c", "thresholds": { @@ -648,8 +634,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "FastEthernet0/0", + "metric": "error_counter_CRCAlign_errors", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -662,10 +648,10 @@ "max": null }, { - "metric": "packet_counter_multicast_in", + "metric": "interface_maxspeed_in", "label": "FastEthernet0/0", - "value": 19554, - "unit": "c", + "value": 100000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -676,8 +662,22 @@ "max": null }, { - "metric": "error_counter_FCSErrors", + "metric": "interface_maxspeed_out", "label": "FastEthernet0/0", + "value": 100000000, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "packet_counter_discard_in", + "label": "VoIP-Null0", "value": 0, "unit": "c", "thresholds": { @@ -690,7 +690,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "packet_counter_discard_out", "label": "VoIP-Null0", "value": 0, "unit": "c", @@ -704,10 +704,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "traffic_counter_out", "label": "VoIP-Null0", - "value": 10000000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -718,9 +718,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", + "metric": "error_counter_FCSErrors", "label": "FastEthernet0/0", - "value": 2, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -732,7 +732,7 @@ "max": null }, { - "metric": "error_counter_frame_too_longs", + "metric": "error_counter_excessive_collisions", "label": "FastEthernet0/0", "value": 0, "unit": "c", @@ -746,7 +746,7 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "packet_counter_discard_in", "label": "Null0", "value": 0, "unit": "c", @@ -760,8 +760,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "FastEthernet0/0", + "metric": "packet_counter_multicast_out", + "label": "Null0", "value": 0, "unit": "c", "thresholds": { @@ -774,10 +774,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", + "metric": "error_counter_in", "label": "FastEthernet0/0", - "value": 100000000, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -788,9 +788,9 @@ "max": null }, { - "metric": "error_counter_carrier_sense_errors", + "metric": "packet_counter_multicast_out", "label": "FastEthernet0/0", - "value": 0, + "value": 4854, "unit": "c", "thresholds": { "warningMin": null, @@ -802,8 +802,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "VoIP-Null0", + "metric": "error_counter_alignment_errors", + "label": "FastEthernet0/0", "value": 0, "unit": "c", "thresholds": { @@ -816,7 +816,7 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "packet_counter_broadcast_in", "label": "Null0", "value": 0, "unit": "c", @@ -830,10 +830,10 @@ "max": null }, { - "metric": "interface_admin_status", + "metric": "packet_counter_unicast_in", "label": "Null0", - "value": 1, - "unit": "", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -844,10 +844,10 @@ "max": null }, { - "metric": "error_counter_CRCAlign_errors", - "label": "Null0", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "FastEthernet0/0", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -858,10 +858,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "traffic_counter_in", "label": "FastEthernet0/0", - "value": 100000000, - "unit": "", + "value": 7040724, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -872,7 +872,7 @@ "max": null }, { - "metric": "error_counter_single_collision_frames", + "metric": "error_counter_CRCAlign_errors", "label": "FastEthernet0/0", "value": 0, "unit": "c", @@ -887,7 +887,7 @@ }, { "metric": "error_counter_in", - "label": "Null0", + "label": "VoIP-Null0", "value": 0, "unit": "c", "thresholds": { @@ -904,7 +904,7 @@ "messages": [ { "status": 0, - "message": "[{\"ifIndex\":\"1\",\"ifDescr\":\"FastEthernet0/0\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"Fa0/0\",\"ifAlias\":null,\"ifPhysAddress\":\"CA:01:16:E4:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"100000000\",\"maxSpeedOut\":\"100000000\",\"subType\":null},{\"ifIndex\":\"2\",\"ifDescr\":\"VoIP-Null0\",\"ifType\":\"other\",\"ifName\":\"Vo0\",\"ifAlias\":null,\"ifPhysAddress\":null,\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"10000000000\",\"maxSpeedOut\":\"10000000000\",\"subType\":null},{\"ifIndex\":\"3\",\"ifDescr\":\"Null0\",\"ifType\":\"other\",\"ifName\":\"Nu0\",\"ifAlias\":null,\"ifPhysAddress\":null,\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"10000000000\",\"maxSpeedOut\":\"10000000000\",\"subType\":null}]" + "message": "ifIndex,ifDescr,ifType,ifName,ifAlias,ifPhysAddress,ifAdminStatus,ifOperStatus,maxSpeedIn,maxSpeedOut,subType\n1,FastEthernet0/0,ethernetCsmacd,Fa0/0,,CA:01:16:E4:00:00,up,up,100000000,100000000,\n2,VoIP-Null0,other,Vo0,,,up,up,10000000000,10000000000,\n3,Null0,other,Nu0,,,up,up,10000000000,10000000000,\n" } ] }, diff --git a/test/testdata/devices/routeros/CHR_1/public.testdata b/test/testdata/devices/routeros/CHR_1/public.testdata index 8240d8b..a737874 100644 --- a/test/testdata/devices/routeros/CHR_1/public.testdata +++ b/test/testdata/devices/routeros/CHR_1/public.testdata @@ -18,9 +18,9 @@ "status_code": 0, "performance_data": [ { - "metric": "interface_admin_status", - "label": "ether29", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether23", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -32,8 +32,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether29", + "metric": "error_counter_out", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -46,10 +46,10 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether30", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether2", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -60,8 +60,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether32", + "metric": "packet_counter_multicast_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -75,20 +75,6 @@ }, { "metric": "packet_counter_broadcast_in", - "label": "ether3", - "value": 0, - "unit": "c", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "packet_counter_unicast_in", "label": "ether18", "value": 0, "unit": "c", @@ -102,9 +88,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether25", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether26", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -116,8 +102,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether28", + "metric": "packet_counter_discard_out", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -130,9 +116,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether29", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether11", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -144,8 +130,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether31", + "metric": "packet_counter_multicast_in", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -159,7 +145,7 @@ }, { "metric": "error_counter_out", - "label": "ether13", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -172,8 +158,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether15", + "metric": "packet_counter_discard_out", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -187,7 +173,7 @@ }, { "metric": "interface_oper_status", - "label": "ether17", + "label": "ether13", "value": 1, "unit": "", "thresholds": { @@ -200,10 +186,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether2", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether6", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -214,9 +200,9 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether9", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether21", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -228,8 +214,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether16", + "metric": "packet_counter_unicast_in", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -242,10 +228,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether7", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_out", + "label": "ether31", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -256,8 +242,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether24", + "metric": "interface_maxspeed_in", + "label": "ether10", "value": 1000000000, "unit": "", "thresholds": { @@ -270,8 +256,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether28", + "metric": "error_counter_in", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -284,10 +270,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether18", - "value": 1000000000, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether22", + "value": 61152, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -298,9 +284,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether22", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether24", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -312,9 +298,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether30", - "value": 1000000000, + "metric": "interface_admin_status", + "label": "ether15", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -327,8 +313,8 @@ }, { "metric": "traffic_counter_out", - "label": "ether4", - "value": 60939, + "label": "ether19", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -341,7 +327,7 @@ }, { "metric": "packet_counter_discard_out", - "label": "ether11", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -354,9 +340,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether13", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether25", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -368,9 +354,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether20", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether28", + "value": 61152, "unit": "c", "thresholds": { "warningMin": null, @@ -382,8 +368,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether22", + "metric": "packet_counter_broadcast_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -396,8 +382,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether23", + "metric": "traffic_counter_in", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -410,9 +396,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether2", - "value": 549, + "metric": "packet_counter_broadcast_in", + "label": "ether13", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -424,10 +410,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether6", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether24", + "value": 546, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -439,7 +425,7 @@ }, { "metric": "packet_counter_discard_in", - "label": "ether8", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -451,23 +437,9 @@ "min": null, "max": null }, - { - "metric": "interface_maxspeed_out", - "label": "ether13", - "value": 1000000000, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, { "metric": "packet_counter_multicast_in", - "label": "ether17", + "label": "ether27", "value": 0, "unit": "c", "thresholds": { @@ -480,10 +452,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether22", - "value": 61152, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether29", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -494,8 +466,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether2", + "metric": "packet_counter_broadcast_out", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -508,8 +480,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether5", + "metric": "packet_counter_discard_in", + "label": "ether20", "value": 0, "unit": "c", "thresholds": { @@ -522,8 +494,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether7", + "metric": "packet_counter_broadcast_out", + "label": "ether20", "value": 0, "unit": "c", "thresholds": { @@ -536,10 +508,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether27", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether20", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -550,9 +522,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether31", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether22", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -564,10 +536,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether2", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether22", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -579,7 +551,7 @@ }, { "metric": "interface_maxspeed_out", - "label": "ether8", + "label": "ether22", "value": 1000000000, "unit": "", "thresholds": { @@ -593,7 +565,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "ether19", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -606,10 +578,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether27", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether7", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -620,9 +592,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether28", - "value": 546, + "metric": "packet_counter_broadcast_out", + "label": "ether8", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -635,7 +607,7 @@ }, { "metric": "interface_oper_status", - "label": "ether5", + "label": "ether31", "value": 1, "unit": "", "thresholds": { @@ -648,9 +620,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether12", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether6", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -662,8 +634,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether19", + "metric": "error_counter_in", + "label": "ether7", "value": 0, "unit": "c", "thresholds": { @@ -676,10 +648,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether20", - "value": 1, - "unit": "", + "metric": "traffic_counter_in", + "label": "ether10", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -690,10 +662,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether26", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_in", + "label": "ether11", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -704,9 +676,9 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether11", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether15", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -718,9 +690,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether15", - "value": 61488, + "metric": "error_counter_in", + "label": "ether17", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -732,10 +704,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether15", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether17", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -746,8 +718,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether26", + "metric": "error_counter_out", + "label": "ether20", "value": 0, "unit": "c", "thresholds": { @@ -760,10 +732,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether28", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether26", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -774,8 +746,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether2", + "metric": "packet_counter_discard_in", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -788,10 +760,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether7", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether12", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -802,10 +774,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether21", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether17", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -816,7 +788,7 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "packet_counter_discard_out", "label": "ether27", "value": 0, "unit": "c", @@ -830,8 +802,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether1", + "metric": "packet_counter_multicast_in", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -844,10 +816,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether21", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether9", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -859,7 +831,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether25", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -872,9 +844,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether13", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether9", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -886,10 +858,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether20", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether9", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -900,7 +872,7 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "packet_counter_discard_in", "label": "ether27", "value": 0, "unit": "c", @@ -915,7 +887,7 @@ }, { "metric": "interface_maxspeed_out", - "label": "ether27", + "label": "ether31", "value": 1000000000, "unit": "", "thresholds": { @@ -928,8 +900,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether5", + "metric": "packet_counter_discard_in", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -942,9 +914,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether7", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether1", + "value": 13374, "unit": "c", "thresholds": { "warningMin": null, @@ -956,8 +928,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether7", + "metric": "error_counter_in", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -970,8 +942,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether32", + "metric": "packet_counter_multicast_in", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -985,8 +957,8 @@ }, { "metric": "packet_counter_unicast_out", - "label": "ether29", - "value": 546, + "label": "ether13", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -998,10 +970,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether3", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_in", + "label": "ether24", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1012,10 +984,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether8", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether29", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1026,8 +998,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether25", + "metric": "packet_counter_discard_in", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -1040,9 +1012,9 @@ "max": null }, { - "metric": "interface_admin_status", + "metric": "interface_maxspeed_out", "label": "ether8", - "value": 1, + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -1054,8 +1026,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether23", + "metric": "packet_counter_discard_in", + "label": "ether10", "value": 0, "unit": "c", "thresholds": { @@ -1068,8 +1040,8 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether27", + "metric": "interface_admin_status", + "label": "ether20", "value": 1, "unit": "", "thresholds": { @@ -1082,8 +1054,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether2", + "metric": "packet_counter_discard_out", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -1097,8 +1069,8 @@ }, { "metric": "traffic_counter_in", - "label": "ether8", - "value": 0, + "label": "ether1", + "value": 1348329, "unit": "c", "thresholds": { "warningMin": null, @@ -1110,7 +1082,7 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "packet_counter_multicast_out", "label": "ether11", "value": 0, "unit": "c", @@ -1124,8 +1096,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether1", + "metric": "error_counter_out", + "label": "ether29", "value": 0, "unit": "c", "thresholds": { @@ -1138,8 +1110,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether4", + "metric": "traffic_counter_in", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -1152,10 +1124,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether8", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether14", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1166,10 +1138,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether9", - "value": 60606, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether14", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1180,9 +1152,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether14", - "value": 546, + "metric": "packet_counter_discard_in", + "label": "ether19", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1195,7 +1167,7 @@ }, { "metric": "packet_counter_multicast_in", - "label": "ether14", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -1208,9 +1180,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether25", - "value": 546, + "metric": "packet_counter_multicast_out", + "label": "ether29", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1222,10 +1194,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether4", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether29", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1236,10 +1208,10 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether5", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether27", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1250,8 +1222,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether24", + "metric": "traffic_counter_in", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -1264,8 +1236,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether11", + "metric": "packet_counter_discard_out", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -1279,7 +1251,7 @@ }, { "metric": "interface_maxspeed_out", - "label": "ether25", + "label": "ether19", "value": 1000000000, "unit": "", "thresholds": { @@ -1292,8 +1264,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether28", + "metric": "error_counter_in", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -1306,10 +1278,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether30", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_in", + "label": "ether2", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1320,8 +1292,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether15", + "metric": "packet_counter_broadcast_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -1334,10 +1306,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether16", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether18", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1348,10 +1320,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether17", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether2", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1362,8 +1334,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether14", + "metric": "error_counter_in", + "label": "ether16", "value": 0, "unit": "c", "thresholds": { @@ -1376,8 +1348,22 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether23", + "metric": "traffic_counter_out", + "label": "ether18", + "value": 61488, + "unit": "c", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "error_counter_out", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -1390,9 +1376,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether23", - "value": 61152, + "metric": "traffic_counter_in", + "label": "ether27", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1404,9 +1390,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether24", - "value": 546, + "metric": "packet_counter_multicast_in", + "label": "ether8", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1418,8 +1404,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether3", + "metric": "error_counter_in", + "label": "ether18", "value": 0, "unit": "c", "thresholds": { @@ -1432,10 +1418,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether4", - "value": 1, - "unit": "", + "metric": "traffic_counter_in", + "label": "ether18", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1447,7 +1433,7 @@ }, { "metric": "traffic_counter_in", - "label": "ether4", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -1460,8 +1446,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether9", + "metric": "error_counter_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -1474,10 +1460,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether11", - "value": 1000000000, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether4", + "value": 60939, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1489,7 +1475,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "ether12", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -1502,8 +1488,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether13", + "metric": "packet_counter_broadcast_out", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -1517,7 +1503,7 @@ }, { "metric": "packet_counter_discard_in", - "label": "ether19", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -1530,9 +1516,9 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether1", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether17", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -1545,7 +1531,7 @@ }, { "metric": "packet_counter_broadcast_in", - "label": "ether4", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -1559,7 +1545,7 @@ }, { "metric": "error_counter_in", - "label": "ether9", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -1572,8 +1558,8 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether25", + "metric": "interface_admin_status", + "label": "ether30", "value": 1, "unit": "", "thresholds": { @@ -1586,8 +1572,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether8", + "metric": "packet_counter_multicast_out", + "label": "ether20", "value": 0, "unit": "c", "thresholds": { @@ -1600,10 +1586,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether25", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether32", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1614,10 +1600,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether26", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether4", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1628,10 +1614,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether16", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether27", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1642,10 +1628,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether20", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether27", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1656,9 +1642,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether25", - "value": 61152, + "metric": "packet_counter_discard_out", + "label": "ether30", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1670,10 +1656,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether1", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether5", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1684,10 +1670,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether8", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether5", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1698,8 +1684,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether15", + "metric": "packet_counter_discard_in", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -1712,10 +1698,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether32", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether11", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1726,10 +1712,10 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether1", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether14", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1740,9 +1726,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether7", - "value": 546, + "metric": "error_counter_in", + "label": "ether15", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -1754,8 +1740,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether12", + "metric": "packet_counter_discard_out", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -1768,8 +1754,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether28", + "metric": "error_counter_in", + "label": "ether20", "value": 0, "unit": "c", "thresholds": { @@ -1782,8 +1768,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether29", + "metric": "error_counter_in", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -1797,7 +1783,7 @@ }, { "metric": "interface_oper_status", - "label": "ether31", + "label": "ether17", "value": 1, "unit": "", "thresholds": { @@ -1810,10 +1796,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether10", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether18", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1825,7 +1811,7 @@ }, { "metric": "interface_maxspeed_in", - "label": "ether17", + "label": "ether19", "value": 1000000000, "unit": "", "thresholds": { @@ -1838,8 +1824,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether19", + "metric": "packet_counter_multicast_out", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -1853,7 +1839,7 @@ }, { "metric": "packet_counter_discard_out", - "label": "ether24", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -1866,10 +1852,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether11", - "value": 546, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether13", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1880,8 +1866,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether16", + "metric": "error_counter_out", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -1894,10 +1880,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether18", - "value": 61488, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether31", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -1908,8 +1894,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether14", + "metric": "packet_counter_multicast_in", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -1922,10 +1908,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether21", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether14", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1936,10 +1922,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether29", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether30", + "value": 546, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1950,9 +1936,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether31", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether14", + "value": 61152, "unit": "c", "thresholds": { "warningMin": null, @@ -1964,10 +1950,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether31", - "value": 1000000000, - "unit": "", + "metric": "error_counter_out", + "label": "ether18", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -1978,8 +1964,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether7", + "metric": "packet_counter_broadcast_out", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -1992,8 +1978,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether10", + "metric": "interface_maxspeed_in", + "label": "ether1", "value": 1000000000, "unit": "", "thresholds": { @@ -2006,10 +1992,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether12", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether3", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2020,8 +2006,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether26", + "metric": "packet_counter_broadcast_in", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -2034,8 +2020,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether27", + "metric": "packet_counter_discard_out", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -2048,8 +2034,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether30", + "metric": "error_counter_out", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -2062,9 +2048,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether30", - "value": 546, + "metric": "traffic_counter_in", + "label": "ether16", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2077,7 +2063,7 @@ }, { "metric": "error_counter_out", - "label": "ether12", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -2090,10 +2076,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether12", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_out", + "label": "ether6", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2104,8 +2090,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether16", + "metric": "packet_counter_multicast_out", + "label": "ether10", "value": 0, "unit": "c", "thresholds": { @@ -2118,8 +2104,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether8", + "metric": "packet_counter_multicast_in", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -2132,10 +2118,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "interface_oper_status", "label": "ether16", - "value": 0, - "unit": "c", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2146,8 +2132,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether30", + "metric": "packet_counter_discard_in", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -2160,8 +2146,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether23", + "metric": "packet_counter_multicast_in", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -2174,8 +2160,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether32", + "metric": "packet_counter_unicast_in", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -2188,8 +2174,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether3", + "metric": "error_counter_out", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -2202,7 +2188,7 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "packet_counter_multicast_in", "label": "ether9", "value": 0, "unit": "c", @@ -2216,8 +2202,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether32", + "metric": "packet_counter_unicast_in", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -2230,10 +2216,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether23", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether21", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2244,10 +2230,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether15", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether21", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2258,8 +2244,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether19", + "metric": "traffic_counter_in", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -2272,9 +2258,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether20", - "value": 549, + "metric": "packet_counter_broadcast_out", + "label": "ether21", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2286,10 +2272,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether26", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "ether27", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2300,10 +2286,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether27", - "value": 546, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether29", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2314,8 +2300,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether10", + "metric": "packet_counter_unicast_in", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -2329,7 +2315,7 @@ }, { "metric": "traffic_counter_in", - "label": "ether17", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -2343,7 +2329,7 @@ }, { "metric": "packet_counter_broadcast_in", - "label": "ether17", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -2357,8 +2343,8 @@ }, { "metric": "traffic_counter_out", - "label": "ether11", - "value": 61152, + "label": "ether6", + "value": 60606, "unit": "c", "thresholds": { "warningMin": null, @@ -2370,22 +2356,8 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether7", - "value": 1, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "packet_counter_broadcast_out", - "label": "ether20", + "metric": "error_counter_out", + "label": "ether10", "value": 0, "unit": "c", "thresholds": { @@ -2399,7 +2371,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether22", + "label": "ether16", "value": 0, "unit": "c", "thresholds": { @@ -2412,8 +2384,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether17", + "metric": "packet_counter_discard_out", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -2427,7 +2399,7 @@ }, { "metric": "packet_counter_broadcast_out", - "label": "ether21", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -2440,10 +2412,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether22", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "ether6", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2454,8 +2426,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether24", + "metric": "error_counter_in", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -2468,9 +2440,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether8", - "value": 60606, + "metric": "packet_counter_multicast_in", + "label": "ether16", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2483,7 +2455,7 @@ }, { "metric": "interface_oper_status", - "label": "ether11", + "label": "ether19", "value": 1, "unit": "", "thresholds": { @@ -2496,9 +2468,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether13", - "value": 549, + "metric": "packet_counter_discard_out", + "label": "ether20", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2510,7 +2482,7 @@ "max": null }, { - "metric": "error_counter_in", + "metric": "packet_counter_broadcast_out", "label": "ether14", "value": 0, "unit": "c", @@ -2524,9 +2496,9 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether1", - "value": 1348329, + "metric": "traffic_counter_out", + "label": "ether16", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -2538,10 +2510,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether5", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether21", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2552,10 +2524,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether6", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether8", + "value": 60606, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2566,8 +2538,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether10", + "metric": "traffic_counter_in", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -2580,10 +2552,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether12", - "value": 61488, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether16", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2594,9 +2566,9 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether15", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether23", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -2608,9 +2580,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether31", - "value": 549, + "metric": "error_counter_out", + "label": "ether17", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2622,10 +2594,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether7", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether23", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -2636,8 +2608,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether14", + "metric": "interface_maxspeed_in", + "label": "ether26", "value": 1000000000, "unit": "", "thresholds": { @@ -2650,8 +2622,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether25", + "metric": "error_counter_out", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -2665,8 +2637,8 @@ }, { "metric": "packet_counter_unicast_out", - "label": "ether1", - "value": 13374, + "label": "ether5", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -2678,10 +2650,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether21", - "value": 549, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether20", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2692,8 +2664,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether18", + "metric": "packet_counter_broadcast_out", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -2706,8 +2678,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether30", + "metric": "packet_counter_broadcast_in", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -2720,9 +2692,9 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether31", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether25", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -2734,8 +2706,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether6", + "metric": "error_counter_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -2748,10 +2720,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether6", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether12", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2762,8 +2734,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether13", + "metric": "error_counter_in", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -2776,8 +2748,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether29", + "metric": "error_counter_in", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -2790,9 +2762,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether32", - "value": 549, + "metric": "error_counter_in", + "label": "ether4", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -2804,10 +2776,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether20", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether5", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2818,10 +2790,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether23", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether8", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2832,9 +2804,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether25", - "value": 1, + "metric": "interface_maxspeed_in", + "label": "ether18", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -2846,8 +2818,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether4", + "metric": "packet_counter_broadcast_out", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -2861,7 +2833,7 @@ }, { "metric": "error_counter_out", - "label": "ether21", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -2874,8 +2846,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether31", + "metric": "packet_counter_discard_out", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -2888,8 +2860,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether11", + "metric": "traffic_counter_in", + "label": "ether29", "value": 0, "unit": "c", "thresholds": { @@ -2902,8 +2874,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether26", + "metric": "packet_counter_discard_out", + "label": "ether16", "value": 0, "unit": "c", "thresholds": { @@ -2916,10 +2888,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether1", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether23", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2930,8 +2902,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether5", + "metric": "packet_counter_multicast_out", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -2944,10 +2916,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether8", - "value": 546, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether25", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -2958,8 +2930,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether10", + "metric": "packet_counter_discard_out", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -2972,8 +2944,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether26", + "metric": "error_counter_out", + "label": "ether8", "value": 0, "unit": "c", "thresholds": { @@ -2986,9 +2958,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether5", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether8", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -3000,10 +2972,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether7", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether19", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3014,8 +2986,22 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether22", + "metric": "interface_maxspeed_out", + "label": "ether13", + "value": 1000000000, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "error_counter_in", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -3028,8 +3014,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether24", + "metric": "packet_counter_broadcast_out", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -3042,9 +3028,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether29", - "value": 61152, + "metric": "error_counter_in", + "label": "ether11", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3056,10 +3042,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether1", - "value": 1000000000, - "unit": "", + "metric": "traffic_counter_in", + "label": "ether12", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3070,8 +3056,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether2", + "metric": "traffic_counter_in", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -3084,8 +3070,8 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether4", + "metric": "interface_admin_status", + "label": "ether10", "value": 1, "unit": "", "thresholds": { @@ -3098,8 +3084,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether29", + "metric": "packet_counter_broadcast_in", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -3112,10 +3098,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether23", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether27", + "value": 61152, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3126,8 +3112,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether18", + "metric": "packet_counter_multicast_in", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -3140,8 +3126,8 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether19", + "metric": "interface_oper_status", + "label": "ether25", "value": 1, "unit": "", "thresholds": { @@ -3154,8 +3140,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether22", + "metric": "packet_counter_broadcast_out", + "label": "ether29", "value": 0, "unit": "c", "thresholds": { @@ -3168,10 +3154,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether16", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether7", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3182,8 +3168,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether24", + "metric": "error_counter_out", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -3196,10 +3182,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether32", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether11", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3210,8 +3196,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether2", + "metric": "packet_counter_unicast_in", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -3225,7 +3211,7 @@ }, { "metric": "packet_counter_broadcast_out", - "label": "ether12", + "label": "ether18", "value": 0, "unit": "c", "thresholds": { @@ -3238,10 +3224,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether15", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether23", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3252,8 +3238,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether28", + "metric": "error_counter_out", + "label": "ether27", "value": 0, "unit": "c", "thresholds": { @@ -3266,9 +3252,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether5", - "value": 60606, + "metric": "packet_counter_multicast_out", + "label": "ether30", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3280,10 +3266,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether32", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether7", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3294,9 +3280,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether26", - "value": 61488, + "metric": "packet_counter_discard_in", + "label": "ether7", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3308,8 +3294,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether4", + "metric": "packet_counter_unicast_in", + "label": "ether16", "value": 0, "unit": "c", "thresholds": { @@ -3322,8 +3308,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether6", + "metric": "packet_counter_unicast_in", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -3336,10 +3322,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether15", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether31", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3350,9 +3336,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether5", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether4", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -3364,9 +3350,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether32", - "value": 61488, + "metric": "packet_counter_unicast_out", + "label": "ether27", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -3377,9 +3363,23 @@ "min": null, "max": null }, + { + "metric": "interface_oper_status", + "label": "ether9", + "value": 1, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, { "metric": "packet_counter_discard_in", - "label": "ether31", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -3392,7 +3392,7 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "packet_counter_broadcast_in", "label": "ether20", "value": 0, "unit": "c", @@ -3406,8 +3406,8 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether2", + "metric": "interface_admin_status", + "label": "ether22", "value": 1, "unit": "", "thresholds": { @@ -3420,10 +3420,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether10", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether28", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3434,8 +3434,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether15", + "metric": "error_counter_out", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -3448,10 +3448,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether23", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether9", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3462,10 +3462,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether1", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether10", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3476,10 +3476,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether6", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether17", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3490,8 +3490,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether16", + "metric": "traffic_counter_in", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -3504,8 +3504,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether7", + "metric": "traffic_counter_in", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -3518,10 +3518,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether27", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether7", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3532,8 +3532,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether28", + "metric": "error_counter_in", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -3546,9 +3546,9 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether28", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether15", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -3560,10 +3560,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether1", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether18", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3574,9 +3574,9 @@ "max": null }, { - "metric": "traffic_counter_out", + "metric": "packet_counter_broadcast_in", "label": "ether3", - "value": 60939, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3588,8 +3588,22 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether4", + "metric": "interface_maxspeed_in", + "label": "ether15", + "value": 1000000000, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "traffic_counter_in", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -3602,8 +3616,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether19", + "metric": "traffic_counter_in", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -3616,8 +3630,8 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether18", + "metric": "interface_oper_status", + "label": "ether28", "value": 1, "unit": "", "thresholds": { @@ -3630,9 +3644,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether20", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether30", + "value": 61152, "unit": "c", "thresholds": { "warningMin": null, @@ -3644,8 +3658,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether30", + "metric": "packet_counter_discard_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -3658,10 +3672,24 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether32", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether5", + "value": 1000000000, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "interface_oper_status", + "label": "ether14", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3673,7 +3701,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether9", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -3686,9 +3714,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether10", - "value": 1, + "metric": "interface_maxspeed_in", + "label": "ether28", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -3700,10 +3728,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether12", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether6", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3715,7 +3743,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether17", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -3728,10 +3756,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether19", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether16", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -3742,8 +3770,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether12", + "metric": "packet_counter_broadcast_out", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -3756,10 +3784,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether12", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether7", + "value": 546, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3770,9 +3798,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether14", - "value": 61152, + "metric": "packet_counter_multicast_in", + "label": "ether7", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3784,8 +3812,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether19", + "metric": "packet_counter_broadcast_out", + "label": "ether16", "value": 0, "unit": "c", "thresholds": { @@ -3798,10 +3826,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether9", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether19", + "value": 549, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3812,8 +3840,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether11", + "metric": "packet_counter_multicast_in", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -3826,9 +3854,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether14", - "value": 1000000000, + "metric": "interface_admin_status", + "label": "ether24", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -3840,8 +3868,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether21", + "metric": "packet_counter_discard_in", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -3854,10 +3882,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether30", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether2", + "value": 60939, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3868,7 +3896,7 @@ "max": null }, { - "metric": "packet_counter_multicast_in", + "metric": "packet_counter_multicast_out", "label": "ether2", "value": 0, "unit": "c", @@ -3882,10 +3910,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether2", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether3", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3896,8 +3924,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether12", + "metric": "packet_counter_broadcast_in", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -3910,8 +3938,22 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether22", + "metric": "traffic_counter_out", + "label": "ether5", + "value": 60606, + "unit": "c", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "packet_counter_multicast_out", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -3924,8 +3966,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether4", + "metric": "interface_maxspeed_in", + "label": "ether25", "value": 1000000000, "unit": "", "thresholds": { @@ -3938,8 +3980,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether13", + "metric": "packet_counter_multicast_in", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -3951,9 +3993,23 @@ "min": null, "max": null }, + { + "metric": "interface_maxspeed_out", + "label": "ether7", + "value": 1000000000, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, { "metric": "packet_counter_broadcast_out", - "label": "ether13", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -3966,9 +4022,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether24", - "value": 61152, + "metric": "packet_counter_broadcast_out", + "label": "ether10", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -3980,10 +4036,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether28", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether12", + "value": 61488, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -3994,8 +4050,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether31", + "metric": "packet_counter_broadcast_out", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -4008,8 +4064,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether32", + "metric": "error_counter_in", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -4022,8 +4078,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether5", + "metric": "packet_counter_multicast_out", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -4036,9 +4092,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether13", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether21", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4050,9 +4106,9 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether22", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether13", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -4064,10 +4120,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether30", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether14", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4078,9 +4134,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether5", - "value": 546, + "metric": "traffic_counter_in", + "label": "ether17", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4092,8 +4148,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether10", + "metric": "packet_counter_multicast_out", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -4106,7 +4162,7 @@ "max": null }, { - "metric": "interface_admin_status", + "metric": "interface_oper_status", "label": "ether27", "value": 1, "unit": "", @@ -4120,10 +4176,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether3", - "value": 1000000000, - "unit": "", + "metric": "error_counter_in", + "label": "ether28", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4134,8 +4190,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether11", + "metric": "error_counter_out", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -4148,8 +4204,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether14", + "metric": "error_counter_in", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -4162,8 +4218,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether17", + "metric": "error_counter_in", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -4176,10 +4232,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether23", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether12", + "value": 549, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4190,8 +4246,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether26", + "metric": "traffic_counter_in", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -4204,8 +4260,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether10", + "metric": "packet_counter_discard_in", + "label": "ether30", "value": 0, "unit": "c", "thresholds": { @@ -4218,9 +4274,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether20", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether10", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4232,9 +4288,9 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether15", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether30", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -4247,7 +4303,7 @@ }, { "metric": "traffic_counter_in", - "label": "ether26", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -4260,8 +4316,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether1", + "metric": "packet_counter_unicast_in", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -4274,8 +4330,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether3", + "metric": "packet_counter_multicast_in", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -4288,8 +4344,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether6", + "metric": "packet_counter_broadcast_out", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -4302,9 +4358,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether1", - "value": 3121399, + "metric": "packet_counter_broadcast_out", + "label": "ether13", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4316,8 +4372,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether9", + "metric": "packet_counter_multicast_in", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -4330,10 +4386,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether14", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether24", + "value": 61152, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4344,8 +4400,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether18", + "metric": "packet_counter_broadcast_out", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -4358,9 +4414,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether32", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether26", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -4372,23 +4428,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether30", - "value": 0, - "unit": "c", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "packet_counter_multicast_out", - "label": "ether10", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether3", + "value": 60939, "unit": "c", "thresholds": { "warningMin": null, @@ -4400,9 +4442,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether24", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether4", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -4415,21 +4457,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether28", - "value": 0, - "unit": "c", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "error_counter_out", - "label": "ether29", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -4442,8 +4470,8 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether32", + "metric": "interface_maxspeed_out", + "label": "ether3", "value": 1000000000, "unit": "", "thresholds": { @@ -4456,9 +4484,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether7", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether8", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4470,9 +4498,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether17", - "value": 1000000000, + "metric": "interface_admin_status", + "label": "ether11", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4484,8 +4512,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether21", + "metric": "error_counter_out", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -4498,10 +4526,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether22", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether20", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4512,9 +4540,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether5", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether22", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4526,10 +4554,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether9", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "ether22", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4540,10 +4568,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether20", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether23", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4554,8 +4582,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether8", + "metric": "packet_counter_discard_in", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -4568,9 +4596,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether18", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether31", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -4582,8 +4610,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether20", + "metric": "packet_counter_multicast_in", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -4596,8 +4624,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether24", + "metric": "packet_counter_broadcast_in", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -4610,10 +4638,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether26", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether2", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -4625,7 +4653,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "ether28", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -4638,8 +4666,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether6", + "metric": "packet_counter_multicast_in", + "label": "ether29", "value": 0, "unit": "c", "thresholds": { @@ -4652,10 +4680,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether8", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "ether4", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4666,8 +4694,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether16", + "metric": "packet_counter_discard_out", + "label": "ether10", "value": 0, "unit": "c", "thresholds": { @@ -4680,10 +4708,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether11", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_in", + "label": "ether14", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4708,9 +4736,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether3", - "value": 549, + "metric": "packet_counter_discard_out", + "label": "ether26", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4722,9 +4750,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether10", - "value": 61488, + "metric": "packet_counter_broadcast_in", + "label": "ether5", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4736,9 +4764,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether11", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether16", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -4750,8 +4778,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether11", + "metric": "packet_counter_discard_in", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -4764,8 +4792,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether14", + "metric": "packet_counter_broadcast_in", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -4778,8 +4806,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether16", + "metric": "packet_counter_unicast_in", + "label": "ether27", "value": 0, "unit": "c", "thresholds": { @@ -4792,10 +4820,10 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether18", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether4", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -4806,10 +4834,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether21", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether6", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -4821,7 +4849,7 @@ }, { "metric": "packet_counter_multicast_out", - "label": "ether5", + "label": "ether7", "value": 0, "unit": "c", "thresholds": { @@ -4834,8 +4862,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether7", + "metric": "packet_counter_unicast_in", + "label": "ether18", "value": 0, "unit": "c", "thresholds": { @@ -4848,9 +4876,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether9", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether26", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -4862,9 +4890,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether27", - "value": 1000000000, + "metric": "interface_oper_status", + "label": "ether2", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -4876,10 +4904,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether30", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether9", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -4890,10 +4918,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether1", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether9", + "value": 60606, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4904,9 +4932,9 @@ "max": null }, { - "metric": "traffic_counter_out", + "metric": "error_counter_in", "label": "ether13", - "value": 61488, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4918,8 +4946,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether22", + "metric": "traffic_counter_in", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -4932,10 +4960,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether26", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether29", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -4946,8 +4974,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether27", + "metric": "packet_counter_discard_out", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -4960,9 +4988,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether4", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether32", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -4974,9 +5002,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether12", - "value": 549, + "metric": "packet_counter_broadcast_out", + "label": "ether7", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -4988,10 +5016,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether18", - "value": 1000000000, - "unit": "", + "metric": "traffic_counter_in", + "label": "ether15", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5002,10 +5030,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether24", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether18", + "value": 549, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5016,8 +5044,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether32", + "metric": "packet_counter_broadcast_in", + "label": "ether7", "value": 0, "unit": "c", "thresholds": { @@ -5030,10 +5058,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether32", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether15", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5044,8 +5072,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether2", + "metric": "packet_counter_broadcast_out", + "label": "ether23", "value": 0, "unit": "c", "thresholds": { @@ -5058,9 +5086,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether19", - "value": 61488, + "metric": "packet_counter_discard_out", + "label": "ether23", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5073,7 +5101,7 @@ }, { "metric": "interface_maxspeed_in", - "label": "ether23", + "label": "ether27", "value": 1000000000, "unit": "", "thresholds": { @@ -5086,9 +5114,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether26", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether10", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -5100,8 +5128,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether31", + "metric": "packet_counter_discard_in", + "label": "ether13", "value": 0, "unit": "c", "thresholds": { @@ -5115,7 +5143,7 @@ }, { "metric": "packet_counter_broadcast_in", - "label": "ether13", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -5128,7 +5156,7 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "packet_counter_broadcast_in", "label": "ether16", "value": 0, "unit": "c", @@ -5142,9 +5170,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether19", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether20", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -5157,7 +5185,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "ether14", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -5170,10 +5198,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether25", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_in", + "label": "ether3", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5184,8 +5212,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether23", + "metric": "error_counter_out", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -5198,9 +5226,9 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether10", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether14", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -5212,9 +5240,9 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether10", - "value": 1, + "metric": "interface_maxspeed_out", + "label": "ether1", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -5226,8 +5254,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether13", + "metric": "packet_counter_unicast_in", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -5240,9 +5268,23 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether17", - "value": 546, + "metric": "packet_counter_unicast_in", + "label": "ether11", + "value": 0, + "unit": "c", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "packet_counter_discard_in", + "label": "ether16", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5254,10 +5296,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether9", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether17", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5268,8 +5310,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether11", + "metric": "traffic_counter_in", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -5282,8 +5324,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether17", + "metric": "packet_counter_multicast_out", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -5296,8 +5338,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether22", + "metric": "packet_counter_discard_out", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -5310,9 +5352,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether23", - "value": 546, + "metric": "packet_counter_unicast_in", + "label": "ether1", + "value": 12788, "unit": "c", "thresholds": { "warningMin": null, @@ -5324,10 +5366,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether27", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether3", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5338,9 +5380,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether4", - "value": 549, + "metric": "packet_counter_multicast_out", + "label": "ether3", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5352,8 +5394,8 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether14", + "metric": "interface_oper_status", + "label": "ether15", "value": 1, "unit": "", "thresholds": { @@ -5366,10 +5408,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether17", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether29", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5380,7 +5422,7 @@ "max": null }, { - "metric": "error_counter_in", + "metric": "packet_counter_multicast_in", "label": "ether3", "value": 0, "unit": "c", @@ -5394,8 +5436,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether3", + "metric": "packet_counter_broadcast_out", + "label": "ether5", "value": 0, "unit": "c", "thresholds": { @@ -5409,7 +5451,7 @@ }, { "metric": "traffic_counter_in", - "label": "ether14", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -5422,9 +5464,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether15", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether7", + "value": 60606, "unit": "c", "thresholds": { "warningMin": null, @@ -5437,7 +5479,7 @@ }, { "metric": "interface_maxspeed_out", - "label": "ether3", + "label": "ether20", "value": 1000000000, "unit": "", "thresholds": { @@ -5450,9 +5492,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether10", - "value": 549, + "metric": "error_counter_in", + "label": "ether26", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5464,10 +5506,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether25", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether32", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5478,10 +5520,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether18", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_out", + "label": "ether1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5492,10 +5534,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether19", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether10", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5507,8 +5549,8 @@ }, { "metric": "traffic_counter_out", - "label": "ether27", - "value": 61152, + "label": "ether20", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -5521,7 +5563,7 @@ }, { "metric": "interface_maxspeed_in", - "label": "ether4", + "label": "ether21", "value": 1000000000, "unit": "", "thresholds": { @@ -5534,10 +5576,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether15", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5548,10 +5590,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether18", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether12", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5562,8 +5604,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether25", + "metric": "packet_counter_unicast_in", + "label": "ether7", "value": 0, "unit": "c", "thresholds": { @@ -5577,7 +5619,7 @@ }, { "metric": "packet_counter_broadcast_in", - "label": "ether28", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -5590,10 +5632,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether31", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5605,7 +5647,7 @@ }, { "metric": "packet_counter_multicast_in", - "label": "ether6", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -5618,9 +5660,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether7", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether29", + "value": 61152, "unit": "c", "thresholds": { "warningMin": null, @@ -5632,10 +5674,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether22", - "value": 546, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5646,8 +5688,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether29", + "metric": "error_counter_out", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -5660,10 +5702,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether6", - "value": 546, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether12", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5674,8 +5716,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether18", + "metric": "packet_counter_broadcast_in", + "label": "ether12", "value": 0, "unit": "c", "thresholds": { @@ -5687,23 +5729,9 @@ "min": null, "max": null }, - { - "metric": "interface_maxspeed_out", - "label": "ether20", - "value": 1000000000, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, { "metric": "error_counter_out", - "label": "ether8", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -5716,8 +5744,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether25", + "metric": "packet_counter_multicast_in", + "label": "ether22", "value": 0, "unit": "c", "thresholds": { @@ -5730,7 +5758,7 @@ "max": null }, { - "metric": "packet_counter_unicast_in", + "metric": "packet_counter_broadcast_in", "label": "ether30", "value": 0, "unit": "c", @@ -5744,9 +5772,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether1", - "value": 12788, + "metric": "packet_counter_broadcast_in", + "label": "ether32", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5758,9 +5786,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether2", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether11", + "value": 61152, "unit": "c", "thresholds": { "warningMin": null, @@ -5772,10 +5800,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether6", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether32", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5786,10 +5814,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether9", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether2", + "value": 549, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5800,10 +5828,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether16", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether4", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5814,10 +5842,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether12", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether10", + "value": 549, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5828,9 +5856,9 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether13", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether15", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -5842,10 +5870,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether19", - "value": 1, - "unit": "", + "metric": "traffic_counter_in", + "label": "ether20", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -5856,10 +5884,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether14", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether22", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5870,8 +5898,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether4", + "metric": "packet_counter_multicast_in", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -5884,10 +5912,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether5", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether26", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -5898,8 +5926,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether6", + "metric": "packet_counter_broadcast_in", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -5912,8 +5940,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether8", + "metric": "packet_counter_unicast_in", + "label": "ether31", "value": 0, "unit": "c", "thresholds": { @@ -5926,8 +5954,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether29", + "metric": "packet_counter_broadcast_in", + "label": "ether10", "value": 0, "unit": "c", "thresholds": { @@ -5940,9 +5968,9 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether15", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether32", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -5954,9 +5982,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether16", - "value": 61488, + "metric": "packet_counter_multicast_out", + "label": "ether32", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -5968,8 +5996,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether27", + "metric": "packet_counter_broadcast_out", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -5982,9 +6010,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether28", - "value": 61152, + "metric": "packet_counter_unicast_out", + "label": "ether29", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -5996,7 +6024,7 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", + "metric": "packet_counter_broadcast_in", "label": "ether29", "value": 0, "unit": "c", @@ -6010,8 +6038,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether3", + "metric": "packet_counter_discard_out", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -6024,10 +6052,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether11", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether16", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6038,8 +6066,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether14", + "metric": "traffic_counter_in", + "label": "ether7", "value": 0, "unit": "c", "thresholds": { @@ -6052,9 +6080,9 @@ "max": null }, { - "metric": "traffic_counter_out", + "metric": "packet_counter_multicast_in", "label": "ether20", - "value": 61488, + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6066,10 +6094,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether27", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether24", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6080,9 +6108,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether19", - "value": 1000000000, + "metric": "interface_admin_status", + "label": "ether26", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -6094,10 +6122,10 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether20", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether4", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6108,8 +6136,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether21", + "metric": "packet_counter_multicast_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -6122,10 +6150,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether22", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether18", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6136,8 +6164,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether23", + "metric": "packet_counter_unicast_in", + "label": "ether32", "value": 0, "unit": "c", "thresholds": { @@ -6150,10 +6178,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether6", - "value": 1000000000, - "unit": "", + "metric": "error_counter_in", + "label": "ether1", + "value": 1158, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6164,10 +6192,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether15", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_unicast_in", + "label": "ether4", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6178,9 +6206,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether21", - "value": 61488, + "metric": "error_counter_in", + "label": "ether10", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6192,10 +6220,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether19", - "value": 549, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether30", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6206,8 +6234,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether19", + "metric": "traffic_counter_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -6220,8 +6248,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether24", + "metric": "error_counter_in", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -6235,7 +6263,7 @@ }, { "metric": "packet_counter_unicast_in", - "label": "ether24", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -6248,8 +6276,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether25", + "metric": "packet_counter_unicast_in", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -6262,8 +6290,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether8", + "metric": "packet_counter_multicast_out", + "label": "ether18", "value": 0, "unit": "c", "thresholds": { @@ -6276,10 +6304,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether9", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether21", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6290,10 +6318,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether9", - "value": 1000000000, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether25", + "value": 61152, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6304,10 +6332,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether31", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether2", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6319,7 +6347,7 @@ }, { "metric": "interface_maxspeed_in", - "label": "ether24", + "label": "ether6", "value": 1000000000, "unit": "", "thresholds": { @@ -6332,9 +6360,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether15", - "value": 549, + "metric": "packet_counter_multicast_out", + "label": "ether13", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6346,8 +6374,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether18", + "metric": "error_counter_in", + "label": "ether24", "value": 0, "unit": "c", "thresholds": { @@ -6360,9 +6388,9 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether29", - "value": 1, + "metric": "interface_maxspeed_in", + "label": "ether30", + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -6374,7 +6402,7 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "packet_counter_broadcast_in", "label": "ether31", "value": 0, "unit": "c", @@ -6388,10 +6416,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether31", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether7", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6402,8 +6430,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether2", + "metric": "traffic_counter_in", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -6416,10 +6444,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether3", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether28", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6430,7 +6458,7 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "error_counter_out", "label": "ether3", "value": 0, "unit": "c", @@ -6444,8 +6472,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether24", + "metric": "error_counter_in", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -6458,10 +6486,10 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether7", - "value": 60606, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether24", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6472,8 +6500,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether20", + "metric": "packet_counter_broadcast_in", + "label": "ether25", "value": 0, "unit": "c", "thresholds": { @@ -6486,8 +6514,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether21", + "metric": "packet_counter_unicast_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -6499,23 +6527,9 @@ "min": null, "max": null }, - { - "metric": "packet_counter_unicast_out", - "label": "ether18", - "value": 549, - "unit": "c", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, { "metric": "interface_admin_status", - "label": "ether21", + "label": "ether6", "value": 1, "unit": "", "thresholds": { @@ -6528,9 +6542,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether2", - "value": 60939, + "metric": "packet_counter_unicast_out", + "label": "ether3", + "value": 549, "unit": "c", "thresholds": { "warningMin": null, @@ -6542,8 +6556,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether13", + "metric": "packet_counter_multicast_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -6556,8 +6570,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether17", + "metric": "packet_counter_discard_in", + "label": "ether18", "value": 0, "unit": "c", "thresholds": { @@ -6570,10 +6584,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether25", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether32", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6584,10 +6598,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether26", - "value": 1, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether21", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6598,9 +6612,9 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether30", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether21", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -6612,9 +6626,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether31", - "value": 61488, + "metric": "packet_counter_broadcast_out", + "label": "ether27", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6626,9 +6640,9 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether6", - "value": 60606, + "metric": "error_counter_in", + "label": "ether29", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6640,9 +6654,9 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether16", - "value": 0, + "metric": "packet_counter_unicast_out", + "label": "ether11", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -6654,8 +6668,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether21", + "metric": "packet_counter_multicast_in", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -6668,8 +6682,8 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether21", + "metric": "interface_maxspeed_in", + "label": "ether13", "value": 1000000000, "unit": "", "thresholds": { @@ -6682,10 +6696,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether26", - "value": 549, - "unit": "c", + "metric": "interface_maxspeed_in", + "label": "ether16", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6696,8 +6710,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether2", + "metric": "packet_counter_broadcast_in", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -6710,8 +6724,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether4", + "metric": "packet_counter_multicast_out", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -6724,8 +6738,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether6", + "metric": "packet_counter_unicast_in", + "label": "ether26", "value": 0, "unit": "c", "thresholds": { @@ -6739,8 +6753,8 @@ }, { "metric": "traffic_counter_out", - "label": "ether30", - "value": 61152, + "label": "ether1", + "value": 3121399, "unit": "c", "thresholds": { "warningMin": null, @@ -6752,10 +6766,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether5", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether3", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6766,8 +6780,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether9", + "metric": "traffic_counter_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -6781,7 +6795,7 @@ }, { "metric": "traffic_counter_in", - "label": "ether29", + "label": "ether28", "value": 0, "unit": "c", "thresholds": { @@ -6794,10 +6808,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether28", - "value": 1000000000, - "unit": "", + "metric": "packet_counter_discard_out", + "label": "ether2", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6808,8 +6822,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether17", + "metric": "packet_counter_discard_in", + "label": "ether6", "value": 0, "unit": "c", "thresholds": { @@ -6822,8 +6836,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether18", + "metric": "packet_counter_discard_in", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -6836,8 +6850,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether23", + "metric": "packet_counter_multicast_out", + "label": "ether17", "value": 0, "unit": "c", "thresholds": { @@ -6850,10 +6864,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether23", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether28", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6864,10 +6878,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether30", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether5", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6878,9 +6892,9 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether1", - "value": 1158, + "metric": "packet_counter_discard_out", + "label": "ether8", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -6892,10 +6906,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether7", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether10", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6906,8 +6920,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether12", + "metric": "packet_counter_discard_out", + "label": "ether11", "value": 0, "unit": "c", "thresholds": { @@ -6920,8 +6934,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether22", + "metric": "packet_counter_broadcast_in", + "label": "ether14", "value": 0, "unit": "c", "thresholds": { @@ -6934,8 +6948,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether32", + "metric": "packet_counter_unicast_in", + "label": "ether19", "value": 0, "unit": "c", "thresholds": { @@ -6948,10 +6962,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether3", - "value": 1, - "unit": "", + "metric": "traffic_counter_out", + "label": "ether23", + "value": 61152, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6962,10 +6976,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether6", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_in", + "label": "ether9", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -6976,10 +6990,10 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether10", - "value": 0, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether18", + "value": 1000000000, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -6991,7 +7005,7 @@ }, { "metric": "interface_admin_status", - "label": "ether16", + "label": "ether23", "value": 1, "unit": "", "thresholds": { @@ -7004,8 +7018,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether29", + "metric": "error_counter_in", + "label": "ether27", "value": 0, "unit": "c", "thresholds": { @@ -7032,9 +7046,9 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether9", - "value": 546, + "metric": "packet_counter_multicast_out", + "label": "ether8", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -7046,8 +7060,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether10", + "metric": "error_counter_out", + "label": "ether15", "value": 0, "unit": "c", "thresholds": { @@ -7060,8 +7074,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether3", + "metric": "packet_counter_discard_in", + "label": "ether21", "value": 0, "unit": "c", "thresholds": { @@ -7074,10 +7088,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether22", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -7088,8 +7102,8 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether24", + "metric": "interface_admin_status", + "label": "ether8", "value": 1, "unit": "", "thresholds": { @@ -7102,8 +7116,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether26", + "metric": "packet_counter_discard_in", + "label": "ether9", "value": 0, "unit": "c", "thresholds": { @@ -7116,10 +7130,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether13", - "value": 1, - "unit": "", + "metric": "packet_counter_broadcast_out", + "label": "ether15", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -7131,8 +7145,8 @@ }, { "metric": "packet_counter_unicast_out", - "label": "ether16", - "value": 549, + "label": "ether28", + "value": 546, "unit": "c", "thresholds": { "warningMin": null, @@ -7145,7 +7159,7 @@ }, { "metric": "packet_counter_discard_in", - "label": "ether21", + "label": "ether29", "value": 0, "unit": "c", "thresholds": { @@ -7158,23 +7172,9 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether12", - "value": 1, - "unit": "", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "packet_counter_discard_out", - "label": "ether28", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether31", + "value": 61488, "unit": "c", "thresholds": { "warningMin": null, @@ -7190,7 +7190,7 @@ "messages": [ { "status": 0, - "message": "[{\"ifIndex\":\"1\",\"ifDescr\":\"ether1\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether1\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:0F:6E:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"2\",\"ifDescr\":\"ether2\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether2\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:4E:4A:01\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"3\",\"ifDescr\":\"ether3\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether3\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:42:91:02\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"4\",\"ifDescr\":\"ether4\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether4\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:F1:7C:03\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"5\",\"ifDescr\":\"ether5\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether5\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:F3:22:04\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"6\",\"ifDescr\":\"ether6\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether6\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:B3:D8:05\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"7\",\"ifDescr\":\"ether7\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether7\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:66:B3:06\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"8\",\"ifDescr\":\"ether8\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether8\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:02:AB:07\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"9\",\"ifDescr\":\"ether9\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether9\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:1A:DE:08\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"10\",\"ifDescr\":\"ether10\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether10\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:AC:54:09\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"11\",\"ifDescr\":\"ether11\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether11\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:07:68:0A\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"12\",\"ifDescr\":\"ether12\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether12\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:FC:A6:0B\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"13\",\"ifDescr\":\"ether13\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether13\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:F1:5D:0C\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"14\",\"ifDescr\":\"ether14\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether14\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:DC:6D:0D\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"15\",\"ifDescr\":\"ether15\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether15\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:E7:61:0E\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"16\",\"ifDescr\":\"ether16\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether16\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:CD:D0:0F\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"17\",\"ifDescr\":\"ether17\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether17\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:16:C8:10\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"18\",\"ifDescr\":\"ether18\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether18\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:44:59:11\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"19\",\"ifDescr\":\"ether19\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether19\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:48:AF:12\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"20\",\"ifDescr\":\"ether20\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether20\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:30:52:13\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"21\",\"ifDescr\":\"ether21\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether21\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:CA:6D:14\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"22\",\"ifDescr\":\"ether22\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether22\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:9B:97:15\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"23\",\"ifDescr\":\"ether23\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether23\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:30:64:16\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"24\",\"ifDescr\":\"ether24\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether24\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:70:D2:17\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"25\",\"ifDescr\":\"ether25\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether25\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:0D:F4:18\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"26\",\"ifDescr\":\"ether26\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether26\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:46:A0:19\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"27\",\"ifDescr\":\"ether27\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether27\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:6F:A8:1A\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"28\",\"ifDescr\":\"ether28\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether28\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:B8:E6:1B\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"29\",\"ifDescr\":\"ether29\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether29\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:FB:BA:1C\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"30\",\"ifDescr\":\"ether30\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether30\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:76:D5:1D\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"31\",\"ifDescr\":\"ether31\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether31\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:9F:4E:1E\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"32\",\"ifDescr\":\"ether32\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether32\",\"ifAlias\":null,\"ifPhysAddress\":\"52:54:00:FD:4E:1F\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null}]" + "message": "ifIndex,ifDescr,ifType,ifName,ifAlias,ifPhysAddress,ifAdminStatus,ifOperStatus,maxSpeedIn,maxSpeedOut,subType\n1,ether1,ethernetCsmacd,ether1,,52:54:00:0F:6E:00,up,up,1000000000,1000000000,\n2,ether2,ethernetCsmacd,ether2,,52:54:00:4E:4A:01,up,up,1000000000,1000000000,\n3,ether3,ethernetCsmacd,ether3,,52:54:00:42:91:02,up,up,1000000000,1000000000,\n4,ether4,ethernetCsmacd,ether4,,52:54:00:F1:7C:03,up,up,1000000000,1000000000,\n5,ether5,ethernetCsmacd,ether5,,52:54:00:F3:22:04,up,up,1000000000,1000000000,\n6,ether6,ethernetCsmacd,ether6,,52:54:00:B3:D8:05,up,up,1000000000,1000000000,\n7,ether7,ethernetCsmacd,ether7,,52:54:00:66:B3:06,up,up,1000000000,1000000000,\n8,ether8,ethernetCsmacd,ether8,,52:54:00:02:AB:07,up,up,1000000000,1000000000,\n9,ether9,ethernetCsmacd,ether9,,52:54:00:1A:DE:08,up,up,1000000000,1000000000,\n10,ether10,ethernetCsmacd,ether10,,52:54:00:AC:54:09,up,up,1000000000,1000000000,\n11,ether11,ethernetCsmacd,ether11,,52:54:00:07:68:0A,up,up,1000000000,1000000000,\n12,ether12,ethernetCsmacd,ether12,,52:54:00:FC:A6:0B,up,up,1000000000,1000000000,\n13,ether13,ethernetCsmacd,ether13,,52:54:00:F1:5D:0C,up,up,1000000000,1000000000,\n14,ether14,ethernetCsmacd,ether14,,52:54:00:DC:6D:0D,up,up,1000000000,1000000000,\n15,ether15,ethernetCsmacd,ether15,,52:54:00:E7:61:0E,up,up,1000000000,1000000000,\n16,ether16,ethernetCsmacd,ether16,,52:54:00:CD:D0:0F,up,up,1000000000,1000000000,\n17,ether17,ethernetCsmacd,ether17,,52:54:00:16:C8:10,up,up,1000000000,1000000000,\n18,ether18,ethernetCsmacd,ether18,,52:54:00:44:59:11,up,up,1000000000,1000000000,\n19,ether19,ethernetCsmacd,ether19,,52:54:00:48:AF:12,up,up,1000000000,1000000000,\n20,ether20,ethernetCsmacd,ether20,,52:54:00:30:52:13,up,up,1000000000,1000000000,\n21,ether21,ethernetCsmacd,ether21,,52:54:00:CA:6D:14,up,up,1000000000,1000000000,\n22,ether22,ethernetCsmacd,ether22,,52:54:00:9B:97:15,up,up,1000000000,1000000000,\n23,ether23,ethernetCsmacd,ether23,,52:54:00:30:64:16,up,up,1000000000,1000000000,\n24,ether24,ethernetCsmacd,ether24,,52:54:00:70:D2:17,up,up,1000000000,1000000000,\n25,ether25,ethernetCsmacd,ether25,,52:54:00:0D:F4:18,up,up,1000000000,1000000000,\n26,ether26,ethernetCsmacd,ether26,,52:54:00:46:A0:19,up,up,1000000000,1000000000,\n27,ether27,ethernetCsmacd,ether27,,52:54:00:6F:A8:1A,up,up,1000000000,1000000000,\n28,ether28,ethernetCsmacd,ether28,,52:54:00:B8:E6:1B,up,up,1000000000,1000000000,\n29,ether29,ethernetCsmacd,ether29,,52:54:00:FB:BA:1C,up,up,1000000000,1000000000,\n30,ether30,ethernetCsmacd,ether30,,52:54:00:76:D5:1D,up,up,1000000000,1000000000,\n31,ether31,ethernetCsmacd,ether31,,52:54:00:9F:4E:1E,up,up,1000000000,1000000000,\n32,ether32,ethernetCsmacd,ether32,,52:54:00:FD:4E:1F,up,up,1000000000,1000000000,\n" } ] }, diff --git a/test/testdata/devices/routeros/CHR_2/public.testdata b/test/testdata/devices/routeros/CHR_2/public.testdata index 6f62a34..5e2b009 100644 --- a/test/testdata/devices/routeros/CHR_2/public.testdata +++ b/test/testdata/devices/routeros/CHR_2/public.testdata @@ -18,10 +18,10 @@ "status_code": 0, "performance_data": [ { - "metric": "interface_oper_status", - "label": "ether2", - "value": 1, - "unit": "", + "metric": "error_counter_in", + "label": "ether1", + "value": 191167640, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -32,8 +32,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether3", + "metric": "error_counter_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -46,8 +46,8 @@ "max": null }, { - "metric": "packet_counter_discard_in", - "label": "ether1", + "metric": "error_counter_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -60,7 +60,7 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "error_counter_out", "label": "ether3", "value": 0, "unit": "c", @@ -74,8 +74,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether2", + "metric": "traffic_counter_out", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -88,10 +88,10 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether3", - "value": 0, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether4", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -102,10 +102,10 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "interface_maxspeed_in", "label": "ether4", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -116,10 +116,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether4", - "value": 0, - "unit": "c", + "metric": "interface_admin_status", + "label": "ether1", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -130,9 +130,9 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "traffic_counter_in", "label": "ether1", - "value": 0, + "value": 724932470, "unit": "c", "thresholds": { "warningMin": null, @@ -158,7 +158,7 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "packet_counter_multicast_in", "label": "ether2", "value": 0, "unit": "c", @@ -172,8 +172,22 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether2", + "metric": "interface_admin_status", + "label": "ether3", + "value": 1, + "unit": "", + "thresholds": { + "warningMin": null, + "warningMax": null, + "criticalMin": null, + "criticalMax": null + }, + "min": null, + "max": null + }, + { + "metric": "packet_counter_multicast_out", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -186,10 +200,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_discard_out", "label": "ether4", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -200,10 +214,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", + "metric": "packet_counter_unicast_out", "label": "ether1", - "value": 1000000000, - "unit": "", + "value": 4243004, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -214,8 +228,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether3", + "metric": "packet_counter_broadcast_in", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -229,7 +243,7 @@ }, { "metric": "interface_admin_status", - "label": "ether4", + "label": "ether2", "value": 1, "unit": "", "thresholds": { @@ -242,8 +256,8 @@ "max": null }, { - "metric": "error_counter_out", - "label": "ether3", + "metric": "packet_counter_broadcast_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -270,9 +284,9 @@ "max": null }, { - "metric": "error_counter_out", + "metric": "packet_counter_unicast_in", "label": "ether1", - "value": 0, + "value": 3528563, "unit": "c", "thresholds": { "warningMin": null, @@ -285,7 +299,7 @@ }, { "metric": "traffic_counter_out", - "label": "ether4", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -298,10 +312,10 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether2", + "metric": "traffic_counter_out", + "label": "ether4", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -312,10 +326,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether3", - "value": 1, - "unit": "", + "metric": "error_counter_out", + "label": "ether1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -326,8 +340,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether4", + "metric": "packet_counter_discard_in", + "label": "ether1", "value": 0, "unit": "c", "thresholds": { @@ -340,8 +354,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether4", + "metric": "packet_counter_unicast_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -354,8 +368,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether2", + "metric": "packet_counter_unicast_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -368,8 +382,8 @@ "max": null }, { - "metric": "error_counter_in", - "label": "ether3", + "metric": "packet_counter_multicast_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -382,8 +396,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether3", + "metric": "packet_counter_broadcast_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -396,9 +410,9 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether3", - "value": 0, + "metric": "traffic_counter_out", + "label": "ether1", + "value": 1176294015, "unit": "c", "thresholds": { "warningMin": null, @@ -410,8 +424,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether4", + "metric": "packet_counter_discard_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -424,7 +438,7 @@ "max": null }, { - "metric": "packet_counter_discard_in", + "metric": "packet_counter_broadcast_in", "label": "ether2", "value": 0, "unit": "c", @@ -438,9 +452,9 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether2", - "value": 0, + "metric": "interface_admin_status", + "label": "ether4", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -452,10 +466,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether3", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether4", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -466,10 +480,10 @@ "max": null }, { - "metric": "interface_maxspeed_out", - "label": "ether3", + "metric": "packet_counter_multicast_in", + "label": "ether1", "value": 0, - "unit": "", + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -480,10 +494,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether1", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_in", + "label": "ether3", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -494,7 +508,7 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "packet_counter_discard_out", "label": "ether1", "value": 0, "unit": "c", @@ -508,7 +522,7 @@ "max": null }, { - "metric": "interface_maxspeed_out", + "metric": "interface_maxspeed_in", "label": "ether1", "value": 1000000000, "unit": "", @@ -522,8 +536,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether1", + "metric": "traffic_counter_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -536,10 +550,10 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether4", + "metric": "interface_maxspeed_in", + "label": "ether2", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -550,8 +564,8 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether4", + "metric": "packet_counter_discard_out", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -564,8 +578,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether4", + "metric": "packet_counter_broadcast_in", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -578,8 +592,8 @@ "max": null }, { - "metric": "packet_counter_multicast_out", - "label": "ether2", + "metric": "error_counter_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -592,8 +606,8 @@ "max": null }, { - "metric": "packet_counter_discard_out", - "label": "ether1", + "metric": "packet_counter_unicast_out", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -606,9 +620,9 @@ "max": null }, { - "metric": "traffic_counter_in", - "label": "ether1", - "value": 724932470, + "metric": "packet_counter_broadcast_in", + "label": "ether4", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -620,10 +634,10 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether1", - "value": 4243004, - "unit": "c", + "metric": "interface_oper_status", + "label": "ether2", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -634,7 +648,7 @@ "max": null }, { - "metric": "traffic_counter_in", + "metric": "packet_counter_unicast_in", "label": "ether2", "value": 0, "unit": "c", @@ -648,10 +662,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", + "metric": "interface_maxspeed_in", "label": "ether3", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -676,8 +690,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether4", + "metric": "traffic_counter_in", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -690,22 +704,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether1", - "value": 1176294015, - "unit": "c", - "thresholds": { - "warningMin": null, - "warningMax": null, - "criticalMin": null, - "criticalMax": null - }, - "min": null, - "max": null - }, - { - "metric": "packet_counter_discard_out", - "label": "ether2", + "metric": "traffic_counter_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -718,7 +718,7 @@ "max": null }, { - "metric": "packet_counter_multicast_in", + "metric": "packet_counter_discard_in", "label": "ether3", "value": 0, "unit": "c", @@ -732,10 +732,10 @@ "max": null }, { - "metric": "packet_counter_multicast_out", + "metric": "interface_oper_status", "label": "ether3", - "value": 0, - "unit": "c", + "value": 1, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -746,9 +746,9 @@ "max": null }, { - "metric": "interface_maxspeed_in", - "label": "ether3", - "value": 0, + "metric": "interface_oper_status", + "label": "ether1", + "value": 1, "unit": "", "thresholds": { "warningMin": null, @@ -760,8 +760,8 @@ "max": null }, { - "metric": "packet_counter_unicast_out", - "label": "ether3", + "metric": "packet_counter_multicast_out", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -774,10 +774,10 @@ "max": null }, { - "metric": "interface_oper_status", - "label": "ether4", - "value": 1, - "unit": "", + "metric": "packet_counter_multicast_out", + "label": "ether1", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -788,9 +788,9 @@ "max": null }, { - "metric": "interface_oper_status", + "metric": "interface_maxspeed_out", "label": "ether1", - "value": 1, + "value": 1000000000, "unit": "", "thresholds": { "warningMin": null, @@ -802,10 +802,10 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether1", - "value": 3528563, - "unit": "c", + "metric": "interface_maxspeed_out", + "label": "ether2", + "value": 0, + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -816,10 +816,10 @@ "max": null }, { - "metric": "interface_admin_status", - "label": "ether2", - "value": 1, - "unit": "", + "metric": "packet_counter_unicast_out", + "label": "ether3", + "value": 0, + "unit": "c", "thresholds": { "warningMin": null, "warningMax": null, @@ -830,8 +830,8 @@ "max": null }, { - "metric": "packet_counter_multicast_in", - "label": "ether2", + "metric": "packet_counter_broadcast_out", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -844,8 +844,8 @@ "max": null }, { - "metric": "packet_counter_unicast_in", - "label": "ether4", + "metric": "packet_counter_discard_in", + "label": "ether2", "value": 0, "unit": "c", "thresholds": { @@ -859,8 +859,8 @@ }, { "metric": "error_counter_in", - "label": "ether1", - "value": 191167640, + "label": "ether3", + "value": 0, "unit": "c", "thresholds": { "warningMin": null, @@ -872,8 +872,8 @@ "max": null }, { - "metric": "traffic_counter_out", - "label": "ether2", + "metric": "packet_counter_unicast_in", + "label": "ether3", "value": 0, "unit": "c", "thresholds": { @@ -886,10 +886,10 @@ "max": null }, { - "metric": "packet_counter_broadcast_in", - "label": "ether2", + "metric": "interface_maxspeed_out", + "label": "ether3", "value": 0, - "unit": "c", + "unit": "", "thresholds": { "warningMin": null, "warningMax": null, @@ -900,8 +900,8 @@ "max": null }, { - "metric": "packet_counter_broadcast_out", - "label": "ether2", + "metric": "packet_counter_discard_in", + "label": "ether4", "value": 0, "unit": "c", "thresholds": { @@ -918,7 +918,7 @@ "messages": [ { "status": 0, - "message": "[{\"ifIndex\":\"1\",\"ifDescr\":\"ether1\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether1\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:01:00:00\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"1000000000\",\"maxSpeedOut\":\"1000000000\",\"subType\":null},{\"ifIndex\":\"2\",\"ifDescr\":\"ether2\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether2\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:01:00:01\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"3\",\"ifDescr\":\"ether3\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether3\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:01:00:02\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null},{\"ifIndex\":\"4\",\"ifDescr\":\"ether4\",\"ifType\":\"ethernetCsmacd\",\"ifName\":\"ether4\",\"ifAlias\":null,\"ifPhysAddress\":\"50:00:00:01:00:03\",\"ifAdminStatus\":\"up\",\"ifOperStatus\":\"up\",\"maxSpeedIn\":\"0\",\"maxSpeedOut\":\"0\",\"subType\":null}]" + "message": "ifIndex,ifDescr,ifType,ifName,ifAlias,ifPhysAddress,ifAdminStatus,ifOperStatus,maxSpeedIn,maxSpeedOut,subType\n1,ether1,ethernetCsmacd,ether1,,50:00:00:01:00:00,up,up,1000000000,1000000000,\n2,ether2,ethernetCsmacd,ether2,,50:00:00:01:00:01,up,up,0,0,\n3,ether3,ethernetCsmacd,ether3,,50:00:00:01:00:02,up,up,0,0,\n4,ether4,ethernetCsmacd,ether4,,50:00:00:01:00:03,up,up,0,0,\n" } ] },