Important Search Command in Splunk...
1. Erex - do not know the regular expression : index = "main" | erex monthday examples ="7/01"
2. Abstract - The original text replaced by the summary : index ="main"| abstract maxlines = 50
3. Typer - to get to know event type : index ="main" | typer
4. Rename - rename the value as we want : index = "main" | rename Karthik as "Sharavan"
5. Anomalies - look for field values are unusual or unexpected.: index = "main" | anomalies by source
6. FillDown - replaces the null value using last non null values : index = "main" | filldown count
7. Acum - calculate running total | sourcetype=access_* status=200 categoryId=STRATEGY | chart count AS views by productId | accum views as TotalViews
8. AddTotals:arithmetic some of all numeric values : source="addtotalsData.csv" | chart sum(sales) BY products quarter
Comments
Post a Comment