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')

