mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[APM][OTel] Fix: Pass telemetry.sdk* data when loading a dashboard (#214356)
Closes #214328 ## Summary This PR fixes the issue with loading an otel native dashboard ## Testing - Run ` node scripts/synthtrace otel_edot_simple_trace.ts` - ⚠️ As our test data has only a java service there is a small manual step needed (it will be listed below **^**) - Open the metrics tab for the service (currently we don't have a dashboard):  - **^** Go to the `dashboard_catalog.ts` and add mapping for otel native java case: - first: `'otel_native-edot-java',`  - second: ```js case 'otel_native-edot-java': { return import( /* webpackChunkName: "lazyJavaOtelNativeDashboard" */ './opentelemetry_java.json' ); } `` -  - Check the same page after refresh 
This commit is contained in:
parent
811d7cb4d4
commit
ebe7ef6da0
1 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,8 @@ export function Metrics() {
|
|||
return (
|
||||
<JsonMetricsDashboard
|
||||
agentName={agentName}
|
||||
telemetrySdkName={telemetrySdkName}
|
||||
telemetrySdkLanguage={telemetrySdkLanguage}
|
||||
runtimeName={runtimeName}
|
||||
serverlessType={serverlessType}
|
||||
dataView={dataView}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue