このセクションでは、データをダッシュボードに表示する出発点として使える検索と可視化ペアの例を紹介します。
以下の例では、Jamf Protect for Splunk から収集したデータに基づいた検索を使用しています。
Splunk ダッシュボードの詳細については、Splunk の Dashboards and Visualizations (ダッシュボードと視覚化) を参照してください。
イベントタイプ別のログとアラート
| 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 |