steps_perf_metrics_summary
Creates, updates, deletes, gets or lists a steps_perf_metrics_summary
resource.
Overview
Name | steps_perf_metrics_summary |
Type | Resource |
Id | firebase.toolresults.steps_perf_metrics_summary |
Fields
The following fields are returned by SELECT
queries:
- get_perf_metrics_summary
Successful response
Name | Datatype | Description |
---|---|---|
appStartTime | object | (id: AppStartTime) |
executionId | string | A tool results execution ID. @OutputOnly |
graphicsStats | object | Graphics statistics for the entire run. Statistics are reset at the beginning of the run and collected at the end of the run. (id: GraphicsStats) |
historyId | string | A tool results history ID. @OutputOnly |
perfEnvironment | object | Describes the environment in which the performance metrics were collected (id: PerfEnvironment) |
perfMetrics | array | Set of resource collected |
projectId | string | The cloud project @OutputOnly |
stepId | string | A tool results step ID. @OutputOnly |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_perf_metrics_summary | select | projectId , historyId , executionId , stepId | Retrieves a PerfMetricsSummary. May return any of the following error code(s): - NOT_FOUND - The specified PerfMetricsSummary does not exist |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
executionId | string | |
historyId | string | |
projectId | string | |
stepId | string |
SELECT
examples
- get_perf_metrics_summary
Retrieves a PerfMetricsSummary. May return any of the following error code(s): - NOT_FOUND - The specified PerfMetricsSummary does not exist
SELECT
appStartTime,
executionId,
graphicsStats,
historyId,
perfEnvironment,
perfMetrics,
projectId,
stepId
FROM firebase.toolresults.steps_perf_metrics_summary
WHERE projectId = '{{ projectId }}' -- required
AND historyId = '{{ historyId }}' -- required
AND executionId = '{{ executionId }}' -- required
AND stepId = '{{ stepId }}' -- required;