@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.
- package/README.md +6 -0
- 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
|
+
```
|