Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Becky Merendino #60

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions labreports/LAB.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Instructors: [Joel Worrall](https://github.com/tangollama) & [Trevor Bunch](http

Name: YOUR NAME<br/>

GitHub: [YOUR_HANDLE](https://github.com/YOUR_HANDLE)<br/>
GitHub: [bmerem](https://github.com/YOUR_HANDLE)<br/>

# Step 1: Fork this repository
- The URL of my forked repository
Expand All @@ -15,9 +15,9 @@ GitHub: [YOUR_HANDLE](https://github.com/YOUR_HANDLE)<br/>
{
"data": {
"mutateAccount": {
"id": "a10db030-ded8-4397-a78f-30b79d3497ab",
"name": "MY NAME",
"email": "MY EMAIL"
"id": "f675553a-8e07-4141-87d8-ccfc522e85e0",
"name": "Becky Merendino",
"email": "bm1371@messiah.edu"
}
}
}
Expand All @@ -26,7 +26,7 @@ GitHub: [YOUR_HANDLE](https://github.com/YOUR_HANDLE)<br/>
# Step 3: Signup for and configure New Relic
- The chosen name of your New Relic ```app_name``` configuration
```
app_name: ['<YOUR APP NAME>']
app_name: ['<cislab>']
```

# Step 4: Exercising the application / generating performance data
Expand All @@ -35,16 +35,31 @@ _Note: No lab notes required._

# Step 5: Explore your performance data
* What are your observations regarding the performance of this application?

The timing for how long it took in some areas were more than others, but it performs pretty alright for the most part
* Is performance even or uneven?

It looks pretty uneven
* Between queries and mutations, what requests are less performant?

Queries are less performant
* Among the less performant requests, which ones are the most problematic?

The one with the gmail accounts
# Step 6: Diagnosing an issue based on telemetry data
* Within the transactions you're examining, what segment(s) took the most time?

The search for "everything"
* Using New Relic, identify and record the least performant request(s).

It took 10.6 seconds
* Using the Transaction Trace capability in New Relic, identify which segment(s) in that request permiatation is/are the most problematic and record your findings.

The ones that searched by term
* Recommend a solution for improving the performance of those most problematic request(s) / permiatation(s).

You could simplify the search queries so that there are less/broader terms

# Step 7: Submitting a Pull Request
_Note: No lab notes required._

Expand Down
Loading