Available for the following Plan types:
Fullstory Enterprise*
Fullstory Advanced*
Fullstory Business*
Fullstory Free
*with the following add-on:
Fullstory for Mobile Apps
Available to the following User roles:
Admin
Architect
Standard
Overview
Mobile applications have become increasingly important in your users’ digital experience. However, slow performance and crashes on mobile apps can be daunting for developers to troubleshoot. With New Relic Mobile you can examine these issues and gain visibility into network errors and latency.
Crash reports and trace data in New Relic may translate into a sluggish app experience. However, it’s difficult to really gauge the severity of the user impact. This is where Fullstory session replay URLs can help provide a view into the user experiences corresponding to your New Relic data. This additional insight can reduce the time it takes your team to understand and prioritize issues in your mobile applications.
Checkout our partners page here
Learn more about New Relic Distributed Tracing + Fullstory, checkout this blog.
Implementations
- Add Fullstory Session URL as New Relic Attribute
- Add the Fullstory Session Replay URL as a session-level attribute and access it anywhere from crash reports to HTTP errors.
- Extending your MainActivity to implement
FSOnReadyListener
, and override theonReady
method to set a New Relic attribute for the current Fullstory Session URL
Android |
public class MainActivity extends AppCompatActivity implements FSOnReadyListener { |
iOS |
class AppDelegate: UIResponder, UIApplicationDelegate, FSDelegate { |
- The Fullstory session URL will show up in the New Relic crash reports:
- As well as in the HTTP error reports
- Get Detailed New Relic data with its Fullstory URL via NRQL
- Run NRQL against New Relic Event Insights to drill down to any data you are interested in.
For example, query for any Mobile requests with response time greater than half a second:
SELECT requestPath, responseTime, FSURL
FROM MobileRequest
WHERE responseTime > 0.5 SINCE 1 week ago
- Query result from New Relic Mobile data:
- Adding Session Replay Link Header for New Relic Distributed Tracing
- When troubleshooting distributed systems with New Relic Distributed Tracing, Fullstory Session Replay URL adds critical insights into user impacts.
- To enable Fullstory Session Replay URL in New Relic Distributed Tracing: Add “X-FullStory-URL” header to your HTTP requests with Fullstory “moment-in-time” Session URL:
Android |
Request request = new Request.Builder() |
iOS |
let url = URL(string: "utl")! |
- The Fullstory Session Replay URL is now attached as a part of the distributed tracing attributes