mixpeek 0.81.435 → 0.81.436
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.
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* Collection overview metrics.
|
|
13
|
+
* Collection overview metrics. Honesty contract (BACKE-3528 / ADM-07): every field is computed from a real source. A field whose source is not reachable from the analytics service is Optional and returned as None, meaning \"not yet computed here\", never a fabricated 0 or 1.0.
|
|
14
14
|
* @export
|
|
15
15
|
* @interface CollectionOverviewResponse
|
|
16
16
|
*/
|
|
@@ -34,29 +34,29 @@ export interface CollectionOverviewResponse {
|
|
|
34
34
|
*/
|
|
35
35
|
'total_documents': number;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Documents created in the last 24h. None means NOT YET COMPUTED here, which is different from zero: no faithful per-window document-created count is reachable from this service. A created_at range filter on the vector store silently matches nothing (the shard range compares numerics and created_at is an ISO-8601 string), and the ClickHouse growth series counts distinct source objects rather than documents created.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof CollectionOverviewResponse
|
|
40
40
|
*/
|
|
41
|
-
'documents_last_24h'
|
|
41
|
+
'documents_last_24h'?: number;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Documents created in the last 7d. None means NOT YET COMPUTED here, which is different from zero; see documents_last_24h for why no faithful source is wired.
|
|
44
44
|
* @type {number}
|
|
45
45
|
* @memberof CollectionOverviewResponse
|
|
46
46
|
*/
|
|
47
|
-
'documents_last_7d'
|
|
47
|
+
'documents_last_7d'?: number;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Mean extraction latency (ms) over the recent window, from ClickHouse. None means NOT YET COMPUTED here, which is different from zero: the window held no timed events, or the analytics store was unavailable.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof CollectionOverviewResponse
|
|
52
52
|
*/
|
|
53
|
-
'avg_processing_time_ms'
|
|
53
|
+
'avg_processing_time_ms'?: number;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Object to document conservation ratio (produced object count / source object count) from reconciliation. None means NOT YET COMPUTED here, which is different from 1.0: the collection has no source objects to conserve (a non-bucket source, or nothing ingested yet).
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof CollectionOverviewResponse
|
|
58
58
|
*/
|
|
59
|
-
'success_rate'
|
|
59
|
+
'success_rate'?: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
62
|
* @type {number}
|
|
@@ -70,7 +70,7 @@ export interface CollectionOverviewResponse {
|
|
|
70
70
|
*/
|
|
71
71
|
'active_clusters': number;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* When the collection was last updated or indexed (collection updated_at). None when the collection record carries no update timestamp.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof CollectionOverviewResponse
|
|
76
76
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collection-overview-response.d.ts","sourceRoot":"","sources":["../../models/collection-overview-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"collection-overview-response.d.ts","sourceRoot":"","sources":["../../models/collection-overview-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;CAC3B"}
|
package/package.json
CHANGED