Reputation: 125
I am trying the KQL query currently they gave me Bits/sec out put and I want to Gigabits/sec on interface speed instead of bit per sec.
current out put.
networkInterfaces_IN networkInterfaces_OUT
983,777,544,056 834,528,195,752
83,777,544,0568 734,528,195,752
Thanks!
Upvotes: 0
Views: 1110
Reputation: 689
format_bytes()
to convert your input from Bits to Gigabits.format_bytes(
value [,
precision [,
units]])
Bytes, KB, MB, GB, TB
. (optional) You should be aware of conversion values, like for example 1024 bytes
is equal to 1 KB
.
For more information regarding the same, you can refer this below,
Upvotes: 1