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

Add newrelic implementation #37

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

Add newrelic implementation #37

wants to merge 2 commits into from

Conversation

DarkoKukovec
Copy link
Member

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:

  • Code is linted and prettified before the review
  • I have performed a self-review of my code
  • Tests pass locally with my changes

kristian240
kristian240 previously approved these changes Nov 18, 2022
isBatak
isBatak previously approved these changes Nov 21, 2022
/**
* Your New Relic license key.
*/
license_key: 'YOUR_NEW_RELIC_LICENSE_KEY',
Copy link
Contributor

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?

Copy link
Member Author

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'],
Copy link
Contributor

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

Copy link
Member Author

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


const newrelic = require('newrelic');

const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => {
Copy link
Contributor

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.

Copy link
Contributor

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


AppDocument.getInitialProps = async function (
ctx: DocumentContext
): Promise<DocumentInitialProps & { browserTimingHeader: string }> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
): Promise<DocumentInitialProps & { browserTimingHeader: string }> {
) {

Copy link
Contributor

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


const newrelic = require('newrelic');

const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const AppDocument = ({ browserTimingHeader }: { browserTimingHeader: string }) => {
type Props = DocumentProps & Awaited<ReturnType<Awaited<typeof AppDocument.getInitialProps>>>;
const AppDocument = ({ browserTimingHeader }: Props) => {

@DarkoKukovec DarkoKukovec dismissed stale reviews from isBatak and kristian240 via 532f032 December 9, 2022 12:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants