@doow/track 0.1.0 → 0.1.1
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/README.md +4 -2
- package/dist/cjs/exporter.js +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/esm/exporter.js +1 -1
- package/dist/sidecar.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,7 +107,9 @@ export default meter.withAzureFunction(async (context: Context, req: unknown) =>
|
|
|
107
107
|
|
|
108
108
|
## Sidecar Docker Compose example
|
|
109
109
|
|
|
110
|
-
For use cases where you emit telemetry from non-Node.js services (Python, Go, Rust, etc.), run the sidecar container and pipe JSON events to it over stdin or TCP.
|
|
110
|
+
For use cases where you emit telemetry from non-Node.js services (Python, Go, Rust, etc.), run the sidecar container on VMs, Kubernetes, Azure Container Apps, ECS, and any other platform that can run containers, then pipe JSON events to it over stdin or TCP.
|
|
111
|
+
|
|
112
|
+
The published image lives in Azure Container Registry. If your runtime cannot already pull from `doowserver.azurecr.io`, sign in to Azure before pulling the image or configure the equivalent registry credentials for your platform.
|
|
111
113
|
|
|
112
114
|
```yaml
|
|
113
115
|
# docker-compose.yml
|
|
@@ -123,7 +125,7 @@ services:
|
|
|
123
125
|
- DOOW_SIDECAR_PORT=9091
|
|
124
126
|
|
|
125
127
|
doow-sidecar:
|
|
126
|
-
image: doow/track-sidecar:latest
|
|
128
|
+
image: doowserver.azurecr.io/doow/track-sidecar:latest
|
|
127
129
|
environment:
|
|
128
130
|
- DOOW_TRACK_API_KEY=dk_your_api_key
|
|
129
131
|
- DOOW_TRACK_ENDPOINT=https://api.doow.co
|
package/dist/cjs/exporter.js
CHANGED
|
@@ -25,7 +25,7 @@ async function gzipBuffer(data) {
|
|
|
25
25
|
gz.end(data);
|
|
26
26
|
});
|
|
27
27
|
}
|
|
28
|
-
const SDK_VERSION = "0.1.
|
|
28
|
+
const SDK_VERSION = "0.1.1";
|
|
29
29
|
function toWireEvent(event) {
|
|
30
30
|
var _a;
|
|
31
31
|
const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
|
package/dist/cli.cjs
CHANGED
|
@@ -69,7 +69,7 @@ async function gzipBuffer(data) {
|
|
|
69
69
|
gz.end(data);
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
|
-
const SDK_VERSION = "0.1.
|
|
72
|
+
const SDK_VERSION = "0.1.1";
|
|
73
73
|
function toWireEvent(event) {
|
|
74
74
|
var _a;
|
|
75
75
|
const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
|
package/dist/esm/exporter.js
CHANGED
|
@@ -23,7 +23,7 @@ async function gzipBuffer(data) {
|
|
|
23
23
|
gz.end(data);
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
|
-
const SDK_VERSION = "0.1.
|
|
26
|
+
const SDK_VERSION = "0.1.1";
|
|
27
27
|
function toWireEvent(event) {
|
|
28
28
|
var _a;
|
|
29
29
|
const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
|
package/dist/sidecar.cjs
CHANGED
|
@@ -71,7 +71,7 @@ async function gzipBuffer(data) {
|
|
|
71
71
|
gz.end(data);
|
|
72
72
|
});
|
|
73
73
|
}
|
|
74
|
-
const SDK_VERSION = "0.1.
|
|
74
|
+
const SDK_VERSION = "0.1.1";
|
|
75
75
|
function toWireEvent(event) {
|
|
76
76
|
var _a;
|
|
77
77
|
const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
|