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/25 09:17] – 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 | + | | tstats count where index=< |
+ | | timechart count span=1h | ||
+ | | addtotals | ||
</ | </ | ||
==== Events per Host / Index / Sourcetype ==== | ==== Events per Host / Index / Sourcetype ==== | ||
+ | < | ||
+ | | tstats count as EVENTS_PER_HOST where index=* by index, | ||
+ | | table * | ||
+ | | sort by index | ||
+ | </ | ||
+ | ==== Ingestion by Index ==== | ||
< | < | ||
- | | tstats count as EVENTS_PER_HOST where index=* by index,sourcetype,host | table * | sort by index | + | index=_internal |
+ | | 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.1706170621.txt.gz · Last modified: 2024/01/25 09:17 by baumi