| fetch_report | R Documentation |
A pure function over the returned tibble, deliberately **not** a stored summary. A snapshot goes stale the moment you filter the rows; recomputing means 'fetch_report(subset(x, retryable))' is always correct.
fetch_report(x)
x |
A tibble from [collect_content()] or [pie_cat()]. |
A one-row tibble: 'n', 'ok', 'failed', 'retryable', and list-columns 'by_stage', 'by_reason' and 'missing' (the domains that produced nothing).
rows <- data.frame(
domain_name = c("a.com", "b.com", "c.com"),
status = c("ok", "failed", "failed"),
stage = c("infer", "fetch", "process"),
error_code = c(NA, "timeout", "thin_content"),
retryable = c(FALSE, TRUE, FALSE)
)
fetch_report(rows)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.