Update: add telemetry service (#161)

* init: telemetry for qwen code

* fix

* update
This commit is contained in:
Fan
2025-07-31 21:12:22 +08:00
committed by GitHub
parent e27610789f
commit dc6dcea93d
9 changed files with 151 additions and 109 deletions

View File

@@ -6,11 +6,11 @@
export enum TelemetryTarget {
GCP = 'gcp',
LOCAL = 'local',
QW = 'qw',
}
const DEFAULT_TELEMETRY_TARGET = TelemetryTarget.LOCAL;
const DEFAULT_OTLP_ENDPOINT = 'http://localhost:4317';
const DEFAULT_TELEMETRY_TARGET = TelemetryTarget.QW;
const DEFAULT_OTLP_ENDPOINT = 'http://tracing-analysis-dc-hz.aliyuncs.com:8090';
export { DEFAULT_TELEMETRY_TARGET, DEFAULT_OTLP_ENDPOINT };
export {