Browse Source

fix comments

Syunsuke Komma 2 years ago
parent
commit
265362402e
2 changed files with 2 additions and 1 deletions
  1. 1 0
      apps/app/src/server/crowi/index.js
  2. 1 1
      apps/app/src/server/crowi/opentelemetry.ts

+ 1 - 0
apps/app/src/server/crowi/index.js

@@ -460,6 +460,7 @@ Crowi.prototype.start = async function() {
   await this.init();
   await this.buildServer();
 
+  // 具体的な設定値については、https://redmine.weseek.co.jp/issues/144351 で決定予定
   const otel = new OpenTelemetry('next-app', 'growi-app-XXX', this.version);
   otel.startInstrumentation();
 

+ 1 - 1
apps/app/src/server/crowi/opentelemetry.ts

@@ -29,7 +29,7 @@ export class OpenTelemetry {
       resource: new Resource({
         [SEMRESATTRS_SERVICE_NAME]: 'next-app',
         // TODO: 環境変数から入れられるようにしたい
-        // https://redmine.weseek.co.jp/issues/144351 で決定予定
+        // https://redmine.weseek.co.jp/issues/144352 で実施予定
         [SEMRESATTRS_SERVICE_INSTANCE_ID]: this.instanceId,
         [SEMRESATTRS_SERVICE_VERSION]: this.version,
       }),