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

[exporter/elasticsearch] Add telemetry.log_request_body and telemetry.log_response_body config #33854

Merged
merged 9 commits into from
Jul 3, 2024
27 changes: 27 additions & 0 deletions .chloggen/elasticsearchexporter_telemetry_settings.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Use this changelog template to create an entry for release notes.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: elasticsearchexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Introduce experimental `telemetry.log_request_body` and `telemetry.log_response_body` config

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [33854]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:

# If your change doesn't affect end users or the exported elements of any package,
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
# Optional: The change log or logs in which this entry should be included.
# e.g. '[user]' or '[user, api]'
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: []
10 changes: 10 additions & 0 deletions exporter/elasticsearchexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,16 @@ Settings related to node discovery are:

Node discovery can be disabled by setting `discover.interval` to 0.

### Telemetry settings

The Elasticsearch Exporter's own telemetry settings for testing and debugging purposes.
andrzej-stencel marked this conversation as resolved.
Show resolved Hide resolved

⚠️ This is experimental and may change at any time.

- `telemetry`:
- `log_request_body` (default=false): Logs Elasticsearch client request body as a field in a log line at DEBUG level. It requires `service::telemetry::logs::level` to be set to `debug`. WARNING: Enabling this config may expose sensitive data.
- `log_response_body` (default=false): Logs Elasticsearch client response body as a field in a log line at DEBUG level. It requires `service::telemetry::logs::level` to be set to `debug`. WARNING: Enabling this config may expose sensitive data.

## Exporting metrics

Metrics support is currently in development.
Expand Down
9 changes: 9 additions & 0 deletions exporter/elasticsearchexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ type Config struct {
Flush FlushSettings `mapstructure:"flush"`
Mapping MappingsSettings `mapstructure:"mapping"`
LogstashFormat LogstashFormatSettings `mapstructure:"logstash_format"`

// TelemetrySettings contains settings useful for testing/debugging purposes
// This is experimental and may change at any time.
TelemetrySettings `mapstructure:"telemetry"`
}

type TelemetrySettings struct {
LogRequestBody bool `mapstructure:"log_request_body"`
LogResponseBody bool `mapstructure:"log_response_body"`
}

type LogstashFormatSettings struct {
Expand Down
52 changes: 40 additions & 12 deletions exporter/elasticsearchexporter/elasticsearch_bulk.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,37 +32,59 @@ type esBulkIndexerItem = docappender.BulkIndexerItem

// clientLogger implements the estransport.Logger interface
// that is required by the Elasticsearch client for logging.
type clientLogger zap.Logger
type clientLogger struct {
*zap.Logger
logRequestBody bool
logResponseBody bool
}

// LogRoundTrip should not modify the request or response, except for consuming and closing the body.
// Implementations have to check for nil values in request and response.
func (cl *clientLogger) LogRoundTrip(requ *http.Request, resp *http.Response, err error, _ time.Time, dur time.Duration) error {
zl := (*zap.Logger)(cl)
zl := cl.Logger

var fields []zap.Field
if cl.logRequestBody && requ != nil && requ.Body != nil {
if b, err := io.ReadAll(requ.Body); err == nil {
fields = append(fields, zap.ByteString("request_body", b))
}
}
if cl.logResponseBody && resp != nil && resp.Body != nil {
if b, err := io.ReadAll(resp.Body); err == nil {
fields = append(fields, zap.ByteString("response_body", b))
}
}

switch {
case err == nil && resp != nil:
zl.Debug("Request roundtrip completed.",
fields = append(
fields,
zap.String("path", sanitize.String(requ.URL.Path)),
zap.String("method", requ.Method),
zap.Duration("duration", dur),
zap.String("status", resp.Status))
zap.String("status", resp.Status),
)
zl.Debug("Request roundtrip completed.", fields...)

case err != nil:
zl.Error("Request failed.", zap.NamedError("reason", err))
fields = append(
fields,
zap.NamedError("reason", err),
)
zl.Debug("Request failed.", fields...)
}

return nil
}

// RequestBodyEnabled makes the client pass a copy of request body to the logger.
func (*clientLogger) RequestBodyEnabled() bool {
// TODO: introduce setting log the bodies for more detailed debug logs
return false
func (cl *clientLogger) RequestBodyEnabled() bool {
return cl.logRequestBody
}

// ResponseBodyEnabled makes the client pass a copy of response body to the logger.
func (*clientLogger) ResponseBodyEnabled() bool {
// TODO: introduce setting log the bodies for more detailed debug logs
return false
func (cl *clientLogger) ResponseBodyEnabled() bool {
return cl.logResponseBody
}

func newElasticsearchClient(
Expand Down Expand Up @@ -97,6 +119,12 @@ func newElasticsearchClient(
return nil, err
}

esLogger := clientLogger{
Logger: telemetry.Logger,
logRequestBody: config.LogRequestBody,
logResponseBody: config.LogResponseBody,
}

return elasticsearch7.NewClient(esConfigCurrent{
Transport: httpClient.Transport,

Expand All @@ -122,7 +150,7 @@ func newElasticsearchClient(
// configure internal metrics reporting and logging
EnableMetrics: false, // TODO
EnableDebugLogger: false, // TODO
Logger: (*clientLogger)(telemetry.Logger),
Logger: &esLogger,
})
}

Expand Down
4 changes: 4 additions & 0 deletions exporter/elasticsearchexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ func createDefaultConfig() component.Config {
PrefixSeparator: "-",
DateFormat: "%Y.%m.%d",
},
TelemetrySettings: TelemetrySettings{
LogRequestBody: false,
LogResponseBody: false,
},
}
}

Expand Down
Loading