Created
December 3, 2024 20:16
-
-
Save erez-rabih/8a43af1a452067843929646d3688684d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT time, owners.name, percentile(pods.cpu, p95) FROM owners | |
JOIN pod_owners ON owners.id = pod_owners.owner_id | |
JOIN pods ON pod_owners.pod_name = pods.name | |
WHERE pods.time BETWEEN NOW() AND NOW() - '7 days' | |
GROUP BY time, owners.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment