StatisticsPacket

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 Serializable
trait Product
trait Equals
trait Packet
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
StatisticsPacket.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product