mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Add default metrics dashboard for Node.js OTel (#215735)
This commit is contained in:
parent
2b987bea61
commit
fba2d2b809
3 changed files with 9 additions and 1 deletions
|
@ -16,6 +16,7 @@ export const existingDashboardFileNames = new Set([
|
|||
'classic_apm-edot-java',
|
||||
'classic_apm-edot-dotnet',
|
||||
'otel_native-edot-python',
|
||||
'otel_native-edot-nodejs',
|
||||
]);
|
||||
|
||||
// The new dashboard files should be mapped here
|
||||
|
@ -78,6 +79,12 @@ export async function loadDashboardFile(filename: string) {
|
|||
'./otel_native-edot-python.json'
|
||||
);
|
||||
}
|
||||
case 'otel_native-edot-nodejs': {
|
||||
return import(
|
||||
/* webpackChunkName: "lazyNodeJsOtelNativeEdotDashboard" */
|
||||
'./otel_native-edot-nodejs.json'
|
||||
);
|
||||
}
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue