Skip to main content
Version: 5.3

Endpoints for OpenSearch Dashboards

All requests from OpenSearch Dashboards require authentication:

  1. Rereading configuration files
  2. Retrieving information about available apps
  3. Retrieving information about available binaries
  4. Retrieving information about current groups
  5. Retrieving information about connected SAF Beats
  6. Modifying group settings
  7. Modifying app and binary extraction settings

To authenticate, you need to set the Authorization header with the value Basic <username>:<password>. The <username>:<password> pair must be encoded in Base64 format.

Example:

Username - login, password - password. The string login:password, encoded in Base64 results in bG9naW46cGFzc3dvcmQ. The final Authorization header will have the value Basic bG9naW46cGFzc3dvcmQ.

echo "Authorization: Basic $(echo -n "login:password" | base64)"