I have been reading on mysql global status variables and I see two values:
- uptime
- uptime_since_flush_status
What does uptime_since_flush_status
mean?
I have been reading on mysql global status variables and I see two values:
What does uptime_since_flush_status
mean?
Uptime
is the the number of seconds that the server has been up.
Uptime_since_flush_status
is the number of seconds since the most recent FLUSH STATUS
statement.
See here: http://dev.mysql.com/doc/refman/5.5/en/server-status-variables.html#statvar_Uptime.