Common Tools

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
rc9093rd
Posts: 1
Joined: Wed Dec 23, 2020 3:49 pm

Common Tools

Post by rc9093rd »

This may not be a Nagios issue but I was wondering if anyone else has come across it.
I've started compiling links for myself and other Nagios admins under Tools, Common Tools to certain outage pages for cloud services we use.
Example- AWS Status.

I create the link, but cannot open it within the frame, possibly due to a content security policy that AWS has on the status page. When I look at the page in Google Chrome Developer tools I see this error, "Refused to display 'https://status.aws.amazon.com/' in a frame because it set 'X-Frame-Options' to 'deny'."

Is there a way I can add the Common Tools links to open in a new tab instead of a Nagios frame?
User avatar
kfanselow
Posts: 241
Joined: Tue Aug 31, 2021 3:25 pm

Re: Common Tools

Post by kfanselow »

Hi rc9093rd,

Have you tried setting up an html file with a javascript window.open call ? Something like the following ( might have to configure your browser to allow popups ).

Code: Select all

<html>
<body>
<script type = "text/javascript" language = "javascript" > 
         window.open( "https://status.aws.amazon.com/", "_blank");
</script>

</body> 
</html> 

Thanks and Best Regards,
Keith
Locked