I'm trying to figure out to calculate the network utilization on this server using the eval and stats and I'm having problem figuring out the correct search and expression, can you help me. index=* sourcetype="Perfmon:Network Interface" source="Perfmon:Network Interface" counter=* | eval bytes_out = "Bytes Sent/sec", bytes_in = "Bytes Received/sec" | eval Bandwidth = bytes_out + bytes_in | timechart count by Bandwidth limit=10 I need to convert the bytes in mbps, as well, I would really appreciate some help here, Thank you in advance.
... View more