Skip to main content

steps_perf_metrics_summary

Creates, updates, deletes, gets or lists a steps_perf_metrics_summary resource.

Overview

Namesteps_perf_metrics_summary
TypeResource
Idfirebase.toolresults.steps_perf_metrics_summary

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
appStartTimeobject (id: AppStartTime)
executionIdstringA tool results execution ID. @OutputOnly
graphicsStatsobjectGraphics statistics for the entire run. Statistics are reset at the beginning of the run and collected at the end of the run. (id: GraphicsStats)
historyIdstringA tool results history ID. @OutputOnly
perfEnvironmentobjectDescribes the environment in which the performance metrics were collected (id: PerfEnvironment)
perfMetricsarraySet of resource collected
projectIdstringThe cloud project @OutputOnly
stepIdstringA tool results step ID. @OutputOnly

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_perf_metrics_summaryselectprojectId, historyId, executionId, stepIdRetrieves 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.

NameDatatypeDescription
executionIdstring
historyIdstring
projectIdstring
stepIdstring

SELECT examples

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;