-
Notifications
You must be signed in to change notification settings - Fork 220
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
Make maximum amount of spans configurable #460
Conversation
I think exists config on server too and user can not change config on server |
I have tested on one of our self hosted instances. Works fine with a higher limit (as far as I can check without any settings on Server side). |
@fsrv-xyz Can you add some tests for this so we get it merged? |
@cleptric Sure. I added some test cases covering the added code (and some additional things). |
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.
Please update the CHANGELOG.md
as well and add something like
feat: Make maximum amount of spans configurable (#460)
Thanks for your work on this 🙂
Co-authored-by: Michi Hoffmann <[email protected]>
Co-authored-by: Michi Hoffmann <[email protected]>
Co-authored-by: Michi Hoffmann <[email protected]>
I applied the changes you suggested and updated the changelog file. |
In one of my projects, I need to do performance monitoring for complex tasks with the highest possible accuracy.
Due to some of the tasks are long running, the current
const
span limit of 1000 per transaction will be not enough.I saw, that some other SDKs (for example python) have an option for that.