0

Nick: only enable hyper dx in prod

This commit is contained in:
Nicolas 2024-05-21 18:52:46 -07:00
parent a8ff295977
commit 229b9908d2
2 changed files with 6 additions and 2 deletions

View File

@ -50,7 +50,9 @@ const HOST = process.env.HOST ?? "localhost";
redisClient.connect();
// HyperDX OpenTelemetry
if(process.env.ENV === 'production') {
initSDK({ consoleCapture: true, additionalInstrumentations: []});
}
export function startServer(port = DEFAULT_PORT) {

View File

@ -7,7 +7,9 @@ import { callWebhook } from "./webhook";
import { logJob } from "./logging/log_job";
import { initSDK } from '@hyperdx/node-opentelemetry';
if(process.env.ENV === 'production') {
initSDK({ consoleCapture: true, additionalInstrumentations: []});
}
getWebScraperQueue().process(
Math.floor(Number(process.env.NUM_WORKERS_PER_QUEUE ?? 8)),