I am trying Function Apps with App Service Plan tier F1:Free.
I created a timer triggered function with the browser interface:
run.csx:
using System;
public static void Run(TimerInfo myTimer, ILogger log)
{
log.LogInformation("Test");
}
function.json:
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 /5 *"
}
]
}
I never managed to see the function running once.
I browsed for hours in search of a solution with no avail.
"Always on" is not available in this service plan, but I'm not clear if this is needed.
Can anyone point out how can I get it to work or at least collect more information on what's wrong?
Thank you!