Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support monitor metrics name i18n: Airflow #1654

Merged
merged 4 commits into from
Mar 15, 2024
Merged
Changes from 1 commit
Commits
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
Next Next commit
support monitor metrics name i18n: Airflow
  • Loading branch information
ZY945 committed Mar 14, 2024
commit f2cfd07bc78b1a732e3c6616c3478f6873902836
21 changes: 21 additions & 0 deletions manager/src/main/resources/define/app-airflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,25 @@ params:
# 采集指标配置列表
metrics:
- name: airflow_health
i18n:
zh-CN: airflow健康状态
en-US: airflow health status
priority: 0
fields:
- field: metadatabase
i18n:
zh-CN: metadatabase健康情况
en-US: metadatabase status
type: 1
- field: scheduler
i18n:
zh-CN: scheduler健康情况
en-US: scheduler status
type: 1
- field: triggerer
i18n:
zh-CN: triggerer健康情况
en-US: triggerer status
type: 1
aliasFields:
- $.metadatabase.status
Expand All @@ -123,11 +135,20 @@ metrics:
parseScript: '$'

- name: airflow_version
i18n:
zh-CN: Airflow版本
en-US: airflow version
priority: 1
fields:
- field: version
i18n:
zh-CN: Airflow版本
en-US: Airflow version
type: 1
- field: git_version
i18n:
zh-CN: Airflow git版本
en-US: git version
type: 1
protocol: http
http:
Expand Down
Loading