Guest User

Untitled

a guest
Jun 24th, 2020
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script
  5. src="https://code.jquery.com/jquery-3.5.1.min.js"
  6. integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
  7. crossorigin="anonymous"></script>
  8.  
  9. <script>
  10. $(document).ready(function(){
  11. $.ajax({
  12. url: "http://grafana:3000/d/qEj5z1IZz/sample-operations-dashboard?orgId=1",
  13. type: "GET",
  14. beforeSend: function(xhr){
  15. xhr.setRequestHeader('Authorization', 'Bearer eyJrIjoiMXVVYUlKSU4xaDdid25jV1hMeFgwazNLeWF0OFM3TlAiLCJuIjoidGVzdCIsImlkIjoxfQ==');
  16. },
  17. success: function(r) {
  18. $('#container').html(r);
  19. }
  20. });
  21. })
  22. </script>
  23. </head>
  24. <body id="container">
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment