New issue
Advanced search Search tips

Issue 740554 link

Starred by 0 users

Issue metadata

Status: WontFix
Owner: ----
Closed: Aug 13
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 2
Type: ----



Sign in to add a comment

Add monitoring on event_mon side that will guarantee that test locations are not reported multiple times too frequently

Project Member Reported by serg...@chromium.org, Jul 10 2017

Issue description

This can probably be done with a query like this:

  WITH

  identical_report_counts AS (
    SELECT
      count(*) as num_reports
    FROM
      gfstmp_chrome_infra.tmp_chrome_infra.today as a
    WHERE
      a.(GWSLogEntryProto_weak_fields_pkg.PlayExtension).chromeinfra_event.has_test_locations_event
    GROUP BY
      a.(GWSLogEntryProto_weak_fields_pkg.PlayExtension).chromeinfra_event.test_locations_event.loctions.test_name,
      a.(GWSLogEntryProto_weak_fields_pkg.PlayExtension).chromeinfra_event.test_locations_event.loctions.file,
      a.(GWSLogEntryProto_weak_fields_pkg.PlayExtension).chromeinfra_event.test_locations_event.loctions.line
  )

  SELECT
    MAX(num_reports)
  FROM
    identical_reports_counts;

and alert if the resulting value is too high.
 

Comment 1 Deleted

Cc: seanmccullough@chromium.org
CC Sean, who will be taking over flakiness effort as I'm transitioning to another team.
Project Member

Comment 4 by sheriffbot@chromium.org, Aug 13

Labels: Hotlist-Recharge-Cold
Status: Untriaged (was: Available)
This issue has been Available for over a year. If it's no longer important or seems unlikely to be fixed, please consider closing it out. If it is important, please re-triage the issue.

Sorry for the inconvenience if the bug really should have been left as Available.

For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
Status: WontFix (was: Untriaged)

Sign in to add a comment