You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,35 @@ Be sure to shutdown the Direct Logger to flush this appender of any messages and
88
88
LogManager.shutdown();
89
89
```
90
90
91
+
### RUM Manual Instrumentation
92
+
93
+
Real User Monitoring (RUM) manual instrumentation allows you to specify where the RUM JavaScript block is injected.
94
+
95
+
It is recommended you provide a `stackify-api.properties` file in your application classpath with the following content:
96
+
97
+
````
98
+
stackify.application=My Application Name
99
+
stackify.environment=My Environment Name
100
+
````
101
+
102
+
Your application code will need to call out to the Stackify `com.stackify.apm.Stackify.getRUMJavaScriptBlock()` method in the `<head>` section as detailed below:
0 commit comments