Installation

What are the meanings of headers in Todays_ License_ Usage report?

saurabh_
New Member

Can someone provide an explanation of the headers x, y1, y2, y3, and y4 in the "Todays_ License_ Usage" report? I would like to understand their specific meanings.

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @saurabh_,

could you share the search you're meaning?

Ciao.

Giuseppe

0 Karma

saurabh_
New Member

Hi @gcusello  “Today License Usage Report” has been extracted from the Splunk console. The steps are written below:

  1. On license manager dashboard went to Settings -> Licensing
  2. Clicked on Usage report -> Today.
  3. Downloaded the data of Today's License Usage.

 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @saurabh_,

x, y1, y2, y3 and y4 are the values used by the gauge used to display results.

If you (using the Open in search dashboard) cancel the last pipe group, and run the remaining search:

| rest splunk_server=local /services/licenser/pools 
| rename title AS Pool 
| search [rest splunk_server=local /services/licenser/groups | search is_active=1 | eval stack_id=stack_ids | fields stack_id] 
| join type=outer stack_id [rest splunk_server=local /services/licenser/stacks | eval stack_id=title | eval stack_quota=quota | fields stack_id stack_quota] 
| stats sum(used_bytes) as used max(stack_quota) as total 
| eval usedGB=round(used/1024/1024/1024,3) 
| eval totalGB=round(total/1024/1024/1024,3) 
| eval gauge_base=0 
| eval gauge_danger=totalGB*0.8 
| eval gauge_top=totalGB+0.001

you have the correct columns names: 

  • used 
  • total
  • gauge_base
  • gauge_danger
  • gauge_top
  • TotalGB
  • UsedGB

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...