Closed mrnetops closed 1 year ago
Similar to how we consolidated
We should consolidate
Right now we need to do hinky things like
sum(rate(fastly_rt_requests_total{}[1m])) - sum(rate(fastly_rt_http2_total{}[1m])) - sum(rate(fastly_rt_http3_total{}[1m]))
to derive http1 requests and it requires us to explicitly know every potential metric name in play to essentially derive it by exclusion.
i.e. if http4 is added, the above exclusion calculation breaks unless it is explicitly adjusted.
fastly_rt_http_total {version=1} would be soooo much nicer and way less fragile.
fastly_rt_http_total {version=1}
Similar to how we consolidated
We should consolidate
Right now we need to do hinky things like
to derive http1 requests and it requires us to explicitly know every potential metric name in play to essentially derive it by exclusion.
i.e. if http4 is added, the above exclusion calculation breaks unless it is explicitly adjusted.
fastly_rt_http_total {version=1}
would be soooo much nicer and way less fragile.