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

bugfix mysql innodb_data_read metrics unit KB -> B #5

Merged
merged 1 commit into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions manager/src/main/resources/define/app/app-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ metrics:
unit: Times
- field: innodb_data_read
type: 0
unit: MB
unit: KB
- field: innodb_data_written
type: 0
unit: MB
unit: KB
- field: innodb_buffer_hit_rate
type: 0
unit: '%'
Expand All @@ -234,8 +234,8 @@ metrics:
- innodb_data_read=Innodb_data_read
- innodb_data_written=Innodb_data_written
units:
- innodb_data_read=KB->MB
- innodb_data_written=KB->MB
- innodb_data_read=B->KB
- innodb_data_written=B->KB
protocol: jdbc
jdbc:
# 主机host: ipv4 ipv6 域名
Expand Down
8 changes: 4 additions & 4 deletions manager/src/main/resources/define/app/app-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ metrics:
unit: Times
- field: innodb_data_read
type: 0
unit: MB
unit: KB
- field: innodb_data_written
type: 0
unit: MB
unit: KB
- field: innodb_buffer_hit_rate
type: 0
unit: '%'
Expand All @@ -234,8 +234,8 @@ metrics:
- innodb_data_read=Innodb_data_read
- innodb_data_written=Innodb_data_written
units:
- innodb_data_read=KB->MB
- innodb_data_written=KB->MB
- innodb_data_read=B->KB
- innodb_data_written=B->KB
protocol: jdbc
jdbc:
# 主机host: ipv4 ipv6 域名
Expand Down