-
3 years, 12 months ago
Samthegeek commented on the post, License Usage by Index per Day
In reply to: SplunkNinja wrote a new post, License Usage by Index per Day The following Splunk search query will output license usage for each index for each day for the week to date. It will also output an average for each […] View| eval MB=round(volume/1024/1024,5)
| eval GB=round(volume/1024/1024/1024,5)Would it be GB in the second statement? thank you for the advice.
-
3 years, 12 months ago
Samthegeek commented on the post, License Usage by Index per Day
In reply to: SplunkNinja wrote a new post, License Usage by Index per Day The following Splunk search query will output license usage for each index for each day for the week to date. It will also output an average for each […] Viewindex=_internal source=*license_usage.log type=”Usage” splunk_server=* earliest=-1w@d | eval Date=strftime(_time, “%Y/%m/%d”) | eventstats sum(b) as volume by idx, Date | eval GB=round(volume/1024/1024,5)| timechart first(GB) AS volume by idx
I tried to modify this search to use GB (gigabyte instead of MB megabyte) but the numbers did not…[Read more]
-
3 years, 12 months ago
Samthegeek became a registered member
-
3 years, 12 months ago
Samthegeek became a registered member