duyet / clickhouse-monitoring

Simple ClickHouse UI that relies on system tables to help monitor and provide overview of your cluster
https://clickhouse-monitoring.vercel.app
GNU General Public License v3.0
103 stars 11 forks source link

Alerting features #179

Open duyet opened 8 months ago

duyet commented 8 months ago

Data Engineers will receive alerts based on some defined metrics:

Architect:

graph TD;
    api[API Checks] --> table[(History Table)];
    s_metric[(system.metric)] --> api;
    s_async_metric[(system.async_metric)] --> api;
    s_processes[(system.processes)] --> api;
    s_parts[(system.parts)] --> api;

    table --> alert[Alert Job];
    table --> UI;
    alert --> webhook[External Webhook];

Display:

hieung-anzx commented 6 months ago

Does this feature support Slack Integration?

duyet commented 6 months ago

Does this feature support Slack Integration?

Not on the plan at the moment, but will consider it once the first version has been implemented. Thank you