@sentio/runtime 2.62.0-rc.9 → 2.62.0

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.
Files changed (53) hide show
  1. package/lib/chunk-3A7UBKPA.js +26 -0
  2. package/lib/chunk-3A7UBKPA.js.map +1 -0
  3. package/lib/chunk-AUPVVLD3.js +3 -0
  4. package/lib/chunk-CJDESLYQ.js +3 -0
  5. package/lib/{chunk-L2A6JPIQ.js.map → chunk-CJDESLYQ.js.map} +1 -1
  6. package/lib/chunk-G6HW3DCN.js +3 -0
  7. package/lib/{chunk-W3VN25ER.js.map → chunk-G6HW3DCN.js.map} +1 -1
  8. package/lib/chunk-QPZM6M6S.js +117 -0
  9. package/lib/{chunk-AHIIUVQL.js.map → chunk-QPZM6M6S.js.map} +1 -1
  10. package/lib/chunk-WHWNPZZ3.js +3 -0
  11. package/lib/{chunk-6XHWJ2VS.js.map → chunk-WHWNPZZ3.js.map} +1 -1
  12. package/lib/chunk-XI22N6AJ.js +38 -0
  13. package/lib/{chunk-PCB4OKW7.js.map → chunk-XI22N6AJ.js.map} +1 -1
  14. package/lib/getMachineId-bsd-I6PJXCQT.js +3 -0
  15. package/lib/{getMachineId-bsd-WJ6BLVOD.js.map → getMachineId-bsd-I6PJXCQT.js.map} +1 -1
  16. package/lib/getMachineId-darwin-HKHV3WMW.js +4 -0
  17. package/lib/{getMachineId-darwin-TW74DVT5.js.map → getMachineId-darwin-HKHV3WMW.js.map} +1 -1
  18. package/lib/getMachineId-linux-I76A7IOE.js +3 -0
  19. package/lib/{getMachineId-linux-MDJOKOMI.js.map → getMachineId-linux-I76A7IOE.js.map} +1 -1
  20. package/lib/getMachineId-unsupported-VPOZWIZS.js +3 -0
  21. package/lib/{getMachineId-unsupported-X2EJZ25K.js.map → getMachineId-unsupported-VPOZWIZS.js.map} +1 -1
  22. package/lib/getMachineId-win-W5S4EK74.js +3 -0
  23. package/lib/{getMachineId-win-VE7DMTAF.js.map → getMachineId-win-W5S4EK74.js.map} +1 -1
  24. package/lib/index.d.ts +182 -88
  25. package/lib/index.js +1 -76
  26. package/lib/index.js.map +1 -1
  27. package/lib/{processor-HNY62jHs.d.ts → processor-CIR4erWa.d.ts} +0 -32
  28. package/lib/processor-runner.js +47 -24626
  29. package/lib/processor-runner.js.map +1 -1
  30. package/lib/service-worker.js +2 -132
  31. package/lib/service-worker.js.map +1 -1
  32. package/lib/test-processor.test.d.ts +1 -1
  33. package/lib/test-processor.test.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/gen/processor/protos/processor.ts +83 -1217
  36. package/src/gen/service/common/protos/common.ts +13 -552
  37. package/src/otlp.ts +9 -34
  38. package/src/processor-runner.ts +2 -4
  39. package/src/service-v3.ts +3 -6
  40. package/lib/chunk-6XHWJ2VS.js +0 -92
  41. package/lib/chunk-AHIIUVQL.js +0 -59783
  42. package/lib/chunk-I5YHR3CE.js +0 -27642
  43. package/lib/chunk-I5YHR3CE.js.map +0 -1
  44. package/lib/chunk-KVSDPGUI.js +0 -50
  45. package/lib/chunk-L2A6JPIQ.js +0 -21
  46. package/lib/chunk-PCB4OKW7.js +0 -10975
  47. package/lib/chunk-W3VN25ER.js +0 -1703
  48. package/lib/getMachineId-bsd-WJ6BLVOD.js +0 -41
  49. package/lib/getMachineId-darwin-TW74DVT5.js +0 -41
  50. package/lib/getMachineId-linux-MDJOKOMI.js +0 -33
  51. package/lib/getMachineId-unsupported-X2EJZ25K.js +0 -24
  52. package/lib/getMachineId-win-VE7DMTAF.js +0 -43
  53. /package/lib/{chunk-KVSDPGUI.js.map → chunk-AUPVVLD3.js.map} +0 -0
@@ -1,41 +0,0 @@
1
- import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
2
- import {
3
- execAsync,
4
- init_execAsync
5
- } from "./chunk-L2A6JPIQ.js";
6
- import {
7
- diag,
8
- init_esm
9
- } from "./chunk-W3VN25ER.js";
10
- import {
11
- __esm
12
- } from "./chunk-KVSDPGUI.js";
13
-
14
- // ../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-bsd.js
15
- import { promises as fs } from "fs";
16
- async function getMachineId() {
17
- try {
18
- const result = await fs.readFile("/etc/hostid", { encoding: "utf8" });
19
- return result.trim();
20
- } catch (e) {
21
- diag.debug(`error reading machine id: ${e}`);
22
- }
23
- try {
24
- const result = await execAsync("kenv -q smbios.system.uuid");
25
- return result.stdout.trim();
26
- } catch (e) {
27
- diag.debug(`error reading machine id: ${e}`);
28
- }
29
- return void 0;
30
- }
31
- var init_getMachineId_bsd = __esm({
32
- "../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-bsd.js"() {
33
- init_execAsync();
34
- init_esm();
35
- }
36
- });
37
- init_getMachineId_bsd();
38
- export {
39
- getMachineId
40
- };
41
- //# sourceMappingURL=getMachineId-bsd-WJ6BLVOD.js.map
@@ -1,41 +0,0 @@
1
- import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
2
- import {
3
- execAsync,
4
- init_execAsync
5
- } from "./chunk-L2A6JPIQ.js";
6
- import {
7
- diag,
8
- init_esm
9
- } from "./chunk-W3VN25ER.js";
10
- import {
11
- __esm
12
- } from "./chunk-KVSDPGUI.js";
13
-
14
- // ../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-darwin.js
15
- async function getMachineId() {
16
- try {
17
- const result = await execAsync('ioreg -rd1 -c "IOPlatformExpertDevice"');
18
- const idLine = result.stdout.split("\n").find((line) => line.includes("IOPlatformUUID"));
19
- if (!idLine) {
20
- return void 0;
21
- }
22
- const parts = idLine.split('" = "');
23
- if (parts.length === 2) {
24
- return parts[1].slice(0, -1);
25
- }
26
- } catch (e) {
27
- diag.debug(`error reading machine id: ${e}`);
28
- }
29
- return void 0;
30
- }
31
- var init_getMachineId_darwin = __esm({
32
- "../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-darwin.js"() {
33
- init_execAsync();
34
- init_esm();
35
- }
36
- });
37
- init_getMachineId_darwin();
38
- export {
39
- getMachineId
40
- };
41
- //# sourceMappingURL=getMachineId-darwin-TW74DVT5.js.map
@@ -1,33 +0,0 @@
1
- import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
2
- import {
3
- diag,
4
- init_esm
5
- } from "./chunk-W3VN25ER.js";
6
- import {
7
- __esm
8
- } from "./chunk-KVSDPGUI.js";
9
-
10
- // ../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-linux.js
11
- import { promises as fs } from "fs";
12
- async function getMachineId() {
13
- const paths = ["/etc/machine-id", "/var/lib/dbus/machine-id"];
14
- for (const path of paths) {
15
- try {
16
- const result = await fs.readFile(path, { encoding: "utf8" });
17
- return result.trim();
18
- } catch (e) {
19
- diag.debug(`error reading machine id: ${e}`);
20
- }
21
- }
22
- return void 0;
23
- }
24
- var init_getMachineId_linux = __esm({
25
- "../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-linux.js"() {
26
- init_esm();
27
- }
28
- });
29
- init_getMachineId_linux();
30
- export {
31
- getMachineId
32
- };
33
- //# sourceMappingURL=getMachineId-linux-MDJOKOMI.js.map
@@ -1,24 +0,0 @@
1
- import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
2
- import {
3
- diag,
4
- init_esm
5
- } from "./chunk-W3VN25ER.js";
6
- import {
7
- __esm
8
- } from "./chunk-KVSDPGUI.js";
9
-
10
- // ../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-unsupported.js
11
- async function getMachineId() {
12
- diag.debug("could not read machine-id: unsupported platform");
13
- return void 0;
14
- }
15
- var init_getMachineId_unsupported = __esm({
16
- "../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-unsupported.js"() {
17
- init_esm();
18
- }
19
- });
20
- init_getMachineId_unsupported();
21
- export {
22
- getMachineId
23
- };
24
- //# sourceMappingURL=getMachineId-unsupported-X2EJZ25K.js.map
@@ -1,43 +0,0 @@
1
- import { createRequire as createRequireShim } from 'module'; const require = createRequireShim(import.meta.url);
2
- import {
3
- execAsync,
4
- init_execAsync
5
- } from "./chunk-L2A6JPIQ.js";
6
- import {
7
- diag,
8
- init_esm
9
- } from "./chunk-W3VN25ER.js";
10
- import {
11
- __esm
12
- } from "./chunk-KVSDPGUI.js";
13
-
14
- // ../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-win.js
15
- import * as process from "process";
16
- async function getMachineId() {
17
- const args = "QUERY HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Cryptography /v MachineGuid";
18
- let command = "%windir%\\System32\\REG.exe";
19
- if (process.arch === "ia32" && "PROCESSOR_ARCHITEW6432" in process.env) {
20
- command = "%windir%\\sysnative\\cmd.exe /c " + command;
21
- }
22
- try {
23
- const result = await execAsync(`${command} ${args}`);
24
- const parts = result.stdout.split("REG_SZ");
25
- if (parts.length === 2) {
26
- return parts[1].trim();
27
- }
28
- } catch (e) {
29
- diag.debug(`error reading machine id: ${e}`);
30
- }
31
- return void 0;
32
- }
33
- var init_getMachineId_win = __esm({
34
- "../../node_modules/.pnpm/@opentelemetry+resources@2.1.0_@opentelemetry+api@1.9.0/node_modules/@opentelemetry/resources/build/esm/detectors/platform/node/machine-id/getMachineId-win.js"() {
35
- init_execAsync();
36
- init_esm();
37
- }
38
- });
39
- init_getMachineId_win();
40
- export {
41
- getMachineId
42
- };
43
- //# sourceMappingURL=getMachineId-win-VE7DMTAF.js.map