本節包含搜尋與可視化對範例,可用作在儀表板中顯示資料的起點。
以下範例使用基於從Splunk的Jamf Protect外掛程式收集的資料進行搜尋。
有關Splunk儀表板的更多資訊,請參閱Splunk的儀表板和視覺化。
基於事件類型的記錄和警示
| Search (搜尋) | 可視化 |
|---|---|
|
偵測到的分析數
| Search (搜尋) | 可視化 |
|---|---|
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 |
最熱門的10大事件類型明細
| Search (搜尋) | 可視化 |
|---|---|
|
被 Gatekeeper 阻止的可執行檔
| Search (搜尋) | 可視化 |
|---|---|
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 |