-
Notifications
You must be signed in to change notification settings - Fork 1
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
Support for sending user info? #3
Comments
We welcome every contribution! How do you plan to fill this For your information, here is what Rollbar expects regarding person: // Optional: person
// The user affected by this event. Will be indexed by ID, username, and email.
// People are stored in Rollbar keyed by ID. If you send a multiple different usernames/emails for the
// same ID, the last received values will overwrite earlier ones.
"person": {
// Required: id
// A string up to 40 characters identifying this user in your system.
"id": "12345",
// Optional: username
// A string up to 255 characters
"username": "brianr",
// Optional: email
// A string up to 255 characters
"email": "[email protected]"
}, |
What I've done is this: Essentially you can provide |
And thanks for the quick responses! :) This is definitely a big help. |
Would you be interested in supporting a
set_person()
method to send user data to rollbar?(Happy to contribute a patch!)
The text was updated successfully, but these errors were encountered: