DX Application Performance Management

  • 1.  URL Groupings in 5 seconds

    Broadcom Employee
    Posted Aug 10, 2017 03:18 AM

    This simple config will massively increase the granularity that incoming HTTP requests are measured by.

     

    Adding the below lines will cause a separate set of frontend metrics to be reported for the *first 3 names on the url path"

     

    ie: if you have

      /myapp/login/page.html

      /myapp/orders/options

      /myapp/orders/bonds

     

    The response times of all three will be reported separately

     

    These are added to the IntroscopeAgent.profile, you will need to comment out the existing default urlgrouping

     

    (oh, and no restart needed either)

     

    # Changing this property does not require restarting the Monitored Process

    introscope.agent.urlgroup.keys=threeurlsdeep,default

    introscope.agent.urlgroup.group.threeurlsdeep.pathprefix=*

    introscope.agent.urlgroup.group.threeurlsdeep.format={path_delimited:/:0:7}

    introscope.agent.urlgroup.group.default.pathprefix=*

    introscope.agent.urlgroup.group.default.format=Default



  • 2.  Re: URL Groupings in 5 seconds

    Broadcom Employee
    Posted Aug 10, 2017 03:21 AM

    To adjust the depth, simply change the line

     

    introscope.agent.urlgroup.group.threeurlsdeep.format={path_delimited:/:0:7}

     

    for 1 level shallower . (2 levels deep)

     

    introscope.agent.urlgroup.group.threeurlsdeep.format={path_delimited:/:0:5}

     

    or 1 level deeper (4 levels deep)

     

    introscope.agent.urlgroup.group.threeurlsdeep.format={path_delimited:/:0:9}



  • 3.  Re: URL Groupings in 5 seconds

    Broadcom Employee
    Posted Aug 10, 2017 08:21 AM

    Thanks Duane for sharing this very helpful information!