April 2018 Summaries
8 posts from Sentry
Filter
Month:
Year:
Post Summaries
Back to Blog
Rick Scouffas is a Bay Area native who grew up in Palo Alto and received his Bachelor of Science in Kinesiology from the University of Illinois. He pivoted into the tech world during the first dot.com boom, working for Oracle before joining smaller startups that suited his agile style. Rick specializes in helping new companies standardize and scale their sales efforts through operational best practices and inclusive engagement with executive teams. In his free time, he enjoys spending time with his kids and playing golf to improve his skills, a challenging but fun pursuit.
Apr 27, 2018
223 words in the original blog post.
Minidump Support has landed in Sentry, allowing developers to debug crashes from applications written in various languages and targeting multiple platforms. To use this feature, developers must integrate Crashpad or Breakpad client libraries into their application, upload a Minidump file to Sentry, and provide debug symbols for symbolicated stack traces. The support is still in beta, with limitations on supported platforms, symbol formats, and programming languages, but the team plans to continuously improve it. To protect user data, Sentry only extracts minimal information from Minidumps and deletes them afterwards. Developers are encouraged to try out this feature, report any issues or feedback, and engage with the support team.
Apr 17, 2018
468 words in the original blog post.
Adi Somani has joined Sentry as part of their product and go-to-market teams to expand the platform's reach among developers. Previously, Adi worked at Dropbox for a few years, contributing to various aspects of the company except its core file syncing functionality. Outside of work, Adi enjoys reading, spending time outdoors, and arriving late to welcome events.
Apr 13, 2018
56 words in the original blog post.
Exception Perceptions: A New Hope (for Understanding User Experience)`
The text discusses the importance of user experience and interaction with customers in software development. It highlights the need for developers to understand their users' behavior, communicate effectively, and gather relevant insights to improve their code and overall experience. The series aims to provide best practices in observability and help developers make informed decisions about how to improve their products. By interacting with their users, developers can gain context, set priorities, and up-level their skills, ultimately leading to a better user experience and increased trust.
Apr 11, 2018
252 words in the original blog post.
ThisData was an API-first risk engine that provided a score of whether the pattern looked consistent against normal traffic. Rich Chetwynd, Product Manager at OneLogin, joined ThisData as its founder and CEO after it was acquired by OneLogin. The service used various indicators from web transactions to create a risk score for each user, including browser or device information, IP locations, and attributes. The system would merge aliases from multiple profiles online, allowing users to be identified across different sources. However, the alias matching had gotten confused, resulting in false positives about breaches. Rich Chetwynd realized that the issue was due to a bug in the system's handling of alias shifts, particularly when employees left the company and their email addresses were reassigned. The initial fix involved changing the sync with Google from daily to hourly, but ultimately led to shutting down the integration altogether. Despite the setback, the incident helped improve the service, and the customer was able to test their internal processes and respond quickly in case of a potential breach.
Apr 10, 2018
1,394 words in the original blog post.
Don Dianda joins Sentry, bringing a unique background in photography, writing, and tech sales, as well as experience with a pre-seed sustainability company. He claims to have gained a better understanding of code after joining Sentry, although his self-assessment may be somewhat tongue-in-cheek. In his free time, Don enjoys outdoor activities such as hiking and running, spending time with local wildlife, including Great Horned owls, and indulging in sushi at his favorite restaurant.
Apr 06, 2018
197 words in the original blog post.
The key points covered in the text are that Rust's address-of operator (&) is not useful for creating self-referential pointers due to objects moving around, and instead using "handles" (information about where to find an object without storing a pointer directly) can be more effective. Another important point is that refcounts (like Arc<T>) can help resolve issues with lifetime and borrow checker limitations by providing a way to introduce mutable references while still maintaining safety guarantees. Additionally, the text advises against using interior mutability in certain situations, instead suggesting that promoting new state to be current (and having consumers hold onto the old state) can be a better approach to manage shared data between threads. Overall, these patterns are recommended for avoiding common pitfalls and making Rust development more efficient and safe.
Apr 05, 2018
2,093 words in the original blog post.
Sentry has improved its Slack integration, allowing users to send specific types of errors to specific channels and assign issues to Sentry teams or users from within Slack. The new integration also enables resolving issues directly within Slack. To set up the new integration, users need to remove the old one if they are currently using it, and then add the new integration to their project settings. The process is straightforward, with a step-by-step guide available on the Sentry website for configuring Alert Rules and setting up the integration.
Apr 02, 2018
525 words in the original blog post.