20.02.27 - Apigee API Monitoring 출시 노트

현재 Apigee Edge 문서가 표시되고 있습니다.
Apigee X 문서로 이동
정보

2020년 2월 27일 목요일에 퍼블릭 클라우드용 Apigee API Monitoring의 새 버전이 출시되기 시작했습니다.

출시 번호를 비교하여 확인하는 방법을 알아보려면 버전 번호 지정 정보를 참고하세요.

질문 또는 문제: 도움 받기

출시 알림: 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"
}

객체에 대한 자세한 설명은 웹훅 객체 형식을 참조하세요.