Systems | Development | Analytics | API | Testing

Debugging

5 Basic Steps To Implement The Technology Acceptance Model Of Usefulness In Your Development Organization

As engineering leaders, we all struggle to find the balance between creating cool technology and useable technology. Let’s be real. We all want to create cool things. It’s in our nature. But what’s the point of doing so when no one will use it? It’s crucial to remember that the ultimate goal of our work is to create something helpful and effective. Our work has to have a purpose.

Debugging Kong Requests: 7 Kong Gateway Troubleshooting Tips

Developers will remember times when they were trying to figure out why something they were working on wasn’t behaving as expected. Hours of frustration, too much (or perhaps never enough) caffeine consumed, and sotto voce curses uttered. And then — as if by fate — the issue is narrowed down to a simple oversight that makes perfect sense upon discovery. Problem solved!

Rookout Live Metrics

Get real-time insights into your application’s performance with ease using Rookout’s Live Metrics! In this demo, we show you how simple it is to analyze and debug your application in real-time. With just a few clicks, you can set non-breaking breakpoints in your live code and collect metrics data without affecting its performance or stopping it, even in production. Watch as we trigger multiple breakpoints and see the number of hits and timing metrics immediately appear in the message view window.

10 Dos and Don'ts When Debugging Cloud-Native Applications

Lately, everyone has been jumping on the cloud transformation bandwagon, which isn’t surprising, because when it comes to tech, you don’t want to find yourself behind, stuck with your dusty old monoliths. Just kidding – we love ourselves some good old monolith architectures – but there’s no comparing to dynamic, cloud-native technology.

Enter the Metrics: Measure App Performance In Real-Time, On-Demand

When it comes to understanding what’s happening in your code – and your service health, specifically – business and code-level metrics are key. While most developers are experts in their own code, that doesn’t mean that they’re also experts on the metrics, statistics, or distributed tracing from the code they’re working with. The code-level metrics they need are tough to set up and it’s something that no one else can do for them.

Top 10 Debugging Tools in 2023: The Only List You need!

As we move past the stage where automation is no longer the concern, intelligence is at the front seat, being the driving force of technology in almost every space. With lines of codes that are being thought upon, strategized upon, and then implemented, viruses, and bugs, are no Bueno. Since the world is moving more towards online communities than physical ones, these bugs and viruses create havoc and disorient business functioning.

90-Second Hack To Install A Node.JS Agent With No Code Changes

Installing Rookout on your Node.JS application is usually a breeze. Run `npm install`, add a line of code, and you are done. Yet, in some rare cases, we encounter more frustrating use cases. For example: When those tough situations arise, our customers often refer to this blog post we wrote years ago about deploying a Java Agent. So, if you are looking for an easy and portable way to deploy Node agents without changing your code, you’ll want to read this article.

Should you wake up in the middle of the night because production is down - Liran Haimovitch

In many engineering positions today, especially in DevOps engineering (yeah, yeah, I know it’s not an actual position…), you get asked to take an on-call rotation, spending your precious nights and weekends firefighting when production is down. In this talk, we will dive into the whys and why nots of doing just that.

Debugging and Tracing in Erlang

In part one of this series, the debugging tools we used — Elixir's IO.inspect/2, IEx.pry, and dbg/2 — required us to insert changes into code directly. Outside the development environment, you probably won't (and shouldn't) have access to your code. Erlang has a few tools to debug code at runtime: :debugger, :dbg.tracer, and :observer. First, let's look at the:debugger, a graphical debugging tool. Let's get going!