Feature: Sending log files to Azure
Overview
The Support Application provides a method of sending log files to Azure Cloud storage.
In order to utilize this feature, an Azure Connection String and storage Container will need to be created within the Azure Storage Accounts.
Configuration
Basic configuration values needed:
- submitLogs - Define the Log files to upload
- loggingConnection - The Azure Connection string within Azure Storage Accounts.
- loggingContainer - The Azure Blob Storage container name.
Example:
{
....
"loggingConnection" : "DefaultEndpointsProtocol=https;AccountName=blah;AccountKey=blah==;EndpointSuffix=core.windows.net",
"loggingContainer" : "a-container-name",
"submitLogs": {
"enabled" : true,
"alarmEnabled" : false,
"sendOnBoot": true,
"directories" : [
{
"application" : "application.name",
"location" : "/sdcard/customapp/",
"files" : "applog.txt"
}
]
},
...
}
Feature Introduced
Feature introduced in Support Application 4.