Installation

Set up an alert for Splunk license when it reaches 80 percent

rahul2gupta
Path Finder

Hi ,

I want to set up an alert when our daily volume license usage reaches/crosses 80%. Can someone help me with this.

Regards,

Rahul

Labels (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @rahul2gupta,

in the Splunk Monitoring Console you can find the search you're searching for and you need only to choose the threshold you want and to enable it.

You con find it in the Splunk Monitoring Console Alerts.

If you don't find it, this is the search:

| rest splunk_server_group=dmc_group_license_master /services/licenser/pools 
| join type=outer stack_id splunk_server [
     rest splunk_server_group=dmc_group_license_master /services/licenser/groups 
     | search is_active=1 
     | eval stack_id=stack_ids 
     | fields splunk_server stack_id is_active
     ] 
| search is_active=1 
| fields splunk_server, stack_id, used_bytes 
| join type=outer stack_id splunk_server [
     rest splunk_server_group=dmc_group_license_master /services/licenser/stacks 
     | eval stack_id=title 
     | eval stack_quota=quota 
     | fields splunk_server stack_id stack_quota
     ] 
| stats sum(used_bytes) as used_bytes max(stack_quota) as stack_quota by splunk_server 
| eval usedGB=round(used_bytes/1024/1024/1024,3) 
| eval totalGB=round(stack_quota/1024/1024/1024,3) 
| eval percentage=round(usedGB / totalGB, 3)*100 
| fields splunk_server, percentage, usedGB, totalGB 
| where percentage > 90 
| rename splunk_server AS Instance, percentage AS "License quota used (%)", usedGB AS "License quota used (GB)", totalGB as "Total license quota (GB)"

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...