-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add newrelic implementation #37
base: master
Are you sure you want to change the base?
Conversation
/** | ||
* Your New Relic license key. | ||
*/ | ||
license_key: 'YOUR_NEW_RELIC_LICENSE_KEY', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where can we get the key?
Should this Key be secret?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is generated when you create a project (I plan to write a guide for this part). I need to check if it's also passed to frontend or if it's only used on the backend
/** | ||
* Array of application names. | ||
*/ | ||
app_name: ['YOUR_PROJECT_NAME'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this an array? I'm just curious :d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, this whole file was generated by newrelic
src/pages/_document.tsx
Outdated
|
||
const newrelic = require('newrelic'); | ||
|
||
const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there are some TS helpers for inferring types form getInitialProps
so you don't have to maintain it in two places.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not two places, maintain it manually when you add another prop to gIP return statement
src/pages/_document.tsx
Outdated
|
||
AppDocument.getInitialProps = async function ( | ||
ctx: DocumentContext | ||
): Promise<DocumentInitialProps & { browserTimingHeader: string }> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
): Promise<DocumentInitialProps & { browserTimingHeader: string }> { | |
) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need explicit return type
src/pages/_document.tsx
Outdated
|
||
const newrelic = require('newrelic'); | ||
|
||
const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => { | |
type Props = DocumentProps & Awaited<ReturnType<Awaited<typeof AppDocument.getInitialProps>>>; | |
const AppDocument = ({ browserTimingHeader }: Props) => { |
532f032
Summary
Task:
https://app.productive.io/1-infinum/tasks/3675565
Associated design:
N/A
Documentation:
https://newrelic.com/blog/how-to-relic/nextjs-monitor-application-data
Description
Add the setup for New Relic monitoring (SSR and Browser)
Checklist: