Hi Team,
I am a beginner at request tagging.
Recently I defined a few user-defined tags for my requests and I want to know how these influence the response time. And how I take advantage of that.
Example: I tag with the same value on both requests, the reason the second request was the child request of request one. Please find the configuration below.
const resHomePage = http.get('https://www.myhomepage.com/',{tags: { myTrans: '01_HomePage' }},homePageHeader);
const resSecHome = http.get('https://www.myhomepage.com/2/',{tags: { myTrans: '01_HomePage' }},homePageHeader);
the second request is a child call of the first (HomePage) request call. I need clarification
- How the values treat on the backend ( tag(myTrans) ) Influxdb
- How was the influence of the above two requests considered as two separate samples or two requests sum the response time and treat as a single sample.
- What are the best practices to use tagging