Azure Monitor · Schema

PredictiveAutoscalePolicy

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
scaleMode string The predictive autoscale mode.
scaleLookAheadTime string The amount of time to specify by which instances are launched in advance in ISO 8601 duration format.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-predictiveautoscalepolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PredictiveAutoscalePolicy",
  "title": "PredictiveAutoscalePolicy",
  "type": "object",
  "required": [
    "scaleMode"
  ],
  "properties": {
    "scaleMode": {
      "type": "string",
      "enum": [
        "Disabled",
        "ForecastOnly",
        "Enabled"
      ],
      "description": "The predictive autoscale mode."
    },
    "scaleLookAheadTime": {
      "type": "string",
      "description": "The amount of time to specify by which instances are launched in advance in ISO 8601 duration format."
    }
  }
}