Hello community,
I use an influx DB and Grafana to visualize. After updating Grafana to the latest version 8.3.4 i have strange behavior.
To navigate in Grafana i created an Text Panel for easy navigation. It worked pretty well thill this version. Now I have vertical offset in the “menu”. (picture)
Any way to debug & fix it?
Br
Thomas
grant2
January 20, 2022, 1:28pm
2
Can you open Grafana in different browsers (Chrome, Firefox, Edge, Safari, etc.) and see if the same glitchy behavior persists?
Yes, same result. I even tested on a different PC
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnav .icon {
display: none;
}
}
</style>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="http://XXXXXXXX/d/YSfQmdo7k/therme-villach-home-mobile?orgId=1&from=now-90d&to=now">Übersicht</a>
<a href="http://XXXXXXXX/d/jvpfIVDnz/therme-villach-home?orgId=1&from=now-90d&to=now">Experts</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>
nothing special in there …
sudo apt-get install grafana=8.0.0