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?
相关问题
- Why do Dataflow steps not start?
- __call__() missing 1 required positional argument:
- Cannot upload large file to Google Cloud Storage
- How to set query parameters dialogflow php sdk
- Google Data Studio connect to cloud datastore
相关文章
- How do I create a persistent volume claim with Rea
- GKE does not scale to/from 0 when autoscaling enab
- Can't push image to google container registry
- Your application has authenticated using end user
-
Google App Engine Error:
INVALID_ARGUMENT - How to create a namespace if it doesn't exists
- How can I make http call to DialogFlow V2 using si
- How can i recover Blobs after migration to HRD
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
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.