splunk-queries
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| splunk-queries [2024/01/11 09:41] – baumi | splunk-queries [2024/10/15 05:26] (current) – baumi | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== Splunk Queries ===== | + | ====== Splunk Queries ====== |
| + | |||
| + | ===== Indexes & Events ===== | ||
| + | ==== List Indexes ==== | ||
| + | < | ||
| + | | eventcount summarize=false index=* | ||
| + | | dedup index | ||
| + | | fields index | ||
| + | </ | ||
| ==== Count Events per Index ==== | ==== Count Events per Index ==== | ||
| < | < | ||
| | tstats count WHERE index=* OR index=_* by index | | tstats count WHERE index=* OR index=_* by index | ||
| </ | </ | ||
| - | ==== List Indexes ==== | ||
| < | < | ||
| - | | eventcount summarize=false index=* | dedup index | fields | + | | tstats count where index=< |
| + | | timechart count span=1h | ||
| + | | addtotals | ||
| + | </ | ||
| + | ==== Events per Host / Index / Sourcetype ==== | ||
| + | < | ||
| + | | tstats count as EVENTS_PER_HOST where index=* | ||
| + | | table * | ||
| + | | sort by index | ||
| + | </ | ||
| + | |||
| + | ==== Ingestion by Index ==== | ||
| + | < | ||
| + | index=_internal sourcetype=splunkd source=*license_usage.log type=Usage | ||
| + | | stats sum(b) as bytes by idx | eval mb=round(bytes/ | ||
| + | </ | ||
| + | |||
| + | === Timechart === | ||
| + | < | ||
| + | index=_internal sourcetype=splunkd source=*license_usage.log type=Usage | ||
| + | | timechart span=1d sum(b) as usage by idx limit=0 | ||
| + | | foreach * [ eval "<< | ||
| + | </ | ||
| + | |||
| + | ==== Total Ingestion ==== | ||
| + | < | ||
| + | index=_internal sourcetype=splunkd source=*license_usage.log type=Usage | ||
| + | | timechart span=1d sum(b) as usage | ||
| + | | eval gb=round(usage/ | ||
| + | | table _time, gb | ||
| + | </ | ||
| + | |||
| + | ===== Lookups & Macros ===== | ||
| + | |||
| + | ==== Export Lookup file ==== | ||
| + | < | ||
| + | | inputlookup my_lookup.csv | ||
| + | </ | ||
| + | |||
| + | ==== List of Macros ==== | ||
| + | < | ||
| + | | rest / | ||
| </ | </ | ||
| {{tag>kb splunk}} | {{tag>kb splunk}} | ||
splunk-queries.1704962506.txt.gz · Last modified: by baumi
