ldbc.connector.net.packet.response.StatisticsPacket
See theStatisticsPacket companion object
case class StatisticsPacket(uptime: String, threads: String, questions: String, slowQueries: String, opens: String, flushTables: String, openTables: String, queriesPerSecondAvg: String) extends ResponsePacket
StatisticsPacket is a response packet that contains the statistics of the MySQL server.
Value parameters
- flushTables
-
The number of tables flushed by the MySQL server.
- openTables
-
Number of open tables currently held in the cache.
- opens
-
The number of tables opened by the MySQL server.
- queriesPerSecondAvg
-
The average number of queries executed by the MySQL server per second.
- questions
-
The number of questions sent to the MySQL server.
- slowQueries
-
Total number of queries received since the MySQL server started.
- threads
-
The number of threads connected to the MySQL server.
- uptime
-
The uptime of the MySQL server.
Attributes
- Companion
- object
- Source
- StatisticsPacket.scala
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait ResponsePackettrait Packetclass Objecttrait Matchableclass Any
Members list
In this article