@jambonz/time-series 0.1.6 → 0.1.7

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/index.js CHANGED
@@ -28,7 +28,8 @@ const schemas = {
28
28
  duration: Influx.FieldType.INTEGER,
29
29
  terminated_at: Influx.FieldType.INTEGER,
30
30
  termination_reason: Influx.FieldType.STRING,
31
- remote_host: Influx.FieldType.STRING
31
+ remote_host: Influx.FieldType.STRING,
32
+ trace_id: Influx.FieldType.STRING
32
33
  },
33
34
  tags: [
34
35
  'account_sid',
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@jambonz/time-series",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "write and query data to time series daetabase",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "test": "node test/ | ./node_modules/.bin/tap-spec",
7
+ "test": "node test/",
8
8
  "coverage": "./node_modules/.bin/nyc --reporter html --report-dir ./coverage npm run test",
9
9
  "jslint": "eslint index.js"
10
10
  },
@@ -18,7 +18,6 @@
18
18
  "eslint": "^7.23.0",
19
19
  "eslint-plugin-promise": "^4.3.1",
20
20
  "nyc": "^15.1.0",
21
- "tap-spec": "^5.0.0",
22
21
  "tape": "^5.2.2"
23
22
  }
24
23
  }
@@ -2,6 +2,6 @@ version: '3'
2
2
 
3
3
  services:
4
4
  influxdb:
5
- image: influxdb:1.8-alpine
5
+ image: influxdb:1.8
6
6
  ports:
7
7
  - "8086:8086"