I have Zabbix monitoring a MySQL server, the MySQL Command Counter
chart is nice, but a large portion of the graph shows massive Questions
, Unlike SELECT
or INSERT
, what does Question
mean in MySQL & Zabbix?
Asked
Active
Viewed 3,053 times
5

Bart De Vos
- 17,911
- 6
- 63
- 82

est
- 181
- 1
- 8
2 Answers
4
Questions is the sum of all queries performed by MySQL Db. Is very usefeul when you need perform tuning on data base side.

Jefferson Alexandre
- 104
- 2
3
According to the docs at http://www.zabbix.com/documentation/1.8/manual/cookbook/specific, "questions" appears to be just a total of any queries (including SELECT, INSERT, etc.).

Andy Shinn
- 4,211
- 8
- 40
- 55