Problem:
How to filter out specific sources, sourcetypes, and hosts from displaying on my Search Summary page in Splunk?
Sample Data – https://www.devopsschool.com/tutorial/splunk/labs/sample-data/earthquake/all_month_earthquakes.csv
Including or excluding or filter out specific sources, sourcetypes, and hosts in Splunk can be done with following.
- Expressions within parentheses
- NOT clauses
- OR clauses
- AND clauses
Examle QUERY
source="*"
source="all_month_earthquakes.csv"
source="all_month_earthquakes.csv" NOT source="mypc-secruity.csv"
source="mypc-secruity.csv" NOT source="all_month_earthquakes.csv"
NOT source="mypc-secruity.csv" source="all_month_earthquakes.csv"
source="all_month_earthquakes.csv" | search NOT source="mypc-secruity.csv"
source="mypc-secruity.csv" AND source="all_month_earthquakes.csv"
source="mypc-secruity.csv" OR source="all_month_earthquakes.csv"
Splunk Advance Tutorial for Beginners with Demo 2020 — By DevOpsSchool
Splunk Advance Tutorial for Beginners with Demo (2020) — By DevOpsSchool
Splunk Advance Tutorial for Beginners with Demo [2020] — By DevOpsSchool
SPLUNK Essential Tutorial By Shahrukh in 2020
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024