Azure Monitor · Schema

MetadataFunction

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
id string The ID of the function.
name string The name of the function.
body string The KQL body of the function.
description string The description of the function.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-metadatafunction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetadataFunction",
  "title": "MetadataFunction",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the function."
    },
    "name": {
      "type": "string",
      "description": "The name of the function."
    },
    "body": {
      "type": "string",
      "description": "The KQL body of the function."
    },
    "description": {
      "type": "string",
      "description": "The description of the function."
    }
  }
}