Dashboarding
Dynatrace dashboards, notebooks, and data explorer explained.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to Fetch Dashboard URL Query Parameters in DQL Without Using RUM

vasantharao
Newcomer

Requirement : I wanted to access url query parameters from dashboard url in dynatrace.

Summary : I have a dashboard page in dynatrace, In this main dashboard having one hyper link(URL) to navigate to another dashboard. while clicking the child dashboard URL link I am able to navigate to linked dashboard with few custom url query params.  I tried with all possible solutions given by dynatrace document but couldn't find the solution.

Request you Please help to support this ticket.

 

URL Ex : https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.dashboards/dashboard/acb12333val?proxy_...

I want to fetch the query param "proxy_name"  in DQL from above sample URL with out using RUM (Real User Monitoring)

 

1 REPLY 1

t_pawlak
Champion

Hi,
Unfortunately, IMO is not possible.

DQL cannot access dashboard URL query parameters.
Dashboards run completely on the server side, and DQL queries do not receive any context about dashboard URL, browser query parameters or navigation parameters passed between dashboards.

If you need dynamic filtering, the recommended approach is:

  • Use dashboard variables (input controls)
  • Pass the value into DQL using $variableName

Featured Posts