I started playing with Google Cloud IOT Core today. I went through the tutorial and ran a script to send messages from the virtual device back to my topic (if this is the correct phrasing). If I want to pull a message sent by my virtual device, I run the following:
gcloud pubsub subscriptions pull --auto-ack projects/glass-potion-314513/subscriptions/my-subscription
And the following is returned:
┌──────────────────────────────────────┬──────────────────┬──────────────┬────────────────────────────────────┬──────────────────┐
│ DATA │ MESSAGE_ID │ ORDERING_KEY │ ATTRIBUTES │ DELIVERY_ATTEMPT │
├──────────────────────────────────────┼──────────────────┼──────────────┼────────────────────────────────────┼──────────────────┤
│ my-registry/my-node-device-payload-3 │ 2426853517884309 │ │ deviceId=my-node-device │ │
│ │ │ │ deviceNumId=2812664419074966 │ │
│ │ │ │ deviceRegistryId=my-registry │ │
│ │ │ │ deviceRegistryLocation=us-central1 │ │
│ │ │ │ projectId=glass-potion-314513 │ │
│ │ │ │ subFolder= │ │
└──────────────────────────────────────┴──────────────────┴──────────────┴────────────────────────────────────┴──────────────────┘
So everything went well.
However, where is this data actually stored and how can I access for use in downstream processes, such as analytics, etc? I've explored the Cloud IOT UI but can't find anything there.