hi Guys,
I'm looking a better app than Meta Woot for the following reasons
-> To track our licenses per index/sourcetype/host/source.
-> To graph over a period of 1 month, quarter, 6 months and one year
Could anyone please suggest anything that you are using
Regards
Kavya
Monitoring console is best app which comes with Splunk Enterprise or Splunk cloud to track down license based on source, sourcetype and index. unfortunately sometimes when UF/HF is receiving more events than expected then UF/HF can't update metrics this will reduce visibility on how much data is indexed by source/sourcetype/host.
by default, frozenTimePeriodInSecs = 2592000 (which is retention of an index) is set to _internal index.
You may need to increase frozenTimePeriodInSecs value to one year to track your license by source/sourcetype/host.
thank you @thambisetty, but the problem is Monitoring console is that we cannot see License usage more than past 30 days. we are looking to get insights over 1 year
please see the point in my previous answer as below:
by default, frozenTimePeriodInSecs = 2592000 (which is retention of an index) is set to _internal index.
You may need to increase frozenTimePeriodInSecs value to one year to track your license by source/sourcetype/host.
There is an option to see license usage per day using index=_telemetry this may give you almost since you have installed Splunk but it doesn't split by source/sourcetype/host.
index=_telemetry component=LicenseUsageSummary host="yourlicensemaster"
|eval GB=round((((b / 1024) / 1024) / 1024),3)
| timechart sum(GB) span=1dNote: don't consider today events when using the above query. you need to read the results like below:
for example look at below screenshot shows daily license consumption.
2020-09-01 is the license consumption of 31st of Aug. in the same way 2020-09-02 is the license consumption of 1st of September. this is because Splunk generates yesterday's licenseusagesummary today.