Код: Выделить всё
import datetime
import logging
import azure.functions as func
app = func.FunctionApp()
@app.timer_trigger(schedule="0 0 10 * * *", arg_name="myTimer", run_on_startup=True, use_monitor=False)
def timer_trigger(myTimer: func.TimerRequest) -> None:
logging.info('Python timer trigger function executed.')
properties = {'custom_dimensions': {'key_1': 'value_1', 'key_2': 'value_2'}}
logging.warning('Python timer trigger function executed.', extra=properties)

Подробнее здесь: https://stackoverflow.com/questions/792 ... nction-app
Мобильная версия