vivekratnavel commented on a change in pull request #751: HDDS-3321. Prometheus
endpoint should not have Authentication filter …
URL: https://github.com/apache/hadoop-ozone/pull/751#discussion_r402548932
##########
File path:
hadoop-hdds/framework/src/main/java/org/apache/hadoop/hdds/server/http/BaseHttpServer.java
##########
@@ -116,7 +120,15 @@ public BaseHttpServer(Configuration conf, String name)
throws IOException {
prometheusMetricsSink = new PrometheusMetricsSink();
httpServer.getWebAppContext().getServletContext()
.setAttribute(PROMETHEUS_SINK, prometheusMetricsSink);
- httpServer.addInternalServlet("prometheus", "/prom",
PrometheusServlet.class);
+ HddsPrometheusConfig prometheusConfig =
+ ((OzoneConfiguration)conf).getObject(HddsPrometheusConfig.class);
+ if (!prometheusConfig.isSpnegoAuthEnabled()) {
Review comment:
```suggestion
if (prometheusConfig.isSpnegoAuthEnabled()) {
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]