X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f2c2cb93161f2a50c23e6e6ebbdf2bb879e05da2..dab0c5596e39dc455d88bba797717e829fe5caf5:/services/keep-web/server_test.go diff --git a/services/keep-web/server_test.go b/services/keep-web/server_test.go index dd8ce06172..61c540808b 100644 --- a/services/keep-web/server_test.go +++ b/services/keep-web/server_test.go @@ -480,8 +480,10 @@ func (s *IntegrationSuite) TestMetrics(c *check.C) { c.Check(counters["arvados_keepweb_collectioncache_hits//"].Value, check.Equals, int64(1)) c.Check(counters["arvados_keepweb_collectioncache_pdh_hits//"].Value, check.Equals, int64(1)) c.Check(gauges["arvados_keepweb_collectioncache_cached_manifests//"].Value, check.Equals, float64(1)) - // FooCollection's cached manifest size is 45 ("1f4b0....+45") plus one 51-byte blob signature - c.Check(gauges["arvados_keepweb_sessions_cached_collection_bytes//"].Value, check.Equals, float64(45+51)) + // FooCollection's cached manifest size is 45 ("1f4b0....+45") + // plus one 51-byte blob signature; session fs counts 3 inodes + // * 64 bytes. + c.Check(gauges["arvados_keepweb_sessions_cached_collection_bytes//"].Value, check.Equals, float64(45+51+64*3)) // If the Host header indicates a collection, /metrics.json // refers to a file in the collection -- the metrics handler