Require to calculate availability of API in API gateway for SLA

0

we want calculate the Availability of API in the API Gateway, we are using the formula for calculation (Total request count - 5xx/Total Request count ) metric but we have challenge that error code 500 getting from application due to the some use case . there is any way to ignore 500 error code generate by application SLA calculation for availability API.

We have any other method to calculate the Availability of API

1 Answer
0

I am of the opinion that 500 errors, known cause or not, are unavailability. However, if you wish to ignore some errors, you will have to calculate the number yourself from the existing metrics:

1-((4XXerror)/(Count - 5XXerror))

profile pictureAWS
answered 2 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions