Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ export const applicationUsageSchema = {
security_logout: commonSchema,
security_overwritten_session: commonSchema,
securitySolutionUI: commonSchema,
/**
* @deprecated legacy key for users that still have bookmarks to the old siem name. "securitySolutionUI" key is the replacement
*/
siem: commonSchema,
space_selector: commonSchema,
uptime: commonSchema,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,17 @@ const uiMetricFromDataPluginSchema: MakeSchemaFrom<UIMetricUsage> = {
security_login: commonSchema,
security_logout: commonSchema,
security_overwritten_session: commonSchema,
securitySolution: commonSchema,
'securitySolution:overview': commonSchema,
'securitySolution:detections': commonSchema,
'securitySolution:hosts': commonSchema,
'securitySolution:network': commonSchema,
'securitySolution:timelines': commonSchema,
'securitySolution:case': commonSchema,
'securitySolution:administration': commonSchema,
securitySolutionUI: commonSchema,
'securitySolutionUI:overview': commonSchema,
'securitySolutionUI:detections': commonSchema,
'securitySolutionUI:hosts': commonSchema,
'securitySolutionUI:network': commonSchema,
'securitySolutionUI:timelines': commonSchema,
'securitySolutionUI:case': commonSchema,
'securitySolutionUI:administration': commonSchema,
/**
* @deprecated legacy key for users that still have bookmarks to the old siem name. "securitySolutionUI" key is the replacement
*/
siem: commonSchema,
space_selector: commonSchema,
uptime: commonSchema,
Expand Down
33 changes: 26 additions & 7 deletions src/plugins/telemetry/schema/oss_plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -8869,7 +8869,26 @@
}
}
},
"securitySolution:overview": {
"securitySolutionUI": {
"type": "array",
"items": {
"properties": {
"key": {
"type": "keyword",
"_meta": {
"description": "The event that is tracked"
}
},
"value": {
"type": "long",
"_meta": {
"description": "The value of the event"
}
}
}
}
},
"securitySolutionUI:overview": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8888,7 +8907,7 @@
}
}
},
"securitySolution:detections": {
"securitySolutionUI:detections": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8907,7 +8926,7 @@
}
}
},
"securitySolution:hosts": {
"securitySolutionUI:hosts": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8926,7 +8945,7 @@
}
}
},
"securitySolution:network": {
"securitySolutionUI:network": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8945,7 +8964,7 @@
}
}
},
"securitySolution:timelines": {
"securitySolutionUI:timelines": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8964,7 +8983,7 @@
}
}
},
"securitySolution:case": {
"securitySolutionUI:case": {
"type": "array",
"items": {
"properties": {
Expand All @@ -8983,7 +9002,7 @@
}
}
},
"securitySolution:administration": {
"securitySolutionUI:administration": {
"type": "array",
"items": {
"properties": {
Expand Down