Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Load Testing
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • API authentication
      • Overview
        • Overview
        • GetTable
        • CalculateKpiValues
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • GetTableReportRequest
  • GetTableReportResponse
  • Report
  • Quantiles
  1. API reference
  2. gRPC
  3. Report
  4. GetTable

Load Testing API, gRPC: ReportService.GetTable

Written by
Yandex Cloud
Updated at December 17, 2024
  • gRPC request
  • GetTableReportRequest
  • GetTableReportResponse
  • Report
  • Quantiles

Returns a report table for the specified test.

gRPC requestgRPC request

rpc GetTable (GetTableReportRequest) returns (GetTableReportResponse)

GetTableReportRequestGetTableReportRequest

{
  "test_id": "string"
}

Field

Description

test_id

string

Required field. ID of the test for which report table will be returned.

GetTableReportResponseGetTableReportResponse

{
  "status": "Status",
  "overall": {
    "http_codes": "map<int64, int64>",
    "net_codes": "map<int64, int64>",
    "quantiles": {
      "q50": "double",
      "q75": "double",
      "q80": "double",
      "q85": "double",
      "q90": "double",
      "q95": "double",
      "q98": "double",
      "q99": "double",
      "q100": "double"
    }
  },
  "cases": "map<string, Report>"
}

Field

Description

status

enum Status

Status of report table.

  • STATUS_UNSPECIFIED: Status is not specified.
  • COLLECTING: Report is being collected.
  • CALCULATING: Report is being calculated.
  • READY: Report is ready.

overall

Report

Result for all test cases combined ("overall" test case).

cases

object (map<string, Report>)

Results for individual test cases, mapped as case_name:report.

ReportReport

Aggregated test results.

Field

Description

http_codes

object (map<int64, int64>)

Total count of HTTP responses, grouped by HTTP response code.

net_codes

object (map<int64, int64>)

Total count of network responses, grouped by response code.

quantiles

Quantiles

Response time statistics, aggregated by quantiles.

QuantilesQuantiles

Statistical data aggregated by predefined set of quantiles.

Field

Description

q50

double

50 percentile (median).

q75

double

75 percentile.

q80

double

80 percentile.

q85

double

85 percentile.

q90

double

90 percentile.

q95

double

95 percentile.

q98

double

98 percentile.

q99

double

99 percentile.

q100

double

100 percentile (maximum or minimum).

Was the article helpful?

Previous
Overview
Next
CalculateKpiValues
© 2025 Direct Cursus Technology L.L.C.