Query not executed if I paste url

  • What Grafana version and what operating system are you using?
    11.3 on almalinux 9

  • What are you trying to achieve?
    display graphs in icinga2

  • How are you trying to achieve it?
    integrating grafana with icinga2

  • What happened?
    migrated from old centos version to almalinux 9. the module is configured to have url behind graphs. when I click the graph, it get me to grafana server on specific service but the query is not executed and the graph is not displayed. it remains on that indefinitely. but, if I click refresh or autorefresh is set, the graph is insta generated.
    so, my guess is that something is wrong on grafana side.
    If I get the link and paste it to a new tab/browswr/incognito, same behavior: the query is not executed/

  • What did you expect to happen?
    display graphs on icinga web

  • Can you copy/paste the configuration(s) that you are having problems with?
    app_mode = production
    [paths]
    data = /var/lib/grafana
    logs = /var/log/grafana
    plugins = /var/lib/grafana/plugins
    [server]
    protocol = http
    http_port = 3000
    [database]
    host = 127.0.0.1:3306
    name = grafana
    user = root
    path = grafana.db
    [analytics]
    reporting_enabled = false
    [security]
    allow_embedding = true
    [auth]
    disable_login_form = false
    [auth.anonymous]
    enabled = false
    [auth.basic]
    enabled = false
    [auth.ldap]
    enabled = true
    config_file = /etc/grafana/ldap.toml
    allow_sign_up = true
    [smtp]
    enabled = true
    host = localhost:25
    skip_verify = true
    from_address = grafana-admin@domain.local
    from_name = Grafana
    [log]
    mode = file
    level = debug
    filters = rendering:debug
    [query]
    concurrent_query_limit = 10
    [live]
    max_connections = 100
    [plugin.grafana-image-renderer]
    rendering_ignore_https_errors = true

  • Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
    No

  • Did you follow any online instructions? If so, what is the URL?
    Not really. Tried a lot of stuff

Probably this is an intended behaviour, i.e. not execute query if autorefresh is disabled or refresh period is not set.

Did it work on your previos platform / version of Grafana?

I don’t think it is intended. Yes, it was working on the old server with previous versions

downgrading to grafana 11.2.3 solves the issue
I read the changelog but didn’t find, at least with my knowledge, something that generates this issue.

from my understanding, it’s how grafana 13 is executing the query
for some reason, with grafana 13, the url is with viewPanel=**panel-**1 and in 13.2.3 this is not present and it’s working

1 Like