Endpoints for OpenSearch Dashboards
Authorization is required for all requests from OpenSearch Dashboards:
- Reload configuration files
- Get information about available apps
- Get information about available binaries
- Get information about current groups
- Get information about connected Smart Beat instances
- Update group settings
- Update apps and binaries unpacking settings
To authorize, set the Authorization header to Basic <login>:<password>. The <login>:<password> pair must be encoded in Base64.
Example:
Login is login, password is password. The request must include the string login:password encoded in Base64, resulting in bG9naW46cGFzc3dvcmQ. The final Authorization header value will be Basic bG9naW46cGFzc3dvcmQ.
echo "Authorization: Basic $(echo -n "login:password" | base64)"