@vymalo/opencode-otel 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/providers.js CHANGED
@@ -6,174 +6,233 @@ import { BatchLogRecordProcessor, ConsoleLogRecordExporter, LoggerProvider } fro
6
6
  import { AggregationTemporality, ConsoleMetricExporter, MeterProvider, PeriodicExportingMetricReader } from "@opentelemetry/sdk-metrics";
7
7
  import { BatchSpanProcessor, ConsoleSpanExporter, TracerProvider } from "@opentelemetry/sdk-trace";
8
8
  import { signalUrl } from "./config.js";
9
+ import { withFailureLogging } from "./export-logging.js";
10
+ import { createTokenSource } from "./token-source.js";
9
11
  const INSTRUMENTATION_SCOPE = "@vymalo/opencode-otel";
10
- function otlpArgs(config, signal) {
11
- const url = signalUrl(config, signal);
12
- return url ? { url, headers: config.headers } : undefined;
12
+ /**
13
+ * Build the exporter's `url` + `headers`. With a credential helper configured,
14
+ * `headers` is an async factory the exporter calls before every export — which
15
+ * is what lets a five-minute OIDC token be refreshed underneath a long-running
16
+ * session instead of going stale at the first expiry.
17
+ */
18
+ function otlpArgs(config, signal, tokenSource) {
19
+ const url = signalUrl(config, signal);
20
+ if (!url) {
21
+ return undefined;
22
+ }
23
+ if (!tokenSource) {
24
+ return {
25
+ url,
26
+ headers: config.headers
27
+ };
28
+ }
29
+ return {
30
+ url,
31
+ headers: async () => ({
32
+ ...config.headers,
33
+ ...await tokenSource.headers()
34
+ })
35
+ };
13
36
  }
14
37
  const defaultFactories = {
15
- trace: (config) => {
16
- if (config.exporters.traces === "console") {
17
- return new ConsoleSpanExporter();
18
- }
19
- const args = otlpArgs(config, "traces");
20
- return args ? new OTLPTraceExporter(args) : undefined;
21
- },
22
- metric: (config) => {
23
- if (config.exporters.metrics === "console") {
24
- return new ConsoleMetricExporter();
25
- }
26
- const args = otlpArgs(config, "metrics");
27
- return args
28
- ? new OTLPMetricExporter({
29
- ...args,
30
- temporalityPreference: config.metricTemporality === "cumulative"
31
- ? AggregationTemporality.CUMULATIVE
32
- : AggregationTemporality.DELTA
33
- })
34
- : undefined;
35
- },
36
- log: (config) => {
37
- if (config.exporters.logs === "console") {
38
- return new ConsoleLogRecordExporter();
39
- }
40
- const args = otlpArgs(config, "logs");
41
- return args ? new OTLPLogExporter(args) : undefined;
42
- }
38
+ trace: (config, tokenSource) => {
39
+ if (config.exporters.traces === "console") {
40
+ return new ConsoleSpanExporter();
41
+ }
42
+ const args = otlpArgs(config, "traces", tokenSource);
43
+ return args ? new OTLPTraceExporter(args) : undefined;
44
+ },
45
+ metric: (config, tokenSource) => {
46
+ if (config.exporters.metrics === "console") {
47
+ return new ConsoleMetricExporter();
48
+ }
49
+ const args = otlpArgs(config, "metrics", tokenSource);
50
+ return args ? new OTLPMetricExporter({
51
+ ...args,
52
+ temporalityPreference: config.metricTemporality === "cumulative" ? AggregationTemporality.CUMULATIVE : AggregationTemporality.DELTA
53
+ }) : undefined;
54
+ },
55
+ log: (config, tokenSource) => {
56
+ if (config.exporters.logs === "console") {
57
+ return new ConsoleLogRecordExporter();
58
+ }
59
+ const args = otlpArgs(config, "logs", tokenSource);
60
+ return args ? new OTLPLogExporter(args) : undefined;
61
+ }
43
62
  };
44
63
  /**
45
- * Build the resource every signal is stamped with.
46
- *
47
- * Deliberately identifies the **machine and the project**, never the developer:
48
- * no git author email, no account id. An operator who wants per-person
49
- * attribution adds it explicitly via `resourceAttributes` /
50
- * `OTEL_RESOURCE_ATTRIBUTES`, which keeps that choice visible in config.
51
- */
64
+ * Build the resource every signal is stamped with.
65
+ *
66
+ * Deliberately identifies the **machine and the project**, never the developer:
67
+ * no git author email, no account id. An operator who wants per-person
68
+ * attribution adds it explicitly via `resourceAttributes` /
69
+ * `OTEL_RESOURCE_ATTRIBUTES`, which keeps that choice visible in config.
70
+ */
52
71
  export function buildResource(config, context) {
53
- const attributes = {
54
- "service.name": config.serviceName,
55
- "telemetry.sdk.language": "nodejs"
56
- };
57
- if (context.version) {
58
- attributes["service.version"] = context.version;
59
- }
60
- if (config.environment) {
61
- attributes["deployment.environment.name"] = config.environment;
62
- }
63
- if (context.hostname) {
64
- attributes["host.name"] = context.hostname;
65
- }
66
- if (context.projectName) {
67
- attributes["opencode.project.name"] = context.projectName;
68
- }
69
- if (context.directory) {
70
- attributes["opencode.directory"] = context.directory;
71
- }
72
- if (context.worktree) {
73
- attributes["opencode.worktree"] = context.worktree;
74
- }
75
- if (context.branch) {
76
- attributes["vcs.repository.ref.name"] = context.branch;
77
- }
78
- // Operator-supplied attributes win they are the escape hatch, and silently
79
- // ignoring them would make the escape hatch useless.
80
- return resourceFromAttributes({ ...attributes, ...config.resourceAttributes });
72
+ const attributes = {
73
+ "service.name": config.serviceName,
74
+ "telemetry.sdk.language": "nodejs"
75
+ };
76
+ if (context.version) {
77
+ attributes["service.version"] = context.version;
78
+ }
79
+ if (config.environment) {
80
+ attributes["deployment.environment.name"] = config.environment;
81
+ }
82
+ if (context.hostname) {
83
+ attributes["host.name"] = context.hostname;
84
+ }
85
+ if (context.projectName) {
86
+ attributes["opencode.project.name"] = context.projectName;
87
+ }
88
+ if (context.directory) {
89
+ attributes["opencode.directory"] = context.directory;
90
+ }
91
+ if (context.worktree) {
92
+ attributes["opencode.worktree"] = context.worktree;
93
+ }
94
+ if (context.branch) {
95
+ attributes["vcs.ref.head.name"] = context.branch;
96
+ // Deprecated in semconv 1.43 in favour of `vcs.ref.head.name`, but it is
97
+ // what `opencode-otel-plugin` emits and what existing dashboards key on.
98
+ // Kept as an alias so a collector receiving both plugins stays coherent;
99
+ // due for removal once those dashboards move.
100
+ attributes["vcs.repository.ref.name"] = context.branch;
101
+ }
102
+ const vcs = context.vcs;
103
+ if (vcs) {
104
+ if (vcs.url) {
105
+ attributes["vcs.repository.url.full"] = vcs.url;
106
+ }
107
+ if (vcs.name) {
108
+ attributes["vcs.repository.name"] = vcs.name;
109
+ }
110
+ if (vcs.owner) {
111
+ attributes["vcs.owner.name"] = vcs.owner;
112
+ }
113
+ if (vcs.provider) {
114
+ attributes["vcs.provider.name"] = vcs.provider;
115
+ }
116
+ if (vcs.revision) {
117
+ attributes["vcs.ref.head.revision"] = vcs.revision;
118
+ }
119
+ if (vcs.refType) {
120
+ attributes["vcs.ref.head.type"] = vcs.refType;
121
+ }
122
+ }
123
+ // Operator-supplied attributes win — they are the escape hatch, and silently
124
+ // ignoring them would make the escape hatch useless.
125
+ return resourceFromAttributes({
126
+ ...attributes,
127
+ ...config.resourceAttributes
128
+ });
81
129
  }
82
130
  /**
83
- * Construct the enabled providers. Each signal is independent: a failure to
84
- * build one leaves the others running, because partial telemetry is strictly
85
- * better than an exception escaping into the host's plugin loader.
86
- */
131
+ * Construct the enabled providers. Each signal is independent: a failure to
132
+ * build one leaves the others running, because partial telemetry is strictly
133
+ * better than an exception escaping into the host's plugin loader.
134
+ */
87
135
  export function createProviders(config, resource, logger, factories = {}) {
88
- const make = { ...defaultFactories, ...factories };
89
- const flushers = [];
90
- const shutdowns = [];
91
- let tracer;
92
- let meter;
93
- let otelLogger;
94
- if (config.exporters.traces !== "none") {
95
- try {
96
- const exporter = make.trace(config);
97
- if (exporter) {
98
- const provider = new TracerProvider({
99
- resource,
100
- spanProcessors: [
101
- new BatchSpanProcessor({
102
- exporter,
103
- scheduledDelayMillis: config.traceExportIntervalMs
104
- })
105
- ]
106
- });
107
- tracer = provider.getTracer(INSTRUMENTATION_SCOPE);
108
- flushers.push(() => provider.forceFlush());
109
- shutdowns.push(() => provider.shutdown());
110
- }
111
- }
112
- catch (error) {
113
- logger.warn("otel_traces_init_failed", { error: describeError(error) });
114
- }
115
- }
116
- if (config.exporters.metrics !== "none") {
117
- try {
118
- const exporter = make.metric(config);
119
- if (exporter) {
120
- const provider = new MeterProvider({
121
- resource,
122
- readers: [
123
- new PeriodicExportingMetricReader({
124
- exporter,
125
- exportIntervalMillis: config.metricExportIntervalMs
126
- })
127
- ]
128
- });
129
- meter = provider.getMeter(INSTRUMENTATION_SCOPE);
130
- flushers.push(() => provider.forceFlush());
131
- shutdowns.push(() => provider.shutdown());
132
- }
133
- }
134
- catch (error) {
135
- logger.warn("otel_metrics_init_failed", { error: describeError(error) });
136
- }
137
- }
138
- if (config.exporters.logs !== "none") {
139
- try {
140
- const exporter = make.log(config);
141
- if (exporter) {
142
- const provider = new LoggerProvider({
143
- resource,
144
- processors: [
145
- new BatchLogRecordProcessor({
146
- exporter,
147
- scheduledDelayMillis: config.logExportIntervalMs
148
- })
149
- ]
150
- });
151
- otelLogger = provider.getLogger(INSTRUMENTATION_SCOPE);
152
- flushers.push(() => provider.forceFlush());
153
- shutdowns.push(() => provider.shutdown());
154
- }
155
- }
156
- catch (error) {
157
- logger.warn("otel_logs_init_failed", { error: describeError(error) });
158
- }
159
- }
160
- const runAll = async (tasks) => {
161
- // `allSettled`, not `all`: one unreachable collector must not stop the
162
- // other signals from draining.
163
- await Promise.allSettled(tasks.map((task) => task()));
164
- };
165
- return {
166
- tracer,
167
- meter,
168
- otelLogger,
169
- forceFlush: () => runAll(flushers),
170
- shutdown: () => runAll(shutdowns)
171
- };
136
+ const make = {
137
+ ...defaultFactories,
138
+ ...factories
139
+ };
140
+ const flushers = [];
141
+ const shutdowns = [];
142
+ const tokenSource = config.tokenCommand.length > 0 ? createTokenSource({
143
+ command: config.tokenCommand,
144
+ header: config.tokenHeader,
145
+ prefix: config.tokenPrefix,
146
+ refreshMs: config.tokenRefreshMs,
147
+ timeoutMs: config.tokenTimeoutMs,
148
+ logger
149
+ }) : undefined;
150
+ // A rejected export is the symptom of a dead credential, so drop the cached
151
+ // token and let the next export re-run the helper rather than retrying with
152
+ // something the collector has already refused.
153
+ const onFailure = tokenSource ? () => tokenSource.invalidate() : undefined;
154
+ const observe = (exporter, signal) => withFailureLogging(exporter, signal, logger, { onFailure });
155
+ let tracer;
156
+ let meter;
157
+ let otelLogger;
158
+ if (config.exporters.traces !== "none") {
159
+ try {
160
+ const built = make.trace(config, tokenSource);
161
+ if (built) {
162
+ const exporter = observe(built, "traces");
163
+ const provider = new TracerProvider({
164
+ resource,
165
+ spanProcessors: [new BatchSpanProcessor({
166
+ exporter,
167
+ scheduledDelayMillis: config.traceExportIntervalMs
168
+ })]
169
+ });
170
+ tracer = provider.getTracer(INSTRUMENTATION_SCOPE);
171
+ flushers.push(() => provider.forceFlush());
172
+ shutdowns.push(() => provider.shutdown());
173
+ }
174
+ } catch (error) {
175
+ logger.warn("otel_traces_init_failed", { error: describeError(error) });
176
+ }
177
+ }
178
+ if (config.exporters.metrics !== "none") {
179
+ try {
180
+ const built = make.metric(config, tokenSource);
181
+ if (built) {
182
+ const exporter = observe(built, "metrics");
183
+ const provider = new MeterProvider({
184
+ resource,
185
+ readers: [new PeriodicExportingMetricReader({
186
+ exporter,
187
+ exportIntervalMillis: config.metricExportIntervalMs
188
+ })]
189
+ });
190
+ meter = provider.getMeter(INSTRUMENTATION_SCOPE);
191
+ flushers.push(() => provider.forceFlush());
192
+ shutdowns.push(() => provider.shutdown());
193
+ }
194
+ } catch (error) {
195
+ logger.warn("otel_metrics_init_failed", { error: describeError(error) });
196
+ }
197
+ }
198
+ if (config.exporters.logs !== "none") {
199
+ try {
200
+ const built = make.log(config, tokenSource);
201
+ if (built) {
202
+ const exporter = observe(built, "logs");
203
+ const provider = new LoggerProvider({
204
+ resource,
205
+ processors: [new BatchLogRecordProcessor({
206
+ exporter,
207
+ scheduledDelayMillis: config.logExportIntervalMs
208
+ })]
209
+ });
210
+ otelLogger = provider.getLogger(INSTRUMENTATION_SCOPE);
211
+ flushers.push(() => provider.forceFlush());
212
+ shutdowns.push(() => provider.shutdown());
213
+ }
214
+ } catch (error) {
215
+ logger.warn("otel_logs_init_failed", { error: describeError(error) });
216
+ }
217
+ }
218
+ const runAll = async (tasks) => {
219
+ // `allSettled`, not `all`: one unreachable collector must not stop the
220
+ // other signals from draining.
221
+ await Promise.allSettled(tasks.map((task) => task()));
222
+ };
223
+ return {
224
+ tracer,
225
+ meter,
226
+ otelLogger,
227
+ forceFlush: () => runAll(flushers),
228
+ shutdown: () => runAll(shutdowns)
229
+ };
172
230
  }
173
231
  export function describeError(error) {
174
- if (error instanceof Error) {
175
- return error.message;
176
- }
177
- return String(error);
232
+ if (error instanceof Error) {
233
+ return error.message;
234
+ }
235
+ return String(error);
178
236
  }
237
+
179
238
  //# sourceMappingURL=providers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"providers.js","sourceRoot":"","sources":["../src/providers.ts"],"names":[],"mappings":"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"}
1
+ {"mappings":"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","names":[],"sources":["../src/providers.ts"],"version":3,"file":"providers.js","sourceRoot":""}