question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

TypeError: Cannot set property 'request' of null

See original GitHub issue

Versions:

  • node: 8.9.4
  • apm-agent-nodejs: 1.0.0
  • elasticsearch, apm-server: 6.2

the nodejs client throws (briefly after start when first sample is apparently processed) with

TypeError: Cannot set property 'request' of null
    at /APPDIR/node_modules/elastic-apm-node/lib/instrumentation/transaction.js:160:31
    at /APPDIR/node_modules/after-all-results/index.js:9:18
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickDomainCallback (internal/process/next_tick.js:218:9)

corresponding entry in apm-server log: 2018-02-08T10:55:33.755Z INFO [request] beater/handlers.go:150 handled request {"request_id": "c64c3d8b-e467-4f79-91ce-0af2d185a214", "response_code": 202, "method": "POST", "URL": "/v1/errors", "content_length": 1410, "remote_address": "9.8.7.6", "user_agent": "elastic-apm-node/1.0.0 elastic-apm-http-client/5.1.0"}

content of elastic-apm-node.js:

module.exports = {
	active: process.env.NODE_ENV === 'production',
	serviceName: 'service-name',
	serverUrl: 'http://1.2.3.4:8200',
	flushInterval: 5,
	maxQueueSize: 40,
	stackTraceLimit: 100,
	transactionSampleRate: 0.1
}

gladly tell me what other information would be helpful 😃

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9 (5 by maintainers)

github_iconTop GitHub Comments

2reactions
consensecommented, Feb 8, 2018

thanks - reducing stackTraceLimit to 5 only doubled usual cpu usage, which still seems high but than again leaves more than enough room to actually use APM for the next time without sampling. Will ping you in case I notice anything unusual. From a feature perspective both apm-server (inside kibana) as well as the agent are a joy to use - kudos to you and the rest of the elastic team!

0reactions
watsoncommented, Feb 9, 2018

We just released version 1.0.1 with the fix for the sampling issue you discovered.

Regarding the CPU usage: Could I get you to send me an e-mail with some more data on your application, e.g RPM when you see the CPU increase and possibly also a list of your dependencies from the package.json? Then I’d love to see if I can figure out what’s going on: watson@elastic.co

Read more comments on GitHub >

github_iconTop Results From Across the Web

Uncaught TypeError: Cannot set property 'value' of null
The problem is that you haven't got any element with the id u so that you are calling something that doesn't exist. To...
Read more >
Cannot set properties of null error in JavaScript [Solved]
The "TypeError: Cannot set properties of null" error occurs when trying to set a property on a null value. To solve the error,...
Read more >
How to Fix 'cannot set properties of null' Errors in JS - Webtips
The "Uncaught TypeError: Cannot set properties of null (setting 'value')" error occurs in JavaScript, whenever you try to set a property on ...
Read more >
Fix Cannot Set Property of Null Error in JavaScript - YouTube
Check us out at https://www.skillforge.com The " cannot set property of null " error is a very common ... Your browser can't play...
Read more >
Uncaught TypeError: Cannot set property
The null is a special assignment value, which can be assigned to a variable as a representation of no value . If you...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found