Morning,
I have try tu use iframe balise html, but not results.
firstly is it possible to do this?
Is there a data source for this?
regards
Thank you but itās the opposite that I would like to do, integrate a graph from web page into a grafana board.
<iframe src="https://www.zeitverschiebung.net/clock-widget-iframe-v2?language=en&size=small&timezone=Africa%2FJohannesburg" width="100%" height="90" frameborder="0" seamless></iframe>
You need to use the text panel, change it to html.
You also need to disable sanitize html in the grafana.ini
You also need to make sure you are not serving an https iframe on a non https grafana
You also might need to check you origin headers if you get CORS errors.
ok for this
in my grafana.ini I have only this text, I donāt understand āsanitizeā
[server]
āProtocol (http, https, socket)
protocol = http
āThe ip address to bind to, empty will bind to all interfaces
;http_addr =
āThe http port to use
http_port = 3000
my page web is http, and my grafana is http too, I think it is OK ?
I have adding in html code
<html>
<body>
<iframe src="http://f5len.org/tools/OSM/index.html" width="100%" height="90" frameborder="0" seamless></iframe>
</body>
</html>
donāt runā¦I am forgotten something ? (same with your iframe example)
thankās
Did you search for the word sanitize in your ini?
yes in my grafana.ini I have only
[server]
# Protocol (http, https, socket)
protocol = http
# The ip address to bind to, empty will bind to all interfaces
;http_addr =
# The http port to use
http_port = 3000
according to my research, sanitize is sort of transformation of html much secure.
before getting there, I would just like to display the html page in the dashboard.
you cant get there without changing that setting. Is that all you have in your ini file just those few lines under [server]
?
Yes just these lines.
as indicated by @jangaraj add this line then restart grafana
[panels]
disable_sanitize_html = true
no, but after restart it is OK thankās alls