@contractspec/lib.observability 1.57.0 → 1.59.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/CHANGELOG.md +25 -0
- package/dist/anomaly/alert-manager.d.ts +17 -0
- package/dist/anomaly/alert-manager.js +24 -0
- package/dist/anomaly/anomaly-detector.d.ts +22 -0
- package/dist/anomaly/anomaly-detector.js +102 -0
- package/dist/anomaly/baseline-calculator.d.ts +23 -0
- package/dist/anomaly/baseline-calculator.js +40 -0
- package/dist/anomaly/root-cause-analyzer.d.ts +19 -0
- package/dist/anomaly/root-cause-analyzer.js +32 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1078 -0
- package/dist/intent/aggregator.d.ts +57 -0
- package/dist/intent/aggregator.js +110 -0
- package/dist/intent/detector.d.ts +28 -0
- package/dist/intent/detector.js +133 -0
- package/dist/logging/index.d.ts +17 -0
- package/dist/logging/index.js +42 -0
- package/dist/metrics/index.d.ts +12 -0
- package/dist/metrics/index.js +31 -0
- package/dist/node/anomaly/alert-manager.js +23 -0
- package/dist/node/anomaly/anomaly-detector.js +101 -0
- package/dist/node/anomaly/baseline-calculator.js +39 -0
- package/dist/node/anomaly/root-cause-analyzer.js +31 -0
- package/dist/node/index.js +1077 -0
- package/dist/node/intent/aggregator.js +109 -0
- package/dist/node/intent/detector.js +132 -0
- package/dist/node/logging/index.js +41 -0
- package/dist/node/metrics/index.js +30 -0
- package/dist/node/pipeline/evolution-pipeline.js +299 -0
- package/dist/node/pipeline/lifecycle-pipeline.js +85 -0
- package/dist/node/telemetry/posthog-baseline-reader.js +308 -0
- package/dist/node/telemetry/posthog-telemetry.js +60 -0
- package/dist/node/tracing/index.js +52 -0
- package/dist/node/tracing/middleware.js +150 -0
- package/dist/pipeline/evolution-pipeline.d.ts +36 -0
- package/dist/pipeline/evolution-pipeline.js +300 -0
- package/dist/pipeline/lifecycle-pipeline.d.ts +40 -0
- package/dist/pipeline/lifecycle-pipeline.js +86 -0
- package/dist/telemetry/posthog-baseline-reader.d.ts +27 -0
- package/dist/telemetry/posthog-baseline-reader.js +309 -0
- package/dist/telemetry/posthog-telemetry.d.ts +15 -0
- package/dist/telemetry/posthog-telemetry.js +61 -0
- package/dist/tracing/index.d.ts +5 -0
- package/dist/tracing/index.js +53 -0
- package/dist/tracing/middleware.d.ts +15 -0
- package/dist/tracing/middleware.js +151 -0
- package/package.json +140 -43
- package/dist/anomaly/alert-manager.d.mts +0 -21
- package/dist/anomaly/alert-manager.mjs +0 -23
- package/dist/anomaly/anomaly-detector.d.mts +0 -26
- package/dist/anomaly/anomaly-detector.mjs +0 -58
- package/dist/anomaly/baseline-calculator.d.mts +0 -26
- package/dist/anomaly/baseline-calculator.mjs +0 -37
- package/dist/anomaly/root-cause-analyzer.d.mts +0 -23
- package/dist/anomaly/root-cause-analyzer.mjs +0 -27
- package/dist/index.d.mts +0 -15
- package/dist/index.mjs +0 -16
- package/dist/intent/aggregator.d.mts +0 -60
- package/dist/intent/aggregator.mjs +0 -98
- package/dist/intent/detector.d.mts +0 -32
- package/dist/intent/detector.mjs +0 -122
- package/dist/logging/index.d.mts +0 -20
- package/dist/logging/index.mjs +0 -40
- package/dist/metrics/index.d.mts +0 -17
- package/dist/metrics/index.mjs +0 -26
- package/dist/pipeline/evolution-pipeline.d.mts +0 -40
- package/dist/pipeline/evolution-pipeline.mjs +0 -66
- package/dist/pipeline/lifecycle-pipeline.d.mts +0 -44
- package/dist/pipeline/lifecycle-pipeline.mjs +0 -73
- package/dist/telemetry/posthog-baseline-reader.d.mts +0 -31
- package/dist/telemetry/posthog-baseline-reader.mjs +0 -266
- package/dist/telemetry/posthog-telemetry.d.mts +0 -19
- package/dist/telemetry/posthog-telemetry.mjs +0 -61
- package/dist/tracing/index.d.mts +0 -9
- package/dist/tracing/index.mjs +0 -47
- package/dist/tracing/middleware.d.mts +0 -19
- package/dist/tracing/middleware.mjs +0 -80
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
//#region src/intent/aggregator.ts
|
|
2
|
-
const DEFAULT_WINDOW_MS = 900 * 1e3;
|
|
3
|
-
var IntentAggregator = class {
|
|
4
|
-
windowMs;
|
|
5
|
-
sequenceSampleSize;
|
|
6
|
-
samples = [];
|
|
7
|
-
constructor(options = {}) {
|
|
8
|
-
this.windowMs = options.windowMs ?? DEFAULT_WINDOW_MS;
|
|
9
|
-
this.sequenceSampleSize = options.sequenceSampleSize ?? 1e3;
|
|
10
|
-
}
|
|
11
|
-
add(sample) {
|
|
12
|
-
this.samples.push(sample);
|
|
13
|
-
}
|
|
14
|
-
flush(now = /* @__PURE__ */ new Date()) {
|
|
15
|
-
const minTimestamp = now.getTime() - this.windowMs;
|
|
16
|
-
const windowSamples = this.samples.filter((sample) => sample.timestamp.getTime() >= minTimestamp);
|
|
17
|
-
this.samples.length = 0;
|
|
18
|
-
const metrics = this.aggregateMetrics(windowSamples);
|
|
19
|
-
const sequences = this.buildSequences(windowSamples);
|
|
20
|
-
const timestamps = windowSamples.map((sample) => sample.timestamp.getTime());
|
|
21
|
-
return {
|
|
22
|
-
metrics,
|
|
23
|
-
sequences,
|
|
24
|
-
sampleCount: windowSamples.length,
|
|
25
|
-
windowStart: timestamps.length ? new Date(Math.min(...timestamps)) : void 0,
|
|
26
|
-
windowEnd: timestamps.length ? new Date(Math.max(...timestamps)) : void 0
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
aggregateMetrics(samples) {
|
|
30
|
-
if (!samples.length) return [];
|
|
31
|
-
const groups = /* @__PURE__ */ new Map();
|
|
32
|
-
for (const sample of samples) {
|
|
33
|
-
const key = `${sample.operation.name}.v${sample.operation.version}`;
|
|
34
|
-
const arr = groups.get(key) ?? [];
|
|
35
|
-
arr.push(sample);
|
|
36
|
-
groups.set(key, arr);
|
|
37
|
-
}
|
|
38
|
-
return [...groups.values()].map((group) => {
|
|
39
|
-
const first = group[0];
|
|
40
|
-
if (!first) throw new Error("Empty group in aggregation");
|
|
41
|
-
const durations = group.map((s) => s.durationMs).sort((a, b) => a - b);
|
|
42
|
-
const errors = group.filter((s) => !s.success);
|
|
43
|
-
const totalCalls = group.length;
|
|
44
|
-
const topErrors = errors.reduce((acc, sample) => {
|
|
45
|
-
if (!sample.errorCode) return acc;
|
|
46
|
-
acc[sample.errorCode] = (acc[sample.errorCode] ?? 0) + 1;
|
|
47
|
-
return acc;
|
|
48
|
-
}, {});
|
|
49
|
-
const timestamps = group.map((s) => s.timestamp.getTime());
|
|
50
|
-
return {
|
|
51
|
-
operation: first.operation,
|
|
52
|
-
totalCalls,
|
|
53
|
-
successRate: (totalCalls - errors.length) / totalCalls,
|
|
54
|
-
errorRate: errors.length / totalCalls,
|
|
55
|
-
averageLatencyMs: durations.reduce((sum, value) => sum + value, 0) / totalCalls,
|
|
56
|
-
p95LatencyMs: percentile(durations, .95),
|
|
57
|
-
p99LatencyMs: percentile(durations, .99),
|
|
58
|
-
maxLatencyMs: Math.max(...durations),
|
|
59
|
-
windowStart: new Date(Math.min(...timestamps)),
|
|
60
|
-
windowEnd: new Date(Math.max(...timestamps)),
|
|
61
|
-
topErrors
|
|
62
|
-
};
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
buildSequences(samples) {
|
|
66
|
-
const byTrace = /* @__PURE__ */ new Map();
|
|
67
|
-
for (const sample of samples.slice(-this.sequenceSampleSize)) {
|
|
68
|
-
if (!sample.traceId) continue;
|
|
69
|
-
const arr = byTrace.get(sample.traceId) ?? [];
|
|
70
|
-
arr.push(sample);
|
|
71
|
-
byTrace.set(sample.traceId, arr);
|
|
72
|
-
}
|
|
73
|
-
const sequences = {};
|
|
74
|
-
for (const events of byTrace.values()) {
|
|
75
|
-
const ordered = events.sort((a, b) => a.timestamp.getTime() - b.timestamp.getTime());
|
|
76
|
-
const steps = ordered.map((event) => event.operation.name);
|
|
77
|
-
if (steps.length < 2) continue;
|
|
78
|
-
const key = `${steps.join(">")}@${ordered[0]?.tenantId ?? "global"}`;
|
|
79
|
-
const existing = sequences[key];
|
|
80
|
-
if (existing) existing.count += 1;
|
|
81
|
-
else sequences[key] = {
|
|
82
|
-
steps,
|
|
83
|
-
tenantId: ordered[0]?.tenantId,
|
|
84
|
-
count: 1
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
return Object.values(sequences).sort((a, b) => b.count - a.count);
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
function percentile(values, ratio) {
|
|
91
|
-
if (!values.length) return 0;
|
|
92
|
-
if (values.length === 1) return values[0] ?? 0;
|
|
93
|
-
return values[Math.min(values.length - 1, Math.floor(ratio * values.length))] ?? 0;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
//#endregion
|
|
97
|
-
export { IntentAggregator };
|
|
98
|
-
//# sourceMappingURL=aggregator.mjs.map
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { AggregatedOperationMetrics, OperationSequence } from "./aggregator.mjs";
|
|
2
|
-
|
|
3
|
-
//#region src/intent/detector.d.ts
|
|
4
|
-
type IntentSignalType = 'latency-regression' | 'error-spike' | 'throughput-drop' | 'missing-workflow-step';
|
|
5
|
-
interface IntentSignal {
|
|
6
|
-
id: string;
|
|
7
|
-
type: IntentSignalType;
|
|
8
|
-
operation?: AggregatedOperationMetrics['operation'];
|
|
9
|
-
confidence: number;
|
|
10
|
-
description: string;
|
|
11
|
-
metadata?: Record<string, unknown>;
|
|
12
|
-
evidence: {
|
|
13
|
-
type: 'metric' | 'sequence' | 'anomaly';
|
|
14
|
-
description: string;
|
|
15
|
-
data?: Record<string, unknown>;
|
|
16
|
-
}[];
|
|
17
|
-
}
|
|
18
|
-
interface IntentDetectorOptions {
|
|
19
|
-
errorRateThreshold?: number;
|
|
20
|
-
latencyP99ThresholdMs?: number;
|
|
21
|
-
throughputDropThreshold?: number;
|
|
22
|
-
minSequenceLength?: number;
|
|
23
|
-
}
|
|
24
|
-
declare class IntentDetector {
|
|
25
|
-
private readonly options;
|
|
26
|
-
constructor(options?: IntentDetectorOptions);
|
|
27
|
-
detectFromMetrics(current: AggregatedOperationMetrics[], previous?: AggregatedOperationMetrics[]): IntentSignal[];
|
|
28
|
-
detectSequentialIntents(sequences: OperationSequence[]): IntentSignal[];
|
|
29
|
-
}
|
|
30
|
-
//#endregion
|
|
31
|
-
export { IntentDetector, IntentDetectorOptions, IntentSignal, IntentSignalType };
|
|
32
|
-
//# sourceMappingURL=detector.d.mts.map
|
package/dist/intent/detector.mjs
DELETED
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { randomUUID } from "node:crypto";
|
|
2
|
-
|
|
3
|
-
//#region src/intent/detector.ts
|
|
4
|
-
const DEFAULTS = {
|
|
5
|
-
errorRateThreshold: .05,
|
|
6
|
-
latencyP99ThresholdMs: 750,
|
|
7
|
-
throughputDropThreshold: .3,
|
|
8
|
-
minSequenceLength: 3
|
|
9
|
-
};
|
|
10
|
-
var IntentDetector = class {
|
|
11
|
-
options;
|
|
12
|
-
constructor(options = {}) {
|
|
13
|
-
this.options = {
|
|
14
|
-
errorRateThreshold: options.errorRateThreshold ?? DEFAULTS.errorRateThreshold,
|
|
15
|
-
latencyP99ThresholdMs: options.latencyP99ThresholdMs ?? DEFAULTS.latencyP99ThresholdMs,
|
|
16
|
-
throughputDropThreshold: options.throughputDropThreshold ?? DEFAULTS.throughputDropThreshold,
|
|
17
|
-
minSequenceLength: options.minSequenceLength ?? DEFAULTS.minSequenceLength
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
detectFromMetrics(current, previous) {
|
|
21
|
-
const signals = [];
|
|
22
|
-
const baseline = new Map((previous ?? []).map((metric) => [`${metric.operation.name}.v${metric.operation.version}`, metric]));
|
|
23
|
-
for (const metric of current) {
|
|
24
|
-
if (metric.errorRate >= this.options.errorRateThreshold) {
|
|
25
|
-
signals.push({
|
|
26
|
-
id: randomUUID(),
|
|
27
|
-
type: "error-spike",
|
|
28
|
-
operation: metric.operation,
|
|
29
|
-
confidence: Math.min(1, metric.errorRate / this.options.errorRateThreshold),
|
|
30
|
-
description: `Error rate ${metric.errorRate.toFixed(2)} exceeded threshold`,
|
|
31
|
-
metadata: {
|
|
32
|
-
errorRate: metric.errorRate,
|
|
33
|
-
topErrors: metric.topErrors
|
|
34
|
-
},
|
|
35
|
-
evidence: [{
|
|
36
|
-
type: "metric",
|
|
37
|
-
description: "error-rate",
|
|
38
|
-
data: {
|
|
39
|
-
errorRate: metric.errorRate,
|
|
40
|
-
threshold: this.options.errorRateThreshold
|
|
41
|
-
}
|
|
42
|
-
}]
|
|
43
|
-
});
|
|
44
|
-
continue;
|
|
45
|
-
}
|
|
46
|
-
if (metric.p99LatencyMs >= this.options.latencyP99ThresholdMs) {
|
|
47
|
-
signals.push({
|
|
48
|
-
id: randomUUID(),
|
|
49
|
-
type: "latency-regression",
|
|
50
|
-
operation: metric.operation,
|
|
51
|
-
confidence: Math.min(1, metric.p99LatencyMs / this.options.latencyP99ThresholdMs),
|
|
52
|
-
description: `P99 latency ${metric.p99LatencyMs}ms exceeded threshold`,
|
|
53
|
-
metadata: { p99LatencyMs: metric.p99LatencyMs },
|
|
54
|
-
evidence: [{
|
|
55
|
-
type: "metric",
|
|
56
|
-
description: "p99-latency",
|
|
57
|
-
data: {
|
|
58
|
-
p99LatencyMs: metric.p99LatencyMs,
|
|
59
|
-
threshold: this.options.latencyP99ThresholdMs
|
|
60
|
-
}
|
|
61
|
-
}]
|
|
62
|
-
});
|
|
63
|
-
continue;
|
|
64
|
-
}
|
|
65
|
-
const base = baseline.get(`${metric.operation.name}.v${metric.operation.version}`);
|
|
66
|
-
if (base) {
|
|
67
|
-
const drop = (base.totalCalls - metric.totalCalls) / Math.max(base.totalCalls, 1);
|
|
68
|
-
if (drop >= this.options.throughputDropThreshold) signals.push({
|
|
69
|
-
id: randomUUID(),
|
|
70
|
-
type: "throughput-drop",
|
|
71
|
-
operation: metric.operation,
|
|
72
|
-
confidence: Math.min(1, drop / this.options.throughputDropThreshold),
|
|
73
|
-
description: `Throughput dropped ${(drop * 100).toFixed(1)}% vs baseline`,
|
|
74
|
-
metadata: {
|
|
75
|
-
baselineCalls: base.totalCalls,
|
|
76
|
-
currentCalls: metric.totalCalls
|
|
77
|
-
},
|
|
78
|
-
evidence: [{
|
|
79
|
-
type: "metric",
|
|
80
|
-
description: "throughput-drop",
|
|
81
|
-
data: {
|
|
82
|
-
baselineCalls: base.totalCalls,
|
|
83
|
-
currentCalls: metric.totalCalls
|
|
84
|
-
}
|
|
85
|
-
}]
|
|
86
|
-
});
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
return signals;
|
|
90
|
-
}
|
|
91
|
-
detectSequentialIntents(sequences) {
|
|
92
|
-
const signals = [];
|
|
93
|
-
for (const sequence of sequences) {
|
|
94
|
-
if (sequence.steps.length < this.options.minSequenceLength) continue;
|
|
95
|
-
const description = sequence.steps.join(" → ");
|
|
96
|
-
signals.push({
|
|
97
|
-
id: randomUUID(),
|
|
98
|
-
type: "missing-workflow-step",
|
|
99
|
-
confidence: .6,
|
|
100
|
-
description: `Repeated workflow detected: ${description}`,
|
|
101
|
-
metadata: {
|
|
102
|
-
steps: sequence.steps,
|
|
103
|
-
tenantId: sequence.tenantId,
|
|
104
|
-
occurrences: sequence.count
|
|
105
|
-
},
|
|
106
|
-
evidence: [{
|
|
107
|
-
type: "sequence",
|
|
108
|
-
description: "sequential-calls",
|
|
109
|
-
data: {
|
|
110
|
-
steps: sequence.steps,
|
|
111
|
-
count: sequence.count
|
|
112
|
-
}
|
|
113
|
-
}]
|
|
114
|
-
});
|
|
115
|
-
}
|
|
116
|
-
return signals;
|
|
117
|
-
}
|
|
118
|
-
};
|
|
119
|
-
|
|
120
|
-
//#endregion
|
|
121
|
-
export { IntentDetector };
|
|
122
|
-
//# sourceMappingURL=detector.mjs.map
|
package/dist/logging/index.d.mts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
//#region src/logging/index.d.ts
|
|
2
|
-
type LogLevel = 'debug' | 'info' | 'warn' | 'error';
|
|
3
|
-
interface LogEntry {
|
|
4
|
-
level: LogLevel;
|
|
5
|
-
message: string;
|
|
6
|
-
[key: string]: unknown;
|
|
7
|
-
}
|
|
8
|
-
declare class Logger {
|
|
9
|
-
private readonly serviceName;
|
|
10
|
-
constructor(serviceName: string);
|
|
11
|
-
private log;
|
|
12
|
-
debug(message: string, meta?: Record<string, unknown>): void;
|
|
13
|
-
info(message: string, meta?: Record<string, unknown>): void;
|
|
14
|
-
warn(message: string, meta?: Record<string, unknown>): void;
|
|
15
|
-
error(message: string, meta?: Record<string, unknown>): void;
|
|
16
|
-
}
|
|
17
|
-
declare const logger: Logger;
|
|
18
|
-
//#endregion
|
|
19
|
-
export { LogEntry, LogLevel, Logger, logger };
|
|
20
|
-
//# sourceMappingURL=index.d.mts.map
|
package/dist/logging/index.mjs
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { context, trace } from "@opentelemetry/api";
|
|
2
|
-
|
|
3
|
-
//#region src/logging/index.ts
|
|
4
|
-
var Logger = class {
|
|
5
|
-
constructor(serviceName) {
|
|
6
|
-
this.serviceName = serviceName;
|
|
7
|
-
}
|
|
8
|
-
log(level, message, meta = {}) {
|
|
9
|
-
const span = trace.getSpan(context.active());
|
|
10
|
-
const traceId = span?.spanContext().traceId;
|
|
11
|
-
const spanId = span?.spanContext().spanId;
|
|
12
|
-
const entry = {
|
|
13
|
-
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
14
|
-
service: this.serviceName,
|
|
15
|
-
level,
|
|
16
|
-
message,
|
|
17
|
-
traceId,
|
|
18
|
-
spanId,
|
|
19
|
-
...meta
|
|
20
|
-
};
|
|
21
|
-
console.log(JSON.stringify(entry));
|
|
22
|
-
}
|
|
23
|
-
debug(message, meta) {
|
|
24
|
-
this.log("debug", message, meta);
|
|
25
|
-
}
|
|
26
|
-
info(message, meta) {
|
|
27
|
-
this.log("info", message, meta);
|
|
28
|
-
}
|
|
29
|
-
warn(message, meta) {
|
|
30
|
-
this.log("warn", message, meta);
|
|
31
|
-
}
|
|
32
|
-
error(message, meta) {
|
|
33
|
-
this.log("error", message, meta);
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
const logger = new Logger(process.env.OTEL_SERVICE_NAME || "unknown-service");
|
|
37
|
-
|
|
38
|
-
//#endregion
|
|
39
|
-
export { Logger, logger };
|
|
40
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/metrics/index.d.mts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import * as _opentelemetry_api0 from "@opentelemetry/api";
|
|
2
|
-
import { Counter, Histogram, Meter, UpDownCounter } from "@opentelemetry/api";
|
|
3
|
-
|
|
4
|
-
//#region src/metrics/index.d.ts
|
|
5
|
-
declare function getMeter(name?: string): Meter;
|
|
6
|
-
declare function createCounter(name: string, description?: string, meterName?: string): Counter;
|
|
7
|
-
declare function createUpDownCounter(name: string, description?: string, meterName?: string): UpDownCounter;
|
|
8
|
-
declare function createHistogram(name: string, description?: string, meterName?: string): Histogram;
|
|
9
|
-
declare const standardMetrics: {
|
|
10
|
-
httpRequests: Counter<_opentelemetry_api0.Attributes>;
|
|
11
|
-
httpDuration: Histogram<_opentelemetry_api0.Attributes>;
|
|
12
|
-
operationErrors: Counter<_opentelemetry_api0.Attributes>;
|
|
13
|
-
workflowDuration: Histogram<_opentelemetry_api0.Attributes>;
|
|
14
|
-
};
|
|
15
|
-
//#endregion
|
|
16
|
-
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
17
|
-
//# sourceMappingURL=index.d.mts.map
|
package/dist/metrics/index.mjs
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { metrics } from "@opentelemetry/api";
|
|
2
|
-
|
|
3
|
-
//#region src/metrics/index.ts
|
|
4
|
-
const DEFAULT_METER_NAME = "@contractspec/lib.observability";
|
|
5
|
-
function getMeter(name = DEFAULT_METER_NAME) {
|
|
6
|
-
return metrics.getMeter(name);
|
|
7
|
-
}
|
|
8
|
-
function createCounter(name, description, meterName) {
|
|
9
|
-
return getMeter(meterName).createCounter(name, { description });
|
|
10
|
-
}
|
|
11
|
-
function createUpDownCounter(name, description, meterName) {
|
|
12
|
-
return getMeter(meterName).createUpDownCounter(name, { description });
|
|
13
|
-
}
|
|
14
|
-
function createHistogram(name, description, meterName) {
|
|
15
|
-
return getMeter(meterName).createHistogram(name, { description });
|
|
16
|
-
}
|
|
17
|
-
const standardMetrics = {
|
|
18
|
-
httpRequests: createCounter("http_requests_total", "Total HTTP requests"),
|
|
19
|
-
httpDuration: createHistogram("http_request_duration_seconds", "HTTP request duration"),
|
|
20
|
-
operationErrors: createCounter("operation_errors_total", "Total operation errors"),
|
|
21
|
-
workflowDuration: createHistogram("workflow_duration_seconds", "Workflow execution duration")
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
//#endregion
|
|
25
|
-
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
26
|
-
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { IntentAggregator, IntentAggregatorSnapshot, TelemetrySample } from "../intent/aggregator.mjs";
|
|
2
|
-
import { IntentDetector, IntentSignal } from "../intent/detector.mjs";
|
|
3
|
-
import { EventEmitter } from "node:events";
|
|
4
|
-
|
|
5
|
-
//#region src/pipeline/evolution-pipeline.d.ts
|
|
6
|
-
type EvolutionPipelineEvent = {
|
|
7
|
-
type: 'intent.detected';
|
|
8
|
-
payload: IntentSignal;
|
|
9
|
-
} | {
|
|
10
|
-
type: 'telemetry.window';
|
|
11
|
-
payload: {
|
|
12
|
-
sampleCount: number;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
interface EvolutionPipelineOptions {
|
|
16
|
-
detector?: IntentDetector;
|
|
17
|
-
aggregator?: IntentAggregator;
|
|
18
|
-
emitter?: EventEmitter;
|
|
19
|
-
onIntent?: (intent: IntentSignal) => Promise<void> | void;
|
|
20
|
-
onSnapshot?: (snapshot: IntentAggregatorSnapshot) => Promise<void> | void;
|
|
21
|
-
}
|
|
22
|
-
declare class EvolutionPipeline {
|
|
23
|
-
private readonly detector;
|
|
24
|
-
private readonly aggregator;
|
|
25
|
-
private readonly emitter;
|
|
26
|
-
private readonly onIntent?;
|
|
27
|
-
private readonly onSnapshot?;
|
|
28
|
-
private timer?;
|
|
29
|
-
private previousMetrics?;
|
|
30
|
-
constructor(options?: EvolutionPipelineOptions);
|
|
31
|
-
ingest(sample: TelemetrySample): void;
|
|
32
|
-
on(listener: (event: EvolutionPipelineEvent) => void): void;
|
|
33
|
-
start(intervalMs?: number): void;
|
|
34
|
-
stop(): void;
|
|
35
|
-
run(): Promise<void>;
|
|
36
|
-
private emit;
|
|
37
|
-
}
|
|
38
|
-
//#endregion
|
|
39
|
-
export { EvolutionPipeline, EvolutionPipelineEvent, EvolutionPipelineOptions };
|
|
40
|
-
//# sourceMappingURL=evolution-pipeline.d.mts.map
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { IntentAggregator } from "../intent/aggregator.mjs";
|
|
2
|
-
import { IntentDetector } from "../intent/detector.mjs";
|
|
3
|
-
import { EventEmitter } from "node:events";
|
|
4
|
-
|
|
5
|
-
//#region src/pipeline/evolution-pipeline.ts
|
|
6
|
-
var EvolutionPipeline = class {
|
|
7
|
-
detector;
|
|
8
|
-
aggregator;
|
|
9
|
-
emitter;
|
|
10
|
-
onIntent;
|
|
11
|
-
onSnapshot;
|
|
12
|
-
timer;
|
|
13
|
-
previousMetrics;
|
|
14
|
-
constructor(options = {}) {
|
|
15
|
-
this.detector = options.detector ?? new IntentDetector();
|
|
16
|
-
this.aggregator = options.aggregator ?? new IntentAggregator();
|
|
17
|
-
this.emitter = options.emitter ?? new EventEmitter();
|
|
18
|
-
this.onIntent = options.onIntent;
|
|
19
|
-
this.onSnapshot = options.onSnapshot;
|
|
20
|
-
}
|
|
21
|
-
ingest(sample) {
|
|
22
|
-
this.aggregator.add(sample);
|
|
23
|
-
}
|
|
24
|
-
on(listener) {
|
|
25
|
-
this.emitter.on("event", listener);
|
|
26
|
-
}
|
|
27
|
-
start(intervalMs = 300 * 1e3) {
|
|
28
|
-
this.stop();
|
|
29
|
-
this.timer = setInterval(() => {
|
|
30
|
-
this.run();
|
|
31
|
-
}, intervalMs);
|
|
32
|
-
}
|
|
33
|
-
stop() {
|
|
34
|
-
if (this.timer) {
|
|
35
|
-
clearInterval(this.timer);
|
|
36
|
-
this.timer = void 0;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
async run() {
|
|
40
|
-
const snapshot = this.aggregator.flush();
|
|
41
|
-
this.emit({
|
|
42
|
-
type: "telemetry.window",
|
|
43
|
-
payload: { sampleCount: snapshot.sampleCount }
|
|
44
|
-
});
|
|
45
|
-
if (this.onSnapshot) await this.onSnapshot(snapshot);
|
|
46
|
-
if (!snapshot.sampleCount) return;
|
|
47
|
-
const metricSignals = this.detector.detectFromMetrics(snapshot.metrics, this.previousMetrics);
|
|
48
|
-
const sequenceSignals = this.detector.detectSequentialIntents(snapshot.sequences);
|
|
49
|
-
this.previousMetrics = snapshot.metrics;
|
|
50
|
-
const signals = [...metricSignals, ...sequenceSignals];
|
|
51
|
-
for (const signal of signals) {
|
|
52
|
-
if (this.onIntent) await this.onIntent(signal);
|
|
53
|
-
this.emit({
|
|
54
|
-
type: "intent.detected",
|
|
55
|
-
payload: signal
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
emit(event) {
|
|
60
|
-
this.emitter.emit("event", event);
|
|
61
|
-
}
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
//#endregion
|
|
65
|
-
export { EvolutionPipeline };
|
|
66
|
-
//# sourceMappingURL=evolution-pipeline.mjs.map
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "node:events";
|
|
2
|
-
import { LifecycleAssessment, LifecycleStage } from "@contractspec/lib.lifecycle";
|
|
3
|
-
|
|
4
|
-
//#region src/pipeline/lifecycle-pipeline.d.ts
|
|
5
|
-
type LifecyclePipelineEvent = {
|
|
6
|
-
type: 'assessment.recorded';
|
|
7
|
-
payload: {
|
|
8
|
-
tenantId?: string;
|
|
9
|
-
stage: LifecycleStage;
|
|
10
|
-
};
|
|
11
|
-
} | {
|
|
12
|
-
type: 'stage.changed';
|
|
13
|
-
payload: {
|
|
14
|
-
tenantId?: string;
|
|
15
|
-
previousStage?: LifecycleStage;
|
|
16
|
-
nextStage: LifecycleStage;
|
|
17
|
-
};
|
|
18
|
-
} | {
|
|
19
|
-
type: 'confidence.low';
|
|
20
|
-
payload: {
|
|
21
|
-
tenantId?: string;
|
|
22
|
-
confidence: number;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
interface LifecycleKpiPipelineOptions {
|
|
26
|
-
meterName?: string;
|
|
27
|
-
emitter?: EventEmitter;
|
|
28
|
-
lowConfidenceThreshold?: number;
|
|
29
|
-
}
|
|
30
|
-
declare class LifecycleKpiPipeline {
|
|
31
|
-
private readonly assessmentCounter;
|
|
32
|
-
private readonly confidenceHistogram;
|
|
33
|
-
private readonly stageUpDownCounter;
|
|
34
|
-
private readonly emitter;
|
|
35
|
-
private readonly lowConfidenceThreshold;
|
|
36
|
-
private readonly currentStageByTenant;
|
|
37
|
-
constructor(options?: LifecycleKpiPipelineOptions);
|
|
38
|
-
recordAssessment(assessment: LifecycleAssessment, tenantId?: string): void;
|
|
39
|
-
on(listener: (event: LifecyclePipelineEvent) => void): void;
|
|
40
|
-
private ensureStageCounters;
|
|
41
|
-
}
|
|
42
|
-
//#endregion
|
|
43
|
-
export { LifecycleKpiPipeline, LifecycleKpiPipelineOptions, LifecyclePipelineEvent };
|
|
44
|
-
//# sourceMappingURL=lifecycle-pipeline.d.mts.map
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { createCounter, createHistogram, createUpDownCounter } from "../metrics/index.mjs";
|
|
2
|
-
import { EventEmitter } from "node:events";
|
|
3
|
-
import { getStageLabel } from "@contractspec/lib.lifecycle";
|
|
4
|
-
|
|
5
|
-
//#region src/pipeline/lifecycle-pipeline.ts
|
|
6
|
-
var LifecycleKpiPipeline = class {
|
|
7
|
-
assessmentCounter;
|
|
8
|
-
confidenceHistogram;
|
|
9
|
-
stageUpDownCounter;
|
|
10
|
-
emitter;
|
|
11
|
-
lowConfidenceThreshold;
|
|
12
|
-
currentStageByTenant = /* @__PURE__ */ new Map();
|
|
13
|
-
constructor(options = {}) {
|
|
14
|
-
const meterName = options.meterName ?? "@contractspec/lib.lifecycle-kpi";
|
|
15
|
-
this.assessmentCounter = createCounter("lifecycle_assessments_total", "Total lifecycle assessments", meterName);
|
|
16
|
-
this.confidenceHistogram = createHistogram("lifecycle_assessment_confidence", "Lifecycle assessment confidence distribution", meterName);
|
|
17
|
-
this.stageUpDownCounter = createUpDownCounter("lifecycle_stage_tenants", "Current tenants per lifecycle stage", meterName);
|
|
18
|
-
this.emitter = options.emitter ?? new EventEmitter();
|
|
19
|
-
this.lowConfidenceThreshold = options.lowConfidenceThreshold ?? .4;
|
|
20
|
-
}
|
|
21
|
-
recordAssessment(assessment, tenantId) {
|
|
22
|
-
const attributes = {
|
|
23
|
-
stage: getStageLabel(assessment.stage),
|
|
24
|
-
tenantId
|
|
25
|
-
};
|
|
26
|
-
this.assessmentCounter.add(1, attributes);
|
|
27
|
-
this.confidenceHistogram.record(assessment.confidence, attributes);
|
|
28
|
-
this.ensureStageCounters(assessment.stage, tenantId);
|
|
29
|
-
this.emitter.emit("event", {
|
|
30
|
-
type: "assessment.recorded",
|
|
31
|
-
payload: {
|
|
32
|
-
tenantId,
|
|
33
|
-
stage: assessment.stage
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
if (assessment.confidence < this.lowConfidenceThreshold) this.emitter.emit("event", {
|
|
37
|
-
type: "confidence.low",
|
|
38
|
-
payload: {
|
|
39
|
-
tenantId,
|
|
40
|
-
confidence: assessment.confidence
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
on(listener) {
|
|
45
|
-
this.emitter.on("event", listener);
|
|
46
|
-
}
|
|
47
|
-
ensureStageCounters(stage, tenantId) {
|
|
48
|
-
if (!tenantId) return;
|
|
49
|
-
const previous = this.currentStageByTenant.get(tenantId);
|
|
50
|
-
if (previous === stage) return;
|
|
51
|
-
if (previous !== void 0) this.stageUpDownCounter.add(-1, {
|
|
52
|
-
stage: getStageLabel(previous),
|
|
53
|
-
tenantId
|
|
54
|
-
});
|
|
55
|
-
this.stageUpDownCounter.add(1, {
|
|
56
|
-
stage: getStageLabel(stage),
|
|
57
|
-
tenantId
|
|
58
|
-
});
|
|
59
|
-
this.currentStageByTenant.set(tenantId, stage);
|
|
60
|
-
this.emitter.emit("event", {
|
|
61
|
-
type: "stage.changed",
|
|
62
|
-
payload: {
|
|
63
|
-
tenantId,
|
|
64
|
-
previousStage: previous,
|
|
65
|
-
nextStage: stage
|
|
66
|
-
}
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
};
|
|
70
|
-
|
|
71
|
-
//#endregion
|
|
72
|
-
export { LifecycleKpiPipeline };
|
|
73
|
-
//# sourceMappingURL=lifecycle-pipeline.mjs.map
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { AggregatedOperationMetrics, OperationSequence, TelemetrySample } from "../intent/aggregator.mjs";
|
|
2
|
-
import { AnalyticsReader, DateRangeInput } from "@contractspec/lib.contracts/integrations/providers/analytics";
|
|
3
|
-
|
|
4
|
-
//#region src/telemetry/posthog-baseline-reader.d.ts
|
|
5
|
-
interface ReadTelemetrySamplesInput {
|
|
6
|
-
operations?: {
|
|
7
|
-
name: string;
|
|
8
|
-
version: string;
|
|
9
|
-
}[];
|
|
10
|
-
dateRange?: DateRangeInput;
|
|
11
|
-
limit?: number;
|
|
12
|
-
}
|
|
13
|
-
interface PosthogBaselineReaderOptions {
|
|
14
|
-
eventPrefix?: string;
|
|
15
|
-
}
|
|
16
|
-
declare class PosthogBaselineReader {
|
|
17
|
-
private readonly reader;
|
|
18
|
-
private readonly eventPrefix;
|
|
19
|
-
constructor(reader: AnalyticsReader, options?: PosthogBaselineReaderOptions);
|
|
20
|
-
readSamples(input: ReadTelemetrySamplesInput): Promise<TelemetrySample[]>;
|
|
21
|
-
readAggregatedMetrics(operation: {
|
|
22
|
-
name: string;
|
|
23
|
-
version: string;
|
|
24
|
-
}, windowDays?: number): Promise<AggregatedOperationMetrics | null>;
|
|
25
|
-
readOperationSequences(dateRange?: DateRangeInput): Promise<OperationSequence[]>;
|
|
26
|
-
private readTopErrors;
|
|
27
|
-
private queryHogQL;
|
|
28
|
-
}
|
|
29
|
-
//#endregion
|
|
30
|
-
export { PosthogBaselineReader, PosthogBaselineReaderOptions, ReadTelemetrySamplesInput };
|
|
31
|
-
//# sourceMappingURL=posthog-baseline-reader.d.mts.map
|