-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
135 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 134 additions & 1 deletion
135
x-pack/plugins/telemetry_collection_xpack/schema/xpack_observability.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,136 @@ | ||
{ | ||
"properties": {} | ||
"properties": { | ||
"investigation": { | ||
"properties": { | ||
"investigation": { | ||
"properties": { | ||
"total": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The total number of investigations in the cluster" | ||
} | ||
}, | ||
"by_status": { | ||
"properties": { | ||
"triage": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations in triage status in the cluster" | ||
} | ||
}, | ||
"active": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations in active status in the cluster" | ||
} | ||
}, | ||
"mitigated": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations in mitigated status in the cluster" | ||
} | ||
}, | ||
"resolved": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations in resolved status in the cluster" | ||
} | ||
}, | ||
"cancelled": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations in cancelled status in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"by_origin": { | ||
"properties": { | ||
"alert": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations created from alerts in the cluster" | ||
} | ||
}, | ||
"blank": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of investigations created from scratch in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"items": { | ||
"properties": { | ||
"avg": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The average number of items across all investigations in the cluster" | ||
} | ||
}, | ||
"p90": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The 90th percentile of the number of items across all investigations in the cluster" | ||
} | ||
}, | ||
"p95": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The 95th percentile of the number of items across all investigations in the cluster" | ||
} | ||
}, | ||
"max": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The maximum number of items across all investigations in the cluster" | ||
} | ||
}, | ||
"min": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The minimum number of items across all investigations in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"notes": { | ||
"properties": { | ||
"avg": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The average number of notes across all investigations in the cluster" | ||
} | ||
}, | ||
"p90": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The 90th percentile of the number of notes across all investigations in the cluster" | ||
} | ||
}, | ||
"p95": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The 95th percentile of the number of notes across all investigations in the cluster" | ||
} | ||
}, | ||
"max": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The maximum number of notes across all investigations in the cluster" | ||
} | ||
}, | ||
"min": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The minimum number of notes across all investigations in the cluster" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters