mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 03:13:50 +00:00
73 lines
2.7 KiB
TypeScript
73 lines
2.7 KiB
TypeScript
/* eslint-disable no-console */
|
|
import { diag, DiagConsoleLogger, DiagLogLevel } from '@opentelemetry/api';
|
|
import { getNodeAutoInstrumentations } from '@opentelemetry/auto-instrumentations-node';
|
|
import { OTLPMetricExporter } from '@opentelemetry/exporter-metrics-otlp-proto';
|
|
import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http';
|
|
import { Resource } from '@opentelemetry/resources';
|
|
import {
|
|
PeriodicExportingMetricReader,
|
|
ConsoleMetricExporter,
|
|
} from '@opentelemetry/sdk-metrics';
|
|
import { NodeSDK } from '@opentelemetry/sdk-node';
|
|
import { SimpleSpanProcessor } from '@opentelemetry/sdk-trace-node';
|
|
import { SEMRESATTRS_SERVICE_NAME, SEMRESATTRS_SERVICE_VERSION, SEMRESATTRS_SERVICE_INSTANCE_ID } from '@opentelemetry/semantic-conventions';
|
|
|
|
diag.setLogger(new DiagConsoleLogger(), DiagLogLevel.INFO);
|
|
|
|
const traceExporter = new OTLPTraceExporter();
|
|
|
|
const sdk = new NodeSDK({
|
|
resource: new Resource({
|
|
[SEMRESATTRS_SERVICE_NAME]: process.env.NEXT_PUBLIC_NETWORK_SHORT_NAME ?
|
|
`${ process.env.NEXT_PUBLIC_NETWORK_SHORT_NAME.toLowerCase() }_explorer_frontend` : 'explorer_frontend',
|
|
[SEMRESATTRS_SERVICE_VERSION]: process.env.NEXT_PUBLIC_GIT_TAG || process.env.NEXT_PUBLIC_GIT_COMMIT_SHA || 'unknown_version',
|
|
[SEMRESATTRS_SERVICE_INSTANCE_ID]:
|
|
process.env.NEXT_PUBLIC_APP_INSTANCE ||
|
|
process.env.NEXT_PUBLIC_APP_HOST?.replace(/\.[^.]+\.[^.]+$/, '').replaceAll('-', '_') ||
|
|
'unknown_app',
|
|
}),
|
|
spanProcessor: new SimpleSpanProcessor(traceExporter),
|
|
traceExporter,
|
|
metricReader: new PeriodicExportingMetricReader({
|
|
exporter:
|
|
process.env.NODE_ENV === 'production' ?
|
|
new OTLPMetricExporter() :
|
|
new ConsoleMetricExporter(),
|
|
}),
|
|
instrumentations: [
|
|
getNodeAutoInstrumentations({
|
|
'@opentelemetry/instrumentation-http': {
|
|
ignoreIncomingRequestHook: (request) => {
|
|
try {
|
|
if (!request.url) {
|
|
return false;
|
|
}
|
|
const url = new URL(request.url, `http://${ request.headers.host }`);
|
|
if (
|
|
url.pathname.startsWith('/_next/static/') ||
|
|
url.pathname.startsWith('/_next/data/') ||
|
|
url.pathname.startsWith('/assets/') ||
|
|
url.pathname.startsWith('/static/')
|
|
) {
|
|
return true;
|
|
}
|
|
} catch (error) {}
|
|
return false;
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
});
|
|
|
|
if (process.env.OTEL_SDK_ENABLED) {
|
|
sdk.start();
|
|
|
|
process.on('SIGTERM', () => {
|
|
sdk
|
|
.shutdown()
|
|
.then(() => console.log('Tracing terminated'))
|
|
.catch((error) => console.log('Error terminating tracing', error))
|
|
.finally(() => process.exit(0));
|
|
});
|
|
}
|