-
Notifications
You must be signed in to change notification settings - Fork 474
[O11y][MongoDB] Update README with support of LDAP authentication #9526
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
[O11y][MongoDB] Update README with support of LDAP authentication #9526
Conversation
🚀 Benchmarks reportTo see the full report comment with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
@@ -23,6 +23,18 @@ When using the `directConnection=true` parameter in the connection URI, all oper | |||
|
|||
The username and password can either be included in the URI or set using the respective configuration options. If included in the URI, these credentials take precedence over any configured username and password configuration options. | |||
|
|||
Additional URI Support for LDAP Authentication in MongoDB: | |||
|
|||
- URI: `mongodb://[username:password@]host[:port][/[defaultauthdb][?options]]` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the URI format mongodb://[username:password@]host[:port][/[defaultauthdb][?options]] has already been specified above in the Complex URI section, we can just include the example for Authentication into the Additional supported URI examples section, like so:
- Replica set:
mongodb://localhost:27017,localhost:27022,localhost:27023/?replicaSet=dbrs
- Direct connection:
mongodb://localhost:27017/?directConnection=true
When using thedirectConnection=true
parameter in the connection URI, all operations are ..........etc! - Authentication:
mongodb://username:password@host:port/authSource=$external?authMechanism=PLAIN
When specifyingauthMechanism
as PLAIN, it indicates .............etc!
Are we also updating the beats documentation? |
We can update the beats documentation. Let me create an another issue in beats repo for it, thanks! |
Issue: elastic/beats#38963 |
💚 Build Succeeded
History
cc @harnish-elastic |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Package mongodb - 1.13.3 containing this change is available at https://epr.elastic.co/search?package=mongodb |
Proposed commit message
Checklist
changelog.yml
file.Related issues