Skip to content

Commit aa924a9

Browse files
authored
Update setup wizard page and api for usage data (#3437) (#3453)
* Update setup wizard page and api for usage data --------- Co-authored-by: Lyle Schemmerling <[email protected]>
1 parent 70f8475 commit aa924a9

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed
Loading

astro/src/content/docs/_shared/_setup-wizard.mdx

+5-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ Once the setup wizard is complete you will be logged into FusionAuth using the c
1818
This will be the first account to be created in FusionAuth and this user will be assigned the `admin` role the FusionAuth application. Additional
1919
users can be assigned the `admin` role at a later time.
2020

21-
#### License agreement and communications
21+
#### Analytics & communications
2222

23-
To complete the setup wizard you must toggle the Accept button after reading the FusionAuth license agreement. You won't find any surprise strings attached here, just the normal lawyer speak for CYA.
23+
Your feedback on how you learned about FusionAuth helps us better serve our customers.
2424

2525
Optionally stay informed by opting-in to receive FusionAuth technical announcements, tutorials and other technical focused emails. You may opt-out at any time in the future, or opt-in at a later date by visiting [fusionauth.io](/) and finding the "Subscribe for updates" form at the bottom of the page.
2626

27-
Your feedback on how you learned about us helps us better serve our customers.
27+
If your instance is hosted on FusionAuth Cloud, then usage stats collection is part of the cloud hosting package. Self-hosted customers can disable usage stats collection. See [Collected Metrics](/docs/get-started/download-and-install/collected-metrics) for more information.
28+
29+
To complete the Setup Wizard you must toggle the Accept button after reading the FusionAuth license agreement. You won't find any surprise strings attached here, just the normal lawyer speak for CYA.
2830

2931
## Complete First Time Setup
3032

astro/src/content/docs/apis/_system-configuration-request-body.mdx

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ import JSON from 'src/components/JSON.astro';
9494

9595
> Example: `FFFFFF` would set the menu font color to white.
9696
</APIField>
97+
<APIField name="systemConfiguration.usageDataConfiguration.enabled" type="Boolean" since="1.55.0">
98+
Whether or not FusionAuth collects and sends usage data to improve the product.
99+
</APIField>
97100
<APIField name="systemConfiguration.webhookEventLogConfiguration.delete.enabled" type="Boolean" optional defaults="false" since="1.53.0">
98101
Whether or not FusionAuth should delete Webhook Event Logs based upon this configuration. When `true` the <InlineField>webhookEventLogConfiguration.delete.numberOfDaysToRetain</InlineField> will be used to identify webhook event logs that are eligible for deletion. When this value is set to `false` webhook event logs will be preserved forever.
99102
</APIField>

astro/src/content/docs/apis/_system-configuration-response-body.mdx

+3
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ import JSON from 'src/components/JSON.astro';
7676
<APIField name="systemConfiguration.uiConfiguration.menuFontColor" type="String">
7777
A hexadecimal color to override the default menu font color in the user interface.
7878
</APIField>
79+
<APIField name="systemConfiguration.usageDataConfiguration.enabled" type="Boolean" since="1.55.0">
80+
Whether or not FusionAuth collects and sends usage data to improve the product.
81+
</APIField>
7982
<APIField name="systemConfiguration.webhookEventLogConfiguration.delete.enabled" type="Boolean" since="1.53.0">
8083
Whether or not FusionAuth should delete Webhook Event Logs based upon this configuration. When `true` the <InlineField>webhookEventLogConfiguration.delete.numberOfDaysToRetain</InlineField> will be used to identify webhook event logs that are eligible for deletion. When this value is set to `false` webhook event logs will be preserved forever.
8184
</APIField>

0 commit comments

Comments
 (0)