[QENG-4075] Also track completely invalid requests

When we don't even get a pool name we still want metrics to be recorded.
This commit is contained in:
Rick Bradley 2016-07-13 10:59:41 -05:00
parent 0ecf2ae345
commit 3101a44f63

View file

@ -387,6 +387,7 @@ module Vmpooler
status 404 status 404
end end
else else
metrics.increment('checkout.invalid.unknown')
status 404 status 404
end end
@ -429,6 +430,7 @@ module Vmpooler
status 404 status 404
end end
else else
metrics.increment('checkout.invalid.unknown')
status 404 status 404
end end