-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[New Platform] APIs needed for opening a connection to the Kibana server #56231
Comments
Pinging @elastic/kibana-platform (Team:Platform) |
I found where this is available from |
Added a note to the description about the need for |
const legacyConfig = await this.initializerContext.config.legacy.globalConfig$
.pipe(take(1))
.toPromise();
const dataPath = legacyConfig.path.data this is a temporary solution, but will not be removed until we expose it in another way, and therefor should be used if you need to. |
@restrry Does an API from getServerInfo() => { host: string, name: string, port: string, others? } Also do you know where to retrieve the protocol (http or https) from the http config? I don't see it directly mentioned in |
@pgayvallet we can get this information from |
Hi, it looks like I should open a separate issue for Filed: #56760 |
Kibana Reporting plugin opens a headless browser to navigate / authenticate with the running Kibana web server to display visualizations for screenshot capture.
In order for the connection to establish, the plugin needs to form a complete URL of the kibana web service, using:
Reporting also tags the queued jobs with metadata about the running instance:
server uuidAlso, the
path.data
config needs to be available to Reporting plugin somehow.The text was updated successfully, but these errors were encountered: