<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/106437/nrf9160-repeative-send-on-mqtt-results-in-failure</link><description>nrf modem: 1.3.4 
 sdk: 2.3.0 
 Custom board. 
 We have an asset tracker that caches events when out of connectivity zone. We can accumulate 10-100 messages depending upon the duration. Once in a while, when emptying the cache the socket/mqtt does not</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 13 May 2025 16:35:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/106437/nrf9160-repeative-send-on-mqtt-results-in-failure" /><item><title>RE: nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/thread/535184?ContentTypeID=1</link><pubDate>Tue, 13 May 2025 16:35:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:427be5ea-044e-457e-b96b-5309ff6df9ab</guid><dc:creator>Dominic</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/members/didrik-rokhaug"&gt;Didrik Rokhaug&lt;/a&gt;&amp;nbsp; Have you had a chance to review this? In addition to -ENOMEM when calling mqtt_connect to reconnect the client, we are also occasionally getting -ETIMEDOUT (-116) even though the modem state is still registered.&amp;nbsp;Sometimes it will recover on subsequent attempts and sometimes it fails for long enough to trigger a device reboot.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/thread/533976?ContentTypeID=1</link><pubDate>Mon, 05 May 2025 17:02:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d1cf1118-c0f4-47aa-9cbf-bbb7be86db11</guid><dc:creator>Dominic</dc:creator><description>&lt;p&gt;Hi, I have the same issues described above. Modem firmware 1.3.6 and nRF Connect SDK 2.6.0. Using MQTT QOS 1 to an AWS IoT broker and only publishing the next message in the queue after receiving the previous PUBACK. Also, the socket send timeout is configured to 15 seconds.&lt;/p&gt;
&lt;p&gt;During heavy upstream publish traffic, the underlying function &amp;#39;&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;mqtt_transport_write_msg&amp;#39; occasionally returns -EAGAIN (-11) and causes the client to disconnect. Our logic&amp;nbsp;calls for the device to try reconnecting via &amp;#39;mqtt_connect&amp;#39; every five seconds, but my experience is the same as above, that this sometimes fails with -ENOMEM (-12). Depending on the situation this will either eventually resolve itself and allow a reconnect, or our &amp;#39;connection monitor thread&amp;#39; will reboot the device after 30 minutes.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;My questions are:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;1. When &amp;#39;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;mqtt_transport_write_msg&amp;#39; fails with -EAGAIN, is this because the send buffer is full, or because the send() timed out according to the 15s timeout policy?&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;2. You mention that closing the socket should be enough to recover from the full buffer. It looks like this should be performed automatically by &amp;#39;client_disconnect&amp;#39; in the MQTT driver. Do you have any ideas why the subsequent mqtt_connect call does not always work? What is the next step if mqtt_connect fails? Would toggling the modem off and on be appropriate or is there another way to reset from the error?&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/thread/460161?ContentTypeID=1</link><pubDate>Wed, 13 Dec 2023 14:01:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2c74705a-07e0-4e5f-949f-1ea1f4d22ce9</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;I had another look at the trace, this time looking at the time between when the device tries to send data.&lt;/p&gt;
&lt;p&gt;For the first few sends, the time between is relatively short, at 90-190 seconds. The first time it fails, 434 seconds had passed since the last packet was exchanged. After that, the interval was around 1000 seconds each time. How long is the MQTT and TCP timeouts on the server?&lt;/p&gt;
&lt;p&gt;Another possible cause is a NAT timeout in the network (though that is typically a bigger problem for UDP, for TCP the timeouts we have seen are usually much longer). Are you able to see what, if any, IP packets arrive at the server?&lt;/p&gt;
[quote user="Stratosphere"]Could psm be causing any issues?[/quote]
&lt;p&gt;PSM shouldn&amp;#39;t cause any issues with sending. Besides, PSM was not granted by the network in the modem trace you shared.&lt;/p&gt;
[quote user="Stratosphere"]&lt;p&gt;1. How do we avoid this situation where the modem keeps waiting for a response from the server&lt;/p&gt;
&lt;p&gt;2. How do we prevent the buffer from getting full (monitoring heap, message que etc.)&lt;/p&gt;
&lt;p&gt;3. How do we get out of both scenarios: a) modem keeps waiting for a response, and b) buffer is full.&lt;/p&gt;[/quote]
&lt;p&gt;The best way is probably to have some flow control in the application. The send() function will return when the message has been placed in the modem&amp;#39;s buffer, not when it actually has been sent on-air. So the only way the application has of knowing that the message has been received by the server is to receive an akc (on the application level) by the server. For MQTT, you can use QoS1 or 2 for this.&lt;/p&gt;
&lt;p&gt;Closing the socket should be enough to recover from the full buffer.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/thread/459767?ContentTypeID=1</link><pubDate>Mon, 11 Dec 2023 18:49:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:91a9cbf1-ce22-4477-8755-5975bfad5abc</guid><dc:creator>Stratosphere</dc:creator><description>&lt;p&gt;Hi Didrik,&lt;/p&gt;
&lt;p&gt;I repeated the test while monitoring clouqMqtt logs. From the logs I can tell that the broker did not get any messages from the client, not even the first one from the batch of 16 (or 100 if the error) had not occurred.&lt;/p&gt;
&lt;p&gt;Last successful msg was sent at&amp;nbsp;12-11T18:23:34.945Z after which the messages starting from&amp;nbsp;12-11T18:29:57.342Z did not make it to the Mqtt broker. The next batch at 18:32 made it after a reconnection to the broker. Please not that between 18:23 and 18:29 the lte connection was idle on psm. Could psm be causing any issues?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;device printk logs:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;
00&amp;gt;  MQTT, 12-11T18:23:14.708Z,  INFO, Publishing mqtt msg id: 1000, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003503000001016311120043888c1079921f05131b64020d080000a816046577537c220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:14.713Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:15.  3Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:15.  4Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231899511032b50
00&amp;gt; CACHE, 12-11T18:23:15.715Z,  INFO, Sending event: 1 of 99. eventCounter: 4
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:15.716Z,  INFO, Publishing mqtt msg id: 1001, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003504000001026211120043888c1079921f05131b64020d080000a816046577537c220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:15.721Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:15.961Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:15.962Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 500117023189960694a850
00&amp;gt; CACHE, 12-11T18:23:16.723Z,  INFO, Sending event: 2 of 99. eventCounter: 5
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:16.730Z,  INFO, Publishing mqtt msg id: 1002, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003505000001036111120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:16.740Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:17. 21Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:17. 22Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231899711052f50
00&amp;gt; CACHE, 12-11T18:23:17.742Z,  INFO, Sending event: 3 of 99. eventCounter: 6
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:17.743Z,  INFO, Publishing mqtt msg id: 1003, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003506000001046011120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:17.748Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:17.962Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:17.963Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231899807063550
00&amp;gt; CACHE, 12-11T18:23:18.750Z,  INFO, Sending event: 4 of 99. eventCounter: 7
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:18.751Z,  INFO, Publishing mqtt msg id: 1004, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003507000001055f11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:18.757Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:19.  2Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:19.  3Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231899911072350
00&amp;gt; CACHE, 12-11T18:23:19.758Z,  INFO, Sending event: 5 of 99. eventCounter: 8
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:19.759Z,  INFO, Publishing mqtt msg id: 1005, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003508000001065e11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:19.764Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:20. 42Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:20. 43Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900014983950
00&amp;gt; CACHE, 12-11T18:23:20.766Z,  INFO, Sending event: 6 of 99. eventCounter: 9
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:20.767Z,  INFO, Publishing mqtt msg id: 1006, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003509000001075d11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:20.772Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:21. 21Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:21. 22Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 500117023190011109ac50
00&amp;gt; CACHE, 12-11T18:23:21.773Z,  INFO, Sending event: 7 of 99. eventCounter: 10
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:21.781Z,  INFO, Publishing mqtt msg id: 1007, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350a000001085c11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:21.791Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:22.143Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:22.144Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900223010955
00&amp;gt; CACHE, 12-11T18:23:22.793Z,  INFO, Sending event: 8 of 99. eventCounter: 11
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:22.794Z,  INFO, Publishing mqtt msg id: 1008, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350b000001095b11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:22.799Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:23. 82Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:23. 82Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 50011702319003189113e5
00&amp;gt; CACHE, 12-11T18:23:23.801Z,  INFO, Sending event: 9 of 99. eventCounter: 12
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:23.808Z,  INFO, Publishing mqtt msg id: 1009, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350c0000010a5a11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:23.818Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:24.123Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:24.123Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900423012915
00&amp;gt; CACHE, 12-11T18:23:24.820Z,  INFO, Sending event: 10 of 99. eventCounter: 13
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:24.821Z,  INFO, Publishing mqtt msg id: 1010, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350d0000010b5911120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:24.826Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:23:25.828Z,  INFO, Sending event: 11 of 99. eventCounter: 14
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:25.835Z,  INFO, Publishing mqtt msg id: 1011, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350e0000010c5811120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:25.846Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:23:26.847Z,  INFO, Sending event: 12 of 99. eventCounter: 15
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:26.854Z,  INFO, Publishing mqtt msg id: 1012, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e60200350f0000010d5711120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:26.865Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:23:27.866Z,  INFO, Sending event: 13 of 99. eventCounter: 16
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:27.867Z,  INFO, Publishing mqtt msg id: 1013, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e6020035100000010e5611120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:27.872Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:27.968Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:27.968Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900807713c85
00&amp;gt;  MQTT, 12-11T18:23:28.208Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:28.208Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900831714f95
00&amp;gt;  MQTT, 12-11T18:23:28.682Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:28.682Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 50011702319008321159b5
00&amp;gt;  MQTT, 12-11T18:23:28.683Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:28.684Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231900832316b85
00&amp;gt; CACHE, 12-11T18:23:28.874Z,  INFO, Sending event: 14 of 99. eventCounter: 17
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:28.875Z,  INFO, Publishing mqtt msg id: 1014, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e6020035110000010f5511120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:28.880Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:29.165Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:29.165Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 50011702319009270179d5
00&amp;gt; CACHE, 12-11T18:23:29.882Z,  INFO, Sending event: 15 of 99. eventCounter: 18
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:29.883Z,  INFO, Publishing mqtt msg id: 1015, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003512000001105411120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:29.888Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:30.123Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:30.123Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 50011702319010230188f5
00&amp;gt; CACHE, 12-11T18:23:30.889Z,  INFO, Sending event: 16 of 99. eventCounter: 19
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:30.891Z,  INFO, Publishing mqtt msg id: 1016, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003513000001115311120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:30.896Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:31.183Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:31.183Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 50011702319011270198b5
00&amp;gt; CACHE, 12-11T18:23:31.897Z,  INFO, Sending event: 17 of 99. eventCounter: 20
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:31.899Z,  INFO, Publishing mqtt msg id: 1017, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003514000001125211120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:31.903Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:32.123Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:32.123Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231901223020865
00&amp;gt; CACHE, 12-11T18:23:32.905Z,  INFO, Sending event: 18 of 99. eventCounter: 21
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:32.912Z,  INFO, Publishing mqtt msg id: 1018, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003515000001135111120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:32.923Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:33.263Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:33.263Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231901334921015
00&amp;gt; CACHE, 12-11T18:23:33.924Z,  INFO, Sending event: 19 of 99. eventCounter: 22
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:33.932Z,  INFO, Publishing mqtt msg id: 1019, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003516000001145011120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:33.942Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:34.264Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:34.265Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231901431022905
00&amp;gt; CACHE, 12-11T18:23:34.944Z,  INFO, Sending event: 20 of 99. eventCounter: 23
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:23:34.945Z,  INFO, Publishing mqtt msg id: 1020, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1c25100c0000e602003517000001154f11120043888c1079921f05131b64020d080000a816046577537d220400000002&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:23:34.950Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;  MQTT, 12-11T18:23:35.342Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:23:35.342Z,  INFO, mqtt_evt_handler, PUBLISH result=0 len=11, payload: 
00&amp;gt; 5001170231901543023e25
00&amp;gt; EVENT, 12-11T18:23:35.950Z,  INFO, Will NOT Disconnect, reason: 3, LTEConnected: 1, psmGranted: 1, ModemState: roaming, ModemPower: 1, currentEventMotionState: 3, previousEventMotionState: 3, LTEMotionFrequency: 120, LTEIdleFrequency: 900
00&amp;gt;   LTE, 12-11T18:23:47.555Z,  INFO, lte_handler, Time Since Last Idle: 0, RRC mode: Idle
00&amp;gt;   GPS, 12-11T18:24: 5.950Z,  INFO, gps is off
00&amp;gt; WATCH, 12-11T18:26: 4.571Z,  INFO, watchdogTimerCallback
00&amp;gt; WATCH, 12-11T18:26: 4.572Z,  INFO, WDT Feed: 0
00&amp;gt;   ACC, 12-11T18:28:47.754Z,  INFO,     accIntCallback, ACC Int Triggered
00&amp;gt; EVENT, 12-11T18:28:47.755Z,   ACC,   submitSensorWork, work que result: 1
00&amp;gt; EVENT, 12-11T18:28:47.757Z,  INFO, mySensorWorkHandle, timeSinceLastMotionInterrupt: 453, acc State: 0, No ongoing event, changing to motionStateMoving,  Starting Motion event
00&amp;gt; EVENT, 12-11T18:28:48.358Z,  INFO, WDT Feed Motion Event: 0
00&amp;gt;   LTE, 12-11T18:28:53.514Z,  INFO, Reading temperature  LTE, 12-11T18:28:53.521Z,  INFO, temperature is : %XTEMP: 23
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt; SENSR, 12-11T18:28:53.521Z,  INFO, getNrf9160Temp, nrf temperature read successfully: 23
00&amp;gt;   GPS, 12-11T18:28:53.522Z,  INFO, gps is on
00&amp;gt;   GPS, 12-11T18:28:55.568Z, INFO, GPS was off, now turned it on: 0
00&amp;gt; PACKT, 12-11T18:28:55.689Z,   GPS, Getting gps. Motion frequency :120. GPS Timeout: 60, myLteConfig.getSatsWhenIdle: 1, myLteConfig.getSatsWhenIdle: 1
00&amp;gt;   GPS, 12-11T18:28:56. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:28:57. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:28:58. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:28:59. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:  . 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 1. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 2. 45Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 3. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 4. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 5. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 6. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 7. 45Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 8. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29: 9. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:10. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:11. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:12. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:13. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:14. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:15. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:16. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:17. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:18. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:19. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:20. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:21. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:22. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:23. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:24. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:25. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:26. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:27. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:28. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:29. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:30. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:31. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:32. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:33. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:34. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:35. 46Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:36. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:37. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:38. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:39. 49Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:40. 49Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:41. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:42. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:43. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   ACC, 12-11T18:29:43.806Z,  INFO,     accIntCallback, ACC Int Triggered
00&amp;gt; EVENT, 12-11T18:29:43.807Z,   ACC,   submitSensorWork, work que result: 1
00&amp;gt; EVENT, 12-11T18:29:43.809Z,  INFO, mySensorWorkHandle, timeSinceLastMotionInterrupt: 56, acc State: 0, Event already in progress,   GPS, 12-11T18:29:44. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:45. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:46. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:47. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:48. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:49. 49Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:50. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:51. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:52. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:53. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:54. 48Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt;   GPS, 12-11T18:29:55. 47Z,  INFO, fix: 0.000000, 0.000000, 0, 0, 0, 0, 0, 0.000, 0
00&amp;gt; In compile external gps message. gotFix: 0, TTF: 60
00&amp;gt; GPS: gotFix: 0, TTF: 60, tracked Sats: 0, sats used in fix: 0, speed: 0, accuracy: 0, heading: 0000
00&amp;gt;  MQTT, 12-11T18:29:57.324Z,  INFO, MQTT state: 4, MQTT Thread Running:1
00&amp;gt;  MQTT, 12-11T18:29:57.324Z,  INFO, MQTT state: 4, MQTT Thread Running:1
00&amp;gt;  MQTT, 12-11T18:29:57.325Z,  INFO, MQTT state: 4, MQTT Thread Running:1
00&amp;gt;  MQTT, 12-11T18:29:57.325Z,  INFO, mqtt state: 4, mqtt thread state: 1
00&amp;gt;  MQTT, 12-11T18:29:57.326Z,  INFO, MQTT state: 4, MQTT Thread Running:1
00&amp;gt; CACHE, 12-11T18:29:57.333Z,  INFO, processAndCacheEve, WILL attempt to send event. assetflo connectivity ok: 0
00&amp;gt; CACHE, 12-11T18:29:57.333Z,  INFO, cache event count: 99
00&amp;gt; CACHE, 12-11T18:29:57.335Z,  INFO, Sending event: 0 of 99. eventCounter: 104
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:29:57.342Z,  INFO, Publishing mqtt msg id: 1021, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec686d0001016311120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:29:57.353Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt;   LTE, 12-11T18:29:57.559Z,  INFO, lte_handler, Time Since Last Idle: 370, RRC mode: Active
00&amp;gt; CACHE, 12-11T18:29:58.354Z,  INFO, Sending event: 1 of 99. eventCounter: 105
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:29:58.356Z,  INFO, Publishing mqtt msg id: 1022, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec696d0001026211120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:29:58.360Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:29:59.362Z,  INFO, Sending event: 2 of 99. eventCounter: 106
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:29:59.369Z,  INFO, Publishing mqtt msg id: 1023, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6a6d0001036111120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:29:59.379Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30:  .381Z,  INFO, Sending event: 3 of 99. eventCounter: 107
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30:  .382Z,  INFO, Publishing mqtt msg id: 1024, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6b6d0001046011120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30:  .387Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 1.388Z,  INFO, Sending event: 4 of 99. eventCounter: 108
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 1.395Z,  INFO, Publishing mqtt msg id: 1025, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6c6d0001055f11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 1.406Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 2.407Z,  INFO, Sending event: 5 of 99. eventCounter: 109
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 2.409Z,  INFO, Publishing mqtt msg id: 1026, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6d6d0001065e11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 2.414Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 3.415Z,  INFO, Sending event: 6 of 99. eventCounter: 110
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 3.417Z,  INFO, Publishing mqtt msg id: 1027, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6e6d0001075d11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 3.421Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 4.423Z,  INFO, Sending event: 7 of 99. eventCounter: 111
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 4.430Z,  INFO, Publishing mqtt msg id: 1028, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec6f6d0001085c11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 4.440Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 5.442Z,  INFO, Sending event: 8 of 99. eventCounter: 112
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 5.449Z,  INFO, Publishing mqtt msg id: 1029, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec706d0001095b11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 5.459Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 6.461Z,  INFO, Sending event: 9 of 99. eventCounter: 113
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 6.468Z,  INFO, Publishing mqtt msg id: 1030, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec716d00010a5a11120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 6.479Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 7.480Z,  INFO, Sending event: 10 of 99. eventCounter: 114
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 7.487Z,  INFO, Publishing mqtt msg id: 1031, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec726d00010b5911120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 7.498Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 8.499Z,  INFO, Sending event: 11 of 99. eventCounter: 115
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 8.500Z,  INFO, Publishing mqtt msg id: 1032, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec736d00010c5811120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 8.505Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30: 9.507Z,  INFO, Sending event: 12 of 99. eventCounter: 116
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30: 9.508Z,  INFO, Publishing mqtt msg id: 1033, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec746d00010d5711120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30: 9.513Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30:10.514Z,  INFO, Sending event: 13 of 99. eventCounter: 117
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30:10.522Z,  INFO, Publishing mqtt msg id: 1034, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec756d00010e5611120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30:10.532Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30:11.533Z,  INFO, Sending event: 14 of 99. eventCounter: 118
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30:11.541Z,  INFO, Publishing mqtt msg id: 1035, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec766d00010f5511120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30:11.551Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30:12.552Z,  INFO, Sending event: 15 of 99. eventCounter: 119
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30:12.560Z,  INFO, Publishing mqtt msg id: 1036, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec776d0001105411120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;  MQTT, 12-11T18:30:12.570Z,  INFO, mqttSend, sent the MQTT data
00&amp;gt; CACHE, 12-11T18:30:13.572Z,  INFO, Sending event: 16 of 99. eventCounter: 120
00&amp;gt; CEREG: +CEREG: 5,5,&amp;quot;753A&amp;quot;,&amp;quot;009F337B&amp;quot;,7,,,&amp;quot;11100000&amp;quot;,&amp;quot;11100000&amp;quot;
00&amp;gt; 
00&amp;gt; OK
00&amp;gt; 
00&amp;gt; 
00&amp;gt;  MQTT, 12-11T18:30:13.579Z,  INFO, Publishing mqtt msg id: 1037, 
00&amp;gt; Publishing
00&amp;gt; {&amp;quot;channel&amp;quot;:&amp;quot;lte&amp;quot;,&amp;quot;topic&amp;quot;:&amp;quot;location&amp;quot;,&amp;quot;data&amp;quot;:&amp;quot;ffff003971ff11101163856f5b1626100c0100e6f7f5ec786d0001115311120043888c1079921f05131b64020d080000a816046577552322040000003e&amp;quot;}
00&amp;gt;   LTE, 12-11T18:30:20. 31Z,  INFO, lte_handler, Time Since Last Idle: 0, RRC mode: Idle
00&amp;gt;   LTE, 12-11T18:30:21. 60Z,  INFO, lte_handler, Time Since Last Idle: 1, RRC mode: Active
00&amp;gt;  MQTT, 12-11T18:30:28.796Z, ERROR, mqtt_evt_handler, client disconnected: -11
00&amp;gt;  MQTT, 12-11T18:30:28.797Z, ERROR, mqttSend, publish failed. mqttState: 0, err: -11, errno: 11
00&amp;gt;   LTE, 12-11T18:30:28.797Z,  INFO, waiting for Idle before disconnect. sem result: 0
00&amp;gt;  MQTT, 12-11T18:30:28.798Z,  INFO, In Mqtt loop
00&amp;gt;  MQTT, 12-11T18:30:28.798Z, ERROR, POLLNVAL
00&amp;gt;  MQTT, 12-11T18:30:28.798Z, ERROR, loop: Disconnecting MQTT client
00&amp;gt;   LTE, 12-11T18:30:33.798Z,  INFO, waiting for Idle before disconnect. sem result: -11
00&amp;gt;   LTE, 12-11T18:30:38.798Z,  INFO, waiting for Idle before disconnect. sem result: -11&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;cloudmqtt logs:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;2023-12-11 18:23:18: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:19: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:19: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:19: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:19: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:20: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:20: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:20: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:20: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:21: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:21: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:21: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:21: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:22: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:22: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:22: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:22: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:23: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:23: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:23: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:23: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:24: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:24: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:24: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:24: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:28: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:28: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:29: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:29: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:29: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:29: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:30: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:30: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:30: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:30: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:31: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:31: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:31: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:31: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:31: Socket error on client 5G11101168897f7, disconnecting.
2023-12-11 18:23:31: New client connected from xxxxxxxxxxxxxx as 5G11101168897f7 (c0, k1020, u&amp;#39;assetTag&amp;#39;).
2023-12-11 18:23:31: No will message specified.
2023-12-11 18:23:31: Sending CONNACK to 5G11101168897f7 (1, 0)
2023-12-11 18:23:31: Received SUBSCRIBE from 5G11101168897f7
2023-12-11 18:23:31: 	push/11101168897f/ (QoS 1)
2023-12-11 18:23:31: Sending SUBACK to 5G11101168897f7
2023-12-11 18:23:32: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:32: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:32: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:32: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:32: Received PUBLISH from 5G11101168897f7 (d0, q1, r0, m1733, &amp;#39;feed/&amp;#39;, ... (548 bytes))
2023-12-11 18:23:32: Sending PUBACK to 5G11101168897f7 (Mid: 1733)
2023-12-11 18:23:32: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (548 bytes))
2023-12-11 18:23:32: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101168897f/&amp;#39;, ... (12 bytes))
2023-12-11 18:23:32: Sending PUBLISH to 5G11101168897f7 (d0, q0, r0, m0, &amp;#39;push/11101168897f/&amp;#39;, ... (12 bytes))
2023-12-11 18:23:33: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:33: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:33: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:33: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:34: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:34: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:34: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:34: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:35: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:35: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:23:35: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:23:35: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:39: New connection from xxxxxxxxxxx on port 24339.
2023-12-11 18:32:40: Client 5G11101163856f6 already connected, closing old connection.
2023-12-11 18:32:40: Socket error on client 5G11101163856f6, disconnecting.
2023-12-11 18:32:40: New client connected from xxxxxxxxx as 5G11101163856f6 (c0, k1020, u&amp;#39;assetTag&amp;#39;).
2023-12-11 18:32:40: No will message specified.
2023-12-11 18:32:40: Sending CONNACK to 5G11101163856f6 (1, 0)
2023-12-11 18:32:41: Received SUBSCRIBE from 5G11101163856f6
2023-12-11 18:32:41: 	push/11101163856f/ (QoS 1)
2023-12-11 18:32:41: Sending SUBACK to 5G11101163856f6
2023-12-11 18:32:41: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:41: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:41: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:41: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:42: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:42: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:42: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:42: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:43: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:43: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:43: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:43: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:44: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:44: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:44: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:44: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:45: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:45: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:45: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:45: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:46: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:46: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:46: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:46: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:47: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:47: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:47: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:47: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:48: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:48: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:48: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:48: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:49: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:49: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:49: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:49: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:50: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:50: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:50: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:50: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:51: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:51: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:51: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:51: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:52: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:52: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:52: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:52: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:53: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:53: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:53: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:53: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:55: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:55: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:55: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:55: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:55: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:55: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:55: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:55: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:57: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:57: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:57: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:57: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:57: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:57: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:57: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:57: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:59: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:59: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:59: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:59: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:59: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:59: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:32:59: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:32:59: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:33:01: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:33:01: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:33:01: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:33:01: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:33:02: Received PUBLISH from 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:33:02: Sending PUBLISH to mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;feed/&amp;#39;, ... (168 bytes))
2023-12-11 18:33:02: Received PUBLISH from mqttjs_4801a218 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:33:02: Sending PUBLISH to 5G11101163856f6 (d0, q0, r0, m0, &amp;#39;push/11101163856f/&amp;#39;, ... (11 bytes))
2023-12-11 18:34:04: New connection from 216.168.185.225 on port 24339.
2023-12-11 18:35:22: Socket error on client 5G11101165166f6, disconnecting.
2023-12-11 18:35:22: New client connected from xxxxxxxxx as 5G11101165166f6 (c0, k1020, u&amp;#39;assetTag&amp;#39;).
2023-12-11 18:35:22: No will message specified.
2023-12-11 18:35:22: Sending CONNACK to 5G11101165166f6 (1, 0)
2023-12-11 18:35:23: Received SUBSCRIBE from 5G11101165166f6
2023-12-11 18:35:23: 	push/11101165166f/ (QoS 1)
2023-12-11 18:35:23: Sending SUBACK to 5G11101165166f6&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Three important questions:&lt;/p&gt;
&lt;p&gt;1. How do we avoid this situation where the modem keeps waiting for a response from the server&lt;/p&gt;
&lt;p&gt;2. How do we prevent the buffer from getting full (monitoring heap, message que etc.)&lt;/p&gt;
&lt;p&gt;3. How do we get out of both scenarios: a) modem keeps waiting for a response, and b) buffer is full.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160: repeative send on mqtt results in failure</title><link>https://devzone.nordicsemi.com/thread/459552?ContentTypeID=1</link><pubDate>Fri, 08 Dec 2023 16:15:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cf3c10c0-d791-4796-bc1d-b5617e7a70fb</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The ENOMEM error comes because you have filled up the shared buffers between the modem and application cores with messages to send.&lt;/p&gt;
&lt;p&gt;In this case, it happens because the server doesn&amp;#39;t acknowledge the (TCP) packets. This means that the modem has to keep trying to send the packets, rather than clearing them from their buffers.&lt;/p&gt;
&lt;p&gt;While you can&amp;#39;t see the socket error, you can see that the server doesn&amp;#39;t respond (or the modem doesn&amp;#39;t receive the responses) in this exported IP trace:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/2023_2D00_12_2D00_06-_2D00_-modem-trace-on-fw-91_2D00_22.pcapng"&gt;devzone.nordicsemi.com/.../2023_2D00_12_2D00_06-_2D00_-modem-trace-on-fw-91_2D00_22.pcapng&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;What server are you using?&lt;/p&gt;
&lt;p&gt;Are you able to get any logs or IP traces from the server to see if it receives the packets as it should?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Didrik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>