@camstack/addon-post-analysis 0.1.17 → 0.1.18
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/embedding-encoder/index.js +1 -1
- package/dist/embedding-encoder/index.mjs +1 -1
- package/dist/enrichment-engine/index.js +1 -1
- package/dist/enrichment-engine/index.mjs +1 -1
- package/dist/{index-CGAj-pkn.mjs → index-CIJfmsWX.mjs} +23 -9
- package/dist/{index-CGAj-pkn.mjs.map → index-CIJfmsWX.mjs.map} +1 -1
- package/dist/{index-Dbx13pc7.js → index-DafwGlkQ.js} +23 -9
- package/dist/{index-Dbx13pc7.js.map → index-DafwGlkQ.js.map} +1 -1
- package/dist/pipeline-analytics/@mf-types.zip +0 -0
- package/dist/pipeline-analytics/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_analytics_widgets-Djvv92Kv.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_analytics_widgets-B3kCe2qM.mjs} +6 -6
- package/dist/pipeline-analytics/{hostInit-cznE5sde.mjs → hostInit-CuWzic_f.mjs} +4 -4
- package/dist/pipeline-analytics/{index-BCEx31Mh.mjs → index-CUXiTSWS.mjs} +406 -371
- package/dist/pipeline-analytics/index.js +1 -1
- package/dist/pipeline-analytics/index.mjs +1 -1
- package/dist/pipeline-analytics/remoteEntry.js +1 -1
- package/dist/recording/index.js +2 -2
- package/dist/recording/index.mjs +2 -2
- package/dist/{recording-coordinator-b-7Ast8s.js → recording-coordinator-BKsM_JGg.js} +2 -2
- package/dist/{recording-coordinator-b-7Ast8s.js.map → recording-coordinator-BKsM_JGg.js.map} +1 -1
- package/dist/{recording-coordinator-BjWd7HjD.mjs → recording-coordinator-Bw3N1gYu.mjs} +2 -2
- package/dist/{recording-coordinator-BjWd7HjD.mjs.map → recording-coordinator-Bw3N1gYu.mjs.map} +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
mod
|
|
23
23
|
));
|
|
24
24
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
25
|
-
const index = require("../index-
|
|
25
|
+
const index = require("../index-DafwGlkQ.js");
|
|
26
26
|
const core = require("@camstack/core");
|
|
27
27
|
const path = require("node:path");
|
|
28
28
|
const fs = require("node:fs");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { R as RUNTIME_TO_FORMAT$1, P as PYTHON_SCRIPT, f as BACKEND_TO_FORMAT$1, B as BaseAddon, g as embeddingEncoderCapability } from "../index-
|
|
1
|
+
import { R as RUNTIME_TO_FORMAT$1, P as PYTHON_SCRIPT, f as BACKEND_TO_FORMAT$1, B as BaseAddon, g as embeddingEncoderCapability } from "../index-CIJfmsWX.mjs";
|
|
2
2
|
import { ModelDownloadService } from "@camstack/core";
|
|
3
3
|
import * as path from "node:path";
|
|
4
4
|
import * as fs from "node:fs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const index = require("../index-
|
|
3
|
+
const index = require("../index-DafwGlkQ.js");
|
|
4
4
|
const shmRing = require("@camstack/shm-ring");
|
|
5
5
|
const sharp = require("sharp");
|
|
6
6
|
const DEFAULT_ENRICHMENT_CONFIG = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as EventCategory, c as createEvent, o as object, t as tuple, n as number, s as string, b as boolean, a as array, _ as _enum, B as BaseAddon, d as asJsonObject } from "../index-
|
|
1
|
+
import { E as EventCategory, c as createEvent, o as object, t as tuple, n as number, s as string, b as boolean, a as array, _ as _enum, B as BaseAddon, d as asJsonObject } from "../index-CIJfmsWX.mjs";
|
|
2
2
|
import { FrameRingReaderCache } from "@camstack/shm-ring";
|
|
3
3
|
import sharp from "sharp";
|
|
4
4
|
const DEFAULT_ENRICHMENT_CONFIG = {
|
|
@@ -12742,6 +12742,18 @@ const TopologyProcessSchema = object({
|
|
|
12742
12742
|
services: array(TopologyServiceSchema).readonly(),
|
|
12743
12743
|
groupId: string().optional()
|
|
12744
12744
|
});
|
|
12745
|
+
const TopologyCategoryAddonSchema = object({
|
|
12746
|
+
id: string(),
|
|
12747
|
+
status: string(),
|
|
12748
|
+
cpuPercent: number(),
|
|
12749
|
+
memoryRss: number()
|
|
12750
|
+
});
|
|
12751
|
+
const TopologyCategorySchema = object({
|
|
12752
|
+
category: string(),
|
|
12753
|
+
total: number(),
|
|
12754
|
+
healthy: number(),
|
|
12755
|
+
addons: array(TopologyCategoryAddonSchema).readonly()
|
|
12756
|
+
});
|
|
12745
12757
|
const TopologyNodeSchema = object({
|
|
12746
12758
|
id: string(),
|
|
12747
12759
|
name: string(),
|
|
@@ -12766,7 +12778,15 @@ const TopologyNodeSchema = object({
|
|
|
12766
12778
|
status: string()
|
|
12767
12779
|
})
|
|
12768
12780
|
).readonly(),
|
|
12769
|
-
processes: array(TopologyProcessSchema).readonly()
|
|
12781
|
+
processes: array(TopologyProcessSchema).readonly(),
|
|
12782
|
+
categories: array(TopologyCategorySchema).readonly()
|
|
12783
|
+
});
|
|
12784
|
+
const CapUsageEdgeSchema = object({
|
|
12785
|
+
callerAddonId: string(),
|
|
12786
|
+
providerAddonId: string(),
|
|
12787
|
+
capName: string(),
|
|
12788
|
+
callsPerMin: number(),
|
|
12789
|
+
lastCallAtMs: number()
|
|
12770
12790
|
});
|
|
12771
12791
|
const ClusterAddonNodeDeploymentSchema = object({
|
|
12772
12792
|
nodeId: string(),
|
|
@@ -12850,13 +12870,7 @@ const RenameNodeResultSchema = object({
|
|
|
12850
12870
|
object({
|
|
12851
12871
|
windowSeconds: number().int().positive().max(300).default(60)
|
|
12852
12872
|
}),
|
|
12853
|
-
array(
|
|
12854
|
-
callerAddonId: string(),
|
|
12855
|
-
providerAddonId: string(),
|
|
12856
|
-
capName: string(),
|
|
12857
|
-
callsPerMin: number(),
|
|
12858
|
-
lastCallAtMs: number()
|
|
12859
|
-
})).readonly(),
|
|
12873
|
+
array(CapUsageEdgeSchema).readonly(),
|
|
12860
12874
|
{ auth: "admin" }
|
|
12861
12875
|
),
|
|
12862
12876
|
/**
|
|
@@ -13958,4 +13972,4 @@ export {
|
|
|
13958
13972
|
tuple as t,
|
|
13959
13973
|
zoneAnalyticsCapability as z
|
|
13960
13974
|
};
|
|
13961
|
-
//# sourceMappingURL=index-
|
|
13975
|
+
//# sourceMappingURL=index-CIJfmsWX.mjs.map
|