Ilya Mashchenko
Ilya Mashchenko
No, I have no. I used a Redis docker container on my VM ```bash # single docker run -d --name some-redis -p 6379:6379 redis # master/slave docker run -d --name...
> use keyspace_misses directly as a metric to alert on - we don't collect keyspace_misses. - if we do we can't really use (assuming collecting as-is (failed lookups), not percentage)...
@myin142, thanks for the request. > pg_stat_statements extension that can be used to collect the query time and other informations about executed queries Can you show an example of the...
Our setup is children->in-cluster parent-> outside-cluster parent. Another option is children -> outside-cluster parent (no in-cluster). Do we need both? In any case, it is not just an option (instruction)...
@cakrit - We use the outside-cluster parent because it is easier to debug/catch problems (crashdump), and easier to run a custom branch (better for developing). - We use the in-cluster...
@thiagoftsm I see you are collecting only summary metrics, why?
> To simplify transition from users that are using other software to netdata. Other companies are also collecting summary; I very doubt that. I am pretty sure they do collect...
@thiagoftsm you get summary metrics on the Cloud overview page.
@thiagoftsm my point is that we would need to delete the summary metrics if we add per-instance metrics, so why add the summary in the first place?
Let's take for example this metric org_apache_cassandra_metrics_table_count ``` # HELP org_apache_cassandra_metrics_table_count Attribute exposed for management org.apache.cassandra.metrics:name=CompactionBytesWritten,type=Table,attribute=Count # TYPE org_apache_cassandra_metrics_table_count untyped org_apache_cassandra_metrics_table_count{keyspace="system_traces",scope="events",name="CompactionBytesWritten",} 0.0 org_apache_cassandra_metrics_table_count{keyspace="system",scope="view_builds_in_progress",name="TotalDiskSpaceUsed",} 0.0 org_apache_cassandra_metrics_table_count{keyspace="system_distributed",scope="parent_repair_history",name="TotalDiskSpaceUsed",} 0.0 org_apache_cassandra_metrics_table_count{keyspace="system_distributed",scope="repair_history",name="LiveDiskSpaceUsed",} 0.0 org_apache_cassandra_metrics_table_count{keyspace="system",scope="available_ranges",name="CompactionBytesWritten",} 0.0...