mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
493b408673
commit
e5576d688d
34 changed files with 180 additions and 180 deletions
|
@ -211,12 +211,12 @@ kibana_vars=(
|
|||
xpack.alerts.invalidateApiKeysTask.interval
|
||||
xpack.alerts.invalidateApiKeysTask.removalDelay
|
||||
xpack.apm.enabled
|
||||
xpack.apm.indices.errors
|
||||
xpack.apm.indices.metrics
|
||||
xpack.apm.indices.error
|
||||
xpack.apm.indices.metric
|
||||
xpack.apm.indices.onboarding
|
||||
xpack.apm.indices.sourcemaps
|
||||
xpack.apm.indices.spans
|
||||
xpack.apm.indices.transactions
|
||||
xpack.apm.indices.sourcemap
|
||||
xpack.apm.indices.span
|
||||
xpack.apm.indices.transaction
|
||||
xpack.apm.maxServiceEnvironments
|
||||
xpack.apm.searchAggregatedTransactions
|
||||
xpack.apm.serviceMapEnabled
|
||||
|
|
|
@ -19,12 +19,12 @@ describe('No data screen', () => {
|
|||
url: apmIndicesSaveURL,
|
||||
method: 'POST',
|
||||
body: {
|
||||
sourcemaps: 'foo-*',
|
||||
errors: 'foo-*',
|
||||
sourcemap: 'foo-*',
|
||||
error: 'foo-*',
|
||||
onboarding: 'foo-*',
|
||||
spans: 'foo-*',
|
||||
transactions: 'foo-*',
|
||||
metrics: 'foo-*',
|
||||
span: 'foo-*',
|
||||
transaction: 'foo-*',
|
||||
metric: 'foo-*',
|
||||
},
|
||||
headers: {
|
||||
'kbn-xsrf': true,
|
||||
|
@ -49,12 +49,12 @@ describe('No data screen', () => {
|
|||
url: apmIndicesSaveURL,
|
||||
method: 'POST',
|
||||
body: {
|
||||
sourcemaps: '',
|
||||
errors: '',
|
||||
sourcemap: '',
|
||||
error: '',
|
||||
onboarding: '',
|
||||
spans: '',
|
||||
transactions: '',
|
||||
metrics: '',
|
||||
span: '',
|
||||
transaction: '',
|
||||
metric: '',
|
||||
},
|
||||
headers: { 'kbn-xsrf': true },
|
||||
auth: { user: 'apm_power_user', pass: 'changeme' },
|
||||
|
|
|
@ -119,12 +119,12 @@ interface MockSetup {
|
|||
config: APMConfig;
|
||||
uiFilters: UxUIFilters;
|
||||
indices: {
|
||||
sourcemaps: string;
|
||||
errors: string;
|
||||
sourcemap: string;
|
||||
error: string;
|
||||
onboarding: string;
|
||||
spans: string;
|
||||
transactions: string;
|
||||
metrics: string;
|
||||
span: string;
|
||||
transaction: string;
|
||||
metric: string;
|
||||
apmAgentConfigurationIndex: string;
|
||||
apmCustomLinkIndex: string;
|
||||
};
|
||||
|
@ -176,12 +176,12 @@ export async function inspectSearchParams(
|
|||
) as APMConfig,
|
||||
uiFilters: {},
|
||||
indices: {
|
||||
sourcemaps: 'myIndex',
|
||||
errors: 'myIndex',
|
||||
sourcemap: 'myIndex',
|
||||
error: 'myIndex',
|
||||
onboarding: 'myIndex',
|
||||
spans: 'myIndex',
|
||||
transactions: 'myIndex',
|
||||
metrics: 'myIndex',
|
||||
span: 'myIndex',
|
||||
transaction: 'myIndex',
|
||||
metric: 'myIndex',
|
||||
apmAgentConfigurationIndex: 'myIndex',
|
||||
apmCustomLinkIndex: 'myIndex',
|
||||
},
|
||||
|
|
|
@ -189,22 +189,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -216,22 +216,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -214,22 +214,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -206,22 +206,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -202,22 +202,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,22 +198,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -229,22 +229,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,22 +199,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -254,22 +254,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -260,22 +260,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -261,22 +261,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -275,22 +275,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -169,22 +169,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,22 +198,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,22 +199,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,22 +199,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,22 +199,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,22 +198,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,22 +198,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,22 +198,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -189,22 +189,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -181,22 +181,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -196,22 +196,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -193,22 +193,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -214,22 +214,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -170,22 +170,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -172,22 +172,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -272,22 +272,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -276,22 +276,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -273,22 +273,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -254,22 +254,22 @@
|
|||
},
|
||||
"apm-indices": {
|
||||
"properties": {
|
||||
"errors": {
|
||||
"error": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"metrics": {
|
||||
"metric": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"sourcemaps": {
|
||||
"sourcemap": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"spans": {
|
||||
"span": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"transactions": {
|
||||
"transaction": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue