@pdpp/local-collector 0.16.6 → 0.16.8
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const COLLECTOR_BUILD_SOURCE_SENTINEL = "source";
|
|
2
2
|
const COLLECTOR_BUILD_INFO = {
|
|
3
|
-
builtAt: "2026-06-
|
|
4
|
-
revision: "
|
|
5
|
-
version: "0.16.
|
|
3
|
+
builtAt: "2026-06-26T00:05:02.820Z",
|
|
4
|
+
revision: "86d549eb3e0e",
|
|
5
|
+
version: "0.16.8",
|
|
6
6
|
};
|
|
7
7
|
function buildAgentVersion(info = COLLECTOR_BUILD_INFO) {
|
|
8
8
|
return `${info.version}+${info.revision}`;
|
|
@@ -311,12 +311,12 @@ function makeEmitRecord(deps) {
|
|
|
311
311
|
for (const [streamName, scope] of requested) {
|
|
312
312
|
resFilters.set(streamName, resourceSet(scope));
|
|
313
313
|
}
|
|
314
|
-
const emitRecord = (stream, data) => {
|
|
314
|
+
const emitRecord = (stream, data, options = {}) => {
|
|
315
315
|
if (data.id == null) {
|
|
316
316
|
return Promise.resolve();
|
|
317
317
|
}
|
|
318
318
|
const rs = resFilters.get(stream);
|
|
319
|
-
if (rs && !rs.has(String(data.id))) {
|
|
319
|
+
if (!options.skipResourceFilter && rs && !rs.has(String(data.id))) {
|
|
320
320
|
return Promise.resolve();
|
|
321
321
|
}
|
|
322
322
|
if (isTombstone?.(stream, data)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdpp/local-collector",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.8",
|
|
4
4
|
"description": "Publishable local collector runtime for PDPP: filesystem-class connectors (Claude Code, Codex) plus the device-exporter ingest client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|