You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that in my setup the server side rendering of a graph is failing because the invocation of phantonjs render.js is missing the sessionid parameter.
The failure is logged simply with url=<url> png=<filename> width=<width> height=<height> cookiename=<cookiename> sessionid=<sessionid> domain=<domain>
Adding some debugging to render.js shows that the command line args include sessionid=
This fails to match both the regular expression for argument parsing and the !params.sessionid check
The request I'm making hits nginx with the a cookie grafana_sess = b287b1add7d8c540
Nginx proxies the request to grafana adding a header X-Forwarded-For: my_username
It appears that in my setup the server side rendering of a graph is failing because the invocation of
phantonjs render.js
is missing thesessionid
parameter.The failure is logged simply with
url=<url> png=<filename> width=<width> height=<height> cookiename=<cookiename> sessionid=<sessionid> domain=<domain>
Adding some debugging to render.js shows that the command line args include
sessionid=
This fails to match both the regular expression for argument parsing and the
!params.sessionid
checkThe request I'm making hits nginx with the a cookie
grafana_sess = b287b1add7d8c540
Nginx proxies the request to grafana adding a header
X-Forwarded-For: my_username
I have the following in my
custom.ini
The text was updated successfully, but these errors were encountered: