I've my rest service written in spring boot and it's been hosted over app engine. We are trying to get the dashboard where we can see the each failed api's count and detailed log of them like what's request body sent, error message from the API and database latency time. Please help me. I'm new to GCP and moved from azure
Don't know about a dashboard. If one doesn't exist, you can get a workaround/hack by checking your logs - https://console.cloud.google.com/logs.
- You can filter the logs so that it only displays App Engine Request Logs.
- You can also create metrics that match specific criteria e.g. a count of requests to specific endpoints whose http status is say 500 or 404. This is a very old blog article from Google that can give you an idea of the possibilities