signoz fix
This commit is contained in:
parent
c3a20a1107
commit
b163fbdd0f
3 changed files with 9 additions and 7 deletions
|
|
@ -17,7 +17,6 @@
|
|||
<max_connections>4096</max_connections>
|
||||
<keep_alive_timeout>3</keep_alive_timeout>
|
||||
<max_concurrent_queries>100</max_concurrent_queries>
|
||||
<allow_experimental_parameterized_queries>1</allow_experimental_parameterized_queries>
|
||||
<max_server_memory_usage>0</max_server_memory_usage>
|
||||
<max_thread_pool_size>10000</max_thread_pool_size>
|
||||
<max_server_memory_usage_to_ram_ratio>0.9</max_server_memory_usage_to_ram_ratio>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
<default>
|
||||
<max_memory_usage>10000000000</max_memory_usage>
|
||||
<load_balancing>random</load_balancing>
|
||||
<allow_experimental_parameterized_queries>1</allow_experimental_parameterized_queries>
|
||||
</default>
|
||||
<readonly><readonly>1</readonly></readonly>
|
||||
</profiles>
|
||||
|
|
|
|||
|
|
@ -50,9 +50,9 @@ services:
|
|||
# Hardcode linux/amd64 for Unraid x86_64 (uname may be unavailable in slim image)
|
||||
node_os="linux"
|
||||
node_arch="amd64"
|
||||
echo "Fetching histogram-binary for ${node_os}/${node_arch}"
|
||||
echo "Fetching histogram-binary for $${node_os}/$${node_arch}"
|
||||
cd /tmp
|
||||
wget -O histogram-quantile.tar.gz "https://github.com/SigNoz/signoz/releases/download/histogram-quantile%2F${version}/histogram-quantile_${node_os}_${node_arch}.tar.gz" || true
|
||||
wget -O histogram-quantile.tar.gz "https://github.com/SigNoz/signoz/releases/download/histogram-quantile%2F$${version}/histogram-quantile_$${node_os}_$${node_arch}.tar.gz" || true
|
||||
tar -xvzf histogram-quantile.tar.gz 2>/dev/null || true
|
||||
mv histogram-quantile /var/lib/clickhouse/user_scripts/histogramQuantile 2>/dev/null || true
|
||||
echo "Done (non-critical if download failed — migrator will handle it)."
|
||||
|
|
@ -153,8 +153,6 @@ services:
|
|||
pipeline:
|
||||
aliases:
|
||||
- signoz
|
||||
- otel
|
||||
- lgtm
|
||||
# swag:
|
||||
# aliases:
|
||||
# - signoz
|
||||
|
|
@ -196,8 +194,12 @@ services:
|
|||
max-size: 50m
|
||||
max-file: "3"
|
||||
networks:
|
||||
- signoz
|
||||
- pipeline
|
||||
signoz: {}
|
||||
pipeline:
|
||||
aliases:
|
||||
- signoz-otel-collector
|
||||
- otel
|
||||
- lgtm
|
||||
|
||||
# ===========================================================================
|
||||
# Telemetry Store Migrator — runs ClickHouse migrations
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue