chore: remove metrics in fe (#38240)

This commit is contained in:
Diljit 2024-12-19 09:37:06 +05:30 committed by GitHub
parent fa96b4ac40
commit 620a3ad2b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,15 +9,6 @@ import {
} from "@opentelemetry/semantic-conventions/incubating"; } from "@opentelemetry/semantic-conventions/incubating";
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions"; import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
import { getAppsmithConfigs } from "ee/configs"; import { getAppsmithConfigs } from "ee/configs";
import {
MeterProvider,
PeriodicExportingMetricReader,
} from "@opentelemetry/sdk-metrics";
import {
AggregationTemporalityPreference,
OTLPMetricExporter,
} from "@opentelemetry/exporter-metrics-otlp-http";
import { metrics } from "@opentelemetry/api";
import { registerInstrumentations } from "@opentelemetry/instrumentation"; import { registerInstrumentations } from "@opentelemetry/instrumentation";
import { PageLoadInstrumentation } from "./PageLoadInstrumentation"; import { PageLoadInstrumentation } from "./PageLoadInstrumentation";
import { getWebAutoInstrumentations } from "@opentelemetry/auto-instrumentations-web"; import { getWebAutoInstrumentations } from "@opentelemetry/auto-instrumentations-web";
@ -44,7 +35,7 @@ const tracerProvider = new WebTracerProvider({
}); });
const nrTracesExporter = new OTLPTraceExporter({ const nrTracesExporter = new OTLPTraceExporter({
url: addPathToCurrentUrl("/monitoring/traces"), url: getAbsoluteUrl("/monitoring/traces"),
compression: CompressionAlgorithm.GZIP, compression: CompressionAlgorithm.GZIP,
headers: { headers: {
"api-key": otlpLicenseKey, "api-key": otlpLicenseKey,
@ -71,41 +62,13 @@ tracerProvider.register({
contextManager: new ZoneContextManager(), contextManager: new ZoneContextManager(),
}); });
const nrMetricsExporter = new OTLPMetricExporter({
compression: CompressionAlgorithm.GZIP,
temporalityPreference: AggregationTemporalityPreference.DELTA,
url: addPathToCurrentUrl("/monitoring/metrics"),
headers: {
"api-key": otlpLicenseKey,
},
});
const meterProvider = new MeterProvider({
resource: new Resource({
[ATTR_DEPLOYMENT_NAME]: deploymentName,
[ATTR_SERVICE_INSTANCE_ID]: serviceInstanceId,
[ATTR_SERVICE_NAME]: serviceName,
}),
readers: [
new PeriodicExportingMetricReader({
exporter: nrMetricsExporter,
exportIntervalMillis: 30000, // Adjust the export interval as needed
}),
],
});
// Register the MeterProvider globally
metrics.setGlobalMeterProvider(meterProvider);
registerInstrumentations({ registerInstrumentations({
tracerProvider, tracerProvider,
meterProvider,
instrumentations: [ instrumentations: [
new PageLoadInstrumentation({ new PageLoadInstrumentation({
ignoreResourceUrls: [ ignoreResourceUrls: [
browserAgentEndpoint, browserAgentEndpoint,
addPathToCurrentUrl("/monitoring/traces"), getAbsoluteUrl("/monitoring/traces"),
addPathToCurrentUrl("/monitoring/metrics"),
smartlookBaseDomain, smartlookBaseDomain,
], ],
}), }),
@ -117,13 +80,11 @@ registerInstrumentations({
], ],
}); });
// Replaces the pathname of the current URL with the provided path. /**
function addPathToCurrentUrl(path: string) { * This function adds the given path to the current origin and returns the absolute URL.
const origin = window.location.origin; * @param path The path to be added to the current origin.
* @returns The absolute URL.
const currentUrl = new URL(origin); */
function getAbsoluteUrl(path: string) {
currentUrl.pathname = path.startsWith("/") ? path : `/${path}`; return new URL(path, window.location.origin).toString();
return currentUrl.toString();
} }