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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...