-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into NR-356329-browser-logs
- Loading branch information
Showing
21 changed files
with
372 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from 'react'; | ||
import Navigation from './Navigation'; | ||
import { useStaticQuery, graphql } from 'gatsby'; | ||
|
||
const FrNav = ({ className }) => { | ||
const { nav } = useStaticQuery(frQuery); | ||
return <Navigation nav={nav} className={className} />; | ||
}; | ||
|
||
const frQuery = graphql` | ||
query { | ||
nav(slug: "/") { | ||
id | ||
title(locale: "fr") | ||
url | ||
filterable | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
fragment MainLayout_navPagesfr on NavItem { | ||
title(locale: "fr") | ||
url | ||
icon | ||
label | ||
} | ||
`; | ||
|
||
export default FrNav; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
...browser/browser-monitoring/browser-pro-features/session-replay/nrai-summary.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: "New Relic AI summary for Session Replay" | ||
metaDescription: "Manage session replay & modify capabilities depending on the role" | ||
freshnessValidatedDate: 2024-12-19 | ||
--- | ||
|
||
<Callout title="preview"> | ||
We're still working on this feature, but we'd love for you to try it out! | ||
|
||
This feature is currently provided as part of a preview program pursuant to our [pre-release policies](docs/new-relic-solutions/new-relic-one/core-concepts/new-relic-ai). | ||
</Callout> | ||
|
||
You can use New Relic AI (NRAI) to help you summarise and map session replay event trail data so that you can better understand errors and successes of your user's browser journey. | ||
|
||
To use NRAI to summarize your session replay event trail data, you must have [NRAI enabled](/docs/agentic-ai/new-relic-ai/#enable) for your account. Once NRAI is enabled on your account, perform the following to surface your summary: | ||
|
||
<Steps> | ||
|
||
<Step> | ||
Go to <DNT>**[one.newrelic.com > All Capabilities](https://one.newrelic.com/all-capabilities) > Browser**</DNT>. | ||
</Step> | ||
|
||
<Step> | ||
Select your browser app. | ||
</Step> | ||
|
||
<Step> | ||
In the left-hand menu, scroll down and click <DNT>**Session replay**</DNT>. | ||
</Step> | ||
|
||
<Step> | ||
Click the replay to view session details for the session you would like summarized. | ||
|
||
<img | ||
title="Session replay" | ||
alt="screenshot of the session replay page in browser" | ||
src="/images/browser-session-replay.webp" | ||
/> | ||
</Step> | ||
|
||
<Step> | ||
Click <DNT>**Summarize**</DNT>. A summary of the session is generated on the focus panel. | ||
|
||
<img | ||
title="Summarize session replay" | ||
alt="screenshot of the session replay page in browser" | ||
src="/images/finalcut.gif" | ||
/> | ||
</Step> | ||
|
||
</Steps> |
Oops, something went wrong.