다음을 통해 공유


Microsoft.AppPlatform Spring/monitoringSettings 2020-11-01-preview

Bicep 리소스 정의

Spring/monitoringSettings 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.AppPlatform/Spring/monitoringSettings 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.AppPlatform/Spring/monitoringSettings@2020-11-01-preview' = {
  name: 'default'
  parent: resourceSymbolicName
  properties: {
    appInsightsAgentVersions: {}
    appInsightsInstrumentationKey: 'string'
    appInsightsSamplingRate: int
    error: {
      code: 'string'
      message: 'string'
    }
    traceEnabled: bool
  }
}

속성 값

Spring/monitoringSettings

Name Description
name 리소스 이름

Bicep에서 자식 리소스의 이름과 형식을 설정하는 방법을 참조하세요.
'default'
부모(parent) Bicep에서 자식 리소스에 대한 부모 리소스를 지정할 수 있습니다. 자식 리소스가 부모 리소스 외부에서 선언된 경우에만 이 속성을 추가하면 됩니다.

자세한 내용은 부모 리소스 외부의 자식 리소스를 참조하세요.
형식의 리소스에 대한 기호 이름: Spring
properties 모니터링 설정 리소스의 속성 MonitoringSettingProperties

MonitoringSettingProperties

Name Description
appInsightsAgentVersions Application Insight Agent의 버전을 나타냅니다. ApplicationInsightsAgentVersions
appInsightsInstrumentationKey 대상 애플리케이션 인사이트 계측 키, null 또는 공백 포함 비어 있으면 모니터링설정이 비활성화됩니다. 문자열
appInsightsSamplingRate Application Insight Agent의 샘플링 속도를 나타내며 범위 [0.0, 100.0] int
error 모니터링 설정 변경 내용을 적용할 때 오류가 발생합니다. 오류
traceEnabled api 버전 2020-11-01-preview 이후 사용되지 않는 추적 기능을 사용하도록 설정할지 여부를 나타냅니다. appInsightsInstrumentationKey를 활용하여 monitoringSettings가 활성화되었는지 여부를 나타내세요. bool

ApplicationInsightsAgentVersions

이 개체에는 배포 중에 설정할 속성이 포함되어 있지 않습니다. 모든 속성은 ReadOnly입니다.

오류

Name Description
코드 오류 코드입니다. 문자열
message 오류 메시지입니다. 문자열

ARM 템플릿 리소스 정의

Spring/monitoringSettings 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.AppPlatform/Spring/monitoringSettings 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.AppPlatform/Spring/monitoringSettings",
  "apiVersion": "2020-11-01-preview",
  "name": "default",
  "properties": {
    "appInsightsAgentVersions": {},
    "appInsightsInstrumentationKey": "string",
    "appInsightsSamplingRate": "int",
    "error": {
      "code": "string",
      "message": "string"
    },
    "traceEnabled": "bool"
  }
}

속성 값

Spring/monitoringSettings

Name Description
형식 리소스 종류 'Microsoft.AppPlatform/Spring/monitoringSettings'
apiVersion 리소스 api 버전 '2020-11-01-preview'
name 리소스 이름

JSON ARM 템플릿에서 자식 리소스의 이름 및 형식을 설정하는 방법을 참조하세요.
'default'
properties 모니터링 설정 리소스의 속성 MonitoringSettingProperties

MonitoringSettingProperties

Name Description
appInsightsAgentVersions Application Insight Agent의 버전을 나타냅니다. ApplicationInsightsAgentVersions
appInsightsInstrumentationKey 대상 애플리케이션 인사이트 계측 키, null 또는 공백 포함 비어 있으면 모니터링설정이 비활성화됩니다. 문자열
appInsightsSamplingRate Application Insight Agent의 샘플링 속도를 나타내며 범위 [0.0, 100.0] int
error 모니터링 설정 변경 내용을 적용할 때 오류가 발생합니다. 오류
traceEnabled api 버전 2020-11-01-preview 이후 사용되지 않는 추적 기능을 사용하도록 설정할지 여부를 나타냅니다. appInsightsInstrumentationKey를 활용하여 monitoringSettings가 활성화되었는지 여부를 나타내세요. bool

ApplicationInsightsAgentVersions

이 개체에는 배포 중에 설정할 속성이 포함되어 있지 않습니다. 모든 속성은 ReadOnly입니다.

오류

Name Description
코드 오류 코드입니다. 문자열
message 오류 메시지입니다. 문자열

Terraform(AzAPI 공급자) 리소스 정의

Spring/monitoringSettings 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

  • 리소스 그룹

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.AppPlatform/Spring/monitoringSettings 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AppPlatform/Spring/monitoringSettings@2020-11-01-preview"
  name = "default"
  parent_id = "string"
  body = jsonencode({
    properties = {
      appInsightsAgentVersions = {}
      appInsightsInstrumentationKey = "string"
      appInsightsSamplingRate = int
      error = {
        code = "string"
        message = "string"
      }
      traceEnabled = bool
    }
  })
}

속성 값

Spring/monitoringSettings

Name Description
형식 리소스 종류 "Microsoft.AppPlatform/Spring/monitoringSettings@2020-11-01-preview"
name 리소스 이름 "default"
parent_id 이 리소스의 부모인 리소스의 ID입니다. 형식의 리소스에 대한 ID: Spring
properties 모니터링 설정 리소스의 속성 MonitoringSettingProperties

MonitoringSettingProperties

Name Description
appInsightsAgentVersions Application Insight Agent의 버전을 나타냅니다. ApplicationInsightsAgentVersions
appInsightsInstrumentationKey 대상 애플리케이션 인사이트 계측 키, null 또는 공백 포함 비어 있으면 모니터링설정이 비활성화됩니다. 문자열
appInsightsSamplingRate Application Insight Agent의 샘플링 속도를 나타내며 범위 [0.0, 100.0] int
error 모니터링 설정 변경 내용을 적용할 때 오류가 발생합니다. 오류
traceEnabled api 버전 2020-11-01-preview 이후 사용되지 않는 추적 기능을 사용하도록 설정할지 여부를 나타냅니다. appInsightsInstrumentationKey를 활용하여 monitoringSettings가 활성화되었는지 여부를 나타내세요. bool

ApplicationInsightsAgentVersions

이 개체에는 배포 중에 설정할 속성이 포함되어 있지 않습니다. 모든 속성은 ReadOnly입니다.

오류

Name Description
코드 오류 코드입니다. 문자열
message 오류 메시지입니다. string