You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logic around the 'RABBIT_URL' flag assumes that all URLs will start with a prefix matching https?://. When I did not include this prefix (i.e., was doing internal routing and did not bother to set the protocol), the exporter silently set the URL to be the default http://localhost:15672. There are plenty of use cases like mine, where the protocol prefix is unnecessary; whether or not you want to keep this behavior, it would be nice to have some kind of error message generated and also some documentation.
Thanks!
The text was updated successfully, but these errors were encountered:
The URL I'm using is of the form rabbitmq.<company-specific-stuff>.io, which is typical of how we set up internal routing. I was able to make it work by throwing an 'http://' on the front -- so it is nice to have the note in the readme, thanks.
The logic around the 'RABBIT_URL' flag assumes that all URLs will start with a prefix matching
https?://
. When I did not include this prefix (i.e., was doing internal routing and did not bother to set the protocol), the exporter silently set the URL to be the defaulthttp://localhost:15672
. There are plenty of use cases like mine, where the protocol prefix is unnecessary; whether or not you want to keep this behavior, it would be nice to have some kind of error message generated and also some documentation.Thanks!
The text was updated successfully, but these errors were encountered: