Currently I have Metrics displaying in the left hand pane within the Measures column inside of the Project View of SQ 7.9 LTS. I currently am setting these Metrics inside of the left column in my own DomainI have made. The line code in question is this.
context.<Integer>newMeasure().forMetric(ExampleMetric).on(context.module()).withValue(exceptions.get(exampleMetricKey)).save();
What exactly does this on()
save onto? When this runs I see the the correct value. This is all being done in the Sensor class I have made.
In comparison how does saving onto file differ than with saving onto module()?
Thanks so much!