Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c6b5a17
added system_metrics generator and generated queries
ekopanev Jul 31, 2025
fc6684f
updated default hatch env matrix, added keeper repo
ekopanev Jul 31, 2025
531f831
update docker compose files, switched from zookeeper to clickhouse-ke…
ekopanev Jul 31, 2025
884e486
updated base conftest for new docker compose
ekopanev Jul 31, 2025
86c9680
added generator for system events
ekopanev Aug 4, 2025
a2adcb6
Merge branch 'DataDog:master' into clickhouse_integration
ekopanev Aug 4, 2025
c2df4b7
updated generator, added tests template
ekopanev Aug 21, 2025
a39881e
added generated data
ekopanev Aug 21, 2025
caaf891
updated metadata.csv
ekopanev Aug 21, 2025
2fd25aa
updated tests
ekopanev Aug 21, 2025
088fd8f
added async metrics parsing
ekopanev Aug 22, 2025
d3c2332
added support of plain and json logs by default
ekopanev Sep 3, 2025
a3733e3
fixed linters
ekopanev Sep 3, 2025
70d2839
exported new dashboard
ekopanev Sep 3, 2025
667225e
added 25.8 and removed 25.5 versions metrics
ekopanev Sep 3, 2025
f3266aa
fixed max desc length for metadata file
ekopanev Sep 3, 2025
16102d3
added metrics based on system.errors
ekopanev Sep 8, 2025
0f5c625
added metrics stat counter
ekopanev Sep 8, 2025
b51a618
added system errors check to the agent and fixed e2e
ekopanev Sep 8, 2025
77d30de
explicit query match mapping
ekopanev Sep 8, 2025
cd579a8
added explicit agent check before the next assert
ekopanev Sep 8, 2025
fe75d9f
Merge branch 'DataDog:master' into clickhouse_integration
ekopanev Sep 8, 2025
ea84137
switch system.errors metrics type to monotonic_gauge and extended met…
ekopanev Sep 8, 2025
5706908
added changelog entry
ekopanev Sep 8, 2025
249b642
updated conf.yaml.example file
ekopanev Sep 8, 2025
20b8aa1
increased conditions waiting time on the env startup
ekopanev Sep 8, 2025
a3788f7
split compose files for mounted logs testing and the regular run
ekopanev Sep 9, 2025
5c8a6c7
fixed metrics_metadata
ekopanev Sep 9, 2025
f4a1c26
fixed UNKNOWN_IDENTIFIER metrics name
ekopanev Sep 9, 2025
46fce36
updated conf.example with new ddev
ekopanev Sep 9, 2025
895aaea
fixed license-headers
ekopanev Sep 9, 2025
8840428
small fixes on dashboard panels
ekopanev Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clickhouse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ See [service_checks.json][9] for a list of service checks provided by this integ
Need help? Contact [Datadog support][10].


[1]: https://clickhouse.yandex
[1]: https://clickhouse.com/
[2]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[3]: /account/settings/agent/latest
[4]: https://github.com/DataDog/integrations-core/blob/master/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example
Expand Down
34 changes: 30 additions & 4 deletions clickhouse/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,42 @@ files:
- template: logs
example:
- source: clickhouse
service: clickhouse
type: file
path: /var/log/clickhouse-server/clickhouse-server.log
tags:
- format:plain
log_processing_rules:
- type: multi_line
name: log_start_with_date
pattern: \d{4}\.\d{2}\.\d{2}
name: new_log_start_with_date
pattern: '\d{4}\.\d{2}\.\d{2}'
- source: clickhouse
service: clickhouse
type: file
path: /var/log/clickhouse-server/clickhouse-server.err.log
tags:
- format:plain
log_processing_rules:
- type: multi_line
name: log_start_with_date
pattern: \d{4}\.\d{2}\.\d{2}
name: new_log_start_with_date
pattern: '\d{4}\.\d{2}\.\d{2}'
- source: clickhouse
service: clickhouse
type: file
path: /var/log/clickhouse-server/clickhouse-server.log
tags:
- format:json
log_processing_rules:
- type: multi_line
name: new_log_start_with_json
pattern: '\{'
- source: clickhouse
service: clickhouse
type: file
path: /var/log/clickhouse-server/clickhouse-server.err.log
tags:
- format:json
log_processing_rules:
- type: multi_line
name: new_log_start_with_json
pattern: '\{'
Loading
Loading