Page MenuHomePhabricator

Missing `success` event counts in MobileWikiAppCreateAccount schema as of 2022-08-19
Closed, ResolvedPublicBUG REPORT

Description

Steps to reproduce

Query event counts in MobileWikiAppCreateAccount, values for event.action = success are null/0 past timestamps of 2022-08-19 (except for a single '1' value on 2022-08-23). The null/counts apply to every source.

Counts for event.action = start are incrementing as expected.

Expected results

We should be seeing event counts for event.action = success.

Actual results.

DateStartSuccessError
2022-08-1538414730
2022-08-1636255070
2022-08-1741634730
2022-08-1835593700
2022-08-19401700
2022-08-20427000
2022-08-21442400
2022-08-22397600
2022-08-23419210
2022-08-24408800

Environments observed

Query

SELECT
CAST(FROM_ISO8601_TIMESTAMP(dt) AS DATE) AS DATE,
count(*) as count,
event.action
FROM event.mobilewikiappcreateaccount  
WHERE YEAR = 2022 AND MONTH >= 8 AND DAY >= 1
AND regexp_like(useragent.wmf_app_version, '-r-')
AND CAST(FROM_ISO8601_TIMESTAMP(dt) AS DATE) < current_date
GROUP BY CAST(FROM_ISO8601_TIMESTAMP(dt) AS DATE), event.action
ORDER BY CAST(FROM_ISO8601_TIMESTAMP(dt) AS DATE)

Event Timeline

Dbrant claimed this task.
Dbrant added a subscriber: Dbrant.

I've confirmed that the rate of success events is back to normal levels. Please reopen if there are any further discrepancies.