An Azure service that automates the access and use of data across clouds without writing code.
Hi @Siddhardha Narnindi (DHL IT Services) ,
Thank you for your response
Officially, I have not found a documented Microsoft method to verify the migration. However, there are a few practical checks that may help investigate whether the hosting model transition has occurred.
1. Check Kudu Environment Variables
Request a screenshot of Kudu** → **Environment and compare the environment before and after migration.
Review settings such as:
Plain Text
LOGICAPP_INPROC_REDIRECT
FUNCTIONS_WORKER_RUNTIME
FUNCTIONS_EXTENSION_VERSION
Show more lines
For example, if the migration guidance references LOGICAPP_INPROC_REDIRECT and that setting is no longer present, it could indicate that the application is no longer pinned to the previous hosting model.
2. Review Processes in Kudu
Navigate to:
Plain Text
Kudu → Process Explorer
Review the processes that are running after the migration.
If the application has moved from an in-process hosting model to an out-of-process hosting model, there may be differences in the process architecture. However, I have not found Microsoft documentation that defines specific process names or process structures that can be used as an official validation method.
3. Examine Function Host Startup Logs
Review startup logs in:
- Log Stream
- Application Insights
- Kudu logs
Look for entries containing terms such as:
worker
hosting
out-of-proc
host started
In some cases, startup logs can provide clues about the hosting behavior and runtime initialization.
4. Compare ARM Template Configuration
A useful validation approach is to compare the Logic App configuration before and after migration.
Review properties such as:
JSON
siteConfig
appSettings
kind
linuxFxVersion
netFrameworkVersion
If Microsoft describes the migration as platform-managed and no customer-visible configuration changes are observed, it may indicate that the migration occurred at the platform/runtime layer rather than through changes exposed in the Logic App configuration.