Apigee Edge 문서를 보고 있습니다.
Apigee X 문서로 이동하세요. info
2020년 2월 27일 목요일에 퍼블릭 클라우드용 Apigee API 모니터링의 새 버전이 출시되었습니다.
출시 버전 번호를 비교하여 이를 알아보는 방법은 출시 버전 번호 지정 정보를 참고하세요.
질문 또는 문제: Apigee Edge 지원팀에 문의하세요.
출시 알림: http://status.apigee.com으로 이동하여 업데이트 구독을 클릭합니다.
새로운 기능
이번 출시에는 다음과 같은 새로운 기능이 추가되었습니다.
웹훅 알림 객체의 새로운 형식
경고 알림의 대상으로 웹훅 URL을 지정할 경우, 이 URL로 전송되는 객체에 thresholdViolationsFormatted라는 새로운 속성이 있습니다. thresholdViolationsFormatted 속성에는 알림을 설명하는 객체가 포함되어 있습니다.
이 새로운 속성은 기존 thresholdViolations 속성에 추가됩니다.
thresholdViolations 속성에는 경고 세부정보가 있는 단일 문자열이 포함됩니다.
일반적으로 디코딩이 더 간단하기 때문에 thresholdViolationsFormatted 속성을 사용합니다.
예를 들어 경고에서 thresholdViolations 속성은 다음과 같은 형식의 문자열을 포함합니다.
"thresholdViolations":{
"Count0": "Duration=5 minutes Region=us-east1 Status Code=2xx Proxy=test-app Violation=sustained above 1.0"
}새 thresholdViolationsFormatted 속성에는 다음 형식의 객체가 포함됩니다.
"thresholdViolations": [ { "metric": "count", "duration": "5 minutes", "region": "us-east1", "statusCode": "2xx", "proxy": "test-app", "violation": "sustained above 1.0" }
객체에 대한 전체 설명은 웹훅 객체 형식을 참고하세요.