You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#25
1. Make the uptime check less sensitive.
2. Make the memory usage check less sensitive
3. Fine tune the max request count, min instance count, etc. for simulation api vs full
* a single container for simulation api will accept no more than 2 requests.
* the server runs 3 workers (allowing + 1 for handling live checks)
#go into the monitoring console, query metrics, select the thing you want to monitor and then select the prometheus view in order to get the right syntax for these.
99
92
#the documentation is pretty bad and none of the LLMs, including google's, know how to do these properly.
100
-
query="histogram_quantile(0.95,sum by (le)(increase(run_googleapis_com:container_memory_utilizations_bucket{monitored_resource=\"cloud_run_revision\",service_name=\"${google_cloud_run_v2_service.api.name}\"}[1m]))) > .75"
93
+
query="histogram_quantile(0.95,sum by (le)(increase(run_googleapis_com:container_memory_utilizations_bucket{monitored_resource=\"cloud_run_revision\",service_name=\"${google_cloud_run_v2_service.api.name}\"}[1m]))) > .9"
94
+
#if the memory jumps above 90% immediately notify the team in slack that we're approaching our limit.
0 commit comments