Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connect google Datastore to google Data Studio

I want to use google's Data Studio tool to make visualizations for the data I have in the Datastore. But it is not available as a source of data on the interface. How can I approach doing this?

like image 449
Nicky Feller Avatar asked Sep 05 '17 14:09

Nicky Feller


2 Answers

You can write your own Community Connector to fetch data using the Cloud Datastore API. One thing to keep in mind here is that Data Studio only accepts tabular data so you will need to reshape your data using the connector code if necessary.

like image 197
Minhaz Kazi Avatar answered Oct 05 '22 05:10

Minhaz Kazi


Your options are pretty limited. You'll probably have to move/convert your datastore entities into a database that can act as a data source for Data Studio. The following link will help you get started:

https://support.google.com/datastudio/topic/6370347?hl=en&ref_topic=7441382

like image 38
TheAddonDepot Avatar answered Oct 05 '22 05:10

TheAddonDepot