You may see the warning message below reported in your hostname-monitoring-management-ui DSA's WARN log and wonder why and how to address it.
[0] 20220112.224358.027 WARN : HTTP send failure HTTP/1.1 400 Bad Request
Cache-Control: no-cache, no-store, must-revalidate, private
Content-Type: application/json; charset=utf-8
Content-Length: 258
ETag: W/"102-c6Q6Hj0KBjSuXMY6OsKfhdEKve8"
Vary: Accept-Encoding
Date: Wed, 12 Jan 2022 21:43:58 GMT
Connection: keep-alive
Release : 14.1
Component : CA Directory
Most probably you are missing one of the configuration parameter within the extenal monitoring section of the configuration file.
e.g. If you look at your hostname-monitoring-management-ui.dxi file under SERVERES folder, you will have something like:
set external-monitor "externalMonitor" =
{
endpoint = "https://<hostname>:3000/embeddedMessageDsa"
monitor-events = cache
credentials = username monitor password "encrypted_password"
push-interval = 300
};
As you can see, the parameter 'options' with value of 'message-dates-gmt' is missing.
Edit this section by adding missing parameter, so after the change it would look something like:
set external-monitor "externalMonitor" =
{
endpoint = "https://<hostname>:3000/embeddedMessageDsa"
monitor-events = cache
credentials = username monitor password "encrypted_password"
options = message-dates-gmt
push-interval = 300
};
Once done, restart the DSA in questions and you should not see the message in the question appear any more.