메인 콘텐츠로 건너뛰기
POST
/
table
/
query_stats_batch
테이블 쿼리 통계 일괄 처리
curl --request POST \
  --url https://api.example.com/table/query_stats_batch \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "digests": "aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
  "include_storage_size": false
}
'
{
  "tables": [
    {
      "count": 123,
      "digest": "<string>",
      "storage_size_bytes": 123
    }
  ]
}

인증

Authorization
string
header
필수

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

본문

application/json
project_id
string
필수

프로젝트 ID

예시:

"my_entity/my_project"

digests
string[] | null

쿼리할 테이블의 다이제스트 목록

예시:

"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"

include_storage_size
boolean | null
기본값:false

true인 경우 storage_size_bytes 열이 반환됩니다.

응답

성공 응답

tables
TableStatsRow · object[]
필수