Hi,
I have an application(test.app) which invokes multiple downstream application apis(profile, payments etc) and we log elapsed time of every downstream call as an element of Json Array. Is it possible to plot timechart on the p99(elapsed) time of each downstream application call separately.
Sample log :
{
......
appName : test.app
downstreamStats : [
{
...
pathname : profile,
elapsed: 250,
...
},
{
...
pathname : payments,
elapsed: 850,
...
}
]
......
}
I want to plot timechart of the above logs with p99 of elapsed time BY pathname
... View more