Hello all,
For a project I've done a Splunk dashboard, like a web portal with differents items, and I would like to add a PHP page is it possible nativelly ?
Thank you in advance
Best Regards
Adrien
If you're talking about embedding the PHP page inside your dashboard, you should be able to do that with a iFrame tag like this:
<row>
<panel>
<title>Panel 1</title>
<html>
<iframe src="http://www.google.com" width="100%" height="500" frameborder="0" />
</html>
</panel>
</row>