File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,16 @@ Grafana:
3434- User: ` admin `
3535- Password: ` admin `
3636
37+ DB viewer (ClickLens):
38+
39+ - URL: ` http://localhost:3000 `
40+ - Login user: ` default `
41+ - Login password: * (empty)*
42+ - These credentials are validated against ClickHouse.
43+ - ClickHouse host: ` clickhouse `
44+ - ClickHouse port: ` 8123 `
45+ - Use this to run ad-hoc SQL against ClickHouse without curl.
46+
3747Dashboard provisioning:
3848
3949- Folder: ` JCT `
Original file line number Diff line number Diff line change @@ -42,6 +42,22 @@ services:
4242 - grafana-data:/var/lib/grafana
4343 - ./doc/grafana/provisioning:/etc/grafana/provisioning:ro
4444
45+ clicklens :
46+ image : ghcr.io/ntk148v/clicklens:latest
47+ container_name : jct-clicklens
48+ depends_on :
49+ clickhouse :
50+ condition : service_healthy
51+ environment :
52+ - CLICKHOUSE_HOST=clickhouse
53+ - CLICKHOUSE_PORT=8123
54+ - LENS_USER=default
55+ - LENS_PASSWORD=
56+ - SESSION_SECRET=0123456789abcdef0123456789abcdef
57+ - NODE_ENV=production
58+ ports :
59+ - " 3000:3000"
60+
4561volumes :
4662 clickhouse-data :
4763 grafana-data :
You can’t perform that action at this time.
0 commit comments