@adalo/metrics 0.1.39 → 0.1.40

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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -47,3 +47,9 @@ metricsClient.gatewayPush({ groupings: { process_type: 'web' } })
47
47
  // Automatically push metrics at intervals
48
48
  metricsClient.startPush(15) // interval in seconds
49
49
  ```
50
+
51
+ ## Tips
52
+ secret env was created as
53
+ ```js
54
+ Buffer.from(`${username}:${password}`).toString('base64')
55
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adalo/metrics",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "description": "Reusable metrics utilities for Node.js and Laravel apps",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",