Skip to content

Commit

Permalink
persist telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme committed Oct 24, 2024
1 parent 215979c commit 494da04
Show file tree
Hide file tree
Showing 2 changed files with 138 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/plugins/telemetry/schema/oss_plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -10905,12 +10905,6 @@
"description": "Non-default value of setting."
}
},
"observability:newLogsOverview": {
"type": "boolean",
"_meta": {
"description": "Enable the new logs overview component."
}
},
"observability:searchExcludedDataTiers": {
"type": "array",
"items": {
Expand All @@ -10919,6 +10913,12 @@
"description": "Non-default value of setting."
}
}
},
"observability:newLogsOverview": {
"type": "boolean",
"_meta": {
"description": "Enable the new logs overview component."
}
}
}
},
Expand Down
132 changes: 132 additions & 0 deletions x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -13643,6 +13643,138 @@
}
}
},
"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"
}
}
}
}
}
}
}
},
"kibana_settings": {
"properties": {
"xpack": {
Expand Down

0 comments on commit 494da04

Please sign in to comment.