Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 118 additions & 12 deletions dashboards/ebpf/ebpf.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"layout": {
"column": 1,
"row": 7,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -194,9 +194,9 @@
{
"title": "[INBOUND CONNECTIONS] bytes received",
"layout": {
"column": 5,
"column": 4,
"row": 7,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -245,11 +245,11 @@
}
},
{
"title": "[INBOUND CONNECTIONS] packets dropped",
"title": "[INBOUND CONNECTIONS] packets retransmits",
"layout": {
"column": 9,
"column": 7,
"row": 7,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -297,12 +297,65 @@
}
}
},
{
"title": "[INBOUND CONNECTIONS] packets dropped",
"layout": {
"column": 10,
"row": 7,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
"visualization": {
"id": "viz.line"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"markers": {
"displayedTypes": {
"criticalViolations": false,
"deployments": true,
"relatedDeployments": true,
"warningViolations": false
}
},
"nrqlQueries": [
{
"accountIds": [],
"query": "FROM Metric SELECT sum(ebpf.tcp.packet_dropped) where entity.name IN ({{entity_name}}) and protocol.name='tcp' and direction='INCOMING' FACET entity.name, local_addr, local_port limit max TIMESERIES"
}
],
"platformOptions": {
"ignoreTimeRange": false
},
"refreshRate": {
"frequency": 30000
},
"thresholds": {
"isLabelVisible": true
},
"units": {
"unit": "COUNT"
},
"yAxisLeft": {
"zero": true
},
"yAxisRight": {
"zero": true
}
}
},
{
"title": "[OUTBOUND CONNECTIONS] bytes sent",
"layout": {
"column": 1,
"row": 10,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -353,9 +406,9 @@
{
"title": "[OUTBOUND CONNECTIONS] bytes received",
"layout": {
"column": 5,
"column": 4,
"row": 10,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -401,11 +454,11 @@
}
},
{
"title": "[OUTBOUND CONNECTIONS] packets dropped",
"title": "[OUTBOUND CONNECTIONS] packets retransmits",
"layout": {
"column": 9,
"column": 7,
"row": 10,
"width": 4,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
Expand Down Expand Up @@ -453,6 +506,59 @@
}
}
},
{
"title": "[OUTBOUND CONNECTIONS] packets dropped",
"layout": {
"column": 10,
"row": 10,
"width": 3,
"height": 3
},
"linkedEntityGuids": null,
"visualization": {
"id": "viz.line"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"markers": {
"displayedTypes": {
"criticalViolations": false,
"deployments": true,
"relatedDeployments": true,
"warningViolations": false
}
},
"nrqlQueries": [
{
"accountIds": [],
"query": "FROM Metric SELECT sum(ebpf.tcp.packet_dropped) where entity.name IN ({{entity_name}}) and protocol.name='tcp' and direction='OUTGOING' FACET entity.name, remote_addr limit max TIMESERIES"
}
],
"platformOptions": {
"ignoreTimeRange": false
},
"refreshRate": {
"frequency": 30000
},
"thresholds": {
"isLabelVisible": true
},
"units": {
"unit": "COUNT"
},
"yAxisLeft": {
"zero": true
},
"yAxisRight": {
"zero": true
}
}
},
{
"title": "[INBOUND CONNECTIONS] TCP connection count (success/failure)",
"layout": {
Expand Down
Loading