forked from metrico/qryn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "qryn",
"version": "3.1.1",
"description": "Polyglot Observability Stack with ClickHouse storage",
"main": "qryn_node.js",
"bin": {
"qryn": "./qryn_node.js"
},
"scripts": {
"test": "jest --maxWorkers 1 --forceExit",
"start": "node qryn.mjs",
"pretty": "node qryn.mjs | pino-pretty",
"postinstall": "patch-package",
"install-view": "mkdir -p view && curl -L https://github.com/metrico/cloki-view/releases/latest/download/dist.zip | busybox unzip - -d ./view",
"lint": "npx eslint --fix *.js lib parser plugins test",
"bun-install": "bun install --platform node",
"bun-start": "bun run --bun qryn.mjs"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/metrico/qryn.git"
},
"author": "[email protected]",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/metrico/qryn/issues"
},
"homepage": "https://github.com/metrico/qryn#readme",
"dependencies": {
"@apla/clickhouse": "^1.6.4",
"@cloki/clickhouse-sql": "1.2.10",
"@fastify/compress": "^6.5.0",
"@fastify/cors": "^8.4.1",
"@fastify/formbody": "^7.4.0",
"@fastify/static": "^6.12.0",
"@fastify/websocket": "^8.2.0",
"@fastify/url-data": "^5.4.0",
"@fastify/basic-auth": "^5.1.0",
"@qxip/influx-line-protocol-parser": "^0.2.1",
"@qxip/plugnplay": "^3.3.1",
"@stricjs/router": "^5.0.6",
"axios": "^1.6.8",
"bnf": "^1.0.1",
"csv-writer": "^1.6.0",
"date-fns": "^2.27.0",
"fast-querystring": "^1.1.0",
"fastify": "^4.24.3",
"fastify-metrics": "^10.3.3",
"fastify-plugin": "^4.5.1",
"glob": "^7.1.2",
"handlebars": "^4.7.7",
"handlebars-utils": "^1.0.6",
"is-number": "^7.0.0",
"http-errors": "^2.0.0",
"json-stable-stringify": "^1.0.1",
"jsonic": "^1.0.1",
"logfmt": "^1.3.2",
"node-gzip": "^1.1.2",
"patch-package": "^6.4.7",
"pino": "^7.6.5",
"plugnplay": "npm:@qxip/plugnplay@^3.3.1",
"protobufjs": "7.2.6",
"protocol-buffers": "^4.2.0",
"protocol-buffers-encodings": "^1.1.1",
"record-cache": "^1.1.1",
"scramjet": "^4.36.1",
"short-hash": "^1.0.0",
"snappyjs": "^0.6.1",
"stream-chain": "^2.2.4",
"stream-json": "^1.7.3",
"ws": "^8.17.1",
"xxhash-wasm": "^0.4.2",
"yaml": "^1.10.2",
"@stricjs/utils": "^1.6.1",
"basic-auth": "^2.0.1",
"google-protobuf": "^3.21.2",
"@grpc/grpc-js": "^1.10.6",
"@grpc/proto-loader": "^0.7.12",
"pako": "^2.1.0"
},
"devDependencies": {
"@elastic/elasticsearch": "=8.6.0",
"@influxdata/influxdb-client": "^1.33.2",
"@opentelemetry/api": "^1.0.2",
"@opentelemetry/exporter-trace-otlp-proto": "^0.50.0",
"@opentelemetry/instrumentation": "^0.25.0",
"@opentelemetry/instrumentation-connect": "^0.30.0",
"@opentelemetry/instrumentation-http": "^0.25.0",
"@opentelemetry/resources": "^0.25.0",
"@opentelemetry/sdk-trace-base": "^0.25.0",
"@opentelemetry/sdk-trace-node": "^0.25.0",
"@opentelemetry/semantic-conventions": "^0.25.0",
"casual": "^1.6.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^29.7.0",
"node-abort-controller": "^3.1.1",
"node-fetch": "^2.6.7",
"pino-pretty": "^7.5.1",
"prometheus-remote-write": "^0.3.0",
"standard": "^16.0.4",
"protobufjs": ">=7.2.4"
},
"directories": {
"lib": "lib"
},
"keywords": [
"logs",
"opentelemetry",
"logql",
"promql",
"grafana",
"clickhouse",
"clickhouse-server",
"tempoql",
"tempo",
"tail",
"prometheus"
]
}