2

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?

Ivan Aracki
  • 4,861
  • 11
  • 59
  • 73
Uday
  • 1,480
  • 4
  • 27
  • 44

1 Answers1

5

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.

Michael
  • 11,912
  • 6
  • 49
  • 64
  • Hi Michale, thanks for the quick reply. What does it mean by this FLUSH STATUS...? – Uday Apr 03 '12 at 11:52
  • 2
    Best explained here: http://dev.mysql.com/doc/refman/5.0/en/flush.html. About half way down the page is the section you're looking for. – Michael Apr 03 '12 at 11:53
  • Hi michale, thanks for the reply. What is this FLUSH STATUS does mean actually..? – Uday Apr 03 '12 at 11:53