diff --git a/README.md b/README.md index 6ae4868..fa91d45 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Stackify APM+ Overview: -http://support.stackify.com/hc/en-us/categories/200398749-APM- +http://support.stackify.com/agent-installation-overview/ Sign Up for a Trial: @@ -26,6 +26,37 @@ Add it as a maven dependency: ## Usage + +### RUM Manual Instrumentation + +Real User Monitoring (RUM) manual instrumentation allows you to specify where the RUM JavaScript block is injected. + +It is recommended you provide a `stackify-api.properties` file in your application classpath with the following content: + +```` +stackify.application=My Application Name +stackify.environment=My Environment Name +```` + +Your application code will need to call out to the Stackify `com.stackify.apm.Stackify.getRUMJavaScriptBlock()` method in the `` section as detailed below: + +**JSP Example** + +```` + + + <%= com.stackify.apm.Stackify.getRUMJavaScriptBlock() %> +