0

APM Python Agent can capture request body (e.g. POST variables) by enabling CAPTURE_BODY variable.

How can i capture query string (e.g. GET Parameters) ?

Aninda
  • 97
  • 5
  • 14

1 Answers1

0

It should be captured in the metadata under "url":

https://capture.dropbox.com/5fZqpiFkgN1Vr9lS

If it's not, you should open an issue. Note that url.query will only show if it's non-empty.

Edit:

We don't store the query params separately, so if you want to query/aggregate against specific query params you'll need to add them manually with our api:

Colton Myers
  • 1,321
  • 9
  • 12
  • it did capture `url.query`. what i wanted to do is to perform an aggregate query over query string. `url.query` store full query string as text, so i can not perform any term/aggregate query over individual query parameter. – Aninda Feb 28 '23 at 20:36
  • Ah, thanks for the additional clarity. I updated my answer. – Colton Myers Mar 02 '23 at 18:42