https://github.com/sea-boat/mysql-protocol
The mysql client queries the internal statistics of the server through the statistics command.
Type | Name | Description |
---|---|---|
int<3> | payload length | Stored according to the least significant byte first, 3-byte payload and 1-byte sequence number combination Into the message header |
int<1> | sequence number | |
payload | Message body, the length is the previously specified payload length |
Payload
1 [09] COM_STATISTICS
/** * * <pre class="brush:php;toolbar:false"><b>statistics command packet.</b>* @author *
seaboat*
<b>email: </b>849586227@qq.com*
<b>blog: </b>http://www.php.cn/;/pre> * @version 1.0 * @see http://www.php.cn/ */public class StatisticsPacket extends MySQLPacket { public byte payload; @Override public int calcPacketSize() { return 1; } @Override protected String getPacketInfo() { return "MySQL Statistics Packet"; } @Override public void read(byte[] data) { MySQLMessage mm = new MySQLMessage(data); packetLength = mm.readUB3(); packetId = mm.read(); payload = mm.read(); } @Override public void write(ByteBuffer buffer) { int size = calcPacketSize(); BufferUtil.writeUB3(buffer, size); buffer.put(packetId); buffer.put(COM_STATISTICS); } }