Skip to content

Commit

Permalink
Merge pull request #922 from khickey-newrelic/main
Browse files Browse the repository at this point in the history
feat:(Browser segment list dashboard): Added browser segment dashboard
  • Loading branch information
John P Vajda authored Mar 24, 2022
2 parents 2caae45 + a4d650b commit 644f155
Show file tree
Hide file tree
Showing 5 changed files with 263 additions and 0 deletions.
38 changes: 38 additions & 0 deletions quickstarts/browser-segment-investigation/config.yml
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
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
}
]
}
]
}
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.

0 comments on commit 644f155

Please sign in to comment.