A JavaScript statistical library. Also a Java Virtual Machine Statistics Monitoring Tool.
0
votes
1answer
40 views
Seeking a statistical javascript function to return p-value from a z-score
I need to convert z-scores to percentile. I found reference to a function in the jStat library that I could use (jstat.ztest), but the jStat documentation seems to be ahead of the available library ...
0
votes
0answers
33 views
Jinfo and gcutil showing different values
I have run
./jinfo -flag MaxPermSize 28018 shows as -XX=85983232 and
./jinfo -flag PermSize 28018 shows as -XX=21757952
but when I run ./jstat -gcutil -t 28018 15s but the P column shows as ...
0
votes
2answers
196 views
High Perm Generation and Low Old Generation
We have actually increase the memory for the jvm to 256M and now the old generation looks very small but the Perm Generation is quite high nearly 80%. Sample data capture via jstat is as below. What ...
0
votes
0answers
70 views
jstat : -gccapacity output
As per link : -gccapacity shows :
NGCMX : Maximum new generation capacity (KB).
NGC : Current new generation capacity (KB).
Is NGC shows currently free new generation capacity or currently used ...
0
votes
1answer
117 views
Creating Log-normal distribution curves with Jstat using json data
There is no documentation for jStat. As of 2012-11-06 (per the documentation page): "The jStat API documentation is still being compiled."
I want to plot log-normal curves with JSON data. Can anyone ...
1
vote
3answers
455 views
If jstat is deprecated, what should I use instead?
Suddenly I've found out that jstat is deprecated:
The jstat tool displays performance statistics for an instrumented
HotSpot Java virtual machine (JVM). The target JVM is identified by
its ...
3
votes
1answer
186 views
jstat: difference between OGC & OC, PGC & PC
I'm learning about jstat and what it can tell me about the JVM's different generations. From the jstat docs I understand the new gen is made up of eden, s0 and s1. For example, if you do the math on ...
0
votes
0answers
266 views
VisualVm jconsole jstat observe JVM Full GC
I want to study JVM full gc.
so I use VisualVM, Jconsole ,Jstat to observe the JVM full gc infomation,but the result Surprising!
why the full gc CollectionCount is different from these tools?
...
0
votes
2answers
2k views
VisualVM over Putty SSH-tunnel
I'm trying to profile remote java app, actually it is a gameserver. It works normally on my local machine (windows XP x64 with JDK1.7.0_02 x64), but behaves very wierd on the production server (CentOS ...
3
votes
1answer
2k views
Interpreting jstat output after tuning JVM heap size
Having recently attempted to increase the heap space and ratio of new to old gen size I'm seeing confusing results from jstat -gccapacity which is showing much smaller capacities than I would expect.
...
1
vote
2answers
1k views
Where to place jstatd.all.policy
I'd like to grant permissions to my jstatd on linux
The corresponding manual reads:
To use this policy, copy the text into a file called jstatd.all.policy
and run the jstatd server as follows:
...
2
votes
1answer
3k views
Histogram in JavaScript?
I have this dataset for income:
Income Number of people
0 245981
8.8 150444
30 126063
49.9 123519
70 115029
90.7 277149
109.1 355768
130 ...
3
votes
5answers
2k views
Something keeps killing my Java process on Ubuntu, anyone know why?
So every couple of days my java process on Ubuntu is killed automatically, and I can't figure out why.
My box has 35.84 GB of RAM, when I launch my Java process I pass it the -Xmx28g parameter, so it ...
2
votes
0answers
326 views
Connecting to Java process running as a Windows service: How does JProfiler does it?
How can I connect a trace tool like JvisualVM - not using JMX - to a Java process running as Windows service?
The JVM running as service is strted When i start JvisualVM, it does not 'see' the JVM ...
3
votes
0answers
476 views
Windows Server 2008 and jstatd as a service
I have a JBoss server installed as a service on Windows Server 2008 with Local System as the Log On user.
I want to be able to run visualgc on the JBoss server, and prior to Server 2008 I was able to ...
0
votes
0answers
1k views
sysstat for java - using jstat [closed]
I don't have my own site to post this on at the moment... but here's something that may be useful to you java people out there.
SORRY if these are not terribly flexible in terms of command line ...
15
votes
2answers
6k views
Jstack and Jstat stopped working with upgrade to JDK6u23
We recently upgraded from JDK6u20 (Linux, 32bit and 64bit) to JDK6u23. Since then, we cannot longer use the tools jstack and jstat to get monitoring information from the running process. If we switch ...
3
votes
3answers
4k views
Full GC - Sun JVM frequency of run
In JDK 1.6 : I see that full GC has been run but the old generation and perm gen space is not used completely - question is as per my understanding FGC only runs when old gen or perm gen is full - I ...
4
votes
1answer
662 views
Sun Java jstat does not work .. sometimes !
I frequently use jstat to obtain GC related statistics. However, there are times when I simply cannot obtain any of the statistics from a JVM. It just says that it cannot find the process id, even ...
1
vote
1answer
171 views
jstat and JSP configuration
I have installed and configured jstat in my PC with Windows XP, tested it with sample Java program. But I need to know how to use jstat with JSP or Tomcat, is there any other futher configuration ...
11
votes
7answers
16k views
Analyze GC logs for Sun Hotspots, JVM 6
I'm trying to analyze GC behaviour for our application (running in Tomcat, under Sun's Hotspots, JVM 1.6).
So far I've Instructed the JVM to emit GC logs to a separate file using...
-Xloggc:gc.log
...