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
The BeforeRequest method is used by plugins for instrumenting APMs such as newrelic. The standard instrumentation generates segments by Host and Method in the format example.com - (POST) and with that we lose visibility when the same host has several resources.
We can't generate segments by "path" because it would split /resource/123 and /resource/321 in two distinct segments. I think we need a way to retrieve the fields Method and Resource from domain.Statement
The text was updated successfully, but these errors were encountered:
The BeforeRequest method is used by plugins for instrumenting APMs such as newrelic. The standard instrumentation generates segments by Host and Method in the format
example.com - (POST)
and with that we lose visibility when the same host has several resources.We can't generate segments by "path" because it would split
/resource/123
and/resource/321
in two distinct segments. I think we need a way to retrieve the fieldsMethod
andResource
from domain.StatementThe text was updated successfully, but these errors were encountered: