Integration / Apache Pulsar Interview questions
What is a Service Endpoint in AppDynamics?
A Service Endpoint lets you track a specific method call inside a Business Transaction as its own separately-measured unit — for example, one particular internal service call buried deep inside a larger transaction — without having to make it a whole new Business Transaction of its own.
It's configured by defining a match rule (by class and method, or by matching a URL/parameter pattern) that tells the agent "whenever this specific point in the code executes as part of any Business Transaction, also record it as its own tracked endpoint" with its own response time, calls per minute, and error metrics.
This is useful for isolating a shared internal call — like an authentication check or a shared cache lookup — that many different Business Transactions all invoke, so you can tell whether a slowdown across many BTs traces back to that one shared piece of code rather than each BT independently having its own problem.
More Related questions...
