-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
enhancementNew feature or requestNew feature or requestuntriagedIssues that have not been triagedIssues that have not been triaged
Description
Is your feature request related to a problem?
When the observability stack is deployed via docker compose up, all connection details (endpoints, ports, dashboard credentials) are printed to the terminal. If the terminal session is closed or scrollback is lost, there is no way to retrieve this information without inspecting individual Docker containers or config files manually.
This is especially painful when:
- Returning to the stack after a break and needing to remember the OpenSearch Dashboards URL, username, and password
- Sharing the stack setup with a teammate who wasn't present during deployment
- Reattaching to a long-running stack after a terminal crash or SSH disconnect
Describe the solution you'd like
Provide a persistent and easily accessible way to retrieve stack connection details after deployment. Some options:
docker composeinfo command or script — A./stack-info.shscript (ormake infotarget) that prints all endpoints, ports, and credentials at any time by reading from the compose config and.envfiles- Write connection details to a file — On startup, generate a
stack-info.txtorstack-info.jsonin the project root with all relevant connection details:{ "opensearch": {"url": "https://localhost:9200", "username": "admin", "password": "..."}, "dashboards": {"url": "http://localhost:5601"}, "otel_collector": {"grpc": "localhost:4317", "http": "localhost:4318"}, "prometheus": {"url": "http://localhost:9090"}, "data_prepper": {"url": "http://localhost:21890"} }
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestuntriagedIssues that have not been triagedIssues that have not been triaged