...
In the Pipeline Studio, click System Admin.
From the System Admin page, click Configuration.
Click Make HTTP Calls.
From the drop-down list, select POST.
Enter the following HTTP request:
Code Block metrics/query?tag=namespace:<namespace>&tag=app:<pipelinename>&tag=run:<run-Id>&tag=workflow:DataPipelineWorkflow&metric=<metric-name>
Enter the namespace, pipeline name, and run id for the pipeline.
Replace
metric-name
withuser.<BigQueryLabel>.records.updated
.
For example, if you want to get the count forrecords.updated
for a sink calledBigQuery55
, default namespace, pipeline namedPOS_Sales_per_region
, and a Spark run Run ID ofd1685723-cba5-11ea-a338-ce6a685813cb
, enter:Code Block metrics/query?tag=namespace:default&tag=app:POS_Sales_per_Region-1_v8&tag=run:d1685723-cba5-11ea-a338-ce6a685813cb&tag=workflow:DataPipelineWorkflow&metric=user.BigQuery55.records.updated
Press Send to view the
records.updated
:The records updated are listed next to “value”.
...