Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup wizard page and api for usage data #3437

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions astro/src/content/docs/_shared/_setup-wizard.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ Once the setup wizard is complete you will be logged into FusionAuth using the c
This will be the first account to be created in FusionAuth and this user will be assigned the `admin` role the FusionAuth application. Additional
users can be assigned the `admin` role at a later time.

#### License agreement and communications
#### Analytics & communications

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.
Your feedback on how you learned about FusionAuth helps us better serve our customers.

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.

Your feedback on how you learned about us helps us better serve our customers.
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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are officially cool with usage stats in our verbiage or do we want to say usage statistics? 🤓

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure who decides what's officially cool around here, but we're usings stats a lot in this PR https://github.com/FusionAuth/fusionauth-site/pull/3393/files


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.

## Complete First Time Setup

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ import JSON from 'src/components/JSON.astro';

> Example: `FFFFFF` would set the menu font color to white.
</APIField>
<APIField name="systemConfiguration.usageDataConfiguration.enabled" type="Boolean" since="1.55.0">
Whether or not FusionAuth collects and sends usage data to improve the product.
</APIField>
<APIField name="systemConfiguration.webhookEventLogConfiguration.delete.enabled" type="Boolean" optional defaults="false" since="1.53.0">
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.
</APIField>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ import JSON from 'src/components/JSON.astro';
<APIField name="systemConfiguration.uiConfiguration.menuFontColor" type="String">
A hexadecimal color to override the default menu font color in the user interface.
</APIField>
<APIField name="systemConfiguration.usageDataConfiguration.enabled" type="Boolean" since="1.55.0">
Whether or not FusionAuth collects and sends usage data to improve the product.
</APIField>
<APIField name="systemConfiguration.webhookEventLogConfiguration.delete.enabled" type="Boolean" since="1.53.0">
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.
</APIField>
Expand Down
Loading