Show unhealthy cloud services only on https://status.cloud.google.com/

Hey, GCP team,

I am mainly using https://status.cloud.google.com/ page to watch the status of GCP services. Is there a way to show the unhealthy services only? It would be easier for me navigate down to various services. 

1 5 79
5 REPLIES 5

Hello @t4ruixi  ,Welcome on Google Cloud Community.

https://status.cloud.google.com/ page does not have such configuration option. However, you could use Personalized Service Health for that. It's even better, because it's more granular than CSH and it's as name indicate, personal, so you will be informed whenever YOUR infra will be impacted. 

Google docs here: https://cloud.google.com/service-health?hl=en

My medium.com article about that here: https://medium.com/google-cloud/stay-ahead-of-the-storm-comprehensive-insights-into-google-cloud-per...

Feel free to ask if needed 🙂 

--
cheers,
DamianS
LinkedIn medium.com Cloudskillsboost

Hello, I want to query all the incidents within my organization. Follow the documentation, I am still having error regarding project quota. I did everything to make it work but still no change 😞
I tried using auth-application credentials, setting a quota project, etc etc but i am still have the error 

Hello @mehdi-relevanc  ,Welcome on Google Cloud Community.
Project quota does not have relation with service health itself. 

Here you have documentaion about quotas from support google : https://support.google.com/cloud/answer/6330231?hl=en

Official doc: https://cloud.google.com/docs/quotas/view-manage

--
cheers,
DamianS
LinkedIn medium.com Cloudskillsboost Sessionize Youtube

curl -X GET \
     -H "Authorization: Bearer $(gcloud auth print-access-token)" \
     "https://servicehealth.googleapis.com/v1beta/organizations/xxxx/locations/global/organizationEvents?filter=state=ACTIVE%20category=INCIDENT&page_size=2"
{
  "error": {
    "code": 403,
    "message": "Your application is authenticating by using local Application Default Credentials. The servicehealth.googleapis.com API requires a quota project, which is not set by default. To learn how to set your quota project, see https://cloud.google.com/docs/authentication/adc-troubleshooting/user-creds .",
    "status": "PERMISSION_DENIED",
    "details": [
      {
        "@type": "type.googleapis.com/google.rpc.ErrorInfo",
        "reason": "SERVICE_DISABLED",
        "domain": "googleapis.com",
        "metadata": {
          "consumer": "projects/xxxx",
          "service": "servicehealth.googleapis.com"
        }
      }
    ]
  }
}

When I add the header `X-Goog-User-Project` it works