Consume proposed telemetry API (#165862)

* Consume proposed telemetry API

* Update webpack
This commit is contained in:
Logan Ramos
2022-11-08 21:58:28 -05:00
committed by GitHub
parent fd5edb9906
commit bf1697d98c
28 changed files with 3988 additions and 337 deletions

View File

@@ -53,7 +53,9 @@ function withNodeDefaults(/**@type WebpackConfig*/extConfig) {
externals: {
'vscode': 'commonjs vscode', // ignored because it doesn't exist,
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module
'@opentelemetry/tracing': 'commonjs @opentelemetry/tracing' // ignored because we don't ship this module
'@opentelemetry/tracing': 'commonjs @opentelemetry/tracing', // ignored because we don't ship this module
'@opentelemetry/instrumentation': 'commonjs @opentelemetry/instrumentation', // ignored because we don't ship this module
'@azure/opentelemetry-instrumentation-azure-sdk': 'commonjs @azure/opentelemetry-instrumentation-azure-sdk', // ignored because we don't ship this module
},
output: {
// all output goes into `dist`.
@@ -129,7 +131,9 @@ function withBrowserDefaults(/**@type WebpackConfig*/extConfig, /** @type Additi
externals: {
'vscode': 'commonjs vscode', // ignored because it doesn't exist,
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module
'@opentelemetry/tracing': 'commonjs @opentelemetry/tracing' // ignored because we don't ship this module
'@opentelemetry/tracing': 'commonjs @opentelemetry/tracing', // ignored because we don't ship this module
'@opentelemetry/instrumentation': 'commonjs @opentelemetry/instrumentation', // ignored because we don't ship this module
'@azure/opentelemetry-instrumentation-azure-sdk': 'commonjs @azure/opentelemetry-instrumentation-azure-sdk', // ignored because we don't ship this module
},
performance: {
hints: false