knightss27 / grafana-network-weathermap

A fully featured and customizable network weathermap plugin for Grafana (9.0+).
https://grafana.com/grafana/plugins/knightss27-weathermap-panel/
Apache License 2.0
139 stars 7 forks source link

Link Query only list measurement name in drop down? ( flux query ) #26

Closed MrDibbley closed 1 year ago

MrDibbley commented 1 year ago

I have a flux query:

from(bucket: "snmp") |> range(start: v.timeRangeStart, stop: v.timerangestop) |> filter(fn: (r) => r["_measurement"] == "Cisco") |> aggregatewindow(every: v.windowperiod, fn: last, createEmpty: false)

which work fine for a default timeseries, but when selecting weathermap visualisation, adding two nodes A and B then under links again selecting Node a <> Node B in the query dropdown all i get it multiple Cisco listed so impossible to select the correct link

Do I need to format the flux output somehow i can use the map() function to changes the field names

Thanks

knightss27 commented 1 year ago

Do all of your queries have the same name? If so then yes, you won't be able to select different ones in the dropdown, though I am currently working on a fix to this that overhauls a little of how I treat query naming. Do you have a photo of what your dropdown for queries looks like?

Mapping to change the names might fix this, so I recommend trying it at least.

MrDibbley commented 1 year ago

here is the default view in a time series ( all our interfaces are identified by tags )

image

switching the same query over to your weathermap to show the link dropdown:

image

if i map the _measurement field like so the dropdown then displays a more usable selection for my situation:

image

usually to update the displayed name in the timeseries graphs i used the Display Name option to reformat as required

hope that helps

knightss27 commented 1 year ago

Are you able to properly select the queries in your second photo? To be fair, I'm not sure why the names displayed in the labels on the timeseries panel are different from what the weathermap inherets. Grafana is not consistent at all (and data source plugins as well) with the way they use different fields within the DataFrames for naming/labeling. I'll look into this and leave it open to see if I can find out what Grafana is using by default in the timeseries so I can use it as well.

MrDibbley commented 1 year ago

yes using the map() option in the flux query to change _measurement I can build a map no problems.

knightss27 commented 1 year ago

Ok good to know, I'll make sure to look into this then.

knightss27 commented 1 year ago

Odd question here, I think I've fixed this but would like to confirm my method with more than just Prometheus as a data source. Would you be able to send me the entire JSON present when you go Panel Title > Inspect > Panel JSON and change the source to 'Panel Data'? No worries if you can't, but I'd like to verify I'm doing the reconstruction correctly. Feel free to replace any names in it, I just need the structure.

MrDibbley commented 1 year ago

Sorry for the delay, was away from work heres the JSON for you...

{ "state": "Done", "series": [ { "name": "ifHCInOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse", "refId": "A", "meta": { "executedQueryString": "from(bucket: \"snmpcollector\")\r\n |> range(start: 2022-10-24T08:04:36.193Z, stop: 2022-10-24T08:05:36.193Z)\r\n |> filter(fn: (r) => r[\"_measurement\"] == \"Cisco_ifMIB_Basics\")\r\n |> aggregateWindow(every: 50ms, fn: last, createEmpty: false)\r\n |> map(fn: (r) => ({_value:r._value * 8, _time:r._time, _measurement: \"${r._field} - ${r.device} - ${r.ifAlias}\"}))\r\n\r\n" }, "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 0 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 12719696 ], "entities": {}, "state": { "calcs": { "sum": 12719696, "max": 12719696, "min": 12719696, "logmin": 12719696, "mean": 12719696, "last": 12719696, "first": 12719696, "lastNotNull": 12719696, "firstNotNull": 12719696, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 0, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 1 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 17608480 ], "entities": {}, "state": { "calcs": { "sum": 17608480, "max": 17608480, "min": 17608480, "logmin": 17608480, "mean": 17608480, "last": 17608480, "first": 17608480, "lastNotNull": 17608480, "firstNotNull": 17608480, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 1, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 2 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 534992 ], "entities": {}, "state": { "calcs": { "sum": 534992, "max": 534992, "min": 534992, "logmin": 534992, "mean": 534992, "last": 534992, "first": 534992, "lastNotNull": 534992, "firstNotNull": 534992, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 2, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 3 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5516608 ], "entities": {}, "state": { "calcs": { "sum": 5516608, "max": 5516608, "min": 5516608, "logmin": 5516608, "mean": 5516608, "last": 5516608, "first": 5516608, "lastNotNull": 5516608, "firstNotNull": 5516608, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 3, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 4 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5793040 ], "entities": {}, "state": { "calcs": { "sum": 5793040, "max": 5793040, "min": 5793040, "logmin": 5793040, "mean": 5793040, "last": 5793040, "first": 5793040, "lastNotNull": 5793040, "firstNotNull": 5793040, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 4, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 5 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5548456 ], "entities": {}, "state": { "calcs": { "sum": 5548456, "max": 5548456, "min": 5548456, "logmin": 5548456, "mean": 5548456, "last": 5548456, "first": 5548456, "lastNotNull": 5548456, "firstNotNull": 5548456, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 5, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 6 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 32454752 ], "entities": {}, "state": { "calcs": { "sum": 32454752, "max": 32454752, "min": 32454752, "logmin": 32454752, "mean": 32454752, "last": 32454752, "first": 32454752, "lastNotNull": 32454752, "firstNotNull": 32454752, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 6, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 7 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 34174760 ], "entities": {}, "state": { "calcs": { "sum": 34174760, "max": 34174760, "min": 34174760, "logmin": 34174760, "mean": 34174760, "last": 34174760, "first": 34174760, "lastNotNull": 34174760, "firstNotNull": 34174760, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 7, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 8 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 241081984 ], "entities": {}, "state": { "calcs": { "sum": 241081984, "max": 241081984, "min": 241081984, "logmin": 241081984, "mean": 241081984, "last": 241081984, "first": 241081984, "lastNotNull": 241081984, "firstNotNull": 241081984, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 8, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 9 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 148220704 ], "entities": {}, "state": { "calcs": { "sum": 148220704, "max": 148220704, "min": 148220704, "logmin": 148220704, "mean": 148220704, "last": 148220704, "first": 148220704, "lastNotNull": 148220704, "firstNotNull": 148220704, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 9, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 10 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 1072 ], "entities": {}, "state": { "calcs": { "sum": 1072, "max": 1072, "min": 1072, "logmin": 1072, "mean": 1072, "last": 1072, "first": 1072, "lastNotNull": 1072, "firstNotNull": 1072, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 10, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 11 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 4601192 ], "entities": {}, "state": { "calcs": { "sum": 4601192, "max": 4601192, "min": 4601192, "logmin": 4601192, "mean": 4601192, "last": 4601192, "first": 4601192, "lastNotNull": 4601192, "firstNotNull": 4601192, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 11, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 12 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 2573672 ], "entities": {}, "state": { "calcs": { "sum": 2573672, "max": 2573672, "min": 2573672, "logmin": 2573672, "mean": 2573672, "last": 2573672, "first": 2573672, "lastNotNull": 2573672, "firstNotNull": 2573672, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 12, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 13 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 720 ], "entities": {}, "state": { "calcs": { "sum": 720, "max": 720, "min": 720, "logmin": 720, "mean": 720, "last": 720, "first": 720, "lastNotNull": 720, "firstNotNull": 720, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 13, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 14 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 15718960 ], "entities": {}, "state": { "calcs": { "sum": 15718960, "max": 15718960, "min": 15718960, "logmin": 15718960, "mean": 15718960, "last": 15718960, "first": 15718960, "lastNotNull": 15718960, "firstNotNull": 15718960, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 14, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 15 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 18813536 ], "entities": {}, "state": { "calcs": { "sum": 18813536, "max": 18813536, "min": 18813536, "logmin": 18813536, "mean": 18813536, "last": 18813536, "first": 18813536, "lastNotNull": 18813536, "firstNotNull": 18813536, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 15, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 16 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 11404568 ], "entities": {}, "state": { "calcs": { "sum": 11404568, "max": 11404568, "min": 11404568, "logmin": 11404568, "mean": 11404568, "last": 11404568, "first": 11404568, "lastNotNull": 11404568, "firstNotNull": 11404568, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 16, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 17 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 12801840 ], "entities": {}, "state": { "calcs": { "sum": 12801840, "max": 12801840, "min": 12801840, "logmin": 12801840, "mean": 12801840, "last": 12801840, "first": 12801840, "lastNotNull": 12801840, "firstNotNull": 12801840, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 17, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - LG-J5400-S01 - BOUNDARY-MOBILITY", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LG-J5400-S01 - BOUNDARY-MOBILITY" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 18 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 58646776 ], "entities": {}, "state": { "calcs": { "sum": 58646776, "max": 58646776, "min": 58646776, "logmin": 58646776, "mean": 58646776, "last": 58646776, "first": 58646776, "lastNotNull": 58646776, "firstNotNull": 58646776, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LG-J5400-S01 - BOUNDARY-MOBILITY" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 18, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 19 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 18191040 ], "entities": {}, "state": { "calcs": { "sum": 18191040, "max": 18191040, "min": 18191040, "logmin": 18191040, "mean": 18191040, "last": 18191040, "first": 18191040, "lastNotNull": 18191040, "firstNotNull": 18191040, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 19, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 20 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 9238328 ], "entities": {}, "state": { "calcs": { "sum": 9238328, "max": 9238328, "min": 9238328, "logmin": 9238328, "mean": 9238328, "last": 9238328, "first": 9238328, "lastNotNull": 9238328, "firstNotNull": 9238328, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 20, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 21 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 22549424 ], "entities": {}, "state": { "calcs": { "sum": 22549424, "max": 22549424, "min": 22549424, "logmin": 22549424, "mean": 22549424, "last": 22549424, "first": 22549424, "lastNotNull": 22549424, "firstNotNull": 22549424, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 21, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 22 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 15892752 ], "entities": {}, "state": { "calcs": { "sum": 15892752, "max": 15892752, "min": 15892752, "logmin": 15892752, "mean": 15892752, "last": 15892752, "first": 15892752, "lastNotNull": 15892752, "firstNotNull": 15892752, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 22, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 23 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 9589424 ], "entities": {}, "state": { "calcs": { "sum": 9589424, "max": 9589424, "min": 9589424, "logmin": 9589424, "mean": 9589424, "last": 9589424, "first": 9589424, "lastNotNull": 9589424, "firstNotNull": 9589424, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 23, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 24 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 9704160 ], "entities": {}, "state": { "calcs": { "sum": 9704160, "max": 9704160, "min": 9704160, "logmin": 9704160, "mean": 9704160, "last": 9704160, "first": 9704160, "lastNotNull": 9704160, "firstNotNull": 9704160, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 24, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 25 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 1368288 ], "entities": {}, "state": { "calcs": { "sum": 1368288, "max": 1368288, "min": 1368288, "logmin": 1368288, "mean": 1368288, "last": 1368288, "first": 1368288, "lastNotNull": 1368288, "firstNotNull": 1368288, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 25, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 26 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 1926696 ], "entities": {}, "state": { "calcs": { "sum": 1926696, "max": 1926696, "min": 1926696, "logmin": 1926696, "mean": 1926696, "last": 1926696, "first": 1926696, "lastNotNull": 1926696, "firstNotNull": 1926696, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 26, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 27 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 61696944 ], "entities": {}, "state": { "calcs": { "sum": 61696944, "max": 61696944, "min": 61696944, "logmin": 61696944, "mean": 61696944, "last": 61696944, "first": 61696944, "lastNotNull": 61696944, "firstNotNull": 61696944, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 27, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 28 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 15821632 ], "entities": {}, "state": { "calcs": { "sum": 15821632, "max": 15821632, "min": 15821632, "logmin": 15821632, "mean": 15821632, "last": 15821632, "first": 15821632, "lastNotNull": 15821632, "firstNotNull": 15821632, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 28, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 29 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 22449304 ], "entities": {}, "state": { "calcs": { "sum": 22449304, "max": 22449304, "min": 22449304, "logmin": 22449304, "mean": 22449304, "last": 22449304, "first": 22449304, "lastNotNull": 22449304, "firstNotNull": 22449304, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 29, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 30 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 20629648 ], "entities": {}, "state": { "calcs": { "sum": 20629648, "max": 20629648, "min": 20629648, "logmin": 20629648, "mean": 20629648, "last": 20629648, "first": 20629648, "lastNotNull": 20629648, "firstNotNull": 20629648, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 30, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 31 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 3184936 ], "entities": {}, "state": { "calcs": { "sum": 3184936, "max": 3184936, "min": 3184936, "logmin": 3184936, "mean": 3184936, "last": 3184936, "first": 3184936, "lastNotNull": 3184936, "firstNotNull": 3184936, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 31, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCInOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 32 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 6755480 ], "entities": {}, "state": { "calcs": { "sum": 6755480, "max": 6755480, "min": 6755480, "logmin": 6755480, "mean": 6755480, "last": 6755480, "first": 6755480, "lastNotNull": 6755480, "firstNotNull": 6755480, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCInOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 32, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 33 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 10727048 ], "entities": {}, "state": { "calcs": { "sum": 10727048, "max": 10727048, "min": 10727048, "logmin": 10727048, "mean": 10727048, "last": 10727048, "first": 10727048, "lastNotNull": 10727048, "firstNotNull": 10727048, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - BR-C4510-01 - MLL0001031 - LR06a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 33, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 34 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 4116912 ], "entities": {}, "state": { "calcs": { "sum": 4116912, "max": 4116912, "min": 4116912, "logmin": 4116912, "mean": 4116912, "last": 4116912, "first": 4116912, "lastNotNull": 4116912, "firstNotNull": 4116912, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - BR-C4510-02 - MLL0001032 - LR06b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 34, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 35 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5099448 ], "entities": {}, "state": { "calcs": { "sum": 5099448, "max": 5099448, "min": 5099448, "logmin": 5099448, "mean": 5099448, "last": 5099448, "first": 5099448, "lastNotNull": 5099448, "firstNotNull": 5099448, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CO-C4506-01 - MLL0001033 - LR07a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 35, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 36 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 438432 ], "entities": {}, "state": { "calcs": { "sum": 438432, "max": 438432, "min": 438432, "logmin": 438432, "mean": 438432, "last": 438432, "first": 438432, "lastNotNull": 438432, "firstNotNull": 438432, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CO-C4506-02 - MLL0001034 - LR07b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 36, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 37 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 7363264 ], "entities": {}, "state": { "calcs": { "sum": 7363264, "max": 7363264, "min": 7363264, "logmin": 7363264, "mean": 7363264, "last": 7363264, "first": 7363264, "lastNotNull": 7363264, "firstNotNull": 7363264, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CR-C4510-01 - MLL0001035 - LR08a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 37, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 38 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5539112 ], "entities": {}, "state": { "calcs": { "sum": 5539112, "max": 5539112, "min": 5539112, "logmin": 5539112, "mean": 5539112, "last": 5539112, "first": 5539112, "lastNotNull": 5539112, "firstNotNull": 5539112, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - CR-C4510-02 - MLL0001036 - LR08b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 38, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 39 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 11333240 ], "entities": {}, "state": { "calcs": { "sum": 11333240, "max": 11333240, "min": 11333240, "logmin": 11333240, "mean": 11333240, "last": 11333240, "first": 11333240, "lastNotNull": 11333240, "firstNotNull": 11333240, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - DS-C4510-01 - MLL0001038 - LR09b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 39, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 40 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 15682080 ], "entities": {}, "state": { "calcs": { "sum": 15682080, "max": 15682080, "min": 15682080, "logmin": 15682080, "mean": 15682080, "last": 15682080, "first": 15682080, "lastNotNull": 15682080, "firstNotNull": 15682080, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - DS-C4510-02 - MLL0001037 - LR09a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 40, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 41 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 1141317832 ], "entities": {}, "state": { "calcs": { "sum": 1141317832, "max": 1141317832, "min": 1141317832, "logmin": 1141317832, "mean": 1141317832, "last": 1141317832, "first": 1141317832, "lastNotNull": 1141317832, "firstNotNull": 1141317832, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - EH-C9300-D01 - MLL CPE.LR02a_ACX2200_e0/3/1 CAL346120 10Gb to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 41, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 42 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 343919672 ], "entities": {}, "state": { "calcs": { "sum": 343919672, "max": 343919672, "min": 343919672, "logmin": 343919672, "mean": 343919672, "last": 343919672, "first": 343919672, "lastNotNull": 343919672, "firstNotNull": 343919672, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GH-C9300-D01 - *** LR21a 10Gb to MLL Telehouse ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 42, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 43 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 20231808 ], "entities": {}, "state": { "calcs": { "sum": 20231808, "max": 20231808, "min": 20231808, "logmin": 20231808, "mean": 20231808, "last": 20231808, "first": 20231808, "lastNotNull": 20231808, "firstNotNull": 20231808, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GH-C9300-D02 - *** LR21b 1Gb to MLL Kilburn House ***" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 43, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 44 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 3817784 ], "entities": {}, "state": { "calcs": { "sum": 3817784, "max": 3817784, "min": 3817784, "logmin": 3817784, "mean": 3817784, "last": 3817784, "first": 3817784, "lastNotNull": 3817784, "firstNotNull": 3817784, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GL-C4510-01 - MLL0001041 - LR11a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 44, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 45 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 1543408 ], "entities": {}, "state": { "calcs": { "sum": 1543408, "max": 1543408, "min": 1543408, "logmin": 1543408, "mean": 1543408, "last": 1543408, "first": 1543408, "lastNotNull": 1543408, "firstNotNull": 1543408, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - GL-C4510-02 - MLL0001042 - LR11b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 45, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 46 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 20373856 ], "entities": {}, "state": { "calcs": { "sum": 20373856, "max": 20373856, "min": 20373856, "logmin": 20373856, "mean": 20373856, "last": 20373856, "first": 20373856, "lastNotNull": 20373856, "firstNotNull": 20373856, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HH-C9300-D01 - MLL CPE.LR02b_SRX345_e0/1 ONEA66973510/SDH3405857 1Gb to Kilburn" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 46, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 47 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 9041040 ], "entities": {}, "state": { "calcs": { "sum": 9041040, "max": 9041040, "min": 9041040, "logmin": 9041040, "mean": 9041040, "last": 9041040, "first": 9041040, "lastNotNull": 9041040, "firstNotNull": 9041040, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HL-C4506-01 - MLL0001043 - LR12a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 47, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 48 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5225640 ], "entities": {}, "state": { "calcs": { "sum": 5225640, "max": 5225640, "min": 5225640, "logmin": 5225640, "mean": 5225640, "last": 5225640, "first": 5225640, "lastNotNull": 5225640, "firstNotNull": 5225640, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - HL-C4506-02 - MLL0001044 - LR12b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 48, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 49 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 7231088 ], "entities": {}, "state": { "calcs": { "sum": 7231088, "max": 7231088, "min": 7231088, "logmin": 7231088, "mean": 7231088, "last": 7231088, "first": 7231088, "lastNotNull": 7231088, "firstNotNull": 7231088, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LA-C4510-01 - MLL0001040 - LR10b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 49, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 50 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 4824880 ], "entities": {}, "state": { "calcs": { "sum": 4824880, "max": 4824880, "min": 4824880, "logmin": 4824880, "mean": 4824880, "last": 4824880, "first": 4824880, "lastNotNull": 4824880, "firstNotNull": 4824880, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LA-C4510-02 - MLL0001039 - LR10a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 50, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - LG-J5400-S01 - BOUNDARY-MOBILITY", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LG-J5400-S01 - BOUNDARY-MOBILITY" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 51 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 219766704 ], "entities": {}, "state": { "calcs": { "sum": 219766704, "max": 219766704, "min": 219766704, "logmin": 219766704, "mean": 219766704, "last": 219766704, "first": 219766704, "lastNotNull": 219766704, "firstNotNull": 219766704, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LG-J5400-S01 - BOUNDARY-MOBILITY" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 51, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 52 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 12267976 ], "entities": {}, "state": { "calcs": { "sum": 12267976, "max": 12267976, "min": 12267976, "logmin": 12267976, "mean": 12267976, "last": 12267976, "first": 12267976, "lastNotNull": 12267976, "firstNotNull": 12267976, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LT-C4506-01 - MLL0001045 - LR13a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 52, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 53 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 5606288 ], "entities": {}, "state": { "calcs": { "sum": 5606288, "max": 5606288, "min": 5606288, "logmin": 5606288, "mean": 5606288, "last": 5606288, "first": 5606288, "lastNotNull": 5606288, "firstNotNull": 5606288, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - LT-C4506-02 - MLL0001046 - LR13b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 53, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 54 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 7766432 ], "entities": {}, "state": { "calcs": { "sum": 7766432, "max": 7766432, "min": 7766432, "logmin": 7766432, "mean": 7766432, "last": 7766432, "first": 7766432, "lastNotNull": 7766432, "firstNotNull": 7766432, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - NW-C4510-01 - MLL0001047 - LR14a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 54, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 55 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 4199744 ], "entities": {}, "state": { "calcs": { "sum": 4199744, "max": 4199744, "min": 4199744, "logmin": 4199744, "mean": 4199744, "last": 4199744, "first": 4199744, "lastNotNull": 4199744, "firstNotNull": 4199744, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - NW-C4510-02 - MLL0001048 - LR14b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 55, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 56 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 7537200 ], "entities": {}, "state": { "calcs": { "sum": 7537200, "max": 7537200, "min": 7537200, "logmin": 7537200, "mean": 7537200, "last": 7537200, "first": 7537200, "lastNotNull": 7537200, "firstNotNull": 7537200, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - PB-C4506-01 - MLL0001049 - LR15a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 56, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 57 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 7954384 ], "entities": {}, "state": { "calcs": { "sum": 7954384, "max": 7954384, "min": 7954384, "logmin": 7954384, "mean": 7954384, "last": 7954384, "first": 7954384, "lastNotNull": 7954384, "firstNotNull": 7954384, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - PB-C4506-02 - MLL0001050 - LR15b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 57, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 58 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 10840 ], "entities": {}, "state": { "calcs": { "sum": 10840, "max": 10840, "min": 10840, "logmin": 10840, "mean": 10840, "last": 10840, "first": 10840, "lastNotNull": 10840, "firstNotNull": 10840, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-01 - MLL0001052 - LR16b Kilburn House / ONEA334814" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 58, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 59 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 12056 ], "entities": {}, "state": { "calcs": { "sum": 12056, "max": 12056, "min": 12056, "logmin": 12056, "mean": 12056, "last": 12056, "first": 12056, "lastNotNull": 12056, "firstNotNull": 12056, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-02 - MLL0001051 - LR16a Telehouse / ONEA234603" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 59, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 60 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 36127848 ], "entities": {}, "state": { "calcs": { "sum": 36127848, "max": 36127848, "min": 36127848, "logmin": 36127848, "mean": 36127848, "last": 36127848, "first": 36127848, "lastNotNull": 36127848, "firstNotNull": 36127848, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - SC-C4510-02 - P2P ONEA234396 to EH-C9300-D01 t1/1/1" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 60, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 61 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 6661992 ], "entities": {}, "state": { "calcs": { "sum": 6661992, "max": 6661992, "min": 6661992, "logmin": 6661992, "mean": 6661992, "last": 6661992, "first": 6661992, "lastNotNull": 6661992, "firstNotNull": 6661992, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - TF-C4510-01 - MLL0001055 - LR18a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 61, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 62 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 17111712 ], "entities": {}, "state": { "calcs": { "sum": 17111712, "max": 17111712, "min": 17111712, "logmin": 17111712, "mean": 17111712, "last": 17111712, "first": 17111712, "lastNotNull": 17111712, "firstNotNull": 17111712, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WA-C4510-01 - MLL0001053 - LR17a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 62, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 63 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 14918768 ], "entities": {}, "state": { "calcs": { "sum": 14918768, "max": 14918768, "min": 14918768, "logmin": 14918768, "mean": 14918768, "last": 14918768, "first": 14918768, "lastNotNull": 14918768, "firstNotNull": 14918768, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WA-C4510-02 - MLL0001054 - LR17b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 63, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 64 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 4240144 ], "entities": {}, "state": { "calcs": { "sum": 4240144, "max": 4240144, "min": 4240144, "logmin": 4240144, "mean": 4240144, "last": 4240144, "first": 4240144, "lastNotNull": 4240144, "firstNotNull": 4240144, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WY-C4510-01 - MLL0001057 - LR19a to Telehouse" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 64, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 }, { "name": "ifHCOutOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House", "refId": "A", "fields": [ { "name": "Time", "type": "time", "typeInfo": { "frame": "time.Time", "nullable": true }, "config": {}, "values": [ 1666598700050 ], "entities": {}, "state": { "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 65 } }, { "name": "Value", "type": "number", "typeInfo": { "frame": "int64", "nullable": true }, "labels": {}, "config": {}, "values": [ 6605144 ], "entities": {}, "state": { "calcs": { "sum": 6605144, "max": 6605144, "min": 6605144, "logmin": 6605144, "mean": 6605144, "last": 6605144, "first": 6605144, "lastNotNull": 6605144, "firstNotNull": 6605144, "count": 1, "nonNullCount": 1, "allIsNull": false, "allIsZero": false, "range": 0, "diff": 0, "delta": 0, "step": null, "diffperc": 0, "previousDeltaUp": true }, "scopedVars": { "__series": { "text": "Series", "value": { "name": "ifHCOutOctets - WY-C4510-02 - MLL0001058 - LR19b to Kilburn House" } }, "__field": { "text": "Field", "value": {} } }, "seriesIndex": 65, "range": { "min": 720, "max": 1141317832, "delta": 1141317112 } } } ], "length": 1 } ], "annotations": [], "request": { "app": "dashboard", "requestId": "Q100", "timezone": "browser", "panelId": 2, "dashboardId": 13, "publicDashboardAccessToken": "", "range": { "from": "2022-10-24T08:04:36.193Z", "to": "2022-10-24T08:05:36.193Z", "raw": { "from": "now-1m", "to": "now" } }, "timeInfo": "", "interval": "50ms", "intervalMs": 50, "targets": [ { "datasource": { "type": "influxdb", "uid": "TUNuDlwnz" }, "query": "from(bucket: \"snmpcollector\")\r\n |> range(start: v.timeRangeStart, stop: v.timeRangeStop)\r\n |> filter(fn: (r) => r[\"_measurement\"] == \"Cisco_ifMIB_Basics\")\r\n |> aggregateWindow(every: v.windowPeriod, fn: last, createEmpty: false)\r\n |> map(fn: (r) => ({_value:r._value * 8, _time:r._time, _measurement: \"${r._field} - ${r.device} - ${r.ifAlias}\"}))\r\n\r\n", "refId": "A" } ], "maxDataPoints": 1447, "scopedVars": { "__interval": { "text": "50ms", "value": "50ms" }, "__interval_ms": { "text": "50", "value": 50 } }, "startTime": 1666598736193, "rangeRaw": { "from": "now-1m", "to": "now" }, "endTime": 1666598736296 }, "timeRange": { "from": "2022-10-24T08:04:36.193Z", "to": "2022-10-24T08:05:36.193Z", "raw": { "from": "now-1m", "to": "now" } }, "timings": { "dataProcessingTime": 0.39999985694885254 }, "structureRev": 2 }