@doow/track 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -109,7 +109,7 @@ export default meter.withAzureFunction(async (context: Context, req: unknown) =>
109
109
 
110
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
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.
112
+ The published image is public on GitHub Container Registry at `ghcr.io/doow-dev/doow-track-sidecar`.
113
113
 
114
114
  ```yaml
115
115
  # docker-compose.yml
@@ -125,7 +125,7 @@ services:
125
125
  - DOOW_SIDECAR_PORT=9091
126
126
 
127
127
  doow-sidecar:
128
- image: doowserver.azurecr.io/doow/track-sidecar:latest
128
+ image: ghcr.io/doow-dev/doow-track-sidecar:latest
129
129
  environment:
130
130
  - DOOW_TRACK_API_KEY=dk_your_api_key
131
131
  - DOOW_TRACK_ENDPOINT=https://api.doow.co
@@ -25,7 +25,7 @@ async function gzipBuffer(data) {
25
25
  gz.end(data);
26
26
  });
27
27
  }
28
- const SDK_VERSION = "0.1.1";
28
+ const SDK_VERSION = "0.1.2";
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.1";
72
+ const SDK_VERSION = "0.1.2";
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';
@@ -23,7 +23,7 @@ async function gzipBuffer(data) {
23
23
  gz.end(data);
24
24
  });
25
25
  }
26
- const SDK_VERSION = "0.1.1";
26
+ const SDK_VERSION = "0.1.2";
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.1";
74
+ const SDK_VERSION = "0.1.2";
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doow/track",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Customer-facing SDK for emitting usage telemetry to Doow",
5
5
  "license": "MIT",
6
6
  "author": "Doow",