Endpoints for OpenSearch Dashboards
All requests from OpenSearch Dashboards require authentication:
- Rereading configuration files
- Retrieving information about available apps
- Retrieving information about available binaries
- Retrieving information about current groups
- Retrieving information about connected SAF Beats
- Modifying group settings
- 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)"