During runtime, I wanted to read the log file for messages that contain 'START - ProcessID, 'FME Session Duration', END - ProcessID' and a few other messages (in the red boxes) into my workspace so I can include each message as a feature in my translation.
I can get most of this information from a shutdown script like below. However, I need the information back into my translation so I can write it to a database table that records translation metadata.
# Import modules
import fme, datetime
from os import path
# Get current date and time
dateToday = datetime.date.today().strftime('%Y/%m/%d')
timeNow = datetime.datetime.now().time().strftime('%H.%M.%S')
print(dateToday)
print(timeNow)
print(fme.processID)
print(fme.status)
print(fme.elapsedRunTime)
print(fme.totalFeaturesRead)
print(fme.totalFeaturesWritten)