summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-09-28 12:31:41 +0300
committerGitHub <noreply@github.com>2021-09-28 12:31:41 +0300
commit3098db8d05657f6b435e99a99b1ce0d40e122a62 (patch)
treeb258a5413b3cf3b889201c850002963df9b652f6 /web
parent3dec8d2e303656f741a45473044eb7454693d3a6 (diff)
add proc_net_stat_conntrack charts info (#11576)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js45
1 files changed, 45 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index b95e2ac8fc..fe5b6ff70e 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -1885,6 +1885,51 @@ netdataDashboard.context = {
},
// ------------------------------------------------------------------------
+ // Netfilter Connection Tracker
+
+ 'netfilter.conntrack_sockets': {
+ info: 'The number of entries in the conntrack table.'
+ },
+
+ 'netfilter.conntrack_new': {
+ info: '<p>Packet tracking statistics.</p>'+
+ '<p><b>New</b> - conntrack entries added which were not expected before. '+
+ '<b>Ignore</b> - packets seen which are already connected to a conntrack entry. '+
+ '<b>Invalid</b> - packets seen which can not be tracked.</p>'
+ },
+
+ 'netfilter.conntrack_changes': {
+ info: '<p>The number of changes in conntrack tables.</p>'+
+ '<p><b>Inserted</b>, <b>Deleted</b> - conntrack entries which were inserted or removed. '+
+ '<b>Delete-list</b> - conntrack entries which were put to dying list.</p>'
+ },
+
+ 'netfilter.conntrack_expect': {
+ info: '<p>The number of events in the "expect" table. '+
+ 'Connection tracking expectations are the mechanism used to "expect" RELATED connections to existing ones. '+
+ 'An expectation is a connection that is expected to happen in a period of time.</p>'+
+ '<p><b>Created</b>, <b>Deleted</b> - conntrack entries which were inserted or removed. '+
+ '<b>New</b> - conntrack entries added after an expectation for them was already present.</p>'
+ },
+
+ 'netfilter.conntrack_search': {
+ info: '<p>Conntrack table lookup statistics.</p>'+
+ '<p><b>Searched</b> - conntrack table lookups performed. '+
+ '<b>Restarted</b> - conntrack table lookups which had to be restarted due to hashtable resizes. '+
+ '<b>Found</b> - conntrack table lookups which were successful.</p>'
+ },
+
+ 'netfilter.conntrack_errors': {
+ info: '<p>Conntrack errors.</p>'+
+ '<p><b>IcmpError</b> - packets which could not be tracked due to error situation. '+
+ '<b>InsertFailed</b> - entries for which list insertion was attempted but failed '+
+ '(happens if the same entry is already present). '+
+ '<b>Drop</b> - packets dropped due to conntrack failure. '+
+ 'Either new conntrack entry allocation failed, or protocol helper dropped the packet. '+
+ '<b>EarlyDrop</b> - dropped conntrack entries to make room for new ones, if maximum table size was reached.</p>'
+ },
+
+ // ------------------------------------------------------------------------
// APPS
'apps.cpu': {