This section contains examples of search and visualization pairs that can be used as a starting point to display your data in a dashboard.
The following examples use searches based on data collected from Jamf Protect for Splunk.
For more information about Splunk dashboards, see Dashboards and Visualizations from the Splunk.
Logs and Alerts by Event Types
| Search | Visualization |
|---|---|
|
Detected Analytics Count
| Search | Visualization |
|---|---|
source = "http:Jamf Protect" | stats count by input.eventType, input.match.facts{}.name | rename input.eventType AS "Event Type", input.match.facts{}.name AS "Event", count AS "Count" | sort Count desc | head 10 |
Top 10 Event Type Breakdown
| Search | Visualization |
|---|---|
|
Executables Blocked by Gatekeeper
| Search | Visualization |
|---|---|
source = "http:Jamf Protect" input.eventType="GPGatekeeperEvent" | stats count by input.match.facts{}.name, input.match.event.path | rename input.match.facts{}.name AS "Block Type", input.match.event.path AS "Executable" | head 10 |