ApplicationLogsConfig

Application logs configuration.

AzureComputeFaaSFunctionsServerless

Properties

Name Type Description
azureBlobStorage object Application logs to blob storage configuration.
azureTableStorage object Application logs to azure table storage configuration.
fileSystem object Application logs to file system configuration.
View JSON Schema on GitHub

JSON Schema

azure-function-apps-application-logs-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-schema/azure-function-apps-application-logs-config-schema.json",
  "title": "ApplicationLogsConfig",
  "description": "Application logs configuration.",
  "type": "object",
  "properties": {
    "azureBlobStorage": {
      "$ref": "#/definitions/AzureBlobStorageApplicationLogsConfig",
      "description": "Application logs to blob storage configuration."
    },
    "azureTableStorage": {
      "$ref": "#/definitions/AzureTableStorageApplicationLogsConfig",
      "description": "Application logs to azure table storage configuration."
    },
    "fileSystem": {
      "$ref": "#/definitions/FileSystemApplicationLogsConfig",
      "description": "Application logs to file system configuration."
    }
  }
}