Publish to Google Sheets

Publishes selected metadata using Google Sheets API

Overview

This node is capable of publishing the pipeline metadata periodically in a Google Spreadsheet or when a trigger condition is met.

Inputs & Outputs

  • Inputs : 1, Media Format : Raw Video
  • Outputs : 1, Media Format: Raw Video
  • Output Metadata : None

Pipeline usage

Place this node after every metadata producer whose output should be written. Use Auto trigger for standard delta fields, Custom trigger for a precise condition, or Interval for regular sampling. Share the destination sheet with the configured service account and select the smallest metadata set needed so rows remain manageable.

Properties

PropertyDescriptionTypeDefaultRequired
trigger_typeWhen to collect metadata. Options: Custom trigger (custom_trigger); Auto trigger (auto_trigger): When significant node properties change; Interval (periodic); Scheduled (scheduled).enumauto_triggerYes
triggerPublish when this condition evaluates to true. Conditional on trigger_type being custom_trigger.trigger-conditionnullNo
intervalSet to 0 to publish every time metadata is collected. Unit: seconds.number5Yes
schedule_publishingSchedule publishing. Options: Disabled (null); Daily (day); Hourly (hour); Every 30 minutes (30min); Every 15 minutes (15min). Conditional on trigger_type being scheduled.enumnullNo
meta_to_publish_typeMetadata to publish. Options: Node Metadata (node_meta); Object Metadata (object_meta); Custom (custom).enumcustomYes
meta_to_publish_regexComma-separated regular expressions to select the metadata to publish. Conditional on meta_to_publish_type being custom. Format: comma-separated metadata paths or patterns.stringnodes.*.*_delta,nodes.*.*.*.*_deltaNo
objects_to_publishex. car, vehicle, truck. If specified, only objects of these types will be published. Conditional on meta_to_publish_type being object_meta.model-labelsnullNo
objects_only_new_updatedIf true, only publish objects the first time they are seen else publish both new and updated objects. Conditional on meta_to_publish_type being object_meta.booltrueNo
use_lumeo_gsheets_accountUse Lumeo-managed Google account to publish to Sheets. Easier to setup, but requires you to share your Google sheet with [email protected].boolfalseNo
gsheets_client_emailEmail address to use on Google Sheets API requests. See docs for registration instructions. Conditional on use_lumeo_gsheets_account being false.stringnullNo
gsheets_private_keyGoogle Sheets private key. Conditional on use_lumeo_gsheets_account being false.stringnullNo
gsheets_spreadsheet_idNeeds to be shared with Lumeo or accessible by the Google Sheets client email. See docs for setup instructions.stringnullNo
gsheets_sheet_nameName of the tab/sheet within the Google Sheet referenced above to publish to.stringSheet1No

Google Sheets API registration

To use the Google Sheets API service with your own API account, you need to get OAuth 2.0 credentials from the Google API Console.

Using your Google account, visit the Google API Console website.

Click On Library and search for Google Sheets API
Press Enable button (Fig 1)

684

Fig 1

You should be redirected to the Google Sheets API Service page.
On the Credentials menu press Create Credentials -> Service account (Fig 2)

975

Fig 2

On the "Create service account page" you need to introduce the name you want to use for the Service account, the Service account email address, and a short description.
Press Done when finished (Fig 3)

835

Fig 3

On the next window you can grant the service account access to your project resources (Fig 4)

813

Fig 4

After the service account is created, you need to open the Keys separator.
Now click on Add Key -> Create new key (Fig 5)

856

Fig 5

Chose JSON Key type and press Create. (Fig 6)
This should start the download of a JSON file containing your service account credentials.

555

Fig 6

Open the JSON file with a text editor. (Fig 7)
Here you can find on each line a set of key/value pairs.
The client_email and the private_key are required for the node configuration.
You should use their values (without enclosing quotes) to fill respectively the following fields of the node properties: Google Sheets Client Email and Google Sheets Private Key

1210

Fig 7

On the Google Drive, create a new Spreadsheet. Right-click on the file and press Share
Add the client_email of your service account as Editor. (Fig 8)

1030

Fig 8

To find the Spreadsheet ID, open the spreadsheet file on Google Drive.

You will see an URL like this: https://docs.google.com/spreadsheets/d/10Rx6088O56gDDPpy0FYB9FDZ30Dzj13P-4b5wXwzXTD/edit#gid=0

The 10Rx6088O56gDDPpy0FYB9FDZ30Dzj13P-4b5wXwzXTD part is the spreadsheet ID that should be introduced on the node property Google Spreadsheet ID

To fill the Google Sheet Name node property, check the name on the bottom left corner, in this case Sheet1 (Fig 9)

245

Fig 9

Metadata to Publish

In this field you can insert multiple path expressions, separated by comma, to include or exclude the metadata that should be published by the node.

Example:
When parsing metadata augmented by the Line Counter Node we can select the total objects that crossed both directions of the lines specified on the Line Counter Node using the following regular expression:
nodes.annotate_line_counter1.lines.*.dir*.*crossed*

Fields appended on-the-fly to metadata published on the Google Sheets

KeyValue
system_timestampCurrent system timestamp in UTC ISO format.
Example: 2021-04-14T09:22:24.617855Z
frame_timestampTimestamp based on the difference in frames since pipeline start.
Example: 0:04:00

Output Metadata

Node does not insert any output metadata; upstream metadata continues through the pipeline


Did this page help you?