Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <script
- src="https://code.jquery.com/jquery-3.5.1.min.js"
- integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
- crossorigin="anonymous"></script>
- <script>
- $(document).ready(function(){
- $.ajax({
- url: "http://grafana:3000/d/qEj5z1IZz/sample-operations-dashboard?orgId=1",
- type: "GET",
- beforeSend: function(xhr){
- xhr.setRequestHeader('Authorization', 'Bearer eyJrIjoiMXVVYUlKSU4xaDdid25jV1hMeFgwazNLeWF0OFM3TlAiLCJuIjoidGVzdCIsImlkIjoxfQ==');
- },
- success: function(r) {
- $('#container').html(r);
- }
- });
- })
- </script>
- </head>
- <body id="container">
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment