-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Unified o11y] What mechanisms do we have to show information in the overview page? #118242
Comments
I spoke with @stacey-gammon and she pointed me to a conversation from a while ago with @andrew-goldstein from Security Solution:
@andrew-goldstein / @stacey-gammon would you mind helping us understand what you all were trying to do here and what ultimately happened with this effort? We are trying to understand what's currently possible today re: embedding dashboards. |
@jen-huang / @joshdover can you point us to any ongoing conversations about dealing with "read-only assets" in Kibana? We are exploring the idea of embedding dashboards in our curated observability UIs and I know that is going to bring in a bunch of problems with users deleting and/or editing these assets, and I know this is something on your radar. We would just like to see what is on the roadmap, if anything, re: this problem. |
I think you want @lukeelmers, not Josh. IIRC, embedded dashboards were featureful enough where the security team could start using them, but I suspect the feature was de-prioritized and it just was never implemented. There is an example plugin that shows how to use the by-value dashboard option. That might be what you want given that there is no saved object to manipulate. cc @vadimkibana in case you have any additional thoughts to add. |
The goal described in #52680 (comment) :
is still relevant, and would enhance multiple views in the Security Solution if it could be realized. This comment has links to the issues that were still blockers the last time the team discussed this topic. |
@stacey-gammon thanks for your response.
For now this is fine and we can hard-code the values, but eventually it is interesting for us to use a saved object. |
@jasonrhodes Here is the relevant GH issue: #70461 |
cc @sixstringcode @ghudgins @VijayDoshi as this is related to the composability of apps & flow from solutions we were discussing recently |
We want to redesign the observability overview page. We want to show a series of graphs, etc. We have several options to do so:
Option 1: Embed a Kibana dashboard
(Not sure if this is possible or to what extend).
This approach will involve creating a Dashboard and embedding it in the overview page. The effort is mostly in three palces:
We also need to determine how this dashboard will show up within Kibana's own "Dashboard" page, and if we should allow users to modify it from there.
- Personalization comes included
- Custom embeddables can be reused in other places, even by our customers.
- The advantage of this versus linking directly to a dashboard is not clear
- Lens visualizations only work with data views (index patterns).
Option 2: Lens embeddables
Lens provides an Embeddable that allows consumers to insert any lens visualization anywhere within kibana. If any of the visualizations that we need are available within lens we can use that, and then make custom components for what we need.
- Data fetching is handled by Lens
- We automatically get all improvements from Lens
- Limited to Lens' graph types. It will need hand-made elements for some stuff.
- If we want to allow the user to move things around we need to reinvent dashboards.
- Lens can only work with data views (index patterns)
Option 3: Synthetics' Exploratory View
The Synthetics team has created a wrapper around Lens Embeddables with predefined datasets and reports that end up generating a graph.
We can add custom data types and reports. Most of the effort will go here.
- The data types and reports that we add will automatically be available in the exploratory view.
Option 4: Custom everything
What the title says. Build everything ourselves.
The text was updated successfully, but these errors were encountered: