Skip to main content

perf_metrics_summary

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

Overview

Nameperf_metrics_summary
TypeResource
Idfirebase.toolresults.perf_metrics_summary

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertprojectId, historyId, executionId, stepIdCreates a PerfMetricsSummary resource. Returns the existing one if it has already been created. May return any of the following error code(s): - NOT_FOUND - The containing Step 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

INSERT examples

Creates a PerfMetricsSummary resource. Returns the existing one if it has already been created. May return any of the following error code(s): - NOT_FOUND - The containing Step does not exist

INSERT INTO firebase.toolresults.perf_metrics_summary (
data__projectId,
data__historyId,
data__executionId,
data__stepId,
data__perfMetrics,
data__perfEnvironment,
data__appStartTime,
data__graphicsStats,
projectId,
historyId,
executionId,
stepId
)
SELECT
'{{ projectId }}',
'{{ historyId }}',
'{{ executionId }}',
'{{ stepId }}',
'{{ perfMetrics }}',
'{{ perfEnvironment }}',
'{{ appStartTime }}',
'{{ graphicsStats }}',
'{{ projectId }}',
'{{ historyId }}',
'{{ executionId }}',
'{{ stepId }}'
RETURNING
appStartTime,
executionId,
graphicsStats,
historyId,
perfEnvironment,
perfMetrics,
projectId,
stepId
;