Skip to main content
Version: 5.3

Endpoints for OpenSearch Dashboards

Authorization is required for all requests from OpenSearch Dashboards:

  1. Reload configuration files
  2. Get information about available apps
  3. Get information about available binaries
  4. Get information about current groups
  5. Get information about connected Smart Beat instances
  6. Update group settings
  7. 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)"