From ebe607e732e2ca55049675ae1f0ba8534455d6c7 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Thu, 13 Mar 2025 11:50:51 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f28464..4daa2de 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ You can use tools like `jq` and `grep` to further process and filter the output. ```bash pb query run "select * from backend" --from=1m --to=now | jq . pb query run "select host, id, method, status from backend where status = 500" --from=1m --to=now | jq . > 500.json -pb query run "select host, id, method, status from backend where status = 500" | jq '. | select(.method == "PATCH")' +pb query run "select host, id, method, status from backend where status = 500" | jq '. | map(select(.method == "PATCH"))' pb query run "select host, id, method, status from backend where status = 500" --from=1m --to=now | grep "POST" | jq . | less ```