Replies: 2 comments
-
The Pushgateway does support TLS, see https://github.com/prometheus/pushgateway#tls-and-basic-authentication |
Beta Was this translation helpful? Give feedback.
0 replies
-
What you are referring to is the client side. I suggest to ask over in https://github.com/prometheus/client_java ;) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
we have a pushgateway that only accepts HTTPS rquests and it was a big surprise when we realized that pushgateway class only accepts HTTP and is hard-coded right in the constructor:
public PushGateway(String address) {
this(createURLSneakily("http://" + address));
}
I'm using latest version available for Java (0.16.0).
I have 2 questions:
Why does this limitation exists ?
and
Can we expect pushgateway to support other protocols like HTTPS in the near future ?
Beta Was this translation helpful? Give feedback.
All reactions