fix: Init dd trace sooner, closes #2528

This commit is contained in:
Tom Moor
2021-09-02 23:22:31 -07:00
parent 47953b3354
commit c709e54738
2 changed files with 10 additions and 12 deletions

View File

@@ -1,5 +1,7 @@
// @flow
import env from "./env"; // eslint-disable-line import/order
import "./tracing"; // must come before importing any instrumented module
import http from "http";
import debug from "debug";
import Koa from "koa";
@@ -12,12 +14,10 @@ import stoppable from "stoppable";
import throng from "throng";
import "./sentry";
import services from "./services";
import { initTracing } from "./tracing";
import { checkEnv, checkMigrations } from "./utils/startup";
import { checkUpdates } from "./utils/updates";
checkEnv();
initTracing();
checkMigrations();
// If a services flag is passed it takes priority over the enviroment variable