-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the old cloki command and switch to explicit runtime definition for the qryn and qryn-bun commands. Note this only works with npm, since bun doesn't seems to support global installation or binary alias commands as of yet. Signed-off-by: Lorenzo Mangani <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "qryn", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Polyglot Observability Stack with ClickHouse storage", | ||
"main": "qryn.mjs", | ||
"bin": { | ||
"cloki": "./qryn.mjs", | ||
"qryn": "./qryn.mjs" | ||
"qryn": "node ./qryn.mjs", | ||
"qryn-bun": "bun ./qryn.mjs" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
|
@@ -24,14 +24,14 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/lmangani/qryn.git" | ||
"url": "git+ssh://[email protected]/metrico/qryn.git" | ||
}, | ||
"author": "[email protected]", | ||
"license": "AGPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/lmangani/qryn/issues" | ||
"url": "https://github.com/metrico/qryn/issues" | ||
}, | ||
"homepage": "https://github.com/lmangani/qryn#readme", | ||
"homepage": "https://github.com/metrico/qryn#readme", | ||
"dependencies": { | ||
"@apla/clickhouse": "^1.6.4", | ||
"@cloki/clickhouse-sql": "1.2.10", | ||
|
@@ -108,14 +108,14 @@ | |
}, | ||
"keywords": [ | ||
"logs", | ||
"logging", | ||
"opentelemetry", | ||
"logql", | ||
"promql", | ||
"grafana", | ||
"grafana-loki", | ||
"clickhouse", | ||
"clickhouse-server", | ||
"grep", | ||
"tempoql", | ||
"tempo", | ||
"tail", | ||
"prometheus" | ||
] | ||
|