I have created an API streaming dataset called Fred, with 2 fields Field1 (DateTime) and Field2 (Number) and a dashboard that visualises them, I can push data to the dataset and the dashboard refreshes automatically with the new data (sample below). [{"Field1":"2017-03-23T09:30:00","Field2":10}] The problem is if the data being pushed is incorrect for whatever reason eg [{"Fred":{"Field1":"2017-03-23T09:30:00","Field2":10}}] this Json data which incorrectly includes the dataset name raises an exception The remote server returned an error: (404) Not Found. I don't have an issue with the exception raised but when subsequent "correct" data (as in the first sample above) is pushed to the dataset (which will not raise an exception), the dashboard does not display any data; additionally refreshing the browser repeatedly has no effect. However if I wait for exactly 1 hour all the successful pushes that occurred after the "bad" data was pushed are displayed in the dashboard, as if nothing had happened. It seems the automatic dataset refresh is disabled when a failed push occurs for 60 minutes and then enabled. Any ideas on how to poke the dataset/dashboard to refresh straight away rather than having to wait for an hour after a failed push?
... View more