mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* minor change for volume permission spec Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added basic files of clickhouse chart Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added a simple deployment yaml Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * added clickhouse support in signoz Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * clickhouse working Signed-off-by: Yash Sharma <yashrsharma44@gmail.com> * chore: helm charts wip * chore: fixing path of otel-path in hotrod * chore: wip running clickhouse in templates * chore: clickhouse working in templates * chore: clickhouse helm chart upgraded to latest query-service and frontend images * chore: cleanup and upgrading signoz chart version * chore: adding alertmanager and minor fixes * chore: persistence enabled for query-service and clickhouse * chore: scrape interval reduced to 30s * chore: changed crd api version from v1beta1 to v1 * chore: removed druid parts in values.yaml * chore: log container removed from clickhouse * chore: removed *.tgz from gitignore to add charts * chore: added dependency charts * chore: added clickhouse-operator templates Co-authored-by: Yash Sharma <yashrsharma44@gmail.com>
33 lines
1.3 KiB
YAML
33 lines
1.3 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: initdb-config
|
|
data:
|
|
init-db.sql: |-
|
|
CREATE TABLE IF NOT EXISTS signoz_index (
|
|
timestamp DateTime64(9) CODEC(Delta, ZSTD(1)),
|
|
traceID String CODEC(ZSTD(1)),
|
|
spanID String CODEC(ZSTD(1)),
|
|
parentSpanID String CODEC(ZSTD(1)),
|
|
serviceName LowCardinality(String) CODEC(ZSTD(1)),
|
|
name LowCardinality(String) CODEC(ZSTD(1)),
|
|
kind Int32 CODEC(ZSTD(1)),
|
|
durationNano UInt64 CODEC(ZSTD(1)),
|
|
tags Array(String) CODEC(ZSTD(1)),
|
|
tagsKeys Array(String) CODEC(ZSTD(1)),
|
|
tagsValues Array(String) CODEC(ZSTD(1)),
|
|
statusCode Int64 CODEC(ZSTD(1)),
|
|
references String CODEC(ZSTD(1)),
|
|
externalHttpMethod Nullable(String) CODEC(ZSTD(1)),
|
|
externalHttpUrl Nullable(String) CODEC(ZSTD(1)),
|
|
component Nullable(String) CODEC(ZSTD(1)),
|
|
dbSystem Nullable(String) CODEC(ZSTD(1)),
|
|
dbName Nullable(String) CODEC(ZSTD(1)),
|
|
dbOperation Nullable(String) CODEC(ZSTD(1)),
|
|
peerService Nullable(String) CODEC(ZSTD(1)),
|
|
INDEX idx_tagsKeys tagsKeys TYPE bloom_filter(0.01) GRANULARITY 64,
|
|
INDEX idx_tagsValues tagsValues TYPE bloom_filter(0.01) GRANULARITY 64,
|
|
INDEX idx_duration durationNano TYPE minmax GRANULARITY 1
|
|
) ENGINE MergeTree()
|
|
PARTITION BY toDate(timestamp)
|
|
ORDER BY (serviceName, -toUnixTimestamp(timestamp)) |