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
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,23 @@ We can configure every metric with settings:
124
124
125
125
Note, "autoreport_last_value_if_nothing_reported" property has influence only on "average" metric.
126
126
127
+
### **Real User Monitoring (RUM)**
128
+
129
+
Real user monitoring injects a script tag containing the [RUM JS](https://stackify.com/retrace-real-user-monitoring/) that is responsible for capturing information about the http requests on the browser. This approach is manual and needs to be configured.
130
+
131
+
#### RUM - Setup
132
+
133
+
```ruby
134
+
# Configuration - Standard API
135
+
Stackify.setup do |config|
136
+
...
137
+
config.rum_key ="YourRumKey"
138
+
end
139
+
140
+
# Use this to apply on views
141
+
Stackify.rum.insert_rum_script
142
+
```
143
+
127
144
## Troubleshooting
128
145
129
146
If there are problems, you can enable internal logging of the stackify-api-ruby project. Uncomment out the config.logger and config.logger.level lines in the 'config/initializers/stackify.rb' file:
0 commit comments