@neat.is/core 0.7.0 → 0.7.2
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/{chunk-Q6DPK3RA.js → chunk-6H757ZNM.js} +2 -2
- package/dist/{chunk-UBQ4ZZT3.js → chunk-MDBE23Y3.js} +3 -3
- package/dist/{chunk-N5L3RBGP.js → chunk-P2ZEKJ35.js} +44 -2
- package/dist/chunk-P2ZEKJ35.js.map +1 -0
- package/dist/{chunk-5RIL3U5A.js → chunk-RR4LWQQB.js} +516 -229
- package/dist/chunk-RR4LWQQB.js.map +1 -0
- package/dist/cli.cjs +1351 -653
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +2 -1
- package/dist/cli.d.ts +2 -1
- package/dist/cli.js +379 -13
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +810 -480
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -4
- package/dist/neatd.cjs +819 -489
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +3 -3
- package/dist/{otel-grpc-ZNC2QED2.js → otel-grpc-APVZSB6W.js} +3 -3
- package/dist/server.cjs +840 -510
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +3 -3
- package/package.json +2 -2
- package/dist/chunk-5RIL3U5A.js.map +0 -1
- package/dist/chunk-N5L3RBGP.js.map +0 -1
- /package/dist/{chunk-Q6DPK3RA.js.map → chunk-6H757ZNM.js.map} +0 -0
- /package/dist/{chunk-UBQ4ZZT3.js.map → chunk-MDBE23Y3.js.map} +0 -0
- /package/dist/{otel-grpc-ZNC2QED2.js.map → otel-grpc-APVZSB6W.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -162,6 +162,7 @@ interface ObservedSignal {
|
|
|
162
162
|
errorCount: number;
|
|
163
163
|
lastObservedIso: string;
|
|
164
164
|
callSite?: ConnectorCallSite;
|
|
165
|
+
columns?: string[];
|
|
165
166
|
}
|
|
166
167
|
|
|
167
168
|
/**
|
|
@@ -273,6 +274,7 @@ interface ParsedSpan {
|
|
|
273
274
|
dbName?: string;
|
|
274
275
|
dbCollection?: string;
|
|
275
276
|
dbTable?: string;
|
|
277
|
+
dbColumns?: string[];
|
|
276
278
|
httpRoute?: string;
|
|
277
279
|
httpMethod?: string;
|
|
278
280
|
messagingSystem?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -162,6 +162,7 @@ interface ObservedSignal {
|
|
|
162
162
|
errorCount: number;
|
|
163
163
|
lastObservedIso: string;
|
|
164
164
|
callSite?: ConnectorCallSite;
|
|
165
|
+
columns?: string[];
|
|
165
166
|
}
|
|
166
167
|
|
|
167
168
|
/**
|
|
@@ -273,6 +274,7 @@ interface ParsedSpan {
|
|
|
273
274
|
dbName?: string;
|
|
274
275
|
dbCollection?: string;
|
|
275
276
|
dbTable?: string;
|
|
277
|
+
dbColumns?: string[];
|
|
276
278
|
httpRoute?: string;
|
|
277
279
|
httpMethod?: string;
|
|
278
280
|
messagingSystem?: string;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
routeSpanToProject,
|
|
3
3
|
startDaemon
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-MDBE23Y3.js";
|
|
5
5
|
import {
|
|
6
6
|
ProjectNameCollisionError,
|
|
7
7
|
addProject,
|
|
@@ -37,15 +37,15 @@ import {
|
|
|
37
37
|
thresholdForEdgeType,
|
|
38
38
|
touchLastSeen,
|
|
39
39
|
writeAtomically
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-RR4LWQQB.js";
|
|
41
41
|
import {
|
|
42
42
|
startOtelGrpcReceiver
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-6H757ZNM.js";
|
|
44
44
|
import {
|
|
45
45
|
buildOtelReceiver,
|
|
46
46
|
logSpanHandler,
|
|
47
47
|
parseOtlpRequest
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-P2ZEKJ35.js";
|
|
49
49
|
export {
|
|
50
50
|
ProjectNameCollisionError,
|
|
51
51
|
addProject,
|