@lssm/lib.observability 0.0.0-canary-20251217080011 → 0.0.0-canary-20251219202229
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 +2 -2
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/anomaly/alert-manager.d.mts +2 -1
- package/dist/anomaly/alert-manager.mjs +2 -1
- package/dist/anomaly/anomaly-detector.d.mts +2 -1
- package/dist/anomaly/anomaly-detector.mjs +2 -1
- package/dist/anomaly/baseline-calculator.d.mts +2 -1
- package/dist/anomaly/baseline-calculator.mjs +2 -1
- package/dist/anomaly/root-cause-analyzer.d.mts +2 -1
- package/dist/anomaly/root-cause-analyzer.mjs +2 -1
- package/dist/intent/aggregator.d.mts +2 -1
- package/dist/intent/aggregator.mjs +2 -1
- package/dist/intent/detector.d.mts +2 -1
- package/dist/intent/detector.mjs +2 -1
- package/dist/lifecycle/dist/types/stages.mjs +2 -1
- package/dist/lifecycle/dist/utils/formatters.mjs +2 -1
- package/dist/logging/index.d.mts +2 -1
- package/dist/logging/index.mjs +2 -1
- package/dist/metrics/index.d.mts +2 -1
- package/dist/metrics/index.mjs +2 -1
- package/dist/pipeline/evolution-pipeline.d.mts +2 -1
- package/dist/pipeline/evolution-pipeline.mjs +2 -1
- package/dist/pipeline/lifecycle-pipeline.d.mts +2 -1
- package/dist/pipeline/lifecycle-pipeline.mjs +2 -1
- package/dist/tracing/index.d.mts +2 -1
- package/dist/tracing/index.mjs +2 -1
- package/dist/tracing/middleware.d.mts +2 -1
- package/dist/tracing/middleware.mjs +2 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @lssm/lib.observability
|
|
2
2
|
|
|
3
|
-
## 0.0.0-canary-
|
|
3
|
+
## 0.0.0-canary-20251219202229
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
11
|
- Updated dependencies [66a5dfd]
|
|
12
|
-
- @lssm/lib.lifecycle@0.0.0-canary-
|
|
12
|
+
- @lssm/lib.lifecycle@0.0.0-canary-20251219202229
|
|
13
13
|
|
|
14
14
|
## 0.5.0
|
|
15
15
|
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Chaman Ventures, SASU
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -17,4 +17,5 @@ declare class AlertManager {
|
|
|
17
17
|
notify(signal: AnomalySignal, analysis: RootCauseAnalysis): Promise<void>;
|
|
18
18
|
}
|
|
19
19
|
//#endregion
|
|
20
|
-
export { AlertManager, AlertManagerOptions };
|
|
20
|
+
export { AlertManager, AlertManagerOptions };
|
|
21
|
+
//# sourceMappingURL=alert-manager.d.mts.map
|
|
@@ -19,4 +19,5 @@ declare class RootCauseAnalyzer {
|
|
|
19
19
|
analyze(signal: AnomalySignal, deployments: DeploymentEvent[]): RootCauseAnalysis;
|
|
20
20
|
}
|
|
21
21
|
//#endregion
|
|
22
|
-
export { DeploymentEvent, RootCauseAnalysis, RootCauseAnalyzer };
|
|
22
|
+
export { DeploymentEvent, RootCauseAnalysis, RootCauseAnalyzer };
|
|
23
|
+
//# sourceMappingURL=root-cause-analyzer.d.mts.map
|
|
@@ -56,4 +56,5 @@ declare class IntentAggregator {
|
|
|
56
56
|
private buildSequences;
|
|
57
57
|
}
|
|
58
58
|
//#endregion
|
|
59
|
-
export { AggregatedOperationMetrics, IntentAggregator, IntentAggregatorOptions, IntentAggregatorSnapshot, OperationSequence, TelemetrySample };
|
|
59
|
+
export { AggregatedOperationMetrics, IntentAggregator, IntentAggregatorOptions, IntentAggregatorSnapshot, OperationSequence, TelemetrySample };
|
|
60
|
+
//# sourceMappingURL=aggregator.d.mts.map
|
|
@@ -28,4 +28,5 @@ declare class IntentDetector {
|
|
|
28
28
|
detectSequentialIntents(sequences: OperationSequence[]): IntentSignal[];
|
|
29
29
|
}
|
|
30
30
|
//#endregion
|
|
31
|
-
export { IntentDetector, IntentDetectorOptions, IntentSignal, IntentSignalType };
|
|
31
|
+
export { IntentDetector, IntentDetectorOptions, IntentSignal, IntentSignalType };
|
|
32
|
+
//# sourceMappingURL=detector.d.mts.map
|
package/dist/intent/detector.mjs
CHANGED
package/dist/logging/index.d.mts
CHANGED
package/dist/logging/index.mjs
CHANGED
package/dist/metrics/index.d.mts
CHANGED
|
@@ -13,4 +13,5 @@ declare const standardMetrics: {
|
|
|
13
13
|
workflowDuration: Histogram<_opentelemetry_api0.Attributes>;
|
|
14
14
|
};
|
|
15
15
|
//#endregion
|
|
16
|
-
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
16
|
+
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
17
|
+
//# sourceMappingURL=index.d.mts.map
|
package/dist/metrics/index.mjs
CHANGED
|
@@ -22,4 +22,5 @@ const standardMetrics = {
|
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
//#endregion
|
|
25
|
-
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
25
|
+
export { createCounter, createHistogram, createUpDownCounter, getMeter, standardMetrics };
|
|
26
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -36,4 +36,5 @@ declare class EvolutionPipeline {
|
|
|
36
36
|
private emit;
|
|
37
37
|
}
|
|
38
38
|
//#endregion
|
|
39
|
-
export { EvolutionPipeline, EvolutionPipelineEvent, EvolutionPipelineOptions };
|
|
39
|
+
export { EvolutionPipeline, EvolutionPipelineEvent, EvolutionPipelineOptions };
|
|
40
|
+
//# sourceMappingURL=evolution-pipeline.d.mts.map
|
|
@@ -40,4 +40,5 @@ declare class LifecycleKpiPipeline {
|
|
|
40
40
|
private ensureStageCounters;
|
|
41
41
|
}
|
|
42
42
|
//#endregion
|
|
43
|
-
export { LifecycleKpiPipeline, LifecycleKpiPipelineOptions, LifecyclePipelineEvent };
|
|
43
|
+
export { LifecycleKpiPipeline, LifecycleKpiPipelineOptions, LifecyclePipelineEvent };
|
|
44
|
+
//# sourceMappingURL=lifecycle-pipeline.d.mts.map
|
package/dist/tracing/index.d.mts
CHANGED
|
@@ -5,4 +5,5 @@ declare function getTracer(name?: string): Tracer;
|
|
|
5
5
|
declare function traceAsync<T>(name: string, fn: (span: Span) => Promise<T>, tracerName?: string): Promise<T>;
|
|
6
6
|
declare function traceSync<T>(name: string, fn: (span: Span) => T, tracerName?: string): T;
|
|
7
7
|
//#endregion
|
|
8
|
-
export { getTracer, traceAsync, traceSync };
|
|
8
|
+
export { getTracer, traceAsync, traceSync };
|
|
9
|
+
//# sourceMappingURL=index.d.mts.map
|
package/dist/tracing/index.mjs
CHANGED
|
@@ -15,4 +15,5 @@ interface TracingMiddlewareOptions {
|
|
|
15
15
|
}
|
|
16
16
|
declare function createTracingMiddleware(options?: TracingMiddlewareOptions): (req: Request, next: () => Promise<Response>) => Promise<Response>;
|
|
17
17
|
//#endregion
|
|
18
|
-
export { TracingMiddlewareOptions, createTracingMiddleware };
|
|
18
|
+
export { TracingMiddlewareOptions, createTracingMiddleware };
|
|
19
|
+
//# sourceMappingURL=middleware.d.mts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.observability",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251219202229",
|
|
4
4
|
"main": "./dist/index.mjs",
|
|
5
5
|
"types": "./dist/index.d.mts",
|
|
6
6
|
"scripts": {
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"test": "bun run"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@lssm/lib.lifecycle": "0.0.0-canary-
|
|
20
|
+
"@lssm/lib.lifecycle": "0.0.0-canary-20251219202229"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@opentelemetry/api": "*"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
27
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
26
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251219202229",
|
|
27
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251219202229",
|
|
28
28
|
"typescript": "^5.0.0"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
@@ -62,5 +62,6 @@
|
|
|
62
62
|
"./tracing/middleware": "./dist/tracing/middleware.mjs",
|
|
63
63
|
"./*": "./*"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
},
|
|
66
|
+
"license": "MIT"
|
|
66
67
|
}
|