For Splunk 7 & 8 at least: To get the daily ingestion per indexer with the hostname rather than the GUID following your time range picker selection. index=_telemetry source=*license_usage_summary.log* type="RolloverSummary"
| join type=inner slave [ | rest /servicesNS/-/-/search/distributed/peers splunk_server=local | table guid host | rename guid AS slave ]
| search host=*PATTERN*
| timechart span=1d eval(round(latest(b) / 1024 / 1024 / 1024, 3)) AS sizeGB BY host useother=f Replace PATTERN by your indexers hostname convention.
... View more