GET /tablets_json?limit={int}
View Tablet Info, including ID and schema hash.
limit Number of tablets output,Optional with default 1000. Take all to output all tablets.None
```
{
msg: "OK",
code: 0,
data: {
host: "10.38.157.107",
tablets: [
{
tablet_id: 11119,
schema_hash: 714349777
},
...
{
tablet_id: 11063,
schema_hash: 714349777
}
]
},
count: 30
}
```
``` curl http://127.0.0.1:8040/api/tablets_json?limit=all ```