Can we display one line in Report instance of three line for login
that one line Login show sum of all three line response time.
like
responsetime=(2265+5038+807)
Can we display one line in Report instance of three line for login
that one line Login show sum of all three line response time.
like
responsetime=(2265+5038+807)
Make use fo the groups which will group these 3 requests and gives you a single line response for Login.
val login = group("Login") {
exec(
Login,
Login Redirect1,
Login Redirect2
)
}
Thanks for reply.
With your help my problem is solve.