mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
[Core Telemetry] Fix schema (#164871)
This commit is contained in:
parent
b47c3e9387
commit
fa6221d465
3 changed files with 28 additions and 0 deletions
|
@ -101,6 +101,8 @@ export interface CoreUsageStats {
|
|||
'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.no'?: number;
|
||||
'apiCalls.savedObjectsImport.createNewCopiesEnabled.yes'?: number;
|
||||
'apiCalls.savedObjectsImport.createNewCopiesEnabled.no'?: number;
|
||||
'apiCalls.savedObjectsImport.compatibilityModeEnabled.yes'?: number;
|
||||
'apiCalls.savedObjectsImport.compatibilityModeEnabled.no'?: number;
|
||||
'apiCalls.savedObjectsImport.overwriteEnabled.yes'?: number;
|
||||
'apiCalls.savedObjectsImport.overwriteEnabled.no'?: number;
|
||||
'apiCalls.savedObjectsResolveImportErrors.total'?: number;
|
||||
|
|
|
@ -923,6 +923,20 @@ export function getCoreUsageCollector(
|
|||
'How many times this API has been called without the `createNewCopiesEnabled` option.',
|
||||
},
|
||||
},
|
||||
'apiCalls.savedObjectsImport.compatibilityModeEnabled.yes': {
|
||||
type: 'long',
|
||||
_meta: {
|
||||
description:
|
||||
'How many times this API has been called with the `compatibilityMode` option.',
|
||||
},
|
||||
},
|
||||
'apiCalls.savedObjectsImport.compatibilityModeEnabled.no': {
|
||||
type: 'long',
|
||||
_meta: {
|
||||
description:
|
||||
'How many times this API has been called without the `compatibilityMode` option.',
|
||||
},
|
||||
},
|
||||
'apiCalls.savedObjectsImport.overwriteEnabled.yes': {
|
||||
type: 'long',
|
||||
_meta: {
|
||||
|
|
|
@ -8241,6 +8241,18 @@
|
|||
"description": "How many times this API has been called without the `createNewCopiesEnabled` option."
|
||||
}
|
||||
},
|
||||
"apiCalls.savedObjectsImport.compatibilityModeEnabled.yes": {
|
||||
"type": "long",
|
||||
"_meta": {
|
||||
"description": "How many times this API has been called with the `compatibilityMode` option."
|
||||
}
|
||||
},
|
||||
"apiCalls.savedObjectsImport.compatibilityModeEnabled.no": {
|
||||
"type": "long",
|
||||
"_meta": {
|
||||
"description": "How many times this API has been called without the `compatibilityMode` option."
|
||||
}
|
||||
},
|
||||
"apiCalls.savedObjectsImport.overwriteEnabled.yes": {
|
||||
"type": "long",
|
||||
"_meta": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue