Not a big deal but this issue looks to be sending unwanted data to Notehub.
Looking at my Events on Notehub I am getting a _session.qo {“why”:“modified (sensors.qo)”} about 13 minutes after getting the humidity and temp readings.
I have set the EV for 3600 to take sensor readings every hour, and that is working correctly. In VS code my settings are, (req, “outbound”, 60), and (req, “inbound”, 120). Is this normal?
Hey @DonL,
A _session.qo
Note gets created each time the Notecard makes a new connection to Notehub. The Note has metadata about your device, your device’s last known location, the cell tower used, and the signal strength of the cellular connection. See System Notefiles - Blues Developers.
If you don’t need that data you can exclude _session.qo
events when you route your data.
TJ
Thanks for responding, but I’m still getting the _session.qo. I already had the filter in the events. The only route I had was to WebHook, and I deleted that route but still getting the _session.qo. This happens every time my MCU sends the humidity/temp reading to NoteHub. Could not find any other filters to select what gets sent to NoteHub. Please elaborate where I need to navigate to that will give me the option to filter this out.
Thanks
Hey @DonL,
Sorry for the late reply here. The Notecard will always send _session.qo
Notes to Notehub so it can track your device’s session. This is required behavior of the Notecard that you cannot turn off.
You can however filter out the events in the Events view, and you can also filter out the events when you route your data. For the Events view, you can also save a set of filters as a favorite so that you don’t have to enter that information every time Notehub Walkthrough - Blues Developers.
TJ