20.02.27 - Apigee API Monitoring 출시 노트

Apigee Edge 문서입니다.
Go to the 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"
}

객체의 전체 설명은 웹훅 객체 형식을 참조하세요.