-
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.
[CI] Auto-commit changed files from 'node scripts/telemetry_check'
- Loading branch information
1 parent
33d6c2a
commit 25de879
Showing
2 changed files
with
210 additions
and
209 deletions.
There are no files selected for viewing
211 changes: 210 additions & 1 deletion
211
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,212 @@ | ||
{ | ||
"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" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"slo": { | ||
"properties": { | ||
"slo": { | ||
"properties": { | ||
"total": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The total number of slos in the cluster" | ||
} | ||
}, | ||
"by_status": { | ||
"properties": { | ||
"enabled": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of enabled slos in the cluster" | ||
} | ||
}, | ||
"disabled": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of disabled slos in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"by_sli_type": { | ||
"properties": { | ||
"DYNAMIC_KEY": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of slos by sli type in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"by_rolling_duration": { | ||
"properties": { | ||
"DYNAMIC_KEY": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of slos by rolling duration in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"by_calendar_aligned_duration": { | ||
"properties": { | ||
"DYNAMIC_KEY": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of slos by calendar aligned duration in the cluster" | ||
} | ||
} | ||
} | ||
}, | ||
"by_budgeting_method": { | ||
"properties": { | ||
"occurrences": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of slos by timeslices budgeting method in the cluster" | ||
} | ||
}, | ||
"timeslices": { | ||
"type": "long", | ||
"_meta": { | ||
"description": "The number of slos by occurrences budgeting method in the cluster" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.