-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'Call Tree' tab only shows top level HTTP request #56
Comments
I just tried setting the minimum execution times/percentage to zero. I see that the change got updated in the configuration tab, but the call tree still only shows a single GET. This is through tomcat by the way, so I'm setting the configuration through setenv.sh file. I see through the browser plugin, that the setenv file is indeed being read and having an impact on configs. The bytebuddy agent jar is being picked up if I look at the arguments passed to tomcat via "ps" This is for version 0.84.0 |
Hi! Could you post the content of your stagemonitor.properties? Could you also provide the startup log? It looks like this:
|
So I'm actually using the java system properties instead of a properties file. I have them as this: -Dstagemonitor.elasticsearch.url=http://localhost:9200 And those are being read in as far as I can tell: I don't have the startup logs, but I will see what I can do |
You have to set stagemonitor.instrument.include
rk-9 <notifications@github.com> schrieb am Mi., 18. Okt. 2017 14:49:
… So I'm actually using the java system properties instead of a properties
file. I have them as this:
-Dstagemonitor.elasticsearch.url=http://localhost:9200
-Dstagemonitor.grafana.url=http://localhost:3000
-Dstagemonitor.tracing.reporting.log=true
-Dstagemonitor.profiler.minExecutionTimePercent=0
-Dstagemonitor.profiler.minExecutionTimeNanos=0
-Dstagemonitor.grafana.apiKey=eyJrIjoiQzhVZGF5d1Vsc3VIMnpaNUN0ZVNlSTdlSkFHWHFWcnUiLCJuIjoic3RhZ2Vtb25pdG9yIiwiaWQiOjF9
And those are being read in as far as I can tell:
[image: screen shot 2017-10-18 at 9 39 46 am]
<https://user-images.githubusercontent.com/32883029/31721813-67ced640-b3e8-11e7-93e9-5054fccc8e3d.png>
I don't have the startup logs, but I will see what I can do
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#56 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACEDCKpi5PiBFTM8Xxif7hr3g0i3VpPGks5stgHagaJpZM4P8v6T>
.
|
That worked perfectly! Thanks! So I have a couple of follow-up questions regarding this:
|
1) yes, comma sepatated
2) stagemonitor does prefix matching
rk-9 <notifications@github.com> schrieb am Mi., 18. Okt. 2017 15:44:
… That worked perfectly! Thanks!
So I have a couple of follow-up questions regarding this:
1.
To include multiple projects, can I just use a comma separated list?
Something like
"-Dstagemonitor.instrument.include=com.test.app1,com.test.app2"
2.
Do I have to be verbose with the complete path name? or can I use
regex/wildcards to get every class (com.test.*)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#56 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACEDCM7YE6vWcv4U8eqTGmC9zLkXHpLLks5stg7HgaJpZM4P8v6T>
.
|
Excellent. Thanks again. |
Is there a way to just add all the packages in the classpath (excluding the packages that ship with jdk & jre) ? |
I'm only seeing the initial HTTP GET request even though other methods are called before returning a response.
I believe I have all the jars for tracing included in my classpath, and I haven't touched any of the configuration which I think should be fine since it is enabled by default.
It should be able to do trace all the invoked java methods correct?
The text was updated successfully, but these errors were encountered: