Download YourKit Java Profiler v9.0.3 Linux and Patch keygen by iNViSiBLE at our cracksguru database. Find lots of other cracks, serial numbers, keygens here. There is no crack, serial number, hack or activation key for YourKit Profiler present here. Our collection also doesn't contain any keygens, because keygen programs are being used in illegal ways which we.
Download0 ScreenshotsNo review
YourKit Java Profiler comes with a user-oriented interface with support for keyboard shortcuts and report filtering for instant and in-depth analysis. The top toolbar helps you capture performance snapshot, initiate or stop the CPU profiling, clear all CPU profiling results, disable Stack telemetry, capture memory snapshots, start memory. YourKit has developed a revolutionary approach to applications in both development and production. Features and specifications of YourKit Java Profiler software: Identify SE and EE programs, servers, technologies and frameworks across different operating systems, locally and remotely, in development, testing and production for teams. YourKit is a technology leader, creator of the most innovative and intelligent tools for profiling Java &.NET applications. The YourKit Java Profiler has been already recognized by the IT professionals and analysts as the best profiling tool.
No VideoWith YourKit Profiler you can benefit from streamlined and intuitive CPU and memory profiling asthe program takes a modern approach to profiling application in both development and production stages making it perfect for professional developers.
The program lets you profile all types of CLR software, servers, frameworks and technology on a wide array of Windows and .NET framework versions, during development testing and/or production stages, both locally and remotely.
YourKit Profiler enables developers to profile anywhere, even while on the go and offers controllable overhead with highly affordable and flexible licensing. It’s a complex, all-in-one profiler with all the features you’d need, harnessing the power of advanced CLR profiling features and functionality.
It can profile anything from memory, threads, exceptions, web, database and so on. Installation is quick and effortless with well thought default settings, plus it integrates perfectly into the development process as little extra configuration is needed.
- License:
- Platform:
- Publisher:
- File size:
- Updated:
- User Rating:
- Editors' Review:
- Downloads:
How do I configure YourKit Java profiler to work with CQ3.x or CQ4.x?
Download the YourKit agent for your OS (see the links at the bottom of the page).
Start the YourKit profiler (JDK 1.5 is necessary to run the profiler).
- Windows: Launch 'YourKit Java Profiler' from in the Start menu.
- Linux, Solaris: Run YourKit Java Profiler Home > /bin/yjp.sh.
- Mac OS X: When the downloaded application is unzipped, click its icon.
It's possible to enable profiling directly in an IDE or even J2EE server. However, it can be better to enable profiling manually to be independent of IDE or J2EE servers. The procedure differs from OS to OS.
OS | Action |
---|---|
Windows, 32-bit Java | add <!YourKit Java Profiler Home>binwin32 to the PATH |
Windows, 64-bit Java | add <!YourKit Java Profiler Home>binwin-amd64 to the PATH |
Mac OS X | add <!YourKit Java Profiler Home>/bin/mac to the DYLD_LIBRARY_PATH |
Linux x86, 32-bit Java | add <!YourKit Java Profiler Home>/bin/linux-x86-32 to the LD_LIBRARY_PATH |
Linux AMD64, 64-bit Java | add <!YourKit Java Profiler Home>/bin/linux-amd64 to the LD_LIBRARY_PATH |
Solaris SPARC, 32-bit Java | add <!YourKit Java Profiler Home>/bin/solaris-sparc-32 to the LD_LIBRARY_PATH |
Solaris SPARC, 64-bit Java | add <!YourKit Java Profiler Home>/bin/solaris-sparc-64 to the LD_LIBRARY_PATH |
Solaris x86, 32-bit Java | add <!YourKit Java Profiler Home>/bin/solaris-x86-32 to the LD_LIBRARY_PATH |
Solaris x86, 64-bit Java (AMD64) | add <!YourKit Java Profiler Home>/bin/solaris-x86-64 to the LD_LIBRARY_PATH |
To check that Java can load the profiler agent, you can call the following command that prints a description of agent parameters:
- Java 5 or 6
- java -agentlib:yjpagent=help
- Java 1.3 or 1.4
- java -Xrunyjpagent:help
To be able to profile a Java application, it is necessary to provide the YourKit tool an interface to the Java application. You integrate the YourKit agent library into the JVM where the target application you want to profile is running. First, enable profiling by providing the path to the respective OS agent library where the JVM is running on (see Enabling Profiling). Include setting environment variables in the start-script of your application.
For example, in a CQ start script under Linux, do the following:
#--------------------------------------------------------------------- # enables the YourKit Java Profiler #--------------------------------------------------------------------- YJP_HOME='/home/honwai/yjp-6.0.16/bin/linux-x86-32' export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$YJP_HOME
This setting makes the agent library available to the JVM. Now it is a matter of telling the JVM to actually integrate this library, which differs according to the JVM version in use:
Java Version | JVM Option |
---|---|
1.3/1.4 | java -Xrunyjpagent |
5 or newer | java -agentlib:yjpagent |
Now you're ready to start your application and the actual profiling. The agent library prints some information to the standard output (in case of CQ it is server(logs/startup.log):
[YourKit Java Profiler 6.0.16] Using JVMPI (Linux; 32 bit JVM)
[YourKit Java Profiler 6.0.16] *** HINT ***: Use Java 5 (or newer) when possible!
[YourKit Java Profiler 6.0.16] Profiler agent is listening on port 10001...
Hint: In CQ 4.2, the serverctl script has become more advanced, allowing for providing various options on startup. It includes the option to start the JVM with the YourKit agent library. Setting the above described env variables is still mandatory, but setting the additional JVM option is not:
linuxbox:/opt/day/cq-4.2/server# ./start --profile
To get a complete list of the available options, type ./serverctl and you get a list of all available options.
When starting an application with profiling enabled, the agent library chooses a free port that is available on the system. It is not necessary to know the port. The YourKit tool can automatically connect to a running profiled application, either locally or remotely. If it finds more than one application, you are prompted to select a particular one.
It is also possible to specify a dedicated port if local security settings (for example, firewall) don't allow for arbitrary ports to be chosen. See the following table for a complete list of options that can be passed to the agent library.
Option | Description |
---|---|
disablealloc | (Java 5 and newer / JVMTI only) Don't instrument bytecode with instructions needed for object allocation recording. |
disablecounts | (Java 5 and newer / JVMTI only) Don't instrument bytecode with instructions needed for CPU tracing. Only CPU sampling is available. |
disablej2ee | (Java 5 and newer / JVMTI only) Don't instrument bytecode with instructions needed for J2EE profiling. |
sampling | Launch Java application with CPU sampling turned on. You do not have to profile CPU right from the start. Instead, in many cases you'd better start or stop the measuring later from the user interface or using Profiler API. |
tracing | Launch Java application with CPU tracing turned on. You do not have to profile CPU right from the start. Instead, in many cases, you'd better start or stop the measuring later from the user interface or using Profiler API. This option cannot be used in combination with 'disablecounts'. |
noj2ee | Don't perform J2EE high-level profiling. This option only affects CPU profiling started with 'sampling' or 'tracing'. |
alloc | Launch Java application with started object allocation recording. All objects are recorded. You do not have to record allocations right from the start; instead, you can start or stop recording later from the Profiler or using Profiler API. This option cannot be used in combination with 'disablealloc'. |
allocadaptive | Launch Java application with started object allocation recording. As many objects as possible are recorded, keeping overhead at moderate level. You do not have to record allocations right from the start; instead, you can start or stop recording later from the Profiler or using Profiler API. This option cannot be used in combination with 'disablealloc'. |
usedmem=<percent> | Automatically capture memory snapshot when used heap memory reaches the threshold. |
onexit=memory | Always capture memory snapshot on exit. CPU snapshot iscaptured automatically if CPU profiling is enabled when the profiled application exits. |
onexit=telemetry | Capture telemetry snapshot on exit. This option is automatically used when the profiled application is started from the IDE. |
port=<value> | Specify port that the profiler agent listens on for communication with the Profiler. By default any free port is chosen. |
onlylocal | Allow only local connections to profiled application |
dir=<directory for='for' snapshots='snapshots'> | Specify directory where snapshots are created. By default, <user home='home'>/Snapshots directory is used. |
quiet | Suppress diagnostics messages that the profiler agent prints to the console. |
help | Print short description of agent parameters. |
Separate multiple options with commas. Pay attention that Java requires : after -Xrunyjpagent but = after -agentlib:yjpagent.
Examples (Java 5 or newer):
java -agentlib:yjpagent FooClass java -agentlib:yjpagent=onexit=memory,dir=c:MySnapshots FooClass java -agentlib:yjpagent=usedmem=70 FooClass
Examples (Java 1.3/1.4):
java -Xrunyjpagent FooClass java -Xrunyjpagent:onexit=memory,dir=c:MySnapshots FooClass java -Xrunyjpagent:usedmem=70 FooClass
Once the YourKit profiler is installed, there's extensive HTML documentation in the installation directory, in <!YourKit Java Profiler Home>/docs/help/index.html. It explains in detail how to integrate the agent library on the target application that is the subject of profiling. It also provides many useful options that can be passed to the agent. For example:
- generate a heap-dump once the application exits
- generate a heap-dump once a certain threshold is reached
These options can be found in <!YourKit Java Profiler Home>/docs/help/agent.html.
The current 7.0 release doesn't come with documentation, you can find it on our setup server:
Yourkit License Key Crack
- setupinstallprofilingyjp-6.0docshelpindex.html