Grafana Monitor interface shows no TX ? #10086
Replies: 3 comments 3 replies
-
By default, the monitor interface is only receiving traffic in promiscuous mode and shouldn't be transmitting anything. |
Beta Was this translation helpful? Give feedback.
-
"$monint$" = Monitor Interface. Which is the sniffer bond ports. Which is rx only just like @InfosecGoon stated. The default SO Grafana dashboard helps me out with all this Influxdb query. Specifically "Standalone" dashboard and "Security Onion Grid Overview". |
Beta Was this translation helpful? Give feedback.
-
so there is no way to monitor in and outgoing internet in grafana ? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi i have a monitorinterface in grafana its the default dashboard and there are alot of trafik.
But i have maked a select with the same as RX like this:
SELECT non_negative_derivative(mean("bytes_sent"), 1s) *8 FROM "net" WHERE ("host" =~ /^$servername$/ AND "interface" =~ /^$monint$/) AND $timeFilter GROUP BY time($__interval), "host", "interface" fill(null)
but its nor working
this is the select from the rx, its working
SELECT non_negative_derivative(mean("bytes_recv"), 1s) *8 FROM "net" WHERE ("host" =~ /^$servername$/ AND "interface" =~ /^$monint$/) AND $timeFilter GROUP BY time($__interval), "host", "interface" fill(null)
The managment interface shows both rx and tx, so this is working.
But why is the monitor interface not working?
Is only the inbound trafik captured?
Beta Was this translation helpful? Give feedback.
All reactions