Systems | Development | Analytics | API | Testing

How to Track Service Level Objectives with Kong and OpenTelemetry

In this blog post, we will explore how organizations can leverage Kong and OpenTelemetry to establish and monitor Service Level Objectives (SLOs) and manage error budgets more effectively. By tracking performance metrics and error rates against predefined thresholds, teams can prioritize their work based on the impact on user experience and business objectives. This approach helps optimize the balance between innovation and reliability.

Building and Running Secure APIs with Kong and Traceable

Cloud native application development relies heavily on APIs. APIs have proven themselves as a scalable and efficient way to capture, deploy, and scale functionality. Consequently, APIs became a target for malicious actors to misuse. Therefore, building quality APIs with adequate security controls is essential. Kong is the world’s most popular API gateway. Kong Konnect is a unified API platform.

How to Drive Business Growth with Innovation. Interview with Sean Everett | The Innovation Blueprint

Welcome to Episode 6 of The Innovation Blueprint! This time, we’re diving deep into the impact of AI, data, and digital tools on real estate investment and business scaling. Our guest? Sean Everett, CEO of Evergence — a company that helps executives and boards tackle tough scaling challenges through acquisition and innovation. With decades of experience leading AI-driven growth strategies for Fortune 500s, private equity, and high-growth startups, Sean has built products used by billions, attracted acquisition interest from Apple and Box, and driven explosive business growth.

Is AI Making Development Harder Instead of Easier?

AI was hyped as the big solution to developer productivity, but the 2024 DORA report paints a different picture. Here’s what’s holding teams back: Developers don’t need help writing code—they need time to write it. AI isn’t clearing their calendars of endless meetings. Tech debt and documentation remain roadblocks, and AI tools aren’t solving them. AI can assist, but it often acts like a junior dev—adding more work instead of reducing it.

From Vision to Venture 04: Kin Lane - API Evangelist

In this engaging conversation, Derric Gilling, CEO of Moesif, and Kin Lane, the API Evangelist, explore the challenges and opportunities of API monetization and productization in today’s enterprise world. Kin shares insights on rising API costs, the shift toward efficiency, and the balance between openness and control—especially in an AI-driven landscape.

AI in Software Development: Transforming How We Build Applications

According to a report by Verified Market Research, the Artificial Intelligence software development market will reach USD 2740.46 billion by 2031. AI has seamlessly integrated into the Software Development Life Cycle (SDLC), becoming a crucial tool for developers. By blending human creativity with AI, developers can achieve more ingenious and efficient outcomes.

How to Update Node.js Versions on Windows

Keeping your Node.js version up to date is essential for security, performance, and access to the latest features. New releases often include bug fixes, optimizations, and improvements that can enhance your development workflow. If you're using Windows, there are multiple ways to update Node.js, whether you prefer a simple installer, a package manager, or a version manager. In this guide, we’ll walk through different methods, so you can choose the one that best fits your needs.

Building a Distributed Rate Limiter in Elixir with HashRing

Communication between processes in the Erlang VM happens through message passing. In fact, all communication across processes occurs through the same mechanism. All you need is an address and you can send a message to it, with the lower level building blocks being send and receive. This is true even if that address is on another node in a cluster of Elixir nodes that are aware of each other. In fact, it works in exactly the same way.

How Visual Dashboards Empower Safe and Simple Database Updates

Managing databases doesn't have to be complex. Visual dashboards simplify database updates, making them safer and easier, even for non-technical users. Powered by tools like DreamFactory APIs, these dashboards provide secure, user-friendly interfaces for tasks like updating records, managing schemas, and exploring data - all without direct database access.

Python argparse: Definition, How to Use, and Best Practices

Command-line interfaces (CLIs) have been an essential part of computing for decades. However, creating a CLI from scratch can be tedious. Developers need to handle inputs, validate arguments, and provide user-friendly error messages, which can quickly become complex. This is where the Python argparse module comes in.