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!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...