Missing Application Setting Alert in function app diagnose and solve problems link. the configuration is for a event hub namespace connection though app works fine.
Abhishake Jaiswal
160
Reputation points
we are seeing an critical Alert as
Missing Application Settings detected
with message as :
The following Application Settings are referenced in Function bindings but not configured in the Function App. This can cause execution errors
Function: <<funcappName>>/<<funcName>>, Binding parameter: eventHubMessage, Application setting: pn_EventHubConnection
The binding file entry is like
{
"name": "eventHubMessage",
"direction": "out",
"type": "eventHub",
"eventHubName": "%name_EventHub%",
"connection": "name_EventHubConnection"
}
and the application setting looks like
{
"name": "name_EventHubConnection__fullyQualifiedNamespace",
"value": "eventhubName.servicebus.windows.net",
"slotSetting": false
}
Is this way of adding the property not advisable by MS ?
our app seems to be working fine though with Alert.
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
Sign in to answer