Get the stats of a given table
To get the stats of a given table:
Method : GET
URI : /db/<dbname>/<table_name>/stat/<verbose>
Verbose is either 0 or 1, 0 is default and if we don't provide any value there then its 0.
Example
curl -X GET http://192.168.1.105:18080/db/mydb/my_table_test/stat
Response
{
"table":[
{
"name":"my_table_test",
"issys":0,
"num_records":2,
"num_index":1,
"files":[
],
"total_size":65536,
"num_files":4
}
]
}