Sudip Bhandaribhandarisudip.com.np·Aug 2, 2024How to Integrate Sentry with Django for Effective Error HandlingSentry is a powerful error tracking tool for real-time monitoring of errors and exceptions. Integrating Sentry into your Django project allows you to manage errors effectively. Start by signing up on Sentry's website, creating a new project, and conf...Discuss·47 readsDjango
Rowland Adimoharowjay.hashnode.dev·Jul 29, 2024CI/CD Pipelines Guide with GitHub Actions, SonarCloud, Codecov, and SentryI've been developing an open-source REST API for a book management system. I've set up all the components for an enterprise application, including Docker, Prometheus, and Grafana. Additionally, I've established a thorough CI/CD pipeline. Here's a sum...Discussci-cd
SUDIP BHANDARIdjangodev.hashnode.dev·Jul 18, 2024How to Integrate Sentry with Django for Effective Error HandlingSentry is a powerful error tracking tool for real-time monitoring of errors and exceptions. Integrating Sentry into your Django project allows you to manage errors effectively. Start by signing up on Sentry's website, creating a new project, and conf...Discuss·32 readsdjango error handling
Anaz S. Ajiajianaz.dev·Jul 5, 2024Mastering Error Tracking: Self-Hosting Sentry with Docker and Setting Up Sentry in FlutterIn today's fast-paced development environment, tracking errors effectively is crucial for maintaining high-quality applications. Sentry, an open-source error tracking and monitoring tool, offers powerful capabilities to help developers identify and r...Discusssentry
Anaz S. Ajiajianaz.dev·Jul 4, 2024Sentry: The Ultimate Open Source Tool for Error Detection and MonitoringIn the fast-paced world of software development, identifying and fixing errors quickly is crucial for maintaining a high-quality user experience. Sentry, an open-source tool, has become a go-to solution for developers looking to catch errors and moni...Discusssentry
Luca Restagnolucarestagno.hashnode.dev·Jan 29, 2024How to track errors with Sentry and Next.jsSentry is one of the most popular error-tracking platforms for software products. It tracks the errors that occur in your software, showing you the error message and relevant information about the execution context (like browser, language, screen siz...Discuss·1 likeNext.js
Tomislav Maričevićtmarice.hashnode.dev·Nov 29, 2023Why I always assign intermediate values to local variables instead of passing them directly to function callsInstead of def do_something(a, b, c): return res_fn( fn(a, b), fn(b), c ) I do: def do_something(a, b, c): inter_1 = fn(a, b) inter_2 = fn(b) result = res_fn(inter_1, inter_2, c) return result The fi...DiscussPython
Alex Boumaalex.bouma.blog·Aug 29, 2023Setup Sentry Relay on UbuntuSentry offers Relay, it's a proxy or relay that sits between your application and Sentry and can be used to filter events, add additional information, and more. In it's simplest form it can be used to relay events to Sentry (which is why it's called ...Discuss·389 readssentry
Phạm Văn ĐạtforDwarves Foundation's Team Blogdwarvesf.hashnode.dev·Aug 22, 2023Building Reliable Apps: Sentry and Distributed Tracing for Effective MonitoringIntroduction In today's tech world, with its micro-services, cloud apps, and complex systems, how we make software has totally changed. These new ways give us huge power, but they also make new problems we need smart solutions for one big problem is ...Discuss·22 likes·196 readsgolang
Pranav Masekarsungod.hashnode.dev·Aug 6, 2023Sentry - The Secret Weapon for Flutter Error TrackingIntroduction : No one wants their flawless app to crash when it hits the hands of users. But the reality is that even the most robust Flutter apps can fail in production due to unanticipated errors and bugs. Without a proper error monitoring system, ...Discuss·543 readsFlutterWeMakeDevs