@dxos/observability 0.4.2 → 0.4.3-main.c3bfede
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/lib/browser/{chunk-G7JGLRIW.mjs → chunk-MLA3ZYPW.mjs} +42 -33
- package/dist/lib/browser/{chunk-G7JGLRIW.mjs.map → chunk-MLA3ZYPW.mjs.map} +3 -3
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/{observability-4ARIU3BN.mjs → observability-4VFPABBL.mjs} +2 -2
- package/dist/lib/node/{chunk-2YCNLUJG.cjs → chunk-Y2O6GPIG.cjs} +31 -22
- package/dist/lib/node/{chunk-2YCNLUJG.cjs.map → chunk-Y2O6GPIG.cjs.map} +3 -3
- package/dist/lib/node/index.cjs +15 -15
- package/dist/lib/node/index.cjs.map +1 -1
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/{observability-R4RCUMHL.cjs → observability-5OWT3KAT.cjs} +6 -6
- package/dist/lib/node/{observability-R4RCUMHL.cjs.map → observability-5OWT3KAT.cjs.map} +2 -2
- package/dist/types/src/helpers/setup-telemetry-listeners.d.ts.map +1 -1
- package/dist/types/src/helpers/setup-telemetry-listeners.js +2 -2
- package/dist/types/src/helpers/setup-telemetry-listeners.js.map +1 -1
- package/package.json +14 -14
- package/src/helpers/setup-telemetry-listeners.ts +2 -2
- /package/dist/lib/browser/{observability-4ARIU3BN.mjs.map → observability-4VFPABBL.mjs.map} +0 -0
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
import { Event, scheduleTaskInterval } from "@dxos/async";
|
|
17
17
|
import { Context } from "@dxos/context";
|
|
18
18
|
import { invariant } from "@dxos/invariant";
|
|
19
|
-
import { log as
|
|
19
|
+
import { log as log4 } from "@dxos/log";
|
|
20
20
|
import { ConnectionState } from "@dxos/network-manager";
|
|
21
21
|
import { DeviceKind, Platform } from "@dxos/protocols/proto/dxos/client/services";
|
|
22
22
|
import { isNode } from "@dxos/util";
|
|
@@ -98,7 +98,7 @@ var initializeAppObservability = async ({ namespace, config, mode = "basic", tra
|
|
|
98
98
|
const release = `${namespace}@${config.get("runtime.app.build.version")}`;
|
|
99
99
|
const environment = config.get("runtime.app.env.DX_ENVIRONMENT");
|
|
100
100
|
const observabilityDisabled = await isObservabilityDisabled(namespace);
|
|
101
|
-
const { Observability: Observability2 } = await import("./observability-
|
|
101
|
+
const { Observability: Observability2 } = await import("./observability-4VFPABBL.mjs");
|
|
102
102
|
const observability = new Observability2({
|
|
103
103
|
namespace,
|
|
104
104
|
group,
|
|
@@ -310,12 +310,21 @@ var mapSpaces = (spaces, options = {
|
|
|
310
310
|
};
|
|
311
311
|
|
|
312
312
|
// packages/sdk/observability/src/helpers/setup-telemetry-listeners.ts
|
|
313
|
+
import { log as log3 } from "@dxos/log";
|
|
314
|
+
var __dxlog_file3 = "/home/runner/work/dxos/dxos/packages/sdk/observability/src/helpers/setup-telemetry-listeners.ts";
|
|
313
315
|
var lastFocusEvent = /* @__PURE__ */ new Date();
|
|
314
316
|
var totalTime = 0;
|
|
315
317
|
var setupTelemetryListeners = (namespace, client, observability) => {
|
|
316
318
|
const clickCallback = (event) => {
|
|
317
319
|
if (observability.group === "dxos" && event.target && !event.target.id) {
|
|
318
|
-
|
|
320
|
+
log3.info("click event on element without id", {
|
|
321
|
+
target: event.target
|
|
322
|
+
}, {
|
|
323
|
+
F: __dxlog_file3,
|
|
324
|
+
L: 17,
|
|
325
|
+
S: void 0,
|
|
326
|
+
C: (f, a) => f(...a)
|
|
327
|
+
});
|
|
319
328
|
}
|
|
320
329
|
setTimeout(() => observability.event({
|
|
321
330
|
identityId: getTelemetryIdentifier(client),
|
|
@@ -390,7 +399,7 @@ var setupTelemetryListeners = (namespace, client, observability) => {
|
|
|
390
399
|
};
|
|
391
400
|
|
|
392
401
|
// packages/sdk/observability/src/observability.ts
|
|
393
|
-
var
|
|
402
|
+
var __dxlog_file4 = "/home/runner/work/dxos/dxos/packages/sdk/observability/src/observability.ts";
|
|
394
403
|
var SPACE_METRICS_MIN_INTERVAL = 1e3 * 60;
|
|
395
404
|
var DATADOG_IDLE_INTERVAL = 1e3 * 60 * 1;
|
|
396
405
|
var Observability = class {
|
|
@@ -437,11 +446,11 @@ var Observability = class {
|
|
|
437
446
|
process.env.DATADOG_APP_KEY && (mergedSecrets.DATADOG_APP_KEY = process.env.DATADOG_APP_KEY);
|
|
438
447
|
return mergedSecrets;
|
|
439
448
|
} else {
|
|
440
|
-
|
|
449
|
+
log4("config", {
|
|
441
450
|
rtc: this._secrets,
|
|
442
451
|
config
|
|
443
452
|
}, {
|
|
444
|
-
F:
|
|
453
|
+
F: __dxlog_file4,
|
|
445
454
|
L: 128,
|
|
446
455
|
S: this,
|
|
447
456
|
C: (f, a) => f(...a)
|
|
@@ -500,10 +509,10 @@ var Observability = class {
|
|
|
500
509
|
async setIdentityTags(client) {
|
|
501
510
|
client.services.services.IdentityService.queryIdentity().subscribe((idqr) => {
|
|
502
511
|
if (!idqr?.identity?.identityKey) {
|
|
503
|
-
|
|
512
|
+
log4("empty response from identity service", {
|
|
504
513
|
idqr
|
|
505
514
|
}, {
|
|
506
|
-
F:
|
|
515
|
+
F: __dxlog_file4,
|
|
507
516
|
L: 200,
|
|
508
517
|
S: this,
|
|
509
518
|
C: (f, a) => f(...a)
|
|
@@ -514,10 +523,10 @@ var Observability = class {
|
|
|
514
523
|
});
|
|
515
524
|
client.services.services.DevicesService.queryDevices().subscribe((dqr) => {
|
|
516
525
|
if (!dqr || !dqr.devices || dqr.devices.length === 0) {
|
|
517
|
-
|
|
526
|
+
log4("empty response from device service", {
|
|
518
527
|
device: dqr
|
|
519
528
|
}, {
|
|
520
|
-
F:
|
|
529
|
+
F: __dxlog_file4,
|
|
521
530
|
L: 209,
|
|
522
531
|
S: this,
|
|
523
532
|
C: (f, a) => f(...a)
|
|
@@ -525,7 +534,7 @@ var Observability = class {
|
|
|
525
534
|
return;
|
|
526
535
|
}
|
|
527
536
|
invariant(dqr, "empty response from device service", {
|
|
528
|
-
F:
|
|
537
|
+
F: __dxlog_file4,
|
|
529
538
|
L: 212,
|
|
530
539
|
S: this,
|
|
531
540
|
A: [
|
|
@@ -535,10 +544,10 @@ var Observability = class {
|
|
|
535
544
|
});
|
|
536
545
|
const thisDevice = dqr.devices.find((device) => device.kind === DeviceKind.CURRENT);
|
|
537
546
|
if (!thisDevice) {
|
|
538
|
-
|
|
547
|
+
log4("no current device", {
|
|
539
548
|
device: dqr
|
|
540
549
|
}, {
|
|
541
|
-
F:
|
|
550
|
+
F: __dxlog_file4,
|
|
542
551
|
L: 216,
|
|
543
552
|
S: this,
|
|
544
553
|
C: (f, a) => f(...a)
|
|
@@ -568,8 +577,8 @@ var Observability = class {
|
|
|
568
577
|
config: this._config
|
|
569
578
|
});
|
|
570
579
|
} else {
|
|
571
|
-
|
|
572
|
-
F:
|
|
580
|
+
log4("datadog disabled", void 0, {
|
|
581
|
+
F: __dxlog_file4,
|
|
573
582
|
L: 246,
|
|
574
583
|
S: this,
|
|
575
584
|
C: (f, a) => f(...a)
|
|
@@ -588,8 +597,8 @@ var Observability = class {
|
|
|
588
597
|
startNetworkMetrics(client) {
|
|
589
598
|
const updateSignalMetrics = new Event();
|
|
590
599
|
updateSignalMetrics.on(this._ctx, async (networkStatus) => {
|
|
591
|
-
|
|
592
|
-
F:
|
|
600
|
+
log4("send signal metrics", void 0, {
|
|
601
|
+
F: __dxlog_file4,
|
|
593
602
|
L: 266,
|
|
594
603
|
S: this,
|
|
595
604
|
C: (f, a) => f(...a)
|
|
@@ -638,8 +647,8 @@ var Observability = class {
|
|
|
638
647
|
this._ctx.onDispose(() => subscriptions.forEach((subscription) => subscription.unsubscribe()));
|
|
639
648
|
const updateSpaceMetrics = new Event().debounce(SPACE_METRICS_MIN_INTERVAL);
|
|
640
649
|
updateSpaceMetrics.on(this._ctx, async () => {
|
|
641
|
-
|
|
642
|
-
F:
|
|
650
|
+
log4("send space update", void 0, {
|
|
651
|
+
F: __dxlog_file4,
|
|
643
652
|
L: 318,
|
|
644
653
|
S: this,
|
|
645
654
|
C: (f, a) => f(...a)
|
|
@@ -686,7 +695,7 @@ var Observability = class {
|
|
|
686
695
|
async startRuntimeMetrics(client, frequency = DATADOG_IDLE_INTERVAL) {
|
|
687
696
|
const platform = await client.services.services.SystemService?.getPlatform();
|
|
688
697
|
invariant(platform, "platform is required", {
|
|
689
|
-
F:
|
|
698
|
+
F: __dxlog_file4,
|
|
690
699
|
L: 361,
|
|
691
700
|
S: this,
|
|
692
701
|
A: [
|
|
@@ -707,17 +716,17 @@ var Observability = class {
|
|
|
707
716
|
}
|
|
708
717
|
}
|
|
709
718
|
scheduleTaskInterval(this._ctx, async () => {
|
|
710
|
-
|
|
711
|
-
F:
|
|
719
|
+
log4("platform", void 0, {
|
|
720
|
+
F: __dxlog_file4,
|
|
712
721
|
L: 379,
|
|
713
722
|
S: this,
|
|
714
723
|
C: (f, a) => f(...a)
|
|
715
724
|
});
|
|
716
725
|
client.services.services.SystemService?.getPlatform().then((platform2) => {
|
|
717
|
-
|
|
726
|
+
log4("platform", {
|
|
718
727
|
platform: platform2
|
|
719
728
|
}, {
|
|
720
|
-
F:
|
|
729
|
+
F: __dxlog_file4,
|
|
721
730
|
L: 382,
|
|
722
731
|
S: this,
|
|
723
732
|
C: (f, a) => f(...a)
|
|
@@ -727,10 +736,10 @@ var Observability = class {
|
|
|
727
736
|
this.gauge("dxos.client.runtime.heapTotal", platform2.memory.heapTotal);
|
|
728
737
|
this.gauge("dxos.client.runtime.heapUsed", platform2.memory.heapUsed);
|
|
729
738
|
}
|
|
730
|
-
}).catch((error) =>
|
|
739
|
+
}).catch((error) => log4("platform error", {
|
|
731
740
|
error
|
|
732
741
|
}, {
|
|
733
|
-
F:
|
|
742
|
+
F: __dxlog_file4,
|
|
734
743
|
L: 389,
|
|
735
744
|
S: this,
|
|
736
745
|
C: (f, a) => f(...a)
|
|
@@ -753,8 +762,8 @@ var Observability = class {
|
|
|
753
762
|
]))
|
|
754
763
|
});
|
|
755
764
|
} else {
|
|
756
|
-
|
|
757
|
-
F:
|
|
765
|
+
log4("segment disabled", void 0, {
|
|
766
|
+
F: __dxlog_file4,
|
|
758
767
|
L: 414,
|
|
759
768
|
S: this,
|
|
760
769
|
C: (f, a) => f(...a)
|
|
@@ -782,11 +791,11 @@ var Observability = class {
|
|
|
782
791
|
//
|
|
783
792
|
_initErrorLogs() {
|
|
784
793
|
if (this._secrets.SENTRY_DESTINATION && this._mode !== "disabled") {
|
|
785
|
-
|
|
794
|
+
log4.info("Initializing Sentry", {
|
|
786
795
|
dest: this._secrets.SENTRY_DESTINATION,
|
|
787
796
|
options: this._errorReportingOptions
|
|
788
797
|
}, {
|
|
789
|
-
F:
|
|
798
|
+
F: __dxlog_file4,
|
|
790
799
|
L: 443,
|
|
791
800
|
S: this,
|
|
792
801
|
C: (f, a) => f(...a)
|
|
@@ -808,8 +817,8 @@ var Observability = class {
|
|
|
808
817
|
}
|
|
809
818
|
});
|
|
810
819
|
} else {
|
|
811
|
-
|
|
812
|
-
F:
|
|
820
|
+
log4("sentry disabled", void 0, {
|
|
821
|
+
F: __dxlog_file4,
|
|
813
822
|
L: 466,
|
|
814
823
|
S: this,
|
|
815
824
|
C: (f, a) => f(...a)
|
|
@@ -844,4 +853,4 @@ export {
|
|
|
844
853
|
mapSpaces,
|
|
845
854
|
setupTelemetryListeners
|
|
846
855
|
};
|
|
847
|
-
//# sourceMappingURL=chunk-
|
|
856
|
+
//# sourceMappingURL=chunk-MLA3ZYPW.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/observability.ts", "../../../src/cli-observability-secrets.json", "../../../src/helpers/browser-observability.ts", "../../../src/helpers/common.ts", "../../../src/helpers/node-observability.ts", "../../../src/helpers/map-spaces.ts", "../../../src/helpers/setup-telemetry-listeners.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Event, scheduleTaskInterval } from '@dxos/async';\nimport { type Client, type Config } from '@dxos/client';\nimport { type Space } from '@dxos/client-protocol';\nimport { Context } from '@dxos/context';\nimport { invariant } from '@dxos/invariant';\nimport { log } from '@dxos/log';\nimport { ConnectionState } from '@dxos/network-manager';\nimport { DeviceKind, type NetworkStatus, Platform } from '@dxos/protocols/proto/dxos/client/services';\nimport { isNode } from '@dxos/util';\n\nimport buildSecrets from './cli-observability-secrets.json';\nimport { DatadogMetrics } from './datadog';\nimport { type IPData, getTelemetryIdentifier, mapSpaces } from './helpers';\nimport { SegmentTelemetry, type EventOptions, type PageOptions } from './segment';\nimport {\n captureException as sentryCaptureException,\n enableSentryLogProcessor,\n configureTracing as sentryConfigureTracing,\n init as sentryInit,\n type InitOptions,\n setTag as sentrySetTag,\n} from './sentry';\n\nconst SPACE_METRICS_MIN_INTERVAL = 1000 * 60;\n// const DATADOG_IDLE_INTERVAL = 1000 * 60 * 5;\nconst DATADOG_IDLE_INTERVAL = 1000 * 60 * 1;\n\n// Secrets? EnvironmentConfig?\n\nexport type ObservabilitySecrets = {\n DX_ENVIRONMENT: string | null;\n DX_RELEASE: string | null;\n SENTRY_DESTINATION: string | null;\n TELEMETRY_API_KEY: string | null;\n IPDATA_API_KEY: string | null;\n DATADOG_API_KEY: string | null;\n DATADOG_APP_KEY: string | null;\n};\n\nexport type Mode = 'basic' | 'full' | 'disabled';\nexport type TagScope = 'errors' | 'telemetry' | 'metrics' | 'all';\n\nexport type ObservabilityOptions = {\n /// The webapp (e.g. 'composer.dxos.org'), 'cli', or 'agent'.\n namespace: string;\n // TODO(nf): make platform a required extension?\n // platform: Platform;\n config?: Config;\n secrets?: Record<string, string>;\n group?: string;\n mode?: Mode;\n\n telemetry?: {\n batchSize?: number;\n };\n\n errorLog?: {\n sentryInitOptions?: InitOptions;\n logProcessor?: boolean;\n };\n};\n\n/*\n * Observability provides a common interface for error logging, metrics, and telemetry.\n * It currently provides these capabilities using Sentry, Datadog, and Segment.\n */\nexport class Observability {\n // TODO(wittjosiah): Generic metrics interface.\n private _metrics?: DatadogMetrics;\n // TODO(wittjosiah): Generic telemetry interface.\n private _telemetryBatchSize: number;\n private _telemetry?: SegmentTelemetry;\n // TODO(wittjosiah): Generic error logging interface.\n private _errorReportingOptions?: InitOptions;\n private _errorLogProcessor: boolean;\n\n private _secrets: ObservabilitySecrets;\n private _namespace: string;\n private _config?: Config;\n private _mode: Mode = 'disabled';\n private _group?: string;\n // TODO(nf): accept upstream context?\n private _ctx = new Context();\n private _tags = new Map<string, { value: string; scope: TagScope }>();\n\n // TODO(nf): make platform a required extension?\n constructor({ namespace, config, secrets, group, mode, telemetry, errorLog }: ObservabilityOptions) {\n this._namespace = namespace;\n this._config = config;\n this._mode = mode ?? 'disabled';\n this._group = group;\n this._secrets = this._loadSecrets(config, secrets);\n this._telemetryBatchSize = telemetry?.batchSize ?? 30;\n this._errorReportingOptions = errorLog?.sentryInitOptions;\n this._errorLogProcessor = errorLog?.logProcessor ?? false;\n\n if (this._group) {\n this.setTag('group', this._group);\n }\n this.setTag('namespace', this._namespace);\n\n if (this._mode === 'full') {\n // TODO(nf): set group and hostname?\n }\n }\n\n private _loadSecrets(config: Config | undefined, secrets?: Record<string, string>) {\n if (isNode()) {\n const mergedSecrets = {\n ...(buildSecrets as ObservabilitySecrets),\n ...secrets,\n };\n\n process.env.DX_ENVIRONMENT && (mergedSecrets.DX_ENVIRONMENT = process.env.DX_ENVIRONMENT);\n process.env.DX_RELEASE && (mergedSecrets.DX_RELEASE = process.env.DX_RELEASE);\n process.env.SENTRY_DESTINATION && (mergedSecrets.SENTRY_DESTINATION = process.env.SENTRY_DESTINATION);\n process.env.TELEMETRY_API_KEY && (mergedSecrets.TELEMETRY_API_KEY = process.env.TELEMETRY_API_KEY);\n process.env.IPDATA_API_KEY && (mergedSecrets.IPDATA_API_KEY = process.env.IPDATA_API_KEY);\n process.env.DATADOG_API_KEY && (mergedSecrets.DATADOG_API_KEY = process.env.DATADOG_API_KEY);\n process.env.DATADOG_APP_KEY && (mergedSecrets.DATADOG_APP_KEY = process.env.DATADOG_APP_KEY);\n\n return mergedSecrets;\n } else {\n log('config', { rtc: this._secrets, config });\n return {\n DX_ENVIRONMENT: config?.get('runtime.app.env.DX_ENVIRONMENT'),\n DX_RELEASE: config?.get('runtime.app.env.DX_RELEASE'),\n SENTRY_DESTINATION: config?.get('runtime.app.env.DX_SENTRY_DESTINATION'),\n TELEMETRY_API_KEY: config?.get('runtime.app.env.DX_TELEMETRY_API_KEY'),\n IPDATA_API_KEY: config?.get('runtime.app.env.DX_IPDATA_API_KEY'),\n DATADOG_API_KEY: config?.get('runtime.app.env.DX_DATADOG_API_KEY'),\n DATADOG_APP_KEY: config?.get('runtime.app.env.DX_DATADOG_APP_KEY'),\n ...secrets,\n };\n }\n }\n\n initialize() {\n this._initMetrics();\n this._initTelemetry();\n this._initErrorLogs();\n }\n\n async close() {\n await this._ctx.dispose();\n\n // TODO(wittjosiah): Remove telemetry, etc. scripts.\n }\n\n setMode(mode: Mode) {\n this._mode = mode;\n }\n\n get mode() {\n return this._mode;\n }\n\n get group() {\n return this._group;\n }\n\n get enabled() {\n return this._mode !== 'disabled';\n }\n\n //\n // Tags\n //\n\n setTag(key: string, value: string, scope?: TagScope) {\n if (this.enabled && (scope === undefined || scope === 'all' || scope === 'errors')) {\n sentrySetTag(key, value);\n }\n if (!scope) {\n scope = 'all';\n }\n this._tags.set(key, { value, scope });\n }\n\n getTag(key: string) {\n return this._tags.get(key);\n }\n\n addIPDataTelemetryTags = (ipData: IPData) => {\n this.setTag('city', ipData.city, 'telemetry');\n this.setTag('region', ipData.region, 'telemetry');\n this.setTag('country', ipData.country, 'telemetry');\n ipData.latitude && this.setTag('latitude', ipData.latitude.toString(), 'telemetry');\n ipData.longitude && this.setTag('longitude', ipData.longitude.toString(), 'telemetry');\n };\n\n // TODO(wittjosiah): Improve privacy of telemetry identifiers. See `getTelemetryIdentifier`.\n async setIdentityTags(client: Client) {\n client.services.services.IdentityService!.queryIdentity().subscribe((idqr) => {\n if (!idqr?.identity?.identityKey) {\n log('empty response from identity service', { idqr });\n return;\n }\n\n this.setTag('identityKey', idqr.identity.identityKey.truncate());\n });\n\n client.services.services.DevicesService!.queryDevices().subscribe((dqr) => {\n if (!dqr || !dqr.devices || dqr.devices.length === 0) {\n log('empty response from device service', { device: dqr });\n return;\n }\n invariant(dqr, 'empty response from device service');\n\n const thisDevice = dqr.devices.find((device) => device.kind === DeviceKind.CURRENT);\n if (!thisDevice) {\n log('no current device', { device: dqr });\n return;\n }\n this.setTag('deviceKey', thisDevice.deviceKey.truncate());\n if (thisDevice.profile?.label) {\n this.setTag('deviceProfile', thisDevice.profile.label);\n }\n });\n }\n\n //\n // Metrics\n //\n\n private _initMetrics() {\n if (this.enabled && this._secrets.DATADOG_API_KEY) {\n this._metrics = new DatadogMetrics({\n apiKey: this._secrets.DATADOG_API_KEY,\n getTags: () =>\n Object.fromEntries(\n Array.from(this._tags)\n .filter(([key, value]) => {\n return value.scope === 'all' || value.scope === 'metrics';\n })\n .map(([key, value]) => [key, value.value]),\n ),\n // TODO(nf): move/refactor from telementryContext, needed to read CORS proxy\n config: this._config!,\n });\n } else {\n log('datadog disabled');\n }\n }\n\n /**\n * Gauge metric.\n *\n * The default implementation uses Datadog.\n */\n gauge(name: string, value: number | any, extraTags?: any) {\n this._metrics?.gauge(name, value, extraTags);\n }\n\n // TODO(nf): Refactor into ObservabilityExtensions.\n\n startNetworkMetrics(client: Client) {\n const updateSignalMetrics = new Event<NetworkStatus>();\n\n // const lcsh = (csp as LocalClientServices).host;\n updateSignalMetrics.on(this._ctx, async (networkStatus) => {\n log('send signal metrics');\n (networkStatus.signaling as NetworkStatus.Signal[]).forEach(({ server, state }) => {\n this.gauge('dxos.client.network.signal.connectionState', state, { server });\n });\n\n let swarmCount = 0;\n const connectionStates = new Map<string, number>();\n for (const state in ConnectionState) {\n connectionStates.set(state, 0);\n }\n\n let totalReadBufferSize = 0;\n let totalWriteBufferSize = 0;\n let totalChannelBufferSize = 0;\n\n networkStatus.connectionInfo?.forEach((connectionInfo) => {\n swarmCount++;\n\n for (const conn of connectionInfo.connections ?? []) {\n connectionStates.set(conn.state, (connectionStates.get(conn.state) ?? 0) + 1);\n totalReadBufferSize += conn.readBufferSize ?? 0;\n totalWriteBufferSize += conn.writeBufferSize ?? 0;\n\n for (const stream of conn.streams ?? []) {\n totalChannelBufferSize += stream.writeBufferSize ?? 0;\n }\n }\n\n this.gauge('dxos.client.network.swarm.count', swarmCount);\n for (const state in ConnectionState) {\n this.gauge('dxos.client.network.connection.count', connectionStates.get(state) ?? 0, { state });\n }\n this.gauge('dxox.client.network.totalReadBufferSize', totalReadBufferSize);\n this.gauge('dxos.client.network.totalWriteBufferSize', totalWriteBufferSize);\n this.gauge('dxos.client.network.totalChannelBufferSize', totalChannelBufferSize);\n });\n });\n\n client.services.services.NetworkService?.queryStatus().subscribe((networkStatus) => {\n updateSignalMetrics.emit(networkStatus);\n });\n\n // scheduleTaskInterval(ctx, async () => updateSignalMetrics.emit(), DATADOG_IDLE_INTERVAL);\n }\n\n startSpacesMetrics(client: Client, namespace: string) {\n const spaces = client.spaces.get();\n const subscriptions = new Map<string, { unsubscribe: () => void }>();\n this._ctx.onDispose(() => subscriptions.forEach((subscription) => subscription.unsubscribe()));\n\n const updateSpaceMetrics = new Event<Space>().debounce(SPACE_METRICS_MIN_INTERVAL);\n updateSpaceMetrics.on(this._ctx, async () => {\n log('send space update');\n for (const data of mapSpaces(spaces, { truncateKeys: true })) {\n // Metrics\n this.gauge('dxos.client.space.members', data.members, { key: data.key });\n this.gauge('dxos.client.space.objects', data.objects, { key: data.key });\n this.gauge('dxos.client.space.epoch', data.epoch, { key: data.key });\n this.gauge('dxos.client.space.currentDataMutations', data.currentDataMutations, { key: data.key });\n\n // Telemetry\n this.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.space.update`,\n properties: data,\n });\n }\n });\n\n const subscribeToSpaceUpdate = (space: Space) =>\n space.pipeline.subscribe({\n next: () => {\n updateSpaceMetrics.emit();\n },\n });\n\n spaces.forEach((space) => {\n subscriptions.set(space.key.toHex(), subscribeToSpaceUpdate(space));\n });\n\n client.spaces.subscribe({\n next: async (spaces) => {\n spaces\n .filter((space) => !subscriptions.has(space.key.toHex()))\n .forEach((space) => {\n subscriptions.set(space.key.toHex(), subscribeToSpaceUpdate(space));\n });\n },\n });\n\n scheduleTaskInterval(this._ctx, async () => updateSpaceMetrics.emit(), DATADOG_IDLE_INTERVAL);\n }\n\n async startRuntimeMetrics(client: Client, frequency: number = DATADOG_IDLE_INTERVAL) {\n const platform = await client.services.services.SystemService?.getPlatform();\n invariant(platform, 'platform is required');\n\n this.setTag('platform_type', Platform.PLATFORM_TYPE[platform.type as number].toLowerCase());\n if (this._mode === 'full') {\n // platform[foo] does not work?\n if (platform.platform) {\n this.setTag('platform', platform.platform);\n }\n if (platform.arch) {\n this.setTag('arch', platform.arch);\n }\n if (platform.runtime) {\n this.setTag('runtime', platform.runtime);\n }\n }\n scheduleTaskInterval(\n this._ctx,\n async () => {\n log('platform');\n client.services.services.SystemService?.getPlatform()\n .then((platform) => {\n log('platform', { platform });\n if (platform.memory) {\n this.gauge('dxos.client.runtime.rss', platform.memory.rss);\n this.gauge('dxos.client.runtime.heapTotal', platform.memory.heapTotal);\n this.gauge('dxos.client.runtime.heapUsed', platform.memory.heapUsed);\n }\n })\n .catch((error) => log('platform error', { error }));\n },\n frequency,\n );\n }\n\n //\n // Telemetry\n //\n\n private _initTelemetry() {\n if (this._secrets.TELEMETRY_API_KEY && this._mode !== 'disabled') {\n this._telemetry = new SegmentTelemetry({\n apiKey: this._secrets.TELEMETRY_API_KEY,\n batchSize: this._telemetryBatchSize,\n getTags: () =>\n Object.fromEntries(\n Array.from(this._tags)\n .filter(([key, value]) => {\n return value.scope === 'all' || value.scope === 'telemetry';\n })\n .map(([key, value]) => [key, value.value]),\n ),\n });\n } else {\n log('segment disabled');\n }\n }\n\n /**\n * A telemetry event.\n *\n * The default implementation uses Segment.\n */\n event(options: EventOptions) {\n this._telemetry?.event(options);\n }\n\n /**\n * A telemetry page view.\n *\n * The default implementation uses Segment.\n */\n page(options: PageOptions) {\n this._telemetry?.page(options);\n }\n\n //\n // Error Logs\n //\n\n private _initErrorLogs() {\n if (this._secrets.SENTRY_DESTINATION && this._mode !== 'disabled') {\n // TODO(nf): refactor package into this one?\n log.info('Initializing Sentry', {\n dest: this._secrets.SENTRY_DESTINATION,\n options: this._errorReportingOptions,\n });\n sentryInit({\n ...this._errorReportingOptions,\n destination: this._secrets.SENTRY_DESTINATION,\n scrubFilenames: this._mode !== 'full',\n });\n if (this._errorReportingOptions?.tracing) {\n sentryConfigureTracing();\n }\n // TODO(nf): set platform at instantiation? needed for node.\n if (this._errorLogProcessor) {\n enableSentryLogProcessor();\n }\n // TODO(nf): is this different than passing as properties in options?\n this._tags.forEach((v, k) => {\n if (v.scope === 'all' || v.scope === 'errors') {\n sentrySetTag(k, v.value);\n }\n });\n } else {\n log('sentry disabled');\n }\n }\n\n /**\n * Manually capture an exception.\n *\n * The default implementation uses Sentry.\n */\n captureException(err: any) {\n if (this.enabled) {\n sentryCaptureException(err);\n }\n }\n}\n", "{\n \"SENTRY_DESTINATION\": \"https://2647916221e643869965e78469479aa4@o4504012000067584.ingest.sentry.io/4504012027265029\",\n \"TELEMETRY_API_KEY\": \"B00QG6PtJJrJ0VVFe0H5a6bcUUShKyZM\",\n \"IPDATA_API_KEY\": \"73dfdecdf979c18f07d50cf841bbdd9e589f237256326ac8cca23786\",\n \"DATADOG_API_KEY\": null,\n \"DATADOG_APP_KEY\": null\n}", "//\n// Copyright 2022 DXOS.org\n//\n\n// NOTE: localStorage is not available in web workers.\nimport * as localForage from 'localforage';\n\n// import { type Platform } from '@dxos/client-services';\n// import { type InitOptions as TelemetryInitOptions } from '@dxos/telemetry';\n\nimport type { Config } from '@dxos/client';\nimport { log } from '@dxos/log';\n\nimport type { IPData } from './common';\nimport type { Mode, Observability } from '../observability';\n\nexport const OBSERVABILITY_DISABLED_KEY = 'observability-disabled';\nexport const OBSERVABILITY_GROUP_KEY = 'observability-group';\n\nexport const isObservabilityDisabled = async (namespace: string): Promise<boolean> => {\n try {\n return (await localForage.getItem(`${namespace}:${OBSERVABILITY_DISABLED_KEY}`)) === 'true';\n } catch (err) {\n log.catch('Failed to check if observability is disabled, assuming it is', err);\n return true;\n }\n};\n\nexport const storeObservabilityDisabled = async (namespace: string, value: boolean) => {\n try {\n await localForage.setItem(`${namespace}:${OBSERVABILITY_DISABLED_KEY}`, String(value));\n } catch (err) {\n log.catch('Failed to store observability disabled', err);\n }\n};\n\nexport const getObservabilityGroup = async (namespace: string): Promise<string | undefined> => {\n try {\n return (await localForage.getItem(`${namespace}:${OBSERVABILITY_GROUP_KEY}`)) ?? undefined;\n } catch (err) {\n log.catch('Failed to get observability group', err);\n }\n};\n\nexport const storeObservabilityGroup = async (namespace: string, value: string) => {\n try {\n await localForage.setItem(`${namespace}:${OBSERVABILITY_GROUP_KEY}`, value);\n } catch (err) {\n log.catch('Failed to store observability group', err);\n }\n};\n\nexport type AppObservabilityOptions = {\n namespace: string;\n config: Config;\n mode?: Mode;\n tracingEnable?: boolean;\n replayEnable?: boolean;\n // TODO(nf): options for providers?\n};\n\n// TODO(wittjosiah): Store preference for disabling observability.\n// At minimum should be stored locally (i.e., localstorage), possibly in halo preference.\n// Needs to be hooked up to settings page for user visibility.\nexport const initializeAppObservability = async ({\n namespace,\n config,\n mode = 'basic',\n tracingEnable = true,\n replayEnable = true,\n}: AppObservabilityOptions): Promise<Observability> => {\n log('initializeAppObservability', { config });\n\n /*\n const platform = (await client.services.services.SystemService?.getPlatform()) as Platform;\n if (!platform) {\n log.error('failed to get platform, could not initialize observability');\n return undefined;\n }\n */\n\n const group = (await getObservabilityGroup(namespace)) ?? undefined;\n const release = `${namespace}@${config.get('runtime.app.build.version')}`;\n const environment = config.get('runtime.app.env.DX_ENVIRONMENT');\n\n const observabilityDisabled = await isObservabilityDisabled(namespace);\n\n const { Observability } = await import('../observability');\n\n // TODO(nf): configure mode\n const observability = new Observability({\n namespace,\n group,\n mode,\n config,\n errorLog: {\n sentryInitOptions: {\n environment,\n release,\n tracing: tracingEnable,\n replay: replayEnable,\n // TODO(wittjosiah): Configure these.\n sampleRate: 1.0,\n replaySampleRate: 0.1,\n replaySampleRateOnError: 1.0,\n },\n },\n });\n\n // global kill switch\n if (observabilityDisabled) {\n observability.setMode('disabled');\n log.info('observability disabled');\n return observability;\n }\n\n try {\n const getIPData = async (config: Config): Promise<IPData | void> => {\n const IP_DATA_CACHE_TIMEOUT = 6 * 60 * 60 * 1000; // 6 hours\n type CachedIPData = {\n data: IPData;\n timestamp: number;\n };\n\n // Check cache first.\n const cachedData: null | CachedIPData = await localForage.getItem('dxos:observability:ipdata');\n if (cachedData && cachedData.timestamp > Date.now() - IP_DATA_CACHE_TIMEOUT) {\n return cachedData.data;\n }\n\n // Fetch data if not cached.\n const IPDATA_API_KEY = config.get('runtime.app.env.DX_IPDATA_API_KEY');\n if (IPDATA_API_KEY) {\n return fetch(`https://api.ipdata.co?api-key=${IPDATA_API_KEY}`)\n .then((res) => res.json())\n .then((data) => {\n // Cache data.\n localForage\n .setItem('dxos:observability:ipdata', {\n data,\n timestamp: Date.now(),\n })\n .catch((err) => observability.captureException(err));\n\n return data;\n })\n .catch((err) => observability.captureException(err));\n }\n };\n\n // TODO(nf): plugin state?\n\n // TODO(nf): should provide capability to init Sentry earlier in booting process to capture errors during initialization.\n\n observability.initialize();\n\n const ipData = await getIPData(config);\n\n ipData && observability.addIPDataTelemetryTags(ipData);\n\n if (typeof navigator !== 'undefined' && navigator.storage?.estimate) {\n setInterval(async () => {\n try {\n const storageEstimate = await navigator.storage.estimate();\n storageEstimate.usage && observability.setTag('storageUsage', storageEstimate.usage.toString(), 'telemetry');\n storageEstimate.quota && observability.setTag('storageQuota', storageEstimate.quota.toString(), 'telemetry');\n } catch (error) {\n log.warn('Failed to run estimate()', error);\n }\n }, 10e3);\n }\n } catch (err: any) {\n log.error('Failed to initialize app observability', err);\n }\n\n return observability;\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport type { Client } from '@dxos/client';\n\n// TODO(wittjosiah): Improve privacy of telemetry identifiers.\n// - Identifier should be generated client-side with no attachment to identity.\n// - Identifier can then be reset by user.\n// - Identifier can be synced via HALO to allow for correlation of events bewteen devices.\n// - Identifier should also be stored outside of HALO such that it is available immediately on startup.\nexport const getTelemetryIdentifier = (client: Client) => {\n if (!client?.initialized) {\n return undefined;\n }\n\n const identity = client.halo.identity.get();\n if (identity) {\n return identity.identityKey.truncate();\n }\n\n return undefined;\n};\n\nexport type IPData = { city: string; region: string; country: string; latitude: number; longitude: number };\n", "//\n// Copyright 2022 DXOS.org\n//\nimport yaml from 'js-yaml';\nimport { existsSync, statSync } from 'node:fs';\nimport { mkdir, readFile, writeFile } from 'node:fs/promises';\nimport { join } from 'node:path';\nimport { v4 as uuid, validate as validateUuid } from 'uuid';\n\nimport type { Config } from '@dxos/client';\nimport { log } from '@dxos/log';\n\nimport { Observability, type Mode } from '../observability';\n\n/**\n * Print observability banner once per installation.\n */\nexport const showObservabilityBanner = async (configDir: string, bannercb: (input: string) => void) => {\n const path = join(configDir, '.observability-banner-printed');\n if (existsSync(path)) {\n return;\n }\n bannercb(\n // eslint-disable-next-line no-multi-str\n 'Basic observability data will be sent to the DXOS team in order to improve the product. This includes \\\n performance metrics, error logs, and usage data. No personally identifiable information, other than your \\\n public key, is included with this data and no private data ever leaves your devices. To disable sending \\\n observability data, set the environment variable DX_DISABLE_OBSERVABILITY=true.',\n );\n\n await writeFile(path, '', 'utf-8');\n};\n\nexport const getObservabilityState = async (configDir: string): Promise<PersistentObservabilityState> => {\n // check whether configDir exists and if it's a directory\n\n if (existsSync(configDir)) {\n if (!statSync(configDir).isDirectory()) {\n throw new Error(`Config directory ${configDir} exists but is not a directory`);\n }\n } else {\n await mkdir(configDir, { recursive: true });\n }\n\n const idPath = join(configDir, 'observability.yml');\n if (existsSync(idPath)) {\n const context = await readFile(idPath, 'utf-8');\n return validate(context) ?? initializeState(idPath);\n }\n\n return initializeState(idPath);\n};\n\nexport type TelemetryContext = {\n mode: Mode;\n installationId?: string;\n group?: string;\n timezone: string;\n runtime: string;\n os: string;\n arch: string;\n ci: boolean;\n [key: string]: any;\n};\n\nexport type PersistentObservabilityState = {\n installationId: string;\n group?: string;\n mode: Mode;\n};\n\n// create initial state and write to file, using environment variables to override defaults.\nconst initializeState = async (idPath: string): Promise<PersistentObservabilityState> => {\n // TODO(nf): read initial values from config or seed file\n const observabilityState = {\n installationId: uuid(),\n group: process.env.DX_OBSERVABILITY_GROUP ?? undefined,\n mode: (process.env.DX_DISABLE_OBSERVABILITY ? 'disabled' : process.env.DX_OBSERVABILITY_MODE ?? 'basic') as Mode,\n };\n\n await writeFile(\n idPath,\n '# This file is automatically generated by the @dxos/cli.\\n' + yaml.dump(observabilityState),\n 'utf-8',\n );\n\n return observabilityState;\n};\n\nconst validate = (contextString: string) => {\n const context = yaml.load(contextString) as PersistentObservabilityState;\n if (Boolean(context.installationId) && validateUuid(context.installationId!)) {\n return {\n ...context,\n mode: process.env.DX_DISABLE_OBSERVABILITY ? 'disabled' : context.mode ?? 'basic',\n };\n }\n};\n\nexport type NodeObservabilityOptions = {\n installationId: string;\n group?: string;\n namespace: string;\n config: Config;\n mode?: Mode;\n tracingEnable?: boolean;\n replayEnable?: boolean;\n // TODO(nf): options for providers?\n};\n\nexport const initializeNodeObservability = async ({\n namespace,\n config,\n installationId,\n group,\n mode = 'basic',\n tracingEnable = true,\n replayEnable = true,\n}: NodeObservabilityOptions): Promise<Observability> => {\n log('initializeCliObservability', { config });\n\n const release = `${namespace}@${config.get('runtime.app.build.version')}`;\n const environment = config.get('runtime.app.env.DX_ENVIRONMENT');\n\n const observability = new Observability({\n namespace,\n group,\n mode,\n errorLog: {\n sentryInitOptions: {\n environment,\n release,\n // TODO(wittjosiah): Configure this.\n sampleRate: 1.0,\n },\n logProcessor: true,\n },\n });\n\n observability.setTag('installationId', installationId);\n\n const IPDATA_API_KEY = config.get('runtime.app.env.DX_IPDATA_API_KEY');\n try {\n const res = await fetch(`https://api.ipdata.co/?api-key=${IPDATA_API_KEY}`);\n const ipData = await res.json();\n ipData && observability.addIPDataTelemetryTags(ipData);\n } catch (err) {\n observability?.captureException(err);\n }\n return observability;\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport type { Space } from '@dxos/client-protocol';\n\nexport type MapSpacesOptions = {\n verbose?: boolean;\n truncateKeys?: boolean;\n};\n\nexport const mapSpaces = (spaces: Space[], options: MapSpacesOptions = { verbose: false, truncateKeys: false }) => {\n return spaces.map((space) => {\n // TODO(burdon): Factor out.\n // TODO(burdon): Agent needs to restart before `ready` is available.\n const { open, ready } = space.internal.data.metrics ?? {};\n const startup = open && ready && ready.getTime() - open.getTime();\n\n // TODO(burdon): Get feeds from client-services if verbose (factor out from devtools/diagnostics).\n // const host = client.services.services.DevtoolsHost!;\n const pipeline = space.internal.data.pipeline;\n const startDataMutations = pipeline?.currentEpoch?.subject.assertion.timeframe.totalMessages() ?? 0;\n const epoch = pipeline?.currentEpoch?.subject.assertion.number;\n // const appliedEpoch = pipeline?.appliedEpoch?.subject.assertion.number;\n const currentDataMutations = pipeline?.currentDataTimeframe?.totalMessages() ?? 0;\n const totalDataMutations = pipeline?.targetDataTimeframe?.totalMessages() ?? 0;\n\n return {\n // TODO(nf): truncate keys for DD?\n key: space.key.truncate(),\n open: space.isOpen,\n members: space.members.get().length,\n objects: space.db.query().objects.length,\n startup,\n epoch,\n // appliedEpoch,\n startDataMutations,\n currentDataMutations,\n totalDataMutations,\n\n // TODO(burdon): Negative?\n progress: (\n Math.min(Math.abs((currentDataMutations - startDataMutations) / (totalDataMutations - startDataMutations)), 1) *\n 100\n ).toFixed(0),\n };\n });\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport type { Client } from '@dxos/client';\n\nimport { getTelemetryIdentifier } from './common';\nimport type { Observability } from '../observability';\n\nlet lastFocusEvent = new Date();\nlet totalTime = 0;\n\nexport const setupTelemetryListeners = (namespace: string, client: Client, observability: Observability) => {\n const clickCallback = (event: any) => {\n if (observability.group === 'dxos' && event.target && !event.target.id) {\n // TODO(wittjosiah): Use @dxos/log so these can be filtered.\n console.warn('Click event on element without id:', event.target);\n }\n\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.click`,\n properties: {\n href: window.location.href,\n id: (event.target as HTMLElement)?.id,\n path: (event.path as HTMLElement[])\n ?.filter((el) => Boolean(el.tagName))\n .map((el) => `${el.tagName.toLowerCase()}${el.id ? `#${el.id}` : ''}`)\n .reverse()\n .join('>'),\n },\n }),\n );\n };\n\n const focusCallback = () => {\n const now = new Date();\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.focus`,\n properties: {\n href: window.location.href,\n timeAway: now.getTime() - lastFocusEvent.getTime(),\n },\n }),\n );\n lastFocusEvent = now;\n };\n\n const blurCallback = () => {\n const now = new Date();\n const timeSpent = now.getTime() - lastFocusEvent.getTime();\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.blur`,\n properties: {\n href: window.location.href,\n timeSpent,\n },\n }),\n );\n lastFocusEvent = now;\n totalTime = totalTime + timeSpent;\n };\n\n const unloadCallback = () => {\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.page.unload`,\n properties: {\n href: window.location.href,\n timeSpent: totalTime,\n },\n }),\n );\n };\n\n const errorCallback = (event: ErrorEvent) => {\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.error`,\n properties: {\n href: window.location.href,\n message: event.message,\n filename: event.filename,\n stack: (event.error as Error).stack,\n },\n }),\n );\n };\n\n window.addEventListener('click', clickCallback, true);\n window.addEventListener('focus', focusCallback);\n window.addEventListener('blur', blurCallback);\n window.addEventListener('beforeunload', unloadCallback);\n window.addEventListener('error', errorCallback);\n\n return () => {\n window.removeEventListener('click', clickCallback, true);\n window.removeEventListener('focus', focusCallback);\n window.removeEventListener('blur', blurCallback);\n window.removeEventListener('beforeunload', unloadCallback);\n window.removeEventListener('error', errorCallback);\n };\n};\n"],
|
|
5
|
-
"mappings": "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",
|
|
6
|
-
"names": ["Event", "scheduleTaskInterval", "Context", "invariant", "log", "ConnectionState", "DeviceKind", "Platform", "isNode", "localForage", "log", "OBSERVABILITY_DISABLED_KEY", "OBSERVABILITY_GROUP_KEY", "isObservabilityDisabled", "namespace", "getItem", "err", "catch", "storeObservabilityDisabled", "value", "setItem", "String", "getObservabilityGroup", "undefined", "storeObservabilityGroup", "initializeAppObservability", "config", "mode", "tracingEnable", "replayEnable", "group", "release", "get", "environment", "observabilityDisabled", "Observability", "observability", "errorLog", "sentryInitOptions", "tracing", "replay", "sampleRate", "replaySampleRate", "replaySampleRateOnError", "setMode", "info", "getIPData", "IP_DATA_CACHE_TIMEOUT", "cachedData", "timestamp", "Date", "now", "data", "IPDATA_API_KEY", "fetch", "then", "res", "json", "captureException", "initialize", "ipData", "addIPDataTelemetryTags", "navigator", "storage", "estimate", "setInterval", "storageEstimate", "usage", "setTag", "toString", "quota", "error", "warn", "getTelemetryIdentifier", "client", "initialized", "undefined", "identity", "halo", "get", "identityKey", "truncate", "yaml", "existsSync", "statSync", "mkdir", "readFile", "writeFile", "join", "v4", "uuid", "validate", "validateUuid", "log", "showObservabilityBanner", "configDir", "bannercb", "path", "join", "existsSync", "writeFile", "getObservabilityState", "statSync", "isDirectory", "Error", "mkdir", "recursive", "idPath", "context", "readFile", "validate", "initializeState", "observabilityState", "installationId", "uuid", "group", "process", "env", "DX_OBSERVABILITY_GROUP", "undefined", "mode", "DX_DISABLE_OBSERVABILITY", "DX_OBSERVABILITY_MODE", "yaml", "dump", "contextString", "load", "Boolean", "validateUuid", "initializeNodeObservability", "namespace", "config", "tracingEnable", "replayEnable", "log", "release", "get", "environment", "observability", "Observability", "errorLog", "sentryInitOptions", "sampleRate", "logProcessor", "setTag", "IPDATA_API_KEY", "res", "fetch", "ipData", "json", "addIPDataTelemetryTags", "err", "captureException", "mapSpaces", "spaces", "options", "verbose", "truncateKeys", "map", "space", "open", "ready", "internal", "data", "metrics", "startup", "getTime", "pipeline", "startDataMutations", "currentEpoch", "subject", "assertion", "timeframe", "totalMessages", "epoch", "number", "currentDataMutations", "currentDataTimeframe", "totalDataMutations", "targetDataTimeframe", "key", "truncate", "isOpen", "members", "get", "length", "objects", "db", "query", "progress", "Math", "min", "abs", "toFixed", "lastFocusEvent", "Date", "totalTime", "setupTelemetryListeners", "namespace", "client", "observability", "clickCallback", "event", "group", "target", "id", "
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Event, scheduleTaskInterval } from '@dxos/async';\nimport { type Client, type Config } from '@dxos/client';\nimport { type Space } from '@dxos/client-protocol';\nimport { Context } from '@dxos/context';\nimport { invariant } from '@dxos/invariant';\nimport { log } from '@dxos/log';\nimport { ConnectionState } from '@dxos/network-manager';\nimport { DeviceKind, type NetworkStatus, Platform } from '@dxos/protocols/proto/dxos/client/services';\nimport { isNode } from '@dxos/util';\n\nimport buildSecrets from './cli-observability-secrets.json';\nimport { DatadogMetrics } from './datadog';\nimport { type IPData, getTelemetryIdentifier, mapSpaces } from './helpers';\nimport { SegmentTelemetry, type EventOptions, type PageOptions } from './segment';\nimport {\n captureException as sentryCaptureException,\n enableSentryLogProcessor,\n configureTracing as sentryConfigureTracing,\n init as sentryInit,\n type InitOptions,\n setTag as sentrySetTag,\n} from './sentry';\n\nconst SPACE_METRICS_MIN_INTERVAL = 1000 * 60;\n// const DATADOG_IDLE_INTERVAL = 1000 * 60 * 5;\nconst DATADOG_IDLE_INTERVAL = 1000 * 60 * 1;\n\n// Secrets? EnvironmentConfig?\n\nexport type ObservabilitySecrets = {\n DX_ENVIRONMENT: string | null;\n DX_RELEASE: string | null;\n SENTRY_DESTINATION: string | null;\n TELEMETRY_API_KEY: string | null;\n IPDATA_API_KEY: string | null;\n DATADOG_API_KEY: string | null;\n DATADOG_APP_KEY: string | null;\n};\n\nexport type Mode = 'basic' | 'full' | 'disabled';\nexport type TagScope = 'errors' | 'telemetry' | 'metrics' | 'all';\n\nexport type ObservabilityOptions = {\n /// The webapp (e.g. 'composer.dxos.org'), 'cli', or 'agent'.\n namespace: string;\n // TODO(nf): make platform a required extension?\n // platform: Platform;\n config?: Config;\n secrets?: Record<string, string>;\n group?: string;\n mode?: Mode;\n\n telemetry?: {\n batchSize?: number;\n };\n\n errorLog?: {\n sentryInitOptions?: InitOptions;\n logProcessor?: boolean;\n };\n};\n\n/*\n * Observability provides a common interface for error logging, metrics, and telemetry.\n * It currently provides these capabilities using Sentry, Datadog, and Segment.\n */\nexport class Observability {\n // TODO(wittjosiah): Generic metrics interface.\n private _metrics?: DatadogMetrics;\n // TODO(wittjosiah): Generic telemetry interface.\n private _telemetryBatchSize: number;\n private _telemetry?: SegmentTelemetry;\n // TODO(wittjosiah): Generic error logging interface.\n private _errorReportingOptions?: InitOptions;\n private _errorLogProcessor: boolean;\n\n private _secrets: ObservabilitySecrets;\n private _namespace: string;\n private _config?: Config;\n private _mode: Mode = 'disabled';\n private _group?: string;\n // TODO(nf): accept upstream context?\n private _ctx = new Context();\n private _tags = new Map<string, { value: string; scope: TagScope }>();\n\n // TODO(nf): make platform a required extension?\n constructor({ namespace, config, secrets, group, mode, telemetry, errorLog }: ObservabilityOptions) {\n this._namespace = namespace;\n this._config = config;\n this._mode = mode ?? 'disabled';\n this._group = group;\n this._secrets = this._loadSecrets(config, secrets);\n this._telemetryBatchSize = telemetry?.batchSize ?? 30;\n this._errorReportingOptions = errorLog?.sentryInitOptions;\n this._errorLogProcessor = errorLog?.logProcessor ?? false;\n\n if (this._group) {\n this.setTag('group', this._group);\n }\n this.setTag('namespace', this._namespace);\n\n if (this._mode === 'full') {\n // TODO(nf): set group and hostname?\n }\n }\n\n private _loadSecrets(config: Config | undefined, secrets?: Record<string, string>) {\n if (isNode()) {\n const mergedSecrets = {\n ...(buildSecrets as ObservabilitySecrets),\n ...secrets,\n };\n\n process.env.DX_ENVIRONMENT && (mergedSecrets.DX_ENVIRONMENT = process.env.DX_ENVIRONMENT);\n process.env.DX_RELEASE && (mergedSecrets.DX_RELEASE = process.env.DX_RELEASE);\n process.env.SENTRY_DESTINATION && (mergedSecrets.SENTRY_DESTINATION = process.env.SENTRY_DESTINATION);\n process.env.TELEMETRY_API_KEY && (mergedSecrets.TELEMETRY_API_KEY = process.env.TELEMETRY_API_KEY);\n process.env.IPDATA_API_KEY && (mergedSecrets.IPDATA_API_KEY = process.env.IPDATA_API_KEY);\n process.env.DATADOG_API_KEY && (mergedSecrets.DATADOG_API_KEY = process.env.DATADOG_API_KEY);\n process.env.DATADOG_APP_KEY && (mergedSecrets.DATADOG_APP_KEY = process.env.DATADOG_APP_KEY);\n\n return mergedSecrets;\n } else {\n log('config', { rtc: this._secrets, config });\n return {\n DX_ENVIRONMENT: config?.get('runtime.app.env.DX_ENVIRONMENT'),\n DX_RELEASE: config?.get('runtime.app.env.DX_RELEASE'),\n SENTRY_DESTINATION: config?.get('runtime.app.env.DX_SENTRY_DESTINATION'),\n TELEMETRY_API_KEY: config?.get('runtime.app.env.DX_TELEMETRY_API_KEY'),\n IPDATA_API_KEY: config?.get('runtime.app.env.DX_IPDATA_API_KEY'),\n DATADOG_API_KEY: config?.get('runtime.app.env.DX_DATADOG_API_KEY'),\n DATADOG_APP_KEY: config?.get('runtime.app.env.DX_DATADOG_APP_KEY'),\n ...secrets,\n };\n }\n }\n\n initialize() {\n this._initMetrics();\n this._initTelemetry();\n this._initErrorLogs();\n }\n\n async close() {\n await this._ctx.dispose();\n\n // TODO(wittjosiah): Remove telemetry, etc. scripts.\n }\n\n setMode(mode: Mode) {\n this._mode = mode;\n }\n\n get mode() {\n return this._mode;\n }\n\n get group() {\n return this._group;\n }\n\n get enabled() {\n return this._mode !== 'disabled';\n }\n\n //\n // Tags\n //\n\n setTag(key: string, value: string, scope?: TagScope) {\n if (this.enabled && (scope === undefined || scope === 'all' || scope === 'errors')) {\n sentrySetTag(key, value);\n }\n if (!scope) {\n scope = 'all';\n }\n this._tags.set(key, { value, scope });\n }\n\n getTag(key: string) {\n return this._tags.get(key);\n }\n\n addIPDataTelemetryTags = (ipData: IPData) => {\n this.setTag('city', ipData.city, 'telemetry');\n this.setTag('region', ipData.region, 'telemetry');\n this.setTag('country', ipData.country, 'telemetry');\n ipData.latitude && this.setTag('latitude', ipData.latitude.toString(), 'telemetry');\n ipData.longitude && this.setTag('longitude', ipData.longitude.toString(), 'telemetry');\n };\n\n // TODO(wittjosiah): Improve privacy of telemetry identifiers. See `getTelemetryIdentifier`.\n async setIdentityTags(client: Client) {\n client.services.services.IdentityService!.queryIdentity().subscribe((idqr) => {\n if (!idqr?.identity?.identityKey) {\n log('empty response from identity service', { idqr });\n return;\n }\n\n this.setTag('identityKey', idqr.identity.identityKey.truncate());\n });\n\n client.services.services.DevicesService!.queryDevices().subscribe((dqr) => {\n if (!dqr || !dqr.devices || dqr.devices.length === 0) {\n log('empty response from device service', { device: dqr });\n return;\n }\n invariant(dqr, 'empty response from device service');\n\n const thisDevice = dqr.devices.find((device) => device.kind === DeviceKind.CURRENT);\n if (!thisDevice) {\n log('no current device', { device: dqr });\n return;\n }\n this.setTag('deviceKey', thisDevice.deviceKey.truncate());\n if (thisDevice.profile?.label) {\n this.setTag('deviceProfile', thisDevice.profile.label);\n }\n });\n }\n\n //\n // Metrics\n //\n\n private _initMetrics() {\n if (this.enabled && this._secrets.DATADOG_API_KEY) {\n this._metrics = new DatadogMetrics({\n apiKey: this._secrets.DATADOG_API_KEY,\n getTags: () =>\n Object.fromEntries(\n Array.from(this._tags)\n .filter(([key, value]) => {\n return value.scope === 'all' || value.scope === 'metrics';\n })\n .map(([key, value]) => [key, value.value]),\n ),\n // TODO(nf): move/refactor from telementryContext, needed to read CORS proxy\n config: this._config!,\n });\n } else {\n log('datadog disabled');\n }\n }\n\n /**\n * Gauge metric.\n *\n * The default implementation uses Datadog.\n */\n gauge(name: string, value: number | any, extraTags?: any) {\n this._metrics?.gauge(name, value, extraTags);\n }\n\n // TODO(nf): Refactor into ObservabilityExtensions.\n\n startNetworkMetrics(client: Client) {\n const updateSignalMetrics = new Event<NetworkStatus>();\n\n // const lcsh = (csp as LocalClientServices).host;\n updateSignalMetrics.on(this._ctx, async (networkStatus) => {\n log('send signal metrics');\n (networkStatus.signaling as NetworkStatus.Signal[]).forEach(({ server, state }) => {\n this.gauge('dxos.client.network.signal.connectionState', state, { server });\n });\n\n let swarmCount = 0;\n const connectionStates = new Map<string, number>();\n for (const state in ConnectionState) {\n connectionStates.set(state, 0);\n }\n\n let totalReadBufferSize = 0;\n let totalWriteBufferSize = 0;\n let totalChannelBufferSize = 0;\n\n networkStatus.connectionInfo?.forEach((connectionInfo) => {\n swarmCount++;\n\n for (const conn of connectionInfo.connections ?? []) {\n connectionStates.set(conn.state, (connectionStates.get(conn.state) ?? 0) + 1);\n totalReadBufferSize += conn.readBufferSize ?? 0;\n totalWriteBufferSize += conn.writeBufferSize ?? 0;\n\n for (const stream of conn.streams ?? []) {\n totalChannelBufferSize += stream.writeBufferSize ?? 0;\n }\n }\n\n this.gauge('dxos.client.network.swarm.count', swarmCount);\n for (const state in ConnectionState) {\n this.gauge('dxos.client.network.connection.count', connectionStates.get(state) ?? 0, { state });\n }\n this.gauge('dxox.client.network.totalReadBufferSize', totalReadBufferSize);\n this.gauge('dxos.client.network.totalWriteBufferSize', totalWriteBufferSize);\n this.gauge('dxos.client.network.totalChannelBufferSize', totalChannelBufferSize);\n });\n });\n\n client.services.services.NetworkService?.queryStatus().subscribe((networkStatus) => {\n updateSignalMetrics.emit(networkStatus);\n });\n\n // scheduleTaskInterval(ctx, async () => updateSignalMetrics.emit(), DATADOG_IDLE_INTERVAL);\n }\n\n startSpacesMetrics(client: Client, namespace: string) {\n const spaces = client.spaces.get();\n const subscriptions = new Map<string, { unsubscribe: () => void }>();\n this._ctx.onDispose(() => subscriptions.forEach((subscription) => subscription.unsubscribe()));\n\n const updateSpaceMetrics = new Event<Space>().debounce(SPACE_METRICS_MIN_INTERVAL);\n updateSpaceMetrics.on(this._ctx, async () => {\n log('send space update');\n for (const data of mapSpaces(spaces, { truncateKeys: true })) {\n // Metrics\n this.gauge('dxos.client.space.members', data.members, { key: data.key });\n this.gauge('dxos.client.space.objects', data.objects, { key: data.key });\n this.gauge('dxos.client.space.epoch', data.epoch, { key: data.key });\n this.gauge('dxos.client.space.currentDataMutations', data.currentDataMutations, { key: data.key });\n\n // Telemetry\n this.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.space.update`,\n properties: data,\n });\n }\n });\n\n const subscribeToSpaceUpdate = (space: Space) =>\n space.pipeline.subscribe({\n next: () => {\n updateSpaceMetrics.emit();\n },\n });\n\n spaces.forEach((space) => {\n subscriptions.set(space.key.toHex(), subscribeToSpaceUpdate(space));\n });\n\n client.spaces.subscribe({\n next: async (spaces) => {\n spaces\n .filter((space) => !subscriptions.has(space.key.toHex()))\n .forEach((space) => {\n subscriptions.set(space.key.toHex(), subscribeToSpaceUpdate(space));\n });\n },\n });\n\n scheduleTaskInterval(this._ctx, async () => updateSpaceMetrics.emit(), DATADOG_IDLE_INTERVAL);\n }\n\n async startRuntimeMetrics(client: Client, frequency: number = DATADOG_IDLE_INTERVAL) {\n const platform = await client.services.services.SystemService?.getPlatform();\n invariant(platform, 'platform is required');\n\n this.setTag('platform_type', Platform.PLATFORM_TYPE[platform.type as number].toLowerCase());\n if (this._mode === 'full') {\n // platform[foo] does not work?\n if (platform.platform) {\n this.setTag('platform', platform.platform);\n }\n if (platform.arch) {\n this.setTag('arch', platform.arch);\n }\n if (platform.runtime) {\n this.setTag('runtime', platform.runtime);\n }\n }\n scheduleTaskInterval(\n this._ctx,\n async () => {\n log('platform');\n client.services.services.SystemService?.getPlatform()\n .then((platform) => {\n log('platform', { platform });\n if (platform.memory) {\n this.gauge('dxos.client.runtime.rss', platform.memory.rss);\n this.gauge('dxos.client.runtime.heapTotal', platform.memory.heapTotal);\n this.gauge('dxos.client.runtime.heapUsed', platform.memory.heapUsed);\n }\n })\n .catch((error) => log('platform error', { error }));\n },\n frequency,\n );\n }\n\n //\n // Telemetry\n //\n\n private _initTelemetry() {\n if (this._secrets.TELEMETRY_API_KEY && this._mode !== 'disabled') {\n this._telemetry = new SegmentTelemetry({\n apiKey: this._secrets.TELEMETRY_API_KEY,\n batchSize: this._telemetryBatchSize,\n getTags: () =>\n Object.fromEntries(\n Array.from(this._tags)\n .filter(([key, value]) => {\n return value.scope === 'all' || value.scope === 'telemetry';\n })\n .map(([key, value]) => [key, value.value]),\n ),\n });\n } else {\n log('segment disabled');\n }\n }\n\n /**\n * A telemetry event.\n *\n * The default implementation uses Segment.\n */\n event(options: EventOptions) {\n this._telemetry?.event(options);\n }\n\n /**\n * A telemetry page view.\n *\n * The default implementation uses Segment.\n */\n page(options: PageOptions) {\n this._telemetry?.page(options);\n }\n\n //\n // Error Logs\n //\n\n private _initErrorLogs() {\n if (this._secrets.SENTRY_DESTINATION && this._mode !== 'disabled') {\n // TODO(nf): refactor package into this one?\n log.info('Initializing Sentry', {\n dest: this._secrets.SENTRY_DESTINATION,\n options: this._errorReportingOptions,\n });\n sentryInit({\n ...this._errorReportingOptions,\n destination: this._secrets.SENTRY_DESTINATION,\n scrubFilenames: this._mode !== 'full',\n });\n if (this._errorReportingOptions?.tracing) {\n sentryConfigureTracing();\n }\n // TODO(nf): set platform at instantiation? needed for node.\n if (this._errorLogProcessor) {\n enableSentryLogProcessor();\n }\n // TODO(nf): is this different than passing as properties in options?\n this._tags.forEach((v, k) => {\n if (v.scope === 'all' || v.scope === 'errors') {\n sentrySetTag(k, v.value);\n }\n });\n } else {\n log('sentry disabled');\n }\n }\n\n /**\n * Manually capture an exception.\n *\n * The default implementation uses Sentry.\n */\n captureException(err: any) {\n if (this.enabled) {\n sentryCaptureException(err);\n }\n }\n}\n", "{\n \"SENTRY_DESTINATION\": \"https://2647916221e643869965e78469479aa4@o4504012000067584.ingest.sentry.io/4504012027265029\",\n \"TELEMETRY_API_KEY\": \"B00QG6PtJJrJ0VVFe0H5a6bcUUShKyZM\",\n \"IPDATA_API_KEY\": \"73dfdecdf979c18f07d50cf841bbdd9e589f237256326ac8cca23786\",\n \"DATADOG_API_KEY\": null,\n \"DATADOG_APP_KEY\": null\n}", "//\n// Copyright 2022 DXOS.org\n//\n\n// NOTE: localStorage is not available in web workers.\nimport * as localForage from 'localforage';\n\n// import { type Platform } from '@dxos/client-services';\n// import { type InitOptions as TelemetryInitOptions } from '@dxos/telemetry';\n\nimport type { Config } from '@dxos/client';\nimport { log } from '@dxos/log';\n\nimport type { IPData } from './common';\nimport type { Mode, Observability } from '../observability';\n\nexport const OBSERVABILITY_DISABLED_KEY = 'observability-disabled';\nexport const OBSERVABILITY_GROUP_KEY = 'observability-group';\n\nexport const isObservabilityDisabled = async (namespace: string): Promise<boolean> => {\n try {\n return (await localForage.getItem(`${namespace}:${OBSERVABILITY_DISABLED_KEY}`)) === 'true';\n } catch (err) {\n log.catch('Failed to check if observability is disabled, assuming it is', err);\n return true;\n }\n};\n\nexport const storeObservabilityDisabled = async (namespace: string, value: boolean) => {\n try {\n await localForage.setItem(`${namespace}:${OBSERVABILITY_DISABLED_KEY}`, String(value));\n } catch (err) {\n log.catch('Failed to store observability disabled', err);\n }\n};\n\nexport const getObservabilityGroup = async (namespace: string): Promise<string | undefined> => {\n try {\n return (await localForage.getItem(`${namespace}:${OBSERVABILITY_GROUP_KEY}`)) ?? undefined;\n } catch (err) {\n log.catch('Failed to get observability group', err);\n }\n};\n\nexport const storeObservabilityGroup = async (namespace: string, value: string) => {\n try {\n await localForage.setItem(`${namespace}:${OBSERVABILITY_GROUP_KEY}`, value);\n } catch (err) {\n log.catch('Failed to store observability group', err);\n }\n};\n\nexport type AppObservabilityOptions = {\n namespace: string;\n config: Config;\n mode?: Mode;\n tracingEnable?: boolean;\n replayEnable?: boolean;\n // TODO(nf): options for providers?\n};\n\n// TODO(wittjosiah): Store preference for disabling observability.\n// At minimum should be stored locally (i.e., localstorage), possibly in halo preference.\n// Needs to be hooked up to settings page for user visibility.\nexport const initializeAppObservability = async ({\n namespace,\n config,\n mode = 'basic',\n tracingEnable = true,\n replayEnable = true,\n}: AppObservabilityOptions): Promise<Observability> => {\n log('initializeAppObservability', { config });\n\n /*\n const platform = (await client.services.services.SystemService?.getPlatform()) as Platform;\n if (!platform) {\n log.error('failed to get platform, could not initialize observability');\n return undefined;\n }\n */\n\n const group = (await getObservabilityGroup(namespace)) ?? undefined;\n const release = `${namespace}@${config.get('runtime.app.build.version')}`;\n const environment = config.get('runtime.app.env.DX_ENVIRONMENT');\n\n const observabilityDisabled = await isObservabilityDisabled(namespace);\n\n const { Observability } = await import('../observability');\n\n // TODO(nf): configure mode\n const observability = new Observability({\n namespace,\n group,\n mode,\n config,\n errorLog: {\n sentryInitOptions: {\n environment,\n release,\n tracing: tracingEnable,\n replay: replayEnable,\n // TODO(wittjosiah): Configure these.\n sampleRate: 1.0,\n replaySampleRate: 0.1,\n replaySampleRateOnError: 1.0,\n },\n },\n });\n\n // global kill switch\n if (observabilityDisabled) {\n observability.setMode('disabled');\n log.info('observability disabled');\n return observability;\n }\n\n try {\n const getIPData = async (config: Config): Promise<IPData | void> => {\n const IP_DATA_CACHE_TIMEOUT = 6 * 60 * 60 * 1000; // 6 hours\n type CachedIPData = {\n data: IPData;\n timestamp: number;\n };\n\n // Check cache first.\n const cachedData: null | CachedIPData = await localForage.getItem('dxos:observability:ipdata');\n if (cachedData && cachedData.timestamp > Date.now() - IP_DATA_CACHE_TIMEOUT) {\n return cachedData.data;\n }\n\n // Fetch data if not cached.\n const IPDATA_API_KEY = config.get('runtime.app.env.DX_IPDATA_API_KEY');\n if (IPDATA_API_KEY) {\n return fetch(`https://api.ipdata.co?api-key=${IPDATA_API_KEY}`)\n .then((res) => res.json())\n .then((data) => {\n // Cache data.\n localForage\n .setItem('dxos:observability:ipdata', {\n data,\n timestamp: Date.now(),\n })\n .catch((err) => observability.captureException(err));\n\n return data;\n })\n .catch((err) => observability.captureException(err));\n }\n };\n\n // TODO(nf): plugin state?\n\n // TODO(nf): should provide capability to init Sentry earlier in booting process to capture errors during initialization.\n\n observability.initialize();\n\n const ipData = await getIPData(config);\n\n ipData && observability.addIPDataTelemetryTags(ipData);\n\n if (typeof navigator !== 'undefined' && navigator.storage?.estimate) {\n setInterval(async () => {\n try {\n const storageEstimate = await navigator.storage.estimate();\n storageEstimate.usage && observability.setTag('storageUsage', storageEstimate.usage.toString(), 'telemetry');\n storageEstimate.quota && observability.setTag('storageQuota', storageEstimate.quota.toString(), 'telemetry');\n } catch (error) {\n log.warn('Failed to run estimate()', error);\n }\n }, 10e3);\n }\n } catch (err: any) {\n log.error('Failed to initialize app observability', err);\n }\n\n return observability;\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport type { Client } from '@dxos/client';\n\n// TODO(wittjosiah): Improve privacy of telemetry identifiers.\n// - Identifier should be generated client-side with no attachment to identity.\n// - Identifier can then be reset by user.\n// - Identifier can be synced via HALO to allow for correlation of events bewteen devices.\n// - Identifier should also be stored outside of HALO such that it is available immediately on startup.\nexport const getTelemetryIdentifier = (client: Client) => {\n if (!client?.initialized) {\n return undefined;\n }\n\n const identity = client.halo.identity.get();\n if (identity) {\n return identity.identityKey.truncate();\n }\n\n return undefined;\n};\n\nexport type IPData = { city: string; region: string; country: string; latitude: number; longitude: number };\n", "//\n// Copyright 2022 DXOS.org\n//\nimport yaml from 'js-yaml';\nimport { existsSync, statSync } from 'node:fs';\nimport { mkdir, readFile, writeFile } from 'node:fs/promises';\nimport { join } from 'node:path';\nimport { v4 as uuid, validate as validateUuid } from 'uuid';\n\nimport type { Config } from '@dxos/client';\nimport { log } from '@dxos/log';\n\nimport { Observability, type Mode } from '../observability';\n\n/**\n * Print observability banner once per installation.\n */\nexport const showObservabilityBanner = async (configDir: string, bannercb: (input: string) => void) => {\n const path = join(configDir, '.observability-banner-printed');\n if (existsSync(path)) {\n return;\n }\n bannercb(\n // eslint-disable-next-line no-multi-str\n 'Basic observability data will be sent to the DXOS team in order to improve the product. This includes \\\n performance metrics, error logs, and usage data. No personally identifiable information, other than your \\\n public key, is included with this data and no private data ever leaves your devices. To disable sending \\\n observability data, set the environment variable DX_DISABLE_OBSERVABILITY=true.',\n );\n\n await writeFile(path, '', 'utf-8');\n};\n\nexport const getObservabilityState = async (configDir: string): Promise<PersistentObservabilityState> => {\n // check whether configDir exists and if it's a directory\n\n if (existsSync(configDir)) {\n if (!statSync(configDir).isDirectory()) {\n throw new Error(`Config directory ${configDir} exists but is not a directory`);\n }\n } else {\n await mkdir(configDir, { recursive: true });\n }\n\n const idPath = join(configDir, 'observability.yml');\n if (existsSync(idPath)) {\n const context = await readFile(idPath, 'utf-8');\n return validate(context) ?? initializeState(idPath);\n }\n\n return initializeState(idPath);\n};\n\nexport type TelemetryContext = {\n mode: Mode;\n installationId?: string;\n group?: string;\n timezone: string;\n runtime: string;\n os: string;\n arch: string;\n ci: boolean;\n [key: string]: any;\n};\n\nexport type PersistentObservabilityState = {\n installationId: string;\n group?: string;\n mode: Mode;\n};\n\n// create initial state and write to file, using environment variables to override defaults.\nconst initializeState = async (idPath: string): Promise<PersistentObservabilityState> => {\n // TODO(nf): read initial values from config or seed file\n const observabilityState = {\n installationId: uuid(),\n group: process.env.DX_OBSERVABILITY_GROUP ?? undefined,\n mode: (process.env.DX_DISABLE_OBSERVABILITY ? 'disabled' : process.env.DX_OBSERVABILITY_MODE ?? 'basic') as Mode,\n };\n\n await writeFile(\n idPath,\n '# This file is automatically generated by the @dxos/cli.\\n' + yaml.dump(observabilityState),\n 'utf-8',\n );\n\n return observabilityState;\n};\n\nconst validate = (contextString: string) => {\n const context = yaml.load(contextString) as PersistentObservabilityState;\n if (Boolean(context.installationId) && validateUuid(context.installationId!)) {\n return {\n ...context,\n mode: process.env.DX_DISABLE_OBSERVABILITY ? 'disabled' : context.mode ?? 'basic',\n };\n }\n};\n\nexport type NodeObservabilityOptions = {\n installationId: string;\n group?: string;\n namespace: string;\n config: Config;\n mode?: Mode;\n tracingEnable?: boolean;\n replayEnable?: boolean;\n // TODO(nf): options for providers?\n};\n\nexport const initializeNodeObservability = async ({\n namespace,\n config,\n installationId,\n group,\n mode = 'basic',\n tracingEnable = true,\n replayEnable = true,\n}: NodeObservabilityOptions): Promise<Observability> => {\n log('initializeCliObservability', { config });\n\n const release = `${namespace}@${config.get('runtime.app.build.version')}`;\n const environment = config.get('runtime.app.env.DX_ENVIRONMENT');\n\n const observability = new Observability({\n namespace,\n group,\n mode,\n errorLog: {\n sentryInitOptions: {\n environment,\n release,\n // TODO(wittjosiah): Configure this.\n sampleRate: 1.0,\n },\n logProcessor: true,\n },\n });\n\n observability.setTag('installationId', installationId);\n\n const IPDATA_API_KEY = config.get('runtime.app.env.DX_IPDATA_API_KEY');\n try {\n const res = await fetch(`https://api.ipdata.co/?api-key=${IPDATA_API_KEY}`);\n const ipData = await res.json();\n ipData && observability.addIPDataTelemetryTags(ipData);\n } catch (err) {\n observability?.captureException(err);\n }\n return observability;\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport type { Space } from '@dxos/client-protocol';\n\nexport type MapSpacesOptions = {\n verbose?: boolean;\n truncateKeys?: boolean;\n};\n\nexport const mapSpaces = (spaces: Space[], options: MapSpacesOptions = { verbose: false, truncateKeys: false }) => {\n return spaces.map((space) => {\n // TODO(burdon): Factor out.\n // TODO(burdon): Agent needs to restart before `ready` is available.\n const { open, ready } = space.internal.data.metrics ?? {};\n const startup = open && ready && ready.getTime() - open.getTime();\n\n // TODO(burdon): Get feeds from client-services if verbose (factor out from devtools/diagnostics).\n // const host = client.services.services.DevtoolsHost!;\n const pipeline = space.internal.data.pipeline;\n const startDataMutations = pipeline?.currentEpoch?.subject.assertion.timeframe.totalMessages() ?? 0;\n const epoch = pipeline?.currentEpoch?.subject.assertion.number;\n // const appliedEpoch = pipeline?.appliedEpoch?.subject.assertion.number;\n const currentDataMutations = pipeline?.currentDataTimeframe?.totalMessages() ?? 0;\n const totalDataMutations = pipeline?.targetDataTimeframe?.totalMessages() ?? 0;\n\n return {\n // TODO(nf): truncate keys for DD?\n key: space.key.truncate(),\n open: space.isOpen,\n members: space.members.get().length,\n objects: space.db.query().objects.length,\n startup,\n epoch,\n // appliedEpoch,\n startDataMutations,\n currentDataMutations,\n totalDataMutations,\n\n // TODO(burdon): Negative?\n progress: (\n Math.min(Math.abs((currentDataMutations - startDataMutations) / (totalDataMutations - startDataMutations)), 1) *\n 100\n ).toFixed(0),\n };\n });\n};\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport type { Client } from '@dxos/client';\nimport { log } from '@dxos/log';\n\nimport { getTelemetryIdentifier } from './common';\nimport type { Observability } from '../observability';\n\nlet lastFocusEvent = new Date();\nlet totalTime = 0;\n\nexport const setupTelemetryListeners = (namespace: string, client: Client, observability: Observability) => {\n const clickCallback = (event: any) => {\n if (observability.group === 'dxos' && event.target && !event.target.id) {\n log.info('click event on element without id', { target: event.target });\n }\n\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.click`,\n properties: {\n href: window.location.href,\n id: (event.target as HTMLElement)?.id,\n path: (event.path as HTMLElement[])\n ?.filter((el) => Boolean(el.tagName))\n .map((el) => `${el.tagName.toLowerCase()}${el.id ? `#${el.id}` : ''}`)\n .reverse()\n .join('>'),\n },\n }),\n );\n };\n\n const focusCallback = () => {\n const now = new Date();\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.focus`,\n properties: {\n href: window.location.href,\n timeAway: now.getTime() - lastFocusEvent.getTime(),\n },\n }),\n );\n lastFocusEvent = now;\n };\n\n const blurCallback = () => {\n const now = new Date();\n const timeSpent = now.getTime() - lastFocusEvent.getTime();\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.blur`,\n properties: {\n href: window.location.href,\n timeSpent,\n },\n }),\n );\n lastFocusEvent = now;\n totalTime = totalTime + timeSpent;\n };\n\n const unloadCallback = () => {\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.page.unload`,\n properties: {\n href: window.location.href,\n timeSpent: totalTime,\n },\n }),\n );\n };\n\n const errorCallback = (event: ErrorEvent) => {\n setTimeout(() =>\n observability.event({\n identityId: getTelemetryIdentifier(client),\n name: `${namespace}.window.error`,\n properties: {\n href: window.location.href,\n message: event.message,\n filename: event.filename,\n stack: (event.error as Error).stack,\n },\n }),\n );\n };\n\n window.addEventListener('click', clickCallback, true);\n window.addEventListener('focus', focusCallback);\n window.addEventListener('blur', blurCallback);\n window.addEventListener('beforeunload', unloadCallback);\n window.addEventListener('error', errorCallback);\n\n return () => {\n window.removeEventListener('click', clickCallback, true);\n window.removeEventListener('focus', focusCallback);\n window.removeEventListener('blur', blurCallback);\n window.removeEventListener('beforeunload', unloadCallback);\n window.removeEventListener('error', errorCallback);\n };\n};\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["Event", "scheduleTaskInterval", "Context", "invariant", "log", "ConnectionState", "DeviceKind", "Platform", "isNode", "localForage", "log", "OBSERVABILITY_DISABLED_KEY", "OBSERVABILITY_GROUP_KEY", "isObservabilityDisabled", "namespace", "getItem", "err", "catch", "storeObservabilityDisabled", "value", "setItem", "String", "getObservabilityGroup", "undefined", "storeObservabilityGroup", "initializeAppObservability", "config", "mode", "tracingEnable", "replayEnable", "group", "release", "get", "environment", "observabilityDisabled", "Observability", "observability", "errorLog", "sentryInitOptions", "tracing", "replay", "sampleRate", "replaySampleRate", "replaySampleRateOnError", "setMode", "info", "getIPData", "IP_DATA_CACHE_TIMEOUT", "cachedData", "timestamp", "Date", "now", "data", "IPDATA_API_KEY", "fetch", "then", "res", "json", "captureException", "initialize", "ipData", "addIPDataTelemetryTags", "navigator", "storage", "estimate", "setInterval", "storageEstimate", "usage", "setTag", "toString", "quota", "error", "warn", "getTelemetryIdentifier", "client", "initialized", "undefined", "identity", "halo", "get", "identityKey", "truncate", "yaml", "existsSync", "statSync", "mkdir", "readFile", "writeFile", "join", "v4", "uuid", "validate", "validateUuid", "log", "showObservabilityBanner", "configDir", "bannercb", "path", "join", "existsSync", "writeFile", "getObservabilityState", "statSync", "isDirectory", "Error", "mkdir", "recursive", "idPath", "context", "readFile", "validate", "initializeState", "observabilityState", "installationId", "uuid", "group", "process", "env", "DX_OBSERVABILITY_GROUP", "undefined", "mode", "DX_DISABLE_OBSERVABILITY", "DX_OBSERVABILITY_MODE", "yaml", "dump", "contextString", "load", "Boolean", "validateUuid", "initializeNodeObservability", "namespace", "config", "tracingEnable", "replayEnable", "log", "release", "get", "environment", "observability", "Observability", "errorLog", "sentryInitOptions", "sampleRate", "logProcessor", "setTag", "IPDATA_API_KEY", "res", "fetch", "ipData", "json", "addIPDataTelemetryTags", "err", "captureException", "mapSpaces", "spaces", "options", "verbose", "truncateKeys", "map", "space", "open", "ready", "internal", "data", "metrics", "startup", "getTime", "pipeline", "startDataMutations", "currentEpoch", "subject", "assertion", "timeframe", "totalMessages", "epoch", "number", "currentDataMutations", "currentDataTimeframe", "totalDataMutations", "targetDataTimeframe", "key", "truncate", "isOpen", "members", "get", "length", "objects", "db", "query", "progress", "Math", "min", "abs", "toFixed", "log", "lastFocusEvent", "Date", "totalTime", "setupTelemetryListeners", "namespace", "client", "observability", "clickCallback", "event", "group", "target", "id", "log", "info", "setTimeout", "identityId", "getTelemetryIdentifier", "name", "properties", "href", "window", "location", "path", "filter", "el", "Boolean", "tagName", "map", "toLowerCase", "reverse", "join", "focusCallback", "now", "timeAway", "getTime", "blurCallback", "timeSpent", "unloadCallback", "errorCallback", "message", "filename", "stack", "error", "addEventListener", "removeEventListener", "SPACE_METRICS_MIN_INTERVAL", "DATADOG_IDLE_INTERVAL", "Observability", "constructor", "namespace", "config", "secrets", "group", "mode", "telemetry", "errorLog", "_mode", "_ctx", "Context", "_tags", "Map", "addIPDataTelemetryTags", "ipData", "setTag", "city", "region", "country", "latitude", "toString", "longitude", "_namespace", "_config", "_group", "_secrets", "_loadSecrets", "_telemetryBatchSize", "batchSize", "_errorReportingOptions", "sentryInitOptions", "_errorLogProcessor", "logProcessor", "isNode", "mergedSecrets", "buildSecrets", "process", "env", "DX_ENVIRONMENT", "DX_RELEASE", "SENTRY_DESTINATION", "TELEMETRY_API_KEY", "IPDATA_API_KEY", "DATADOG_API_KEY", "DATADOG_APP_KEY", "log", "rtc", "get", "initialize", "_initMetrics", "_initTelemetry", "_initErrorLogs", "close", "dispose", "setMode", "enabled", "key", "value", "scope", "undefined", "sentrySetTag", "set", "getTag", "setIdentityTags", "client", "services", "IdentityService", "queryIdentity", "subscribe", "idqr", "identity", "identityKey", "truncate", "DevicesService", "queryDevices", "dqr", "devices", "length", "device", "invariant", "thisDevice", "find", "kind", "DeviceKind", "CURRENT", "deviceKey", "profile", "label", "_metrics", "DatadogMetrics", "apiKey", "getTags", "Object", "fromEntries", "Array", "from", "filter", "map", "gauge", "name", "extraTags", "startNetworkMetrics", "updateSignalMetrics", "Event", "on", "networkStatus", "signaling", "forEach", "server", "state", "swarmCount", "connectionStates", "ConnectionState", "totalReadBufferSize", "totalWriteBufferSize", "totalChannelBufferSize", "connectionInfo", "conn", "connections", "readBufferSize", "writeBufferSize", "stream", "streams", "NetworkService", "queryStatus", "emit", "startSpacesMetrics", "spaces", "subscriptions", "onDispose", "subscription", "unsubscribe", "updateSpaceMetrics", "debounce", "data", "mapSpaces", "truncateKeys", "members", "objects", "epoch", "currentDataMutations", "event", "identityId", "getTelemetryIdentifier", "properties", "subscribeToSpaceUpdate", "space", "pipeline", "next", "toHex", "has", "scheduleTaskInterval", "startRuntimeMetrics", "frequency", "platform", "SystemService", "getPlatform", "Platform", "PLATFORM_TYPE", "type", "toLowerCase", "arch", "runtime", "then", "memory", "rss", "heapTotal", "heapUsed", "catch", "error", "_telemetry", "SegmentTelemetry", "options", "page", "info", "dest", "sentryInit", "destination", "scrubFilenames", "tracing", "sentryConfigureTracing", "enableSentryLogProcessor", "v", "k", "captureException", "err", "sentryCaptureException"]
|
|
7
7
|
}
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
showObservabilityBanner,
|
|
14
14
|
storeObservabilityDisabled,
|
|
15
15
|
storeObservabilityGroup
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-MLA3ZYPW.mjs";
|
|
17
17
|
import "./chunk-6ZTMPKEG.mjs";
|
|
18
18
|
import "./chunk-HPGC4HC7.mjs";
|
|
19
19
|
import "./chunk-6KUJPLEH.mjs";
|