Java Agent Installation: Enable APM+ for JBoss AS 6

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: JBoss AS Installation (6.x) Locate the standalone.conf file and add: JAVA_OPTS=”$JAVA_OPTS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” Restart the JBoss service To see a list …

Java Agent Installation: Enable APM+ for Tomcat (6, 7, 8)

If you have not already installed an agent on a server where your app lives, please see our Installation Documentation. Once the agent has been installed, please add the following line to the corresponding config file depending on your installation: Tomcat Installation (6.x, 7.x, 8.x) Locate the catalina.sh file and add: # Stackify Java APM+ CATALINA_OPTS=”$CATALINA_OPTS -javaagent:/usr/local/stackify/stackify-java-apm/stackify-java-apm.jar” Restart the Tomcat service …

Java Agent Installation: Configure APM+ on Standalone Applications

Pre-Requisites: 1) Application must be setup with our custom configuration or be using one our supported Non-WebApp frameworks (Quartz, Spring Batch, Akka). Please follow these steps here first: Configure Custom Profiling for Java. 2) Application must be setup as a Linux Service. 3) Linux Agent Installed   Example using annotations: import com.stackify.apm.Trace; @Trace public class ClassToBeInstrumented { @Trace(start = true) …

Java Agent Installation: Configure Docker Containers

Docker  and Docker Swarm Support Installation of the Stackify agent is required on the docker host system, it should not be installed on containers. See our guide to install the Linux agent here. When installing the agent on the docker host add the  –docker argument to the installation script. This grants the agent access to view docker container stats: wget https://s1.stackify.com/Account/AgentDownload/Linux –output-document=stackify.tar.gz && tar …

Java Agent Installation: Default Linux Install

One Step Installation Script Here is a script you can copy into your terminal that will download, un-tar, and install the agent all in one step: wget https://s1.stackify.com/Account/AgentDownload/Linux –output-document=stackify.tar.gz && tar -zxvf stackify.tar.gz stackify-agent-install-32bit && cd stackify-agent-install-32bit && sudo ./agent-install.sh –devicealias [aliasname] Note: The devicealias parameter is optional and [aliasname] should be replaced with the desired name for your device. …

AWS Installation: Linux AWS Elastic Beanstalk (Tomcat)

Install for AWS Elastic Beanstalk (Tomcat) Instructions on how to install the Retrace Linux Agent and Java APM on AWS Elastic Beanstalk. Installing Stackify Linux Agent Create a new file named stackify.config in your application’s .ebextensions folder. Learn More about .ebextensions. Add the following to your stackify.config file: Replace [INSERT ACTIVATION KEY] with your activation key value. Optionally you can …

AWS Installation: Linux AWS EC2

Install for AWS EC2 Instructions on how to install the Stackify Linux Agent AWS EC2 (Amazon Linux). Installing Stackify Linux Agent SSH into your AWS EC2 instance ssh -i [cert.pem] ec2-user@[x.x.x.x] Download and Install Replace [INSERT ACTIVATION KEY] with your activation key value. You can find your activation key under Settings: Account. wget https://s1.stackify.com/Account/AgentDownload/Linux –output-document=stackify.tar.gz && \ tar -zxvf stackify.tar.gz …

Linux Installation: RedHat and CentOS

Instructions on how to install the Retrace Linux Agent on RedHat and CentOS based Linux systems. You can install by using the yum package manager directly. The following commands are intended to be ran with root permissions. Installing with Yum Add Stackify’s yum repository. wget -qO – https://download.stackify.com/rpm/stackify.repo | sudo tee /etc/yum.repos.d/stackify.repo Install Stackify Linux Agent. sudo yum install stackify-agent …