Skip to content

Commit 6c9afb8

Browse files
jonawongequinix-labs@auto-commit-workflow
andauthored
connection and port byte count metrics and metric alerts (#88)
* connection and port byte count metrics and metric alerts * Auto commit generated client synchronization changes for Data Schema Updates - Tue Dec 23 21:28:06 UTC 2025 --------- Co-authored-by: equinix-labs@auto-commit-workflow <bot@equinix.noreply.github.com>
1 parent 9963647 commit 6c9afb8

File tree

5 files changed

+184
-0
lines changed

5 files changed

+184
-0
lines changed

DataLoader.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1524,6 +1524,16 @@
15241524
"description": "Connection outbound bandwidth utilization in %",
15251525
"releaseStatus": "preview"
15261526
},
1527+
{
1528+
"name": "equinix.fabric.connection.byte_rx.count",
1529+
"description": "Connection inbound dropped byte count",
1530+
"releaseStatus": "preview"
1531+
},
1532+
{
1533+
"name": "equinix.fabric.connection.byte_tx.count",
1534+
"description": "Connection outbound dropped byte count",
1535+
"releaseStatus": "preview"
1536+
},
15271537
{
15281538
"name": "equinix.fabric.port.bandwidth_rx.utilization",
15291539
"description": "Port inbound bandwidth utilization in %",
@@ -1533,6 +1543,16 @@
15331543
"name": "equinix.fabric.port.bandwidth_tx.utilization",
15341544
"description": "Port outbound bandwidth utilization in %",
15351545
"releaseStatus": "preview"
1546+
},
1547+
{
1548+
"name": "equinix.fabric.port.byte_rx.count",
1549+
"description": "Port inbound dropped byte count",
1550+
"releaseStatus": "preview"
1551+
},
1552+
{
1553+
"name": "equinix.fabric.port.byte_tx.count",
1554+
"description": "Port outbound dropped byte count",
1555+
"releaseStatus": "preview"
15361556
}
15371557
],
15381558
"alertNames": [
@@ -2266,6 +2286,16 @@
22662286
"description": "Connection outbound bandwidth utilization is ${operator} ${operand}%",
22672287
"releaseStatus": "preview"
22682288
},
2289+
{
2290+
"name": "equinix.fabric.connection.byte_rx.count",
2291+
"description": "Connection inbound byte count is ${operator} ${operand} MB",
2292+
"releaseStatus": "preview"
2293+
},
2294+
{
2295+
"name": "equinix.fabric.connection.byte_tx.count",
2296+
"description": "Connection outbound byte count is ${operator} ${operand} MB",
2297+
"releaseStatus": "preview"
2298+
},
22692299
{
22702300
"name": "equinix.fabric.port.bandwidth_rx.utilization",
22712301
"description": "Port inbound bandwidth utilization is ${operator} ${operand}%",
@@ -2275,6 +2305,16 @@
22752305
"name": "equinix.fabric.port.bandwidth_tx.utilization",
22762306
"description": "Port outbound bandwidth utilization is ${operator} ${operand}%",
22772307
"releaseStatus": "preview"
2308+
},
2309+
{
2310+
"name": "equinix.fabric.port.byte_rx.count",
2311+
"description": "Port inbound byte count is ${operator} ${operand} MB",
2312+
"releaseStatus": "preview"
2313+
},
2314+
{
2315+
"name": "equinix.fabric.port.byte_tx.count",
2316+
"description": "Port outbound byte count is ${operator} ${operand} MB",
2317+
"releaseStatus": "preview"
22782318
}
22792319
]
22802320
},

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,18 @@ The following data payloads are the supported events and formats for Equinix Net
11061106
<td>preview</td>
11071107
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
11081108
</tr>
1109+
<tr>
1110+
<td>equinix.fabric.connection.byte_rx.count</td>
1111+
<td>Connection inbound byte count is ${operator} ${operand} MB</td>
1112+
<td>preview</td>
1113+
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
1114+
</tr>
1115+
<tr>
1116+
<td>equinix.fabric.connection.byte_tx.count</td>
1117+
<td>Connection outbound byte count is ${operator} ${operand} MB</td>
1118+
<td>preview</td>
1119+
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
1120+
</tr>
11091121
<tr>
11101122
<td>equinix.fabric.connection.installed_routes_ipv4.utilization</td>
11111123
<td>Utilization of connection active IPv4 routes is ${operator} ${operand}</td>
@@ -1934,6 +1946,18 @@ The following data payloads are the supported events and formats for Equinix Net
19341946
<td>preview</td>
19351947
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
19361948
</tr>
1949+
<tr>
1950+
<td>equinix.fabric.port.byte_rx.count</td>
1951+
<td>Port inbound byte count is ${operator} ${operand} MB</td>
1952+
<td>preview</td>
1953+
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
1954+
</tr>
1955+
<tr>
1956+
<td>equinix.fabric.port.byte_tx.count</td>
1957+
<td>Port outbound byte count is ${operator} ${operand} MB</td>
1958+
<td>preview</td>
1959+
<td><a href='#blue_alert_slo'> <span style='color:blue'>BLUE_ALERT_SLO</span></a></td>
1960+
</tr>
19371961
<tr>
19381962
<td>equinix.fabric.port.packets_dropped_rx.count</td>
19391963
<td>Port inbound dropped packets count is ${operator} ${operand}</td>
@@ -2028,6 +2052,18 @@ The following data payloads are the supported events and formats for Equinix Net
20282052
<td>preview</td>
20292053
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
20302054
</tr>
2055+
<tr>
2056+
<td>equinix.fabric.connection.byte_rx.count</td>
2057+
<td>Connection inbound dropped byte count</td>
2058+
<td>preview</td>
2059+
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
2060+
</tr>
2061+
<tr>
2062+
<td>equinix.fabric.connection.byte_tx.count</td>
2063+
<td>Connection outbound dropped byte count</td>
2064+
<td>preview</td>
2065+
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
2066+
</tr>
20312067
<tr>
20322068
<td>equinix.fabric.connection.packets_dropped_rx_aside_rateexceeded.count</td>
20332069
<td>Connection A side inbound dropped packets count</td>
@@ -2844,6 +2880,18 @@ The following data payloads are the supported events and formats for Equinix Net
28442880
<td>preview</td>
28452881
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
28462882
</tr>
2883+
<tr>
2884+
<td>equinix.fabric.port.byte_rx.count</td>
2885+
<td>Port inbound dropped byte count</td>
2886+
<td>preview</td>
2887+
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
2888+
</tr>
2889+
<tr>
2890+
<td>equinix.fabric.port.byte_tx.count</td>
2891+
<td>Port outbound dropped byte count</td>
2892+
<td>preview</td>
2893+
<td><a href='#purple_metric_slo'> <span style='color:purple'>PURPLE_METRIC_SLO</span></a></td>
2894+
</tr>
28472895
<tr>
28482896
<td>equinix.fabric.port.packets_dropped_rx.count</td>
28492897
<td>Port inbound dropped packets count</td>

jsonschema/catalog.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,18 @@
10281028
"sloCategoryCode": "BLUE_ALERT_SLO",
10291029
"releaseStatus": "preview"
10301030
},
1031+
{
1032+
"name": "equinix.fabric.connection.byte_rx.count",
1033+
"description": "Connection inbound byte count is ${operator} ${operand} MB",
1034+
"sloCategoryCode": "BLUE_ALERT_SLO",
1035+
"releaseStatus": "preview"
1036+
},
1037+
{
1038+
"name": "equinix.fabric.connection.byte_tx.count",
1039+
"description": "Connection outbound byte count is ${operator} ${operand} MB",
1040+
"sloCategoryCode": "BLUE_ALERT_SLO",
1041+
"releaseStatus": "preview"
1042+
},
10311043
{
10321044
"name": "equinix.fabric.connection.installed_routes_ipv4.utilization",
10331045
"description": "Utilization of connection active IPv4 routes is ${operator} ${operand}",
@@ -1856,6 +1868,18 @@
18561868
"sloCategoryCode": "BLUE_ALERT_SLO",
18571869
"releaseStatus": "preview"
18581870
},
1871+
{
1872+
"name": "equinix.fabric.port.byte_rx.count",
1873+
"description": "Port inbound byte count is ${operator} ${operand} MB",
1874+
"sloCategoryCode": "BLUE_ALERT_SLO",
1875+
"releaseStatus": "preview"
1876+
},
1877+
{
1878+
"name": "equinix.fabric.port.byte_tx.count",
1879+
"description": "Port outbound byte count is ${operator} ${operand} MB",
1880+
"sloCategoryCode": "BLUE_ALERT_SLO",
1881+
"releaseStatus": "preview"
1882+
},
18591883
{
18601884
"name": "equinix.fabric.port.packets_dropped_rx.count",
18611885
"description": "Port inbound dropped packets count is ${operator} ${operand}",
@@ -1933,6 +1957,18 @@
19331957
"sloCategoryCode": "PURPLE_METRIC_SLO",
19341958
"releaseStatus": "preview"
19351959
},
1960+
{
1961+
"name": "equinix.fabric.connection.byte_rx.count",
1962+
"description": "Connection inbound dropped byte count",
1963+
"sloCategoryCode": "PURPLE_METRIC_SLO",
1964+
"releaseStatus": "preview"
1965+
},
1966+
{
1967+
"name": "equinix.fabric.connection.byte_tx.count",
1968+
"description": "Connection outbound dropped byte count",
1969+
"sloCategoryCode": "PURPLE_METRIC_SLO",
1970+
"releaseStatus": "preview"
1971+
},
19361972
{
19371973
"name": "equinix.fabric.connection.packets_dropped_rx_aside_rateexceeded.count",
19381974
"description": "Connection A side inbound dropped packets count",
@@ -2749,6 +2785,18 @@
27492785
"sloCategoryCode": "PURPLE_METRIC_SLO",
27502786
"releaseStatus": "preview"
27512787
},
2788+
{
2789+
"name": "equinix.fabric.port.byte_rx.count",
2790+
"description": "Port inbound dropped byte count",
2791+
"sloCategoryCode": "PURPLE_METRIC_SLO",
2792+
"releaseStatus": "preview"
2793+
},
2794+
{
2795+
"name": "equinix.fabric.port.byte_tx.count",
2796+
"description": "Port outbound dropped byte count",
2797+
"sloCategoryCode": "PURPLE_METRIC_SLO",
2798+
"releaseStatus": "preview"
2799+
},
27522800
{
27532801
"name": "equinix.fabric.port.packets_dropped_rx.count",
27542802
"description": "Port inbound dropped packets count",

jsonschema/equinix/fabric/v1/MetricAlert.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,30 @@
277277
"sloCategoryCode": "BLUE_ALERT_SLO",
278278
"releaseStatus": "released"
279279
},
280+
{
281+
"name": "equinix.fabric.connection.byte_rx.count",
282+
"description": "Connection inbound byte count is ${operator} ${operand} MB",
283+
"sloCategoryCode": "BLUE_ALERT_SLO",
284+
"releaseStatus": "preview"
285+
},
286+
{
287+
"name": "equinix.fabric.connection.byte_tx.count",
288+
"description": "Connection outbound byte count is ${operator} ${operand} MB",
289+
"sloCategoryCode": "BLUE_ALERT_SLO",
290+
"releaseStatus": "preview"
291+
},
292+
{
293+
"name": "equinix.fabric.port.byte_rx.count",
294+
"description": "Port inbound byte count is ${operator} ${operand} MB",
295+
"sloCategoryCode": "BLUE_ALERT_SLO",
296+
"releaseStatus": "preview"
297+
},
298+
{
299+
"name": "equinix.fabric.port.byte_tx.count",
300+
"description": "Port outbound byte count is ${operator} ${operand} MB",
301+
"sloCategoryCode": "BLUE_ALERT_SLO",
302+
"releaseStatus": "preview"
303+
},
280304
{
281305
"name": "equinix.fabric.metro.am_{metroCode}.latency",
282306
"description": "Metro latency from Amsterdam to ${metro} is ${operator} ${operand} milliseconds",

jsonschema/equinix/fabric/v1/MetricEvent.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,30 @@
227227
"sloCategoryCode": "PURPLE_METRIC_SLO",
228228
"releaseStatus": "released"
229229
},
230+
{
231+
"name": "equinix.fabric.connection.byte_rx.count",
232+
"description": "Connection inbound dropped byte count",
233+
"sloCategoryCode": "PURPLE_METRIC_SLO",
234+
"releaseStatus": "preview"
235+
},
236+
{
237+
"name": "equinix.fabric.connection.byte_tx.count",
238+
"description": "Connection outbound dropped byte count",
239+
"sloCategoryCode": "PURPLE_METRIC_SLO",
240+
"releaseStatus": "preview"
241+
},
242+
{
243+
"name": "equinix.fabric.port.byte_rx.count",
244+
"description": "Port inbound dropped byte count",
245+
"sloCategoryCode": "PURPLE_METRIC_SLO",
246+
"releaseStatus": "preview"
247+
},
248+
{
249+
"name": "equinix.fabric.port.byte_tx.count",
250+
"description": "Port outbound dropped byte count",
251+
"sloCategoryCode": "PURPLE_METRIC_SLO",
252+
"releaseStatus": "preview"
253+
},
230254
{
231255
"name": "equinix.fabric.metro.am_{metroCode}.latency",
232256
"description": "Amsterdam to ${metro} intermetro latency, average in milliseconds",

0 commit comments

Comments
 (0)