TiKV · Example Payload

Tikv Getstatus Example

ACIDCNCFDatabaseDistributed SystemsKey-Value StoreOpen SourceRust

Tikv Getstatus Example is an example object payload from TiKV, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "http://localhost:20160/status",
    "headers": {}
  },
  "response": {
    "status": 200,
    "body": {
      "start_time_s": 1746144000,
      "uptime": "24h 5m 12s",
      "version": "7.1.0",
      "git_hash": "abc1234def5678",
      "address": "0.0.0.0:20160",
      "status": "ok"
    }
  }
}