Hi Hemnaath, you can get a report on license utilization as described more here : http://docs.splunk.com/Documentation/Splunk/6.5.2/Admin/AboutSplunksLicenseUsageReportView
In particular, you can split by the various meta fields (index / host / source / sourcetype) in order to get a better idea what is blowing up your license.
In particular, the search used to drive this report is:
index=_internal host=yourLicenseServer source=*license_usage.log* type="Usage" | eval h=if(len(h)=0 OR isnull(h),"(SQUASHED)",h) | eval s=if(len(s)=0 OR isnull(s),"(SQUASHED)",s) | eval idx=if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | bin _time span=1d | stats sum(b) as b by _time, pool, s, st, h, idx | timechart span=1d sum(b) AS volumeB by s fixedrange=false | join type=outer _time [search index=_internal host=yourLicenseServer source=*license_usage.log* type="RolloverSummary" earliest=-30d@d | eval _time=_time - 43200 | bin _time span=1d | stats latest(stacksz) AS "stack size" by _time] | fields - _timediff | foreach * [eval <<FIELD>>=round('<<FIELD>>'/1024/1024/1024, 3)]
you'd have to have access to the _internal index of course, and adjust the host= line to be what the host value is for you license server.
Additionally, you can see the span here is set as span=1d at a couple points. Feel free to adjust that along with the overall search time frame to suit your needs.
Please let me know if this answers your question! 😄
... View more