how to grep information from trigger details in azure functions blob trigger (python)

Viewed 58

how can I access the trigger details (insertionTime) shown in the monitor of an azure function inside the function call:

import azure.functions as func

def main(myblob: func.InputStream):
    insertionTime = ???
    blob_created = myblob.blob_properties.get('Created')
    blob_modified = myblob.blob_properties.get('LastModified')
    size = myblob.blob_properties.get('ContentLength')

enter image description here

1 Answers

You can see these Invocation details right after the function gets triggered by default.

enter image description here

Related