- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Azure Deployment Manager(ADM)를 사용하여 복잡한 애플리케이션의 안전한 배포를 위해 단계적 롤아웃을 관리할 수 있습니다.
Datadog을 사용하여 Azure Deployment Manager에 대한 상태 검사를 만들고 문제가 감지되면 배포를 중지합니다.
Datadog을 ADM에 대한 상태 검사로 사용하려면 활성 Datadog 계정과 Azure Deployment Manager의 활성 인스턴스가 필요합니다.
<API_KEY>
and <APP_KEY>
with your Datadog API and application keys. Create a section in resources
for each monitor (or composite monitor) you just created and replace <MONITOR_ID>
with the monitor IDs. It is possible to add multiple checks within a health check step, but Datadog recommends you create one check per health check step, and then create additional health check steps for each composite monitor. If you are setting the check with something besides a composite monitor, be sure to update the regex
accordingly.다음은 상태 검사로 간주되는 Azure Deployment Manager 롤아웃 템플릿의 일부입니다.
{
"healthChecks": [
{
"name": "datadogCompositeMonitor1",
"request": {
"method": "GET",
"uri": "https://api.datadoghq.com/api/v1/monitor/<MONITOR_ID>?application_key=<APP_KEY>",
"authentication": {
"type": "ApiKey",
"name": "apikey",
"in": "Query",
"value": "<API_KEY>"
}
},
"response": {
"successStatusCodes": ["200"],
"regex": {
"matches": ["\"overall_state\"\\s*:\\s*\"OK\""],
"matchQuantifier": "All"
}
}
}
]
}
다음은 상태 검사 단계로 간주되는 Azure Deployment Manager 롤아웃 템플릿의 일부입니다.
{
"apiVersion": "2018-09-01-preview",
"type": "Microsoft.DeploymentManager/steps",
"name": "datadogHealthCheckStep1",
"location": "Central US",
"tags": {},
"properties": {
"stepType": "healthCheck",
"attributes": {
"waitDuration": "PT5M",
"maxElasticDuration": "PT10M",
"healthyStateDuration": "PT10M",
"type": "REST",
"properties": {
"healthChecks": [
{
"name": "datadogCompositeMonitor1",
"request": {
"method": "GET",
"uri": "https://api.datadoghq.com/api/v1/monitor/<MONITOR_ID>?application_key=<APP_KEY>",
"authentication": {
"type": "ApiKey",
"name": "apikey",
"in": "Query",
"value": "<API_KEY>"
}
},
"response": {
"successStatusCodes": ["200"],
"regex": {
"matches": ["\"overall_state\"\\s*:\\s*\"OK\""],
"matchQuantifier": "All"
}
}
}
]
}
}
}
}
다음은 Azure Deployment Manager 롤아웃 단계에 대한 전체 템플릿입니다.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"apiVersion": "2018-09-01-preview",
"type": "Microsoft.DeploymentManager/steps",
"name": "datadogHealthCheckStep1",
"location": "Central US",
"tags": {},
"properties": {
"stepType": "healthCheck",
"attributes": {
"waitDuration": "PT5M",
"maxElasticDuration": "PT10M",
"healthyStateDuration": "PT10M",
"type": "REST",
"properties": {
"healthChecks": [
{
"name": "datadogCompositeMonitor1",
"request": {
"method": "GET",
"uri": "https://api.datadoghq.com/api/v1/monitor/<MONITOR_ID>?application_key=<APP_KEY>",
"authentication": {
"type": "ApiKey",
"name": "apikey",
"in": "Query",
"value": "<API_KEY>"
}
},
"response": {
"successStatusCodes": ["200"],
"regex": {
"matches": [
"\"overall_state\"\\s*:\\s*\"OK\""
],
"matchQuantifier": "All"
}
}
}
]
}
}
}
}
]
}
롤아웃 단계에 대한 상태 검사 단계를 수행할 때 Azure Deployment Manager는 해당 배포의 상태 검사 단계에서 식별된 복합 모니터의 상태에 대해 Datadog Monitor API를 쿼리합니다.
Azure Deployment Manager는 템플릿에 제공된 정규식을 사용하여 응답을 파싱하며, overall_status: OK
문구가 포함되어 있는지 식별합니다.
overall_status: OK
가 발견되면 검사는 정상으로 간주됩니다. 상태가 Warn
, No Data
또는 Alert
이면 검사가 비정상으로 간주되고 Azure Deployment Manager가 배포를 중지합니다.
Azure Deployment Manager는 메트릭을 보고하지 않습니다.
Azure Deployment Manager에는 이벤트가 포함되지 않습니다.
Azure Deployment Manager에는 서비스 검사가 포함되지 않습니다.
도움이 필요하세요? Datadog 지원 팀에 문의하세요.