This message was deleted.
# support
s
This message was deleted.
s
You can exec into ClickHouse pod and look at the data.
Here is the what it looks like with docker for example.
Copy code
docker exec -it clickhouse-setup_clickhouse_1 bash
Copy code
clickhouse-client
Copy code
use signoz_metrics;
Copy code
show tables;
Copy code
select * from samples_v2 limit 1;
1
p
@Srikanth Chekuri thank you I can view the data. where are you storing the data in local? how is it stored?
s
All things data ClickHouse takes care of it. For docker you can see it at
deploy/docker/clickhouse-setup/data/clickhouse/store
1
p
@Srikanth Chekuri why there are 2 signoz otel collector when I do docker ps
s
I couldn’t find to my response to another same question earlier. The extra collector runs and mimics as prometheus. All scrape configs can be configured there.
👍 1