Hello,
my question is:
When exactly is a EventStatisticInvalid-Message generated and send to the client?
Perhaps you can explain the statement from the docu a little bit further:
"Sent if a statistic is not being monitored, due to a lack of connectivity."
Our use-case:
We start a statistic via:
Notification notification = Notification.create();
notification.setMode(NotificationMode.Periodical);
notification.setFrequency(10);
RequestOpenStatistic requestOpenStatistic = RequestOpenStatistic.create(statisticObject,statisticMetric, notification);
We start almost simulatenously about 14 statistics. The first 9 Events out of these 14 are EventStatisticInvalid-messages. The next incoming events ( after about 10 seconds) are correct most of the time. Later the EventStatisticInvalid-messages occure randomly from time to time.
Thx in advance