Skip to content

Commit ffba2a7

Browse files
[8.19] [Discover][APM] Enable Traces in Discover by default (#224869) (#225034)
# Backport This will backport the following commits from `main` to `8.19`: - [[Discover][APM] Enable Traces in Discover by default (#224869)](#224869) <!--- Backport version: 9.6.6 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sorenlouv/backport) <!--BACKPORT [{"author":{"name":"Milosz Marcinkowski","email":"[email protected]"},"sourceCommit":{"committedDate":"2025-06-24T09:27:02Z","message":"[Discover][APM] Enable Traces in Discover by default (#224869)\n\nCloses #224081\n\nThis PR enables Traces in Discover by default. There's no longer a need\nto enable trace related profiles in the yml configuration, it will work\nout of the box.","sha":"36965f7b000be57bb8eb4fab491953fa9495fb49","branchLabelMapping":{"^v9.1.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:version","v9.1.0","v8.19.0"],"title":"[Discover][APM] Enable Traces in Discover by default","number":224869,"url":"https://github.com/elastic/kibana/pull/224869","mergeCommit":{"message":"[Discover][APM] Enable Traces in Discover by default (#224869)\n\nCloses #224081\n\nThis PR enables Traces in Discover by default. There's no longer a need\nto enable trace related profiles in the yml configuration, it will work\nout of the box.","sha":"36965f7b000be57bb8eb4fab491953fa9495fb49"}},"sourceBranch":"main","suggestedTargetBranches":["8.19"],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/224869","number":224869,"mergeCommit":{"message":"[Discover][APM] Enable Traces in Discover by default (#224869)\n\nCloses #224081\n\nThis PR enables Traces in Discover by default. There's no longer a need\nto enable trace related profiles in the yml configuration, it will work\nout of the box.","sha":"36965f7b000be57bb8eb4fab491953fa9495fb49"}},{"branch":"8.19","label":"v8.19.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Milosz Marcinkowski <[email protected]>
1 parent 2f93700 commit ffba2a7

File tree

3 files changed

+0
-3
lines changed
  • src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability

3 files changed

+0
-3
lines changed

src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/traces_data_source_profile/profile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export const createTracesDataSourceProfileProvider = ({
2323
tracesContextService,
2424
}: ProfileProviderServices): DataSourceProfileProvider => ({
2525
profileId: OBSERVABILITY_TRACES_DATA_SOURCE_PROFILE_ID,
26-
isExperimental: true,
2726
restrictedToProductFeature: TRACES_PRODUCT_FEATURE_ID,
2827
profile: {
2928
getDefaultAppState: (prev) => (params) => ({

src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/traces_document_profile/span_document_profile/profile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export const createObservabilityTracesSpanDocumentProfileProvider = ({
2222
apmErrorsContextService,
2323
logsContextService,
2424
}: ProfileProviderServices): DocumentProfileProvider => ({
25-
isExperimental: true,
2625
profileId: OBSERVABILITY_TRACES_SPAN_DOCUMENT_PROFILE_ID,
2726
restrictedToProductFeature: TRACES_PRODUCT_FEATURE_ID,
2827
profile: {

src/platform/plugins/shared/discover/public/context_awareness/profile_providers/observability/traces_document_profile/transaction_document_profile/profile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export const createObservabilityTracesTransactionDocumentProfileProvider = ({
2323
apmErrorsContextService,
2424
logsContextService,
2525
}: ProfileProviderServices): DocumentProfileProvider => ({
26-
isExperimental: true,
2726
profileId: OBSERVABILITY_TRACES_TRANSACTION_DOCUMENT_PROFILE_ID,
2827
restrictedToProductFeature: TRACES_PRODUCT_FEATURE_ID,
2928
profile: {

0 commit comments

Comments
 (0)