- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
external PHP page in splunk Dashboard
adrienf
New Member
07-20-2016
11:29 PM
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
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

kbarker302
Communicator
07-21-2016
09:07 AM
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>
