Hi @kjain041523 , the search you're searching is available in [Settings > Licensing > Usage Report > Previous 6 days > Split by host] or in the Monitoring Console at [Indexing > License usage > Historic License usage > Split by host ]. This report is for 30 days but you can easily modify it for 120 days: index=_internal
[ rest splunk_server=local /services/server/info
| return host] 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 h fixedrange=false
| join type=outer _time
[ search index=_internal
[ rest splunk_server=local /services/server/info
| return host] source=*license_usage.log* type="RolloverSummary" earliest=-120d@d
| eval _time=_time - 43200
| bin _time span=1d
| dedup _time stack
| stats sum(stacksz) AS "stack size" by _time]
| fields - _timediff
| foreach "*"
[ eval <<FIELD>>=round('<<FIELD>>'/1024/1024/1024, 3)] The problem could be another: are you sure that the retention of your _internal index is more than 4 months? Usually it's less, so you could not have the logs dor this search! Ciao. Giuseppe
... View more