Run reporting measure even if datapoint fails
I am writing a reporting measure to scrape files from a datapoint and place them in a amazon s3 bucket. Since this measure will be the last measure to run for the datapoint I would like this reporting measure to run even if the datapoint fails.
What is the best way to go about this? I've discovered that currently if a measure fails in the workflow, the datapoint breaks and the report measure will not run.
@antonszilasi if the datapoint fails you won't have the EnergyPlus SQL file, so are you just reporting information about the model? If that is the case there then maybe you make this a model measure, and not a reporting measure. There is nothing saying that a model measure (a) has to change the model and (b) can't write an HTML (or send to s3). This is how the "ViewModel" measure works.
@David Goldwasser correct I am trying to report out.osw and any other logs which exist even if the E+ run fails, im thinking the easiest way maybe to just have a "push to s3" function which is called in every measure if the measure fails and the reporting measure cant run. What do you think?