diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-07-19 11:51:46 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-07-19 11:51:46 +0100 |
commit | 583b8ea273be82ebdf2a9f81fd51a150d910b349 (patch) | |
tree | 7b105cbfdb10466a291b07ea6a583d2cded7076f /setup | |
parent | bcff14adea471cbb496924622295c62c02a82720 (diff) |
Update FAQ
Diffstat (limited to 'setup')
-rw-r--r-- | setup/config/config_global.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setup/config/config_global.go b/setup/config/config_global.go index ac1380a4..10827bb2 100644 --- a/setup/config/config_global.go +++ b/setup/config/config_global.go @@ -73,7 +73,7 @@ type Global struct { // ServerNotices configuration used for sending server notices ServerNotices ServerNotices `yaml:"server_notices"` - // ReportStats configures opt-in anonymous stats reporting. + // ReportStats configures opt-in phone-home statistics reporting. ReportStats ReportStats `yaml:"report_stats"` // Configuration for the caches. @@ -189,9 +189,9 @@ func (c *Cache) Verify(errors *ConfigErrors, isMonolith bool) { checkPositive(errors, "max_size_estimated", int64(c.EstimatedMaxSize)) } -// ReportStats configures opt-in anonymous stats reporting. +// ReportStats configures opt-in phone-home statistics reporting. type ReportStats struct { - // Enabled configures anonymous usage stats of the server + // Enabled configures phone-home statistics of the server Enabled bool `yaml:"enabled"` // Endpoint the endpoint to report stats to |