When proxying a call to prometheus or any other service which then returns a 5xx, we should print this as a warn! instead of a debug! that we're currently doing. A upstream status code of 4xx can still be logged using debug!. (Note: unsuccessful calls are currently being logged as error! we might want to set these to the same value as the 5xx)
When proxying a call to prometheus or any other service which then returns a
5xx
, we should print this as awarn!
instead of adebug!
that we're currently doing. A upstream status code of4xx
can still be logged usingdebug!
. (Note: unsuccessful calls are currently being logged aserror!
we might want to set these to the same value as the5xx
)