From b054443d47967d622930e8a8c7cf9a8f48650416 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 8 Aug 2019 09:00:38 +0000 Subject: [PATCH] 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 --- testing/mozharness/mozharness/mozilla/building/buildbase.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/testing/mozharness/mozharness/mozilla/building/buildbase.py b/testing/mozharness/mozharness/mozilla/building/buildbase.py index a2c138ace362..6b9bbdead1f2 100755 --- a/testing/mozharness/mozharness/mozilla/building/buildbase.py +++ b/testing/mozharness/mozharness/mozilla/building/buildbase.py @@ -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': [], }