Bug 1572327 - Don't record sccache stats in perfherder per instance type. r=nalexander

Build metrics where the instance type matters, like build times, are
important to keep track of per instance type, but sccache stats are hit
rates, number of non-cacheable requests, and number of write errors to
the cache, none of which are dependent on the instance type.

Differential Revision: https://phabricator.services.mozilla.com/D41143

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2019-08-08 09:00:38 +00:00
parent 95452d44e3
commit b054443d47

View File

@ -1320,7 +1320,6 @@ or run without that action (ie: --no-{action})"
yield {
'name': 'sccache hit rate',
'value': hits,
'extraOptions': self.perfherder_resource_options(),
'subtests': [],
'lowerIsBetter': False
}
@ -1328,7 +1327,6 @@ or run without that action (ie: --no-{action})"
yield {
'name': 'sccache cache_write_errors',
'value': stats['stats']['cache_write_errors'],
'extraOptions': self.perfherder_resource_options(),
'alertThreshold': 50.0,
'subtests': [],
}
@ -1336,7 +1334,6 @@ or run without that action (ie: --no-{action})"
yield {
'name': 'sccache requests_not_cacheable',
'value': stats['stats']['requests_not_cacheable'],
'extraOptions': self.perfherder_resource_options(),
'alertThreshold': 50.0,
'subtests': [],
}