All Apps and Add-ons

splunk license usage by indexer not on GUID

gnanaraj_mcc
Loves-to-Learn Lots

i am looking for the splunk query to run on the license manager to find out the license usage by indexer name. The license usage log dont have the indexer name, it got only the GUID of the indexer in a field called i. license manager is running 7.0.4 version of splunk

0 Karma

mdsnmss
SplunkTrust
SplunkTrust
index=_internal source=*license_usage.log type="Usage" idx=* st=* 
| rename i as guid 
| join guid 
    [| rest splunk_server=<cluster_master> /services/cluster/master/peers 
    | rename title as guid 
    | fields guid label] 
| bin _time span=1d 
| stats sum(b) as b by _time, label

You can add/remove values as you need and adjust time as needed. What this does is just pulls guid/label info from the master and joins it to the guid. If you aren't clustered we might have to find a different endpoint to hit to grab that info.

0 Karma

gnanaraj_mcc
Loves-to-Learn Lots

Hi mdsnmss,

thanks for your reply. however, this query didn't return any results. i ran this from the license manager GUI. We manage centralized licensing. We create license pool for our internal departments and those departments point their indexers to the license master. These departments want license report by indexers.

Do you know how to pull license usage by indexers in this case?

0 Karma

sloshburch
Ultra Champion

That seems like it should have worked. Did you replace <cluster_master>? Perhaps share your SPL or results?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...