You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Hoping to collect MySQL table metrics such as the number of rows, average row length and table size.
Describe the solution you'd like
Add support for the following metrics: TABLE_ROWS, AVG_ROW_LENGTH, DATA_LENGTH, INDEX_LENGTH and TABLE_LENGTH as the sum of DATA_LENGTH and INDEX_LENGTH.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
**Description:** This adds table size metrics using the
INFORMATION_SCHEMA TABLES table:
https://dev.mysql.com/doc/refman/8.3/en/information-schema-tables-table.html.
Specifically, we are adding the columns:
`TABLE_ROWS`, `AVG_ROW_LENGTH`, `DATA_LENGTH`, `INDEX_LENGTH`
Link to tracking issue:
#32693
**Testing:** Added testing data, tested locally against MySQL 8.
**Documentation:** By default, the metric is turned off. When enabled,
make sure that the MySQL user has access to the tables being monitored.
Uh oh!
There was an error while loading. Please reload this page.
Component(s)
receiver/mysql
Is your feature request related to a problem? Please describe.
Hoping to collect MySQL table metrics such as the number of rows, average row length and table size.
Describe the solution you'd like
Add support for the following metrics:
TABLE_ROWS
,AVG_ROW_LENGTH
,DATA_LENGTH
,INDEX_LENGTH
andTABLE_LENGTH
as the sum ofDATA_LENGTH
and INDEX_LENGTH.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: