Historical license usage is not showing some days' graph, but the data are all there.
The search string is this, never changed, it worked well before.
(index=_internal host=xxxxxx source=*license_usage.log* type="RolloverSummary" earliest=-30d@d) | eval _time=('_time' - 43200) | bin _time span=1d | stats latest(b) AS b by slave, pool, _time | timechart span=1d sum(b) AS "volume" fixedrange=false | join type=outer _time [| search (index=_internal host=xxxxxxx source=*license_usage.log* type="RolloverSummary" earliest=-30d@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) ]
... View more