Thanks. I should have mentioned that I checked the logs continuously while developing the monitor, and there are no signs of anything relevant in the logs, either the base Apache ones or the emoncms specific ones. 404 wouldn’t normally appear in the Apache error log anyway, being a content “error” rather than a server error, and there’s nothing in the access log.
The ESP32 logging appears to show a completely consistently correct URL, but EmonCMS regards it differently:
ESP log entry for 404
[HTTP] URL: http://emonpi.local/input/post?node=ASHP&fulljson={%22voltage%22:251.000,%22current_b%22:4.054,%22power_b%22:941.700,%22energy_forward_b%22:3477.584,%22frequency%22:50.000,%22power_factor_b%22:0.930}&apikey=0123456789ABCDEF0123456789ABCDEF
[HTTP] GET return code 404
ESP GET return data
[HTTP] Result:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /input/post was not found on this server.</p>
<hr>
<address>Apache/2.4.10 (Raspbian) Server at emonpi.local Port 80</address>
</body></html>
ESP OK log
[HTTP] URL: http://emonpi.local/input/post?node=ASHP&fulljson={%22voltage%22:251.100,%22current_b%22:4.051,%22power_b%22:941.600,%22energy_forward_b%22:3477.587,%22frequency%22:50.000,%22power_factor_b%22:0.930}&apikey=0123456789ABCDEF0123456789ABCDEF
ESP GET returned data
[HTTP] Result: {“success”: true}
Looking at the emoncms index.php, there is a section which returns 406 Not Acceptable, which I can get to return accessing “http://emonpi.local/xyz.notthere” using a browser. That returns an entire EmonCMS page, complete with menu, and is logged in /var/log/emoncms/emoncms.log which is not the case for the HTML returned in my log entry above. The 404 returns also don’t show in the apache access log, which is weird. The returned HTML indicates that it’s coming from the Apache server, rather than EmonCMS, and UTL “/input/post” is not a valid address, which is clearly not correct. So somehow it’s getting lost between Apache and EmonCMS, which is bonkers. All I can think is that there is some kind of data loss or modification I can’t see in the log entry or maybe due to wifi (but it’s TCP!!) which doesn’t show but breaks Apache’s routing.
I have also turned on access logging for the emoncms virtual host, and while successful HTTP GETs show up, the 404 efforts do not appear there. This supports the possibility that the HTTP request isn’t getting as far as EmonCms, but is processed and rejected earlier by Apache, albeit silently
Ideas welcome!