-
Notifications
You must be signed in to change notification settings - Fork 528
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
Document output.elasticsearch.api_key in yml file #3138
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3138 +/- ##
==========================================
- Coverage 79.63% 78.89% -0.74%
==========================================
Files 105 106 +1
Lines 5529 5587 +58
==========================================
+ Hits 4403 4408 +5
- Misses 1126 1179 +53
|
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.
if supported, we should have this in all of the elasticsearch sections - monitoring_elasticsearch
, source_mapping
Good point!
|
#protocol: "https" | ||
|
||
# Authentication credentials - either API key or username/password. | ||
#api_key: "id:api_key" |
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.
is this the base64 encoded version or really two strings with colon?
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.
It is really two strings with colon, the libbeat elasticsearch client takes care of the base64 encoding.
We should be consistent with this behaviour also for sourcemaps, so I am changing the elasticsearch/client
behavior accordingly.
Unfortunately we currently do not have system tests for the case that an apm-server.source_mapping.elasticsearch
is configured, created an issue for following up on that #3166.
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.
great, thanks for clarifying
#protocol: "https" | ||
|
||
# Authentication credentials - either API key or username/password. | ||
#api_key: "id:api_key" |
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.
great, thanks for clarifying
related to #3137