I have integrate my python default logger with raven . Now my errors are being logged on sentry.io/my_app. But I wanted to ask is there any way we can write unit tests for this function that generates an error and then somehow confirm that this error exits on sentry.
Python : How can I test that my error has been logged on sentry?
2.2k views Asked by M. Zulqarnain At
2
There are 2 answers
0
Markus Unterwaditzer
On
In Raven-Python you can implement a custom transport to swap out the HTTP request for a simple callback. This is done by implementing an abstract class for which there does not exist a lot of documentation unfortunately and the data you get is a bytestring of json-encoded data. You can find the abstract class here: https://github.com/getsentry/raven-python/blob/285b257cf386bfac78f6fe334c9044af65f98561/raven/transport/base.py#L26
This is slightly easier in the new SDK where you can write (without providing a DSN):
events = []
init(transport=events.append)
to collect events into an array instead of sending them to a server.
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in LOGGING
- Is Log4j2 xml configuration case sensitive?
- Logback stopped logging after splitting shared config file
- logging setup best practices
- C Simple Logging Management
- OpenShift Pyramid logging to file
- Log of dependency does not show
- Node/Express access logger from request object
- How does one locate all git log messages in the git object database?
- Logging error when executing Maven SonarQube plugin
- refactor 'execute and log' pattern
- CMD specifying columns to save?
- How to get information about error from HttpContext in WCF services
- Django not logging all errors
- Empty space at beginning of rsyslog log file
- Avoid log trace of external framework J2EE
Related Questions in SENTRY
- Sentry on supervisor - Error no log file
- Sentry logging with multiple extra parameters
- Best way to install Sentry PHP on server
- Nginx redirect request to HTTPS domain
- Can we configure sentry dsn on the worker side instead of the client side?
- Java Applications Error/Crash reporting
- Check if user is in group by group name
- JavaScript [object Event] error on Android in GetSentry
- How can raven-php be used with log4php to log to sentry
- How do I set current_user in middleware?
- Confusing sentry error - user is routed to search from login
- Reporting to Sentry to proof that it's working, like on start up?
- Change grouping of an specific exception in sentry (django)
- Sentry server not responding on Celery logs
- Cannot see info messages in Sentry Dashboard (using heroku + django)
Related Questions in RAVEN
- ubuntu 14.04 SuperDesk Raven not configured (logging is disabled)
- Change grouping of an specific exception in sentry (django)
- Sentry server not responding on Celery logs
- Two Pylons logger handlers (Sentry/Raven and console) for the same qualname
- How do I report the currently logged in user to Sentry?
- Local Django server redirects to Sentry server
- Source maps files in production - Is it safe?
- Sentry + Raven, HTTP Error 401: UNAUTHORIZED
- Client 'Raven-Java 0.4' raised API error
- How to use sentry/raven in django views
- Where's the event reference ID in Sentry's hosted service getsentry.com?
- raven celery client logs are not showing up on sentry server
- Unable to reach Sentry log server: EOF occurred in violation of protocol
- _oldOnerrorHandler is undefined; if statement still runs
- Configuring Sentry with React JS
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You can use pytest https://docs.pytest.org/en/latest/ to write unit tests for your code. However sentry is used for monitoring of application which helps you to fix bug as per priority. Rather than confirming an error message from sentry, fixing the error by looking into sentry is more useful.