I am having Event Grid Trigger Azure Function(.Net 6 App) which is running on P2V2 plan (App Service) Windows OS. I am planning to run it on Linux OS in App Service hosting plan to save cost.
In Windows based App Service plan, I provide configuration settings in following way
[
{
"name": "APPINSIGHTS_INSTRUMENTATIONKEY",
"value": "",
"slotSetting": false
},
{
"name": "ApplicationInsights:LogLevel",
"value": "Information",
"slotSetting": false
},
{
"name": "AzureWebJobsStorage",
"value":"",
"slotSetting": false
},
{
"name": "Component:ComponentId",
"value": "",
"slotSetting": false
}
]
While deploying to Linux based OS, ApplicationInsights:LogLevel config setting doesn't accept because of colon(:) is not supported. What should I do in that case to run in Linux OS in App Service hosting plan ?
