'Cache Kibana dashboards
I am embedding some reports from Kibana in my ASP.NET Core app. to display the content I am using an iFrame
<iframe src="(kibanadashBoardUrl)&hide-filter-bar=true")"></iframe>
The problem is that each time the page is loaded, that "Loading elastic" preloader loads its stuff then the report is rendered and so on... it could take up to 10seconds even.
Can't I just cache this content? In a way? in any way?
- [ResponseCache] doesn't help...
- tag helper only caches the <iframe src="... link ...")
- I could grab the HTML content of the iframe after it is loaded but, not being in context there is no CSS, no JS, and the graphs are not displayed.
Any idea is welcome.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
