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

[chore][receiver/redis] Update username/password README description #33710

Merged
merged 1 commit into from
Jun 21, 2024
Merged
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
5 changes: 3 additions & 2 deletions receiver/redisreceiver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ next consumer. The `collection_interval` configuration option tells this
receiver the duration between runs. This value must be a string readable by
Golang's `ParseDuration` function (example: `1h30m`). Valid time units are
`ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`.
- `username` (no default): Client username used to connect to a Redis >=6.0 instance that is using the Redis ACL system.
- `password` (no default): The password used to access the Redis instance;
must match the password specified in the `requirepass` server configuration
option.
must match the password specified in the `requirepass` server configuration option in Redis <6.0.
For Redis >=6.0, the user's password when connecting using the Redis ACL system.
- `transport` (default = `tcp`) Defines the network to use for connecting to the server. Valid Values are `tcp` or `Unix`
- `tls`:
- `insecure` (default = true): whether to disable client transport security for the exporter's connection.
Expand Down
Loading