add sys_class_infiniband charts info (#11628)
Ilya Mashchenko committed
Oct 7, 2021 at 09:36 UTC
8fda25c80917fb5c1461d4dfe003dc55434e5f6e
1 file changed
+32
web/gui/dashboard_info.js
+32
@@ -53,6 +53,15 @@ netdataDashboard.menu = {
53
'<p>Netdata retrieves this data reading the <code>/proc/net/dev</code> file and <code>/sys/class/net/</code> directory.</p>'
54
},
55
56
+ 'Infiniband': {
57
+ title: 'Infiniband ports',
58
+ icon: '<i class="fas fa-sitemap"></i>',
59
+ info: '<p>Performance and exception statistics for '+
60
+ '<a href="https://en.wikipedia.org/wiki/InfiniBand" target="_blank">Infiniband</a> ports. '+
61
+ 'The individual port and hardware counters can be found in the '+
62
+ '<a href="https://community.mellanox.com/s/article/understanding-mlx5-linux-counters-and-status-parameters" target="_blank">Mellanox knowledge base</a>.'
63
+ },
64
+
65
'wireless': {
66
title: 'Wireless Interfaces',
67
icon: '<i class="fas fa-wifi"></i>',
@@ -2678,6 +2687,29 @@ netdataDashboard.context = {
2687
'failure to receive them usually indicates that the card is out of range.'
2688
},
2689
2690
+ // ------------------------------------------------------------------------
2691
+ // INFINIBAND
2692
+
2693
+ 'ib.bytes': {
2694
+ info: 'The amount of traffic transferred by the port.'
2695
+ },
2696
+
2697
+ 'ib.packets': {
2698
+ info: 'The number of packets transferred by the port.'
2699
+ },
2700
+
2701
+ 'ib.errors': {
2702
+ info: 'The number of errors encountered by the port.'
2703
+ },
2704
+
2705
+ 'ib.hwerrors': {
2706
+ info: 'The number of hardware errors encountered by the port.'
2707
+ },
2708
+
2709
+ 'ib.hwpackets': {
2710
+ info: 'The number of hardware packets transferred by the port.'
2711
+ },
2712
+
2713
// ------------------------------------------------------------------------
2714
// NETFILTER
2715