Brian Rue

Results 21 comments of Brian Rue

Here is a blunt instrument as a workaround... you can disable locals collection entirely with: ``` rollbar.SETTINGS['locals']['enabled'] = False ``` Agree this should be handled better; @bsmedberg-xometry 's suggestion makes...

@EricSei Good quesiton... there's no great way to do this now, but here's an ugly one that should work: Monkeypatch [`_build_server_data`](https://github.com/rollbar/pyrollbar/blob/master/rollbar/__init__.py#L1299), e.g.: ``` import rollbar orig_build_server_data = rollbar._build_server_data def new_build_server_data():...

Thanks @brettdh; that does sound like quite the rabbit hole... @rokob thoughts? I think this behavior comes from here: https://github.com/rollbar/pyrollbar/blob/33ef2e723a33d09dd6302f978f4a3908be95b9d2/rollbar/__init__.py#L754 A few ideas: 1. We could change the API format...

(1) is doable today with a backend code change (we have other cases like this, e.g. for Ruby). 2 and especially 3 would be quite neat.

@ArturMoczulski FWIW: at the API level, the current idea for these is that "message" items that contain tracebacks would be reported as tracebacks containing an explicit message. In those the...

Another tack here may be to tweak the algorithms used to trim the payload when it's too large - i.e. maybe we can start by trying to keep more than...

@waltjones I think it'd be worthwhile - it'll help users like @MikeVelazcoMtz who are switching the way they include rollbar.js but want to do that independently from upgrading the library...

@waltjones I'd say yes. In general, I think we can have features that work in only the environments where the data is available - applying that here, this kind of...