SELECT OBJECT_SCHEMA, OBJECT_NAME, ifnull(INDEX_NAME, 'NONE') as INDEX_NAME,
COUNT_FETCH, COUNT_INSERT, COUNT_UPDATE, COUNT_DELETE,
SUM_TIMER_FETCH, SUM_TIMER_INSERT, SUM_TIMER_UPDATE, SUM_TIMER_DELETE
FROM performance_schema.table_io_waits_summary_by_index_usage
WHERE OBJECT_SCHEMA NOT IN ('mysql', 'performance_schema')
interesting, raw data for Index “Access Operations (Load)” exists in the database (we just fetched it by query above).
so let’s check if mysqld_exporter can fetch it.
can you share the output of the following command?
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:–:-- --:–:-- --:–:-- 0
100 94033 100 94033 0 0 405k 0 --:–:-- --:–:-- --:–:-- 404k
it is true, it is possible to get such result in two cases: [LIST=1]
[]during command --disable-tablestats option was specified.
[]your database has more that 1000 tables and pmm-admin disabled per table statistics collection.
[/LIST]