gplay vitals anomalies
List the anomalies the Play Developer Reporting service has detected for a package — unexpected spikes in crash rate, ANR rate, and the other vitals — over a window.
gplay vitals anomalies --package com.example.app gplay vitals anomalies --since 90d gplay vitals anomalies --filter 'activeBetween("2026-01-01T00:00:00Z", UNBOUNDED)'
--since builds an activeBetween(...) window for you; --filter passes a raw AIP-160 predicate (e.g. an open-ended window) and overrides --since.
Read-only; --output json mirrors the API response verbatim; table/markdown show the metric set, anomalous metric and value, period, and dimensions.
gplay vitals anomalies [flags]| Flag | Description |
|---|---|
--filter string | raw AIP-160 filter (overrides --since), e.g. an activeBetween(...) with UNBOUNDED |
--limit int | max anomalies to return (0 = all, no cap) |
--output string | output format: table, json, or markdown (default: auto — table on TTY, json in pipes/CI) |
--package string | Android package name (overrides .gplay/config.json pin) |
--since string | window length back from now, e.g. 28d or 90d (default "28d") |
Global flags
Section titled “Global flags”| Flag | Description |
|---|---|
--account string | name of a stored Account to use (overrides env and active Account) |
--retry int | retry transient failures (transport errors, 5xx, 429) up to N times with exponential backoff (default: 0, no retry) |
--service-account string | path to a service-account JSON, or inline JSON content (overrides --account, env, and active Account) |
--timeout duration | per-request API timeout, e.g. 30s or 2m (default: 60s for control-plane calls, none for uploads) |
-v, --verbose | log flow steps to stderr (info level) |