perf_metrics_summary
Creates, updates, deletes, gets or lists a perf_metrics_summary
resource.
Overview
Name | perf_metrics_summary |
Type | Resource |
Id | firebase.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | projectId , historyId , executionId , stepId | 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 |
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 |
INSERT
examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: perf_metrics_summary
props:
- name: projectId
value: string
description: Required parameter for the perf_metrics_summary resource.
- name: historyId
value: string
description: Required parameter for the perf_metrics_summary resource.
- name: executionId
value: string
description: Required parameter for the perf_metrics_summary resource.
- name: stepId
value: string
description: Required parameter for the perf_metrics_summary resource.
- name: projectId
value: string
description: >
The cloud project @OutputOnly
- name: historyId
value: string
description: >
A tool results history ID. @OutputOnly
- name: executionId
value: string
description: >
A tool results execution ID. @OutputOnly
- name: stepId
value: string
description: >
A tool results step ID. @OutputOnly
- name: perfMetrics
value: array
description: >
Set of resource collected
- name: perfEnvironment
value: object
description: >
Describes the environment in which the performance metrics were collected
- name: appStartTime
value: object
- name: graphicsStats
value: object
description: >
Graphics statistics for the entire run. Statistics are reset at the beginning of the run and collected at the end of the run.