Skip to content

Commit b63992f

Browse files
authored
Merge pull request #2707 from PrithivirajPE/ebpf-dashboard-update
feat: Added Packets Retransmits chart for eBPF
2 parents 9dbd622 + 56a103f commit b63992f

File tree

1 file changed

+118
-12
lines changed

1 file changed

+118
-12
lines changed

dashboards/ebpf/ebpf.json

Lines changed: 118 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"layout": {
144144
"column": 1,
145145
"row": 7,
146-
"width": 4,
146+
"width": 3,
147147
"height": 3
148148
},
149149
"linkedEntityGuids": null,
@@ -194,9 +194,9 @@
194194
{
195195
"title": "[INBOUND CONNECTIONS] bytes received",
196196
"layout": {
197-
"column": 5,
197+
"column": 4,
198198
"row": 7,
199-
"width": 4,
199+
"width": 3,
200200
"height": 3
201201
},
202202
"linkedEntityGuids": null,
@@ -245,11 +245,11 @@
245245
}
246246
},
247247
{
248-
"title": "[INBOUND CONNECTIONS] packets dropped",
248+
"title": "[INBOUND CONNECTIONS] packets retransmits",
249249
"layout": {
250-
"column": 9,
250+
"column": 7,
251251
"row": 7,
252-
"width": 4,
252+
"width": 3,
253253
"height": 3
254254
},
255255
"linkedEntityGuids": null,
@@ -297,12 +297,65 @@
297297
}
298298
}
299299
},
300+
{
301+
"title": "[INBOUND CONNECTIONS] packets dropped",
302+
"layout": {
303+
"column": 10,
304+
"row": 7,
305+
"width": 3,
306+
"height": 3
307+
},
308+
"linkedEntityGuids": null,
309+
"visualization": {
310+
"id": "viz.line"
311+
},
312+
"rawConfiguration": {
313+
"facet": {
314+
"showOtherSeries": false
315+
},
316+
"legend": {
317+
"enabled": true
318+
},
319+
"markers": {
320+
"displayedTypes": {
321+
"criticalViolations": false,
322+
"deployments": true,
323+
"relatedDeployments": true,
324+
"warningViolations": false
325+
}
326+
},
327+
"nrqlQueries": [
328+
{
329+
"accountIds": [],
330+
"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"
331+
}
332+
],
333+
"platformOptions": {
334+
"ignoreTimeRange": false
335+
},
336+
"refreshRate": {
337+
"frequency": 30000
338+
},
339+
"thresholds": {
340+
"isLabelVisible": true
341+
},
342+
"units": {
343+
"unit": "COUNT"
344+
},
345+
"yAxisLeft": {
346+
"zero": true
347+
},
348+
"yAxisRight": {
349+
"zero": true
350+
}
351+
}
352+
},
300353
{
301354
"title": "[OUTBOUND CONNECTIONS] bytes sent",
302355
"layout": {
303356
"column": 1,
304357
"row": 10,
305-
"width": 4,
358+
"width": 3,
306359
"height": 3
307360
},
308361
"linkedEntityGuids": null,
@@ -353,9 +406,9 @@
353406
{
354407
"title": "[OUTBOUND CONNECTIONS] bytes received",
355408
"layout": {
356-
"column": 5,
409+
"column": 4,
357410
"row": 10,
358-
"width": 4,
411+
"width": 3,
359412
"height": 3
360413
},
361414
"linkedEntityGuids": null,
@@ -401,11 +454,11 @@
401454
}
402455
},
403456
{
404-
"title": "[OUTBOUND CONNECTIONS] packets dropped",
457+
"title": "[OUTBOUND CONNECTIONS] packets retransmits",
405458
"layout": {
406-
"column": 9,
459+
"column": 7,
407460
"row": 10,
408-
"width": 4,
461+
"width": 3,
409462
"height": 3
410463
},
411464
"linkedEntityGuids": null,
@@ -453,6 +506,59 @@
453506
}
454507
}
455508
},
509+
{
510+
"title": "[OUTBOUND CONNECTIONS] packets dropped",
511+
"layout": {
512+
"column": 10,
513+
"row": 10,
514+
"width": 3,
515+
"height": 3
516+
},
517+
"linkedEntityGuids": null,
518+
"visualization": {
519+
"id": "viz.line"
520+
},
521+
"rawConfiguration": {
522+
"facet": {
523+
"showOtherSeries": false
524+
},
525+
"legend": {
526+
"enabled": true
527+
},
528+
"markers": {
529+
"displayedTypes": {
530+
"criticalViolations": false,
531+
"deployments": true,
532+
"relatedDeployments": true,
533+
"warningViolations": false
534+
}
535+
},
536+
"nrqlQueries": [
537+
{
538+
"accountIds": [],
539+
"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"
540+
}
541+
],
542+
"platformOptions": {
543+
"ignoreTimeRange": false
544+
},
545+
"refreshRate": {
546+
"frequency": 30000
547+
},
548+
"thresholds": {
549+
"isLabelVisible": true
550+
},
551+
"units": {
552+
"unit": "COUNT"
553+
},
554+
"yAxisLeft": {
555+
"zero": true
556+
},
557+
"yAxisRight": {
558+
"zero": true
559+
}
560+
}
561+
},
456562
{
457563
"title": "[INBOUND CONNECTIONS] TCP connection count (success/failure)",
458564
"layout": {

0 commit comments

Comments
 (0)