-
Notifications
You must be signed in to change notification settings - Fork 9
Request entity too large - config setting doesn't help #127
Comments
Thanks for opening the issue @danielcrisp. Are you running mongodb? With release 0.22.11 we started capturing data passed to mongo DB (documents on insert commands, queries objects and update objects). We have a bug where we're not truncating captured data & this can result in the errors you describe. We should have a fix out in a few weeks time. |
Hi @mike-kaufman, nope I'm not using mongodb - it's just a simple Express app that mocks our API endpoints with fake JSON data. I'm familiar with the huge amounts of data that mongodb can expose for a single document though. Is the size the problem? Does your fix address the size for all requests or is it only specific to mongod? |
interesting. What type of request is generating a body with size of 396989 bytes? Is this an XHR or fetch request from browser? Or from a node's HttpClient?
We don't have the fix yet, we just know this is a problem with the mongodb messages we're generating, and we're planning to fix it. |
btw - if you have a simple repro case that we can run, that would be most helpful. Understand if your code isn't public or your environment is too hard to replicate. |
It's an XHR request from the browser, but it's the response body that is huge - not the request body. Let me see if I can knock up a quick repo... |
Ok, try this: https://github.com/danielcrisp/glimpse-example |
Thanks @danielcrisp - the repro you put up was perfect. The issue here is those setting values were never getting communicated to our "Browser Agent" - the piece of code that runs in your browser and gathers diagnostic data for what's happening client side. I've got a fix up to address this. We should have this release next week. Once the fix is available, you'll need to update your repro since you're injecting the browser agent by hand. You'd need some code like the following, note the <script src="http://localhost:3000/glimpse/agent/agent.js"
id="__glimpse_browser_agent"
data-message-ingress-template="http://localhost:3000/glimpse/message-ingress/"
config-settings="{"server.max.json.body.size":20000,"inspector.http.body.capture.maxsize":10000}">
</script> Let us know if you have any ?s or feedback. Thanks, Mike |
Great! Sounds good - when the fix is released I'll update the repo to give it a go. Thanks Mike, Dan |
ok, version 0.22.15 is now up on npm, and it has the fix for this. Please let us know if you have any other problems or feedback. |
I am getting the following error in the terminal when trying to run Glimpse on my project.
This matches a
413 Payload too large
error in a request to themessage-ingress
endpoint that I can see in the DevTools network panel.I can see the original POST request in the Glimpse Client and the response body is indeed huge: 396989 bytes! This is a mock response and the size is correct - it's fake data.
I've tried setting the
server.max.json.body.size
configuration value to500000
but it doesn't seem to affect the issue.I also tried increasing the
inspector.http.body.capture.maxsize
value to490000
but I was getting TypeScript errors because theinspector
object is not a valid configuration option.I have also tried changing these settings using the
glimpse.config.json
approach:Neither approach seems to help sadly.
All other (smaller) requests are working fine and I can see Glimpse working its magic nicely :-)
Other info
Node version: v6.7.0
OS: OSX 10.11.6
Browser: Chrome v59
This is running on a single page application so I have manually injected the HUD.
The text was updated successfully, but these errors were encountered: