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

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



Solution 1:[1]

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

enter image description here

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 SwethaKandikonda-MT