Dinu John
Dinu John
> Are you going to fix the bug yourself? Otherwise, please let us know so @j-min5u can handle this issue. 😉 @j-min5u Please go ahead with the fix. > I...
Yeah, this would be one less configuration to add. We would rely on ```unframed_requests``` configuration to enable HTTP health check. ``` if( health_check_service == true) { if( unframed_requests == true...
I'm leaning towards having option to enable HTTP health check on top of GRPC health check: ``` if( health_check_service == true) { enableGRPCHealthCheck(); if( unframed_requests == true ) { enableHttpHealthCheck()...
The fix needs to be added to OTelMetricsSource as well [here](https://github.com/opensearch-project/data-prepper/blob/main/data-prepper-plugins/otel-metrics-source/src/main/java/com/amazon/dataprepper/plugins/source/otelmetrics/OTelMetricsSource.java#L111).
@jinfanzon Thanks for your interest in Data Prepper! I see in the data prepper configuration for otel_metrics_source, port was not specified. When port is not specified, the [default port is...