google-data-studio

Connect a Google CloudSQL Postgres database to Data Studio

独自空忆成欢 提交于 2019-12-08 08:27:12
问题 I am trying to connect a Postgres database hosted in a google Cloud Sql instance to Data Studio. I have followed the instructions (found here https://support.google.com/datastudio/answer/7288010) but to my disappointment, I still cannot connect to the database from Data Studio. I think the problem lies with the SSL connection, as if I enable "non-secure connections" in the options in CloudSql I can successfully connect from Data Studio. I have created the 3 files required for the ssl

Google Data Studio MySql data source connection does not exist Error

拈花ヽ惹草 提交于 2019-12-08 06:11:21
问题 Platform: Google Data Studio Data Source: MySQL Connection was working before, meaning no issues with credentials. All of a sudden, getting the below error: All IPs have been whitelisted from the google data studio list of ips. The only thing that comes to mind is a limitation of GDS to process data. The data source table has around 200K+ rows. Not sure what is the limitation for GDS with MySQL. There's no indication anywhere. Anyone out there can help to solve this or maybe provide some info

How to use UNNEST Params in Google Data Studio - How to create Firebase event report with UNNEST action & label params in Google Data Studio

邮差的信 提交于 2019-12-08 02:27:16
问题 We extract event report with param name action & label by querying below in Bigquery #standardSQL select event_name, param1.value.string_value as action, param2.value.string_value as label, count(1) as eventcount From `<table>`, UNNEST(event_params) as param1, UNNEST(event_params) as param2 where event_name = 'BotNav' and param1.key='action' and param2.key='label' group by 1, 2, 3 order by eventcount desc **But, How to fetch this report via data studio. How to UNNEST Param in google data

Tool Recommendation to create Interaction Map with multiple dimensions

為{幸葍}努か 提交于 2019-12-07 23:16:17
问题 I have knowledge in QLik/Sense, Big Query, Google Data Studio ( and related ) I need to create a map with multiple points and each point will display data from the database (point related) The table will look for example like this: +------------+---------------------------+-----------+---------+-------+ | Store Name | Store Location (Long/Lat) | Product | Ordered | Sold | +============+===========================+===========+=========+=======+ | Store 1 | XXX,XXX | Product 1 | True | False |

Connect a Google CloudSQL Postgres database to Data Studio

你说的曾经没有我的故事 提交于 2019-12-06 16:27:42
I am trying to connect a Postgres database hosted in a google Cloud Sql instance to Data Studio. I have followed the instructions (found here https://support.google.com/datastudio/answer/7288010 ) but to my disappointment, I still cannot connect to the database from Data Studio. I think the problem lies with the SSL connection, as if I enable "non-secure connections" in the options in CloudSql I can successfully connect from Data Studio. I have created the 3 files required for the ssl connection to work: Client certificate Client key Server certificate I have uploaded them in the relevant

Tool Recommendation to create Interaction Map with multiple dimensions

不羁的心 提交于 2019-12-06 08:46:04
I have knowledge in QLik/Sense, Big Query, Google Data Studio ( and related ) I need to create a map with multiple points and each point will display data from the database (point related) The table will look for example like this: +------------+---------------------------+-----------+---------+-------+ | Store Name | Store Location (Long/Lat) | Product | Ordered | Sold | +============+===========================+===========+=========+=======+ | Store 1 | XXX,XXX | Product 1 | True | False | +------------+---------------------------+-----------+---------+-------+ | Store 2 | YYY,YYY | Product

Differing parameters for Google Data Studio Connector to retrieve data

谁说胖子不能爱 提交于 2019-12-06 04:57:16
I am trying to connect to a datastore that needs different parameters to retrieve the data. I've tried different multiple instances of the data connector - but data studio seems to struggle to store different configuration values? The Data Connector control isn't currently available for community connectors. What's the best approach please ? Community Connectors currently do not support parametrization. We have plans to add this feature in the future. At present, other than dates, you cannot pass parameters to the connector while viewing the dashboard. You can add the same connector multiple

Google Data Studio & AWS MySQL SSL Connection

半世苍凉 提交于 2019-12-04 02:58:34
I am trying to remotely connect Google Data Studio with our MySQL Database, which is hosted on an AWS instance. To allow for a secure connection, we added SSL access to the AWS's MySQL database user as recommended in the documentation : GRANT USAGE ON *.* TO 'encrypted_user'@'%' REQUIRE SSL; The problem here is that AWS, unlike GOOGLE CloudSQL , only generates a Server certificate , and not a Client certificate , nor a Client private key (as far as I can tell). Both the latter is needed to enable SSL for Google Data Studio & MySQL connection. Just to add a side-note, we also white-listed

MySQL date and datetime formats unrecognised by Data Studio

随声附和 提交于 2019-12-03 07:18:57
I've linked Google data studio with a MySQL database using the standard connector. Almost everything works fine except for date and datetime fields. I have these 2 fields in phpmyadmin (field name, field type , output ): Validated_date datetime 2017-09-27 12:31:04 Expiration_date date 2017-12-24 In Data Studio I've set these types, but none of them are recognised: Validated_date Date Hour (YYYYMMDDHH) Expiration_date Date (YYYYMMDD) I tried to format the field with date_format in my SELECT: DATE_FORMAT(p.Expiration_date, '%Y%m%d') AS "Expiration Date" I even tried other date_formats but they

DataStudio : BigQuery & Standard SQL

我的梦境 提交于 2019-12-02 10:08:59
How to use standard SQL queries on Google Data Studio using a BigQuery Data Source ? Thanks Unfortunately DataStudio only currently supports legacy SQL. The DataStudio team are working on BigQuery Standard SQL support To query using legacy sql in DataStudio Create a new report in DataStudio Select BigQuery connector (you will need to authorise access) Select Custom Query, which will give you the option of entering Legacy SQL directly Google Data Studio supports #standardSQL now! Just check the appropriate box when inserting your query. 来源: https://stackoverflow.com/questions/42064616