Skip to content

Commit

Permalink
[7.x] [Telemetry] telemetry.sendUsageFrom: "server" by default (#68071)…
Browse files Browse the repository at this point in the history
… (#68657)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
afharo and elasticmachine authored Jun 9, 2020
1 parent 6540dde commit 396eedb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/settings/telemetry-settings.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ See our https://www.elastic.co/legal/privacy-statement[Privacy Statement] to lea
| Set to `'server'` to report the cluster statistics from the {kib} server.
If the server fails to connect to our endpoint at https://telemetry.elastic.co/, it assumes
it is behind a firewall and falls back to `'browser'` to send it from users' browsers
when they are navigating through {kib}. Defaults to 'browser'.
when they are navigating through {kib}. Defaults to `'server'`.

| `telemetry.optIn`
| Set to `true` to automatically opt into reporting cluster statistics. You can also opt out through
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/telemetry/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const configSchema = schema.object({
})
),
sendUsageFrom: schema.oneOf([schema.literal('server'), schema.literal('browser')], {
defaultValue: 'browser',
defaultValue: 'server',
}),
});

Expand Down

0 comments on commit 396eedb

Please sign in to comment.