From patchwork Fri Aug 14 17:21:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 11714849 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BF140618 for ; Fri, 14 Aug 2020 17:23:24 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9B5AE20708 for ; Fri, 14 Aug 2020 17:23:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=citrix.com header.i=@citrix.com header.b="TK2CRvTV" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9B5AE20708 Authentication-Results: mail.kernel.org; dmarc=fail (p=reject dis=none) header.from=eu.citrix.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k6dPY-0002Ev-1U; Fri, 14 Aug 2020 17:22:36 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1k6dPW-00024Q-FH for xen-devel@lists.xenproject.org; Fri, 14 Aug 2020 17:22:34 +0000 X-Inumbo-ID: 612ec8ec-6fbc-49ed-9c60-9cca7b539642 Received: from esa1.hc3370-68.iphmx.com (unknown [216.71.145.142]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id 612ec8ec-6fbc-49ed-9c60-9cca7b539642; Fri, 14 Aug 2020 17:22:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=citrix.com; s=securemail; t=1597425735; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=nYDls4pSAxC6Us+znyNlTaQYDrDAw64aEjMsGqXSd1A=; b=TK2CRvTV5PUax2W9gJmLviMY34hwX17ahwhC1SWoyp94cj4T6WwUgREg sbpIFYTlCV+azlXlHpZM+9FEBLOg2x5OcoOxX1YnP3Jfib5JOjq0m7WRp xnfE1/8BwFGdNCJX6VZXMJi9yikREsiAtapiv99NsPOjdNzbL8jW2APSS I=; Authentication-Results: esa1.hc3370-68.iphmx.com; dkim=none (message not signed) header.i=none IronPort-SDR: emOl40wtKzR+YEaTIaVVp0vVYkyYGC6MTh755ARD8q+YYCtoqukf7tCT321KCe5aIX2L6/wgxn bxyRWqAOYra8sAGIo4R6lEXdvuhTWj0DhBXlcQscDQclgBoFRCPytz9PzjJU7Z6xkW3/CczWhc mAUZiqfJHcW3/3alnt7gfMqirZgjdV/JliXMjDpLM4saNTFIQaiPRLQDPga6WRShmWay0KbPDs av3gHgp/euKlVRR4LjOgdim9bFWVLtP+gX4FEWbvApeFnYji42DRo7hwVb27wtIc+NnfDlGZZo pXA= X-SBRS: 2.7 X-MesageID: 24900367 X-Ironport-Server: esa1.hc3370-68.iphmx.com X-Remote-IP: 162.221.158.21 X-Policy: $RELAYED X-IronPort-AV: E=Sophos;i="5.76,313,1592884800"; d="scan'208";a="24900367" From: Ian Jackson To: CC: Ian Jackson Subject: [OSSTEST PATCH 12/60] history reporting (nfc): Record query-specific stats Date: Fri, 14 Aug 2020 18:21:17 +0100 Message-ID: <20200814172205.9624-13-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20200814172205.9624-1-ian.jackson@eu.citrix.com> References: <20200814172205.9624-1-ian.jackson@eu.citrix.com> MIME-Version: 1.0 X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Prep work. Nothing uses these yet. Signed-off-by: Ian Jackson --- sg-report-host-history | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sg-report-host-history b/sg-report-host-history index 705367cf..32414322 100755 --- a/sg-report-host-history +++ b/sg-report-host-history @@ -77,6 +77,10 @@ our $flightcond; our $minflight; our %cache; + +our %q_count; +our %q_misses; + our @cache_row_key_cols = qw(flight job status name); sub cache_row_key ($) { @@ -186,8 +190,10 @@ sub cacheable_fn ($$$) { $jqtotal++; $cachekey = '%'.$cachekey; my $cached = $jr->{$cachekey}; + $q_count{$cachekey}++; if (!$cached) { $jqcachemisses++; + $q_misses{$cachekey}++; $cached = $fn->(); $jr->{$cachekey} = $cached; }