Frontend: Support tracing with Faro (#91237)

Move code from previous PR
This commit is contained in:
Tobias Skarhed
2024-07-31 15:13:05 +02:00
committed by GitHub
parent 057c04ed9d
commit e8c30c86f0
9 changed files with 214 additions and 7 deletions

View File

@@ -62,6 +62,7 @@ export interface GrafanaJavascriptAgentConfig {
errorInstrumentalizationEnabled: boolean;
consoleInstrumentalizationEnabled: boolean;
webVitalsInstrumentalizationEnabled: boolean;
tracingInstrumentalizationEnabled: boolean;
apiKey: string;
}

View File

@@ -117,6 +117,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
errorInstrumentalizationEnabled: true,
consoleInstrumentalizationEnabled: false,
webVitalsInstrumentalizationEnabled: false,
tracingInstrumentalizationEnabled: false,
};
pluginCatalogURL = 'https://grafana.com/grafana/plugins/';
pluginAdminEnabled = true;