Connecting to Google Pub/Sub
Use the following steps to setup the Google Pub/Sub Integration.
Create your PubSub Topic
- Go to the Cloud Pub/Sub topics page in the GCP Console.
- Click Create Topic, enter a name and complete adding your new topic. Once completed, make note of the complete topic string shown in Topic details - you will need this information later when setting up the Integration.
Setup your Cloud Storage Account Service key
In this step we will setup an account key which will then be used by the Integration so that it can publish events.
- In the Google Cloud console and go to IAM & admin and select the Service accounts option.
- Click on Create Service Account.
- Give the account an appropriate Name and description. The Service account ID will be generated automatically for you during this step - you can leave it as the default.
Click Create to create the service account and continue. - On the Permissions screen that appears, give the account the permission Pub/Sub Publisher so that it can publish events.
Click Continue and then Done to complete creating the service account. - Locate the Service account you created, click on the 3-dot menu and select Create Key.
- In the popup that appears, you can leave it as JSON and click Create. This will download a json file containing the private key information that we need when setting up the integration.
- Open the downloaded json file. You will need to copy the entire contents from this file when asked during integration setup.
Create the Integration
- Log into your account on the IoT in a Box portal.
- Select the Integrations option and then select the Google PubSub integration.
- Enter the following information to complete the integration:
- Name: Enter a name for this integration. In case you have multiple integrations, this will help uniquely identify it in the list.
- Topic: Enter the complete topic string for your topic.
Be sure that you copy the complete string, including both topic & project id here. - Service Account Key: Paste the entire contents of the service key file, as obtained above.
Paste the entire contents of the json private key file here.
After saving the Integration, you will see it shown in your list of integrations.
- You can then edit the integration to make any changes needed.
- You can also toggle the Integration on/off at any time from here as well. Disabling the integration will stop new data from being sent to the PubSub topic.
Verifying things are working
You can verify the integration is working by adding a Subscription in GCP and then pulling messages for the topic.
Note: Data is published in reading and alert messages, one for each new event, recorded in JSON format.
As an example, you can use the GCP console and then use the following query to pull messages for your subscription. Note that this query only pulls in messages one at a time.
gcloud pubsub subscriptions pull --auto-ack your-subscription-string-here