0

For an Azure Function, how can I tell when an Azure App Service Plan's FUNCTION_EXTENSION_VERSION was updated on a Linux server?

Note this is in relation to the same exact question answered for Windows.

scottrudy
  • 1,633
  • 1
  • 14
  • 24
  • I checked all the log files in the physical path, and also used the monitor to monitor the behavior of the function app, but none of this information was recorded. For Linux-based function apps, you may not be able to do it, because this information is not recorded... – Cindy Pau Dec 24 '20 at 08:40

1 Answers1

1

For an Azure Function, how can I tell when an Azure App Service Plan's FUNCTION_EXTENSION_VERSION was updated on a Linux server?

Linux azure function is different from windows azure function. Their design methods are different. I first tried to use ftp and connected to the physical path to view the log information recorded therein. After manually changing the runtime version, I checked all the log files, but none of them stored relevant information. Then I used Azure Monitor to monitor the behavior of the function app, and there was still no record. I think for the linux-based function app, your needs cannot be fulfilled temporarily, because the function app itself does not record it as information at all...

Cindy Pau
  • 13,085
  • 1
  • 15
  • 27