-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #922 from khickey-newrelic/main
feat:(Browser segment list dashboard): Added browser segment dashboard
- Loading branch information
Showing
5 changed files
with
263 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Name of the quickstart (required) | ||
name: browser-segment-investigation | ||
|
||
# Displayed in the UI (required) | ||
title: Browser Segment Investigation Quickstart | ||
|
||
# Long-form description of the quickstart (required) | ||
description: | | ||
Review the extent of crushed urls so you know which urls you need to add segments for in the browser segment allow list. | ||
# Displayed in search results and recommendations. Summarizes a quickstarts functionality. | ||
summary: | | ||
Check for crushed urls so you can remedy them. | ||
# Support level: New Relic | Verified | Community (required) | ||
level: New Relic | ||
|
||
# Authors of the quickstart (required) | ||
authors: | ||
- Kim Hickey | ||
|
||
# Keywords for filtering / searching criteria in the UI | ||
keywords: | ||
- oma | ||
- crushed | ||
- urls | ||
- browser | ||
- segment | ||
- segments | ||
|
||
documentation: | ||
- name: Usage instructions | ||
url: https://docs.newrelic.com/docs/new-relic-solutions/observability-maturity/customer-experience/quality-foundation-implementation-guide#validate-browser-url-grouping | ||
description: The _Validate Browser URL grouping_ section of Quality foundation explains how to use the segment investigation dashboard as well as resolve any crushed URLs you might find. | ||
|
||
# Content / Design | ||
logo: logo.png | ||
website: https://www.newrelic.com |
225 changes: 225 additions & 0 deletions
225
quickstarts/browser-segment-investigation/dashboards/browser-segment-investigation.json
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,225 @@ | ||
{ | ||
"name": "Browser Segment Investigation", | ||
"description": null, | ||
"pages": [ | ||
{ | ||
"name": "Page View Segment Investigation", | ||
"description": null, | ||
"widgets": [ | ||
{ | ||
"visualization": { | ||
"id": "viz.pie" | ||
}, | ||
"layout": { | ||
"column": 1, | ||
"row": 1, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "Total Page Views By App Name", | ||
"rawConfiguration": { | ||
"facet": { | ||
"showOtherSeries": true | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT count(*) from PageView facet appName since 7 days ago" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.pie" | ||
}, | ||
"layout": { | ||
"column": 5, | ||
"row": 1, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "Total Collapsed Pages By App Name", | ||
"rawConfiguration": { | ||
"facet": { | ||
"showOtherSeries": true | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT count(*) from PageView where browserTransactionName LIKE '%*%' facet appName limit 10 since 7 days ago" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.bar" | ||
}, | ||
"layout": { | ||
"column": 9, | ||
"row": 1, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "% Collapsed Page Views By App Name", | ||
"rawConfiguration": { | ||
"facet": { | ||
"showOtherSeries": false | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT percentage(count(*), where browserTransactionName like '%*%') from PageView facet appName" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.table" | ||
}, | ||
"layout": { | ||
"column": 1, | ||
"row": 4, | ||
"height": 3, | ||
"width": 8 | ||
}, | ||
"title": "Page Views With Collapsed URLs", | ||
"rawConfiguration": { | ||
"dataFormatters": [], | ||
"facet": { | ||
"showOtherSeries": false | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT count(*) from PageView where browserTransactionName LIKE '%*%' facet browserTransactionName, pageUrl limit 100" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.bullet" | ||
}, | ||
"layout": { | ||
"column": 9, | ||
"row": 4, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "% Page Views With Collapsed URLs", | ||
"rawConfiguration": { | ||
"limit": 100, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT percentage(count(*), where browserTransactionName like '%*%') from PageView" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.table" | ||
}, | ||
"layout": { | ||
"column": 1, | ||
"row": 7, | ||
"height": 3, | ||
"width": 8 | ||
}, | ||
"title": "Severely Collapsed Page Views", | ||
"rawConfiguration": { | ||
"dataFormatters": [], | ||
"facet": { | ||
"showOtherSeries": false | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT count(*) from PageView WHERE browserTransactionName LIKE '*.*.*%/%' or browserTransactionName LIKE '%.%.%/*/*/*/%' or browserTransactionName LIKE '%.%.%/*/*/*' or browserTransactionName LIKE '%.%.%/*/*/%' FACET browserTransactionName, pageUrl limit 100" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.bullet" | ||
}, | ||
"layout": { | ||
"column": 9, | ||
"row": 7, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "% Page Views Severely Collapsed", | ||
"rawConfiguration": { | ||
"limit": 100, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT percentage(count(*), WHERE browserTransactionName LIKE '*.*.*%/%' or browserTransactionName LIKE '%.%.%/*/*/*/%' or browserTransactionName LIKE '%.%.%/*/*/*' or browserTransactionName LIKE '%.%.%/*/*/%') FROM PageView" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.table" | ||
}, | ||
"layout": { | ||
"column": 1, | ||
"row": 10, | ||
"height": 3, | ||
"width": 8 | ||
}, | ||
"title": "Collapsed Domain Segments", | ||
"rawConfiguration": { | ||
"dataFormatters": [], | ||
"facet": { | ||
"showOtherSeries": false | ||
}, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT count(*) from PageView WHERE browserTransactionName LIKE '*.%.%:%' or browserTransactionName LIKE '%.*.%:%' or browserTransactionName LIKE '%.%.*:%' FACET browserTransactionName, pageUrl limit 100" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
}, | ||
{ | ||
"visualization": { | ||
"id": "viz.bullet" | ||
}, | ||
"layout": { | ||
"column": 9, | ||
"row": 10, | ||
"height": 3, | ||
"width": 4 | ||
}, | ||
"title": "% Page Views With Collapsed Domain Segments", | ||
"rawConfiguration": { | ||
"limit": 100, | ||
"nrqlQueries": [ | ||
{ | ||
"accountId": 0, | ||
"query": "SELECT percentage(count(*), WHERE browserTransactionName LIKE '*.%.%:%' or browserTransactionName LIKE '%.*.%:%' or browserTransactionName LIKE '%.%.*:%') from PageView" | ||
} | ||
] | ||
}, | ||
"linkedEntityGuids": null | ||
} | ||
] | ||
} | ||
] | ||
} |
Binary file added
BIN
+141 KB
...arts/browser-segment-investigation/dashboards/browser-segment-investigation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.