Skip to content

Commit 8eaefbc

Browse files
back to data studio (#6614)
1 parent 9cc669b commit 8eaefbc

6 files changed

Lines changed: 17 additions & 19 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Plausible is [open source web analytics](https://plausible.io/open-source-websit
102102
| **Premium features** | All features available as listed in [our pricing plans](https://plausible.io/#pricing). | Premium features (marketing funnels, ecommerce revenue goals, SSO and sites API) are not available in order to help support [the project's long-term sustainability](https://plausible.io/blog/community-edition).|
103103
| **Bot filtering** | Advanced bot filtering for more accurate stats. Our algorithm detects and excludes non-human traffic patterns. We also exclude known bots by the User-Agent header and filter out traffic from data centers and referrer spam domains. We exclude ~32K data center IP ranges (i.e. a lot of bot IP addresses) by default. | Basic bot filtering that targets the most common non-human traffic based on the User-Agent header and referrer spam domains.|
104104
| **Server location** | All visitor data is exclusively processed on EU-owned cloud infrastructure. We keep your site data on a secure, encrypted and green energy powered server in Germany. This ensures that your site data is protected by the strict European Union data privacy laws and ensures compliance with GDPR. Your website data never leaves the EU. | You have full control and can host your instance on any server in any country that you wish. Host it on a server in your basement or host it with any cloud provider wherever you want, even those that are not GDPR compliant.|
105-
| **Data portability** | You see all your site stats and metrics on our modern-looking, simple to use and fast loading dashboard. You can only see the stats aggregated in the dashboard. You can download the stats using the [CSV export](https://plausible.io/docs/export-stats), [stats API](https://plausible.io/docs/stats-api) or the [Looker Studio Connector](https://plausible.io/docs/looker-studio). | Do you want access to the raw data? Self-hosting gives you that option. You can take the data directly from the ClickHouse database. The Looker Studio Connector is not available. |
105+
| **Data portability** | You see all your site stats and metrics on our modern-looking, simple to use and fast loading dashboard. You can only see the stats aggregated in the dashboard. You can download the stats using the [CSV export](https://plausible.io/docs/export-stats), [stats API](https://plausible.io/docs/stats-api) or the [Data Studio Connector](https://plausible.io/docs/looker-studio). | Do you want access to the raw data? Self-hosting gives you that option. You can take the data directly from the ClickHouse database. The Data Studio Connector is not available. |
106106
| **Premium support** | Real support delivered by real human beings who build and maintain Plausible. | Premium support is not included. CE is community supported only.|
107107
| **Costs** | There's a cost associated with providing an analytics service so we charge a subscription fee. We choose the subscription business model rather than the business model of surveillance capitalism. Your money funds further development of Plausible. | You need to pay for your server, CDN, backups and whatever other cost there is associated with running the infrastructure. You never have to pay any fees to us. Your money goes to 3rd party companies with no connection to us.|
108108

lib/plausible/billing/plan_benefits.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ defmodule Plausible.Billing.PlanBenefits do
133133
Enum.flat_map(plan.features, fn feature_mod ->
134134
case feature_mod.name() do
135135
:goals -> ["Goals and custom events"]
136-
:stats_api -> ["Stats API (600 requests per hour)", "Looker Studio Connector"]
136+
:stats_api -> ["Stats API (600 requests per hour)", "Data Studio Connector"]
137137
:shared_links -> ["Shared Links", "Embedded Dashboards"]
138138
:revenue_goals -> ["Ecommerce revenue attribution"]
139139
_ -> [feature_mod.display_name()]

lib/plausible_web/templates/site/settings_integrations.html.heex

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,20 +135,18 @@
135135

136136
<.tile :if={ee?()} docs="looker-studio">
137137
<:title>
138-
Google Looker Studio Connector
138+
Google Data Studio Connector
139139
</:title>
140140
<:subtitle>
141141
<p>
142-
You can use our Looker Studio connector to build custom reports with your Plausible data.
142+
Build custom reports with your Plausible data.
143143
</p>
144144
</:subtitle>
145145

146146
<div class="text-sm">
147-
Plausible Looker Studio Connector adds powerful reporting features that help turn Plausible
148-
into an even better replacement for Google Analytics.
149-
<.styled_link href="https://plausible.io/docs/looker-studio" new_tab={true}>
150-
Read the docs
151-
</.styled_link>
147+
Plausible keeps its dashboard simple by design. Use the Data Studio connector when you need a
148+
custom layout, branded client reports or a view that combines Plausible data with ad spend,
149+
CRM data or another source.
152150
</div>
153151
</.tile>
154152

test/plausible/billing/plan_benefits_test.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ defmodule Plausible.Billing.PlanBenefitsTest do
6060
"Goals and custom events",
6161
"Custom Properties",
6262
"Stats API (600 requests per hour)",
63-
"Looker Studio Connector",
63+
"Data Studio Connector",
6464
"Shared Links",
6565
"Embedded Dashboards"
6666
]
@@ -81,7 +81,7 @@ defmodule Plausible.Billing.PlanBenefitsTest do
8181
"5 years of data retention",
8282
"Custom Properties",
8383
"Stats API (600 requests per hour)",
84-
"Looker Studio Connector",
84+
"Data Studio Connector",
8585
"Ecommerce revenue attribution",
8686
"Funnels and user journeys",
8787
"Consolidated View"
@@ -102,7 +102,7 @@ defmodule Plausible.Billing.PlanBenefitsTest do
102102
"Ecommerce revenue attribution",
103103
"Funnels and user journeys",
104104
"Stats API (600 requests per hour)",
105-
"Looker Studio Connector",
105+
"Data Studio Connector",
106106
"Shared Segments",
107107
"Shared Annotations",
108108
"Consolidated View"

test/plausible_web/controllers/site_controller_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1360,14 +1360,14 @@ defmodule PlausibleWeb.SiteControllerTest do
13601360
test "renders looker studio integration section", %{conn: conn, site: site} do
13611361
conn = get(conn, "/#{site.domain}/settings/integrations")
13621362
resp = html_response(conn, 200)
1363-
assert resp =~ "Google Looker Studio Connector"
1363+
assert resp =~ "Google Data Studio Connector"
13641364
end
13651365

13661366
@tag :ce_build_only
13671367
test "does not render looker studio integration section", %{conn: conn, site: site} do
13681368
conn = get(conn, "/#{site.domain}/settings/integrations")
13691369
resp = html_response(conn, 200)
1370-
refute resp =~ "Google Looker Studio Connector"
1370+
refute resp =~ "Google Data Studio Connector"
13711371
end
13721372
end
13731373

test/plausible_web/live/choose_plan_test.exs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ defmodule PlausibleWeb.Live.ChoosePlanTest do
108108
assert business_box =~ "Up to 10 team members"
109109
assert business_box =~ "Up to 10 sites"
110110
assert business_box =~ "Stats API (600 requests per hour)"
111-
assert business_box =~ "Looker Studio Connector"
111+
assert business_box =~ "Data Studio Connector"
112112
assert business_box =~ "Custom Properties"
113113
assert business_box =~ "Funnels"
114114
assert business_box =~ "Ecommerce revenue attribution"
@@ -505,7 +505,7 @@ defmodule PlausibleWeb.Live.ChoosePlanTest do
505505
assert business_box =~ "Up to 10 team members"
506506
assert business_box =~ "Up to 10 sites"
507507
assert business_box =~ "Stats API (600 requests per hour)"
508-
assert business_box =~ "Looker Studio Connector"
508+
assert business_box =~ "Data Studio Connector"
509509
assert business_box =~ "Custom Properties"
510510
assert business_box =~ "Funnels"
511511
assert business_box =~ "Ecommerce revenue attribution"
@@ -923,7 +923,7 @@ defmodule PlausibleWeb.Live.ChoosePlanTest do
923923
assert business_box =~ "Unlimited team members"
924924
assert business_box =~ "Up to 50 sites"
925925
assert business_box =~ "Stats API (600 requests per hour)"
926-
assert business_box =~ "Looker Studio Connector"
926+
assert business_box =~ "Data Studio Connector"
927927
assert business_box =~ "Custom Properties"
928928
assert business_box =~ "Funnels"
929929
assert business_box =~ "Ecommerce revenue attribution"
@@ -1167,7 +1167,7 @@ defmodule PlausibleWeb.Live.ChoosePlanTest do
11671167
assert growth_box =~ "Goals and custom events"
11681168
assert growth_box =~ "Custom Properties"
11691169
assert growth_box =~ "Stats API (600 requests per hour)"
1170-
assert growth_box =~ "Looker Studio Connector"
1170+
assert growth_box =~ "Data Studio Connector"
11711171
assert growth_box =~ "Shared Links"
11721172
assert growth_box =~ "Embedded Dashboards"
11731173

@@ -1179,7 +1179,7 @@ defmodule PlausibleWeb.Live.ChoosePlanTest do
11791179
refute business_box =~ "Unlimited team members"
11801180
refute business_box =~ "Up to 50 sites"
11811181
refute business_box =~ "Stats API (600 requests per hour)"
1182-
refute business_box =~ "Looker Studio Connector"
1182+
refute business_box =~ "Data Studio Connector"
11831183
refute business_box =~ "Custom Properties"
11841184

11851185
assert enterprise_box =~ "Everything in Business"

0 commit comments

Comments
 (0)