All Apps and Add-ons

License usage by OS type

kpavan
Path Finder

Hi,

I want get the license usage by host and specifically for windows OS, I got host usage by below query, but if I add the tag=windows* its not given any output. Please suggest me

index=_internal source=*license_usage.log type=Usage
| stats sum(b) as bytes by h
| eval MB = round(bytes/1024/1024,1)
| fields h MB
| rename h as host

Thanks

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Use following query to get Host -OS mapping

index=_internal (source=*metrics.log) |dedup os,hostname | rename hostname as host| table os,host

Save this a lookup table file (say host_os.csv), then use it to get the license usage by OS

index=_internal source=*license_usage.log type=Usage | stats sum(b) as bytes by h | eval MB = round(bytes/1024/1024,1) | fields h MB | lookup host_os.csv host as h | stats sum(bytes) as bytes by os
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...