-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[APM] Migrate /observability_overview
to deployment agnostic test
#199817
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { DeploymentAgnosticFtrProviderContext } from '../../../../ftr_provider_context'; | ||
|
||
export default function ({ loadTestFile }: DeploymentAgnosticFtrProviderContext) { | ||
describe('observability_overview', () => { | ||
loadTestFile(require.resolve('./has_data.spec.ts')); | ||
loadTestFile(require.resolve('./observability_overview.spec.ts')); | ||
}); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6213,10 +6213,6 @@ | |
"read_only_allow_delete": "false" | ||
}, | ||
"codec": "best_compression", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do we know that removing the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. as @crespocarlos said, it should pick up the default value and not give any problems, at least, I did that before and nothing happened |
||
"lifecycle": { | ||
"name": "apm-rollover-30-days", | ||
"rollover_alias": "apm-7.14.0-error" | ||
}, | ||
"mapping": { | ||
"total_fields": { | ||
"limit": "2000" | ||
|
@@ -6225,8 +6221,7 @@ | |
"max_docvalue_fields_search": "200", | ||
"number_of_replicas": "1", | ||
"number_of_shards": "1", | ||
"priority": "100", | ||
"refresh_interval": "5s" | ||
"priority": "100" | ||
} | ||
} | ||
} | ||
|
@@ -11748,10 +11743,6 @@ | |
"read_only_allow_delete": "false" | ||
}, | ||
"codec": "best_compression", | ||
"lifecycle": { | ||
"name": "apm-rollover-30-days", | ||
"rollover_alias": "apm-7.14.0-metric" | ||
}, | ||
"mapping": { | ||
"total_fields": { | ||
"limit": "2000" | ||
|
@@ -11760,8 +11751,7 @@ | |
"max_docvalue_fields_search": "200", | ||
"number_of_replicas": "1", | ||
"number_of_shards": "1", | ||
"priority": "100", | ||
"refresh_interval": "5s" | ||
"priority": "100" | ||
} | ||
} | ||
} | ||
|
@@ -16847,10 +16837,6 @@ | |
"read_only_allow_delete": "false" | ||
}, | ||
"codec": "best_compression", | ||
"lifecycle": { | ||
"name": "apm-rollover-30-days", | ||
"rollover_alias": "apm-7.14.0-span" | ||
}, | ||
"mapping": { | ||
"total_fields": { | ||
"limit": "2000" | ||
|
@@ -16859,8 +16845,7 @@ | |
"max_docvalue_fields_search": "200", | ||
"number_of_replicas": "1", | ||
"number_of_shards": "1", | ||
"priority": "100", | ||
"refresh_interval": "5s" | ||
"priority": "100" | ||
} | ||
} | ||
} | ||
|
@@ -22037,10 +22022,6 @@ | |
"read_only_allow_delete": "false" | ||
}, | ||
"codec": "best_compression", | ||
"lifecycle": { | ||
"name": "apm-rollover-30-days", | ||
"rollover_alias": "apm-7.14.0-transaction" | ||
}, | ||
"mapping": { | ||
"total_fields": { | ||
"limit": "2000" | ||
|
@@ -22049,9 +22030,8 @@ | |
"max_docvalue_fields_search": "200", | ||
"number_of_replicas": "1", | ||
"number_of_shards": "1", | ||
"priority": "100", | ||
"refresh_interval": "5s" | ||
"priority": "100" | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4222,8 +4222,7 @@ | |
"transaction.message.queue.name", | ||
"fields.*" | ||
] | ||
}, | ||
"refresh_interval": "1ms" | ||
} | ||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
8.0.0
asapm_8.0.0
contains.ml-config
indices which make MKI unable to pass. The logic stills the same as this endpoint only checks if there is any apm data, and there is.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for mentioning this! I’ll double-check a few migration issues I previously discarded for similar reasons to see if that change might allow them to work without the ML index on the mappings.