mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
resolved conflicts (#95685)
This commit is contained in:
parent
8328f67c57
commit
a19b4fe85d
3 changed files with 30 additions and 0 deletions
|
@ -23,6 +23,7 @@ const byTypeSchema: MakeSchemaFrom<ActionsUsage>['count_by_type'] = {
|
|||
__servicenow: { type: 'long' },
|
||||
__jira: { type: 'long' },
|
||||
__resilient: { type: 'long' },
|
||||
__teams: { type: 'long' },
|
||||
};
|
||||
|
||||
export function createActionsUsageCollector(
|
||||
|
|
|
@ -16,6 +16,7 @@ const byTypeSchema: MakeSchemaFrom<AlertsUsage>['count_by_type'] = {
|
|||
// Known alerts (searching the use of the alerts API `registerType`:
|
||||
// Built-in
|
||||
'__index-threshold': { type: 'long' },
|
||||
'__es-query': { type: 'long' },
|
||||
// APM
|
||||
apm__error_rate: { type: 'long' }, // eslint-disable-line @typescript-eslint/naming-convention
|
||||
apm__transaction_error_rate: { type: 'long' }, // eslint-disable-line @typescript-eslint/naming-convention
|
||||
|
@ -41,6 +42,10 @@ const byTypeSchema: MakeSchemaFrom<AlertsUsage>['count_by_type'] = {
|
|||
xpack__uptime__alerts__monitorStatus: { type: 'long' }, // eslint-disable-line @typescript-eslint/naming-convention
|
||||
xpack__uptime__alerts__tls: { type: 'long' }, // eslint-disable-line @typescript-eslint/naming-convention
|
||||
xpack__uptime__alerts__durationAnomaly: { type: 'long' }, // eslint-disable-line @typescript-eslint/naming-convention
|
||||
// Maps
|
||||
'__geo-containment': { type: 'long' },
|
||||
// ML
|
||||
xpack_ml_anomaly_detection_alert: { type: 'long' },
|
||||
};
|
||||
|
||||
export function createAlertsUsageCollector(
|
||||
|
|
|
@ -39,6 +39,9 @@
|
|||
},
|
||||
"__resilient": {
|
||||
"type": "long"
|
||||
},
|
||||
"__teams": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -73,6 +76,9 @@
|
|||
},
|
||||
"__resilient": {
|
||||
"type": "long"
|
||||
},
|
||||
"__teams": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -136,6 +142,9 @@
|
|||
"__index-threshold": {
|
||||
"type": "long"
|
||||
},
|
||||
"__es-query": {
|
||||
"type": "long"
|
||||
},
|
||||
"apm__error_rate": {
|
||||
"type": "long"
|
||||
},
|
||||
|
@ -195,6 +204,12 @@
|
|||
},
|
||||
"xpack__uptime__alerts__durationAnomaly": {
|
||||
"type": "long"
|
||||
},
|
||||
"__geo-containment": {
|
||||
"type": "long"
|
||||
},
|
||||
"xpack_ml_anomaly_detection_alert": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -206,6 +221,9 @@
|
|||
"__index-threshold": {
|
||||
"type": "long"
|
||||
},
|
||||
"__es-query": {
|
||||
"type": "long"
|
||||
},
|
||||
"apm__error_rate": {
|
||||
"type": "long"
|
||||
},
|
||||
|
@ -265,6 +283,12 @@
|
|||
},
|
||||
"xpack__uptime__alerts__durationAnomaly": {
|
||||
"type": "long"
|
||||
},
|
||||
"__geo-containment": {
|
||||
"type": "long"
|
||||
},
|
||||
"xpack_ml_anomaly_detection_alert": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue