Systems | Development | Analytics | API | Testing

Custom Dashboards in Kong Konnect | Part 3

The growth of APIs, teams, and services often leads to dashboard sprawl, making it difficult to find the information you need when you need it. This video introduces a powerful solution now generally available in Kong Konnect: using labels and taxonomy to organize your analytics dashboards. Learn how to structure your dashboards around common business concepts like team, service name, or environment. This organization, combined with Konnect's universal quick search, allows you to find any dashboard instantly, directly from the top search bar, no matter where you are in the platform.

Custom Dashboards in Kong Konnect | Part 4

This video demonstrates how you can save time and maintain consistency by reusing existing reports to build powerful, customized dashboards. In this tutorial, you'll learn how to: + Add existing reports to your custom dashboards.+ Customize and tweak reports by updating filters to fit your specific needs.+ Adjust time ranges, including syncing with a global dashboard time.+ Quickly build and share insights across teams, turning dashboard creation from hours into seconds.

Governing Agentic AI: Secure, Scalable Data Access with DreamFactory

Few trends are capturing as much attention as agentic AI—autonomous systems that collaborate with humans, large language models (LLMs), and enterprise data to complete complex tasks. These agents are redefining work: handling customer service, streamlining compliance, conducting research, and orchestrating workflows across distributed environments. But as organizations scale their use of autonomous agents, one question looms large: How do we govern this power responsibly?

The rise of super apps - Bitrise webinar

In this 40-minute webinar, jointly presented by LambdaTest and Bitrise, we explored super apps—apps that provide a comprehensive suite of services, from messaging and payments to comprehensive third-party integrations all in one. We talked about their development challenges, the technological advances enabling their rise, and their impact on global markets and consumer behavior. Speakers: Shantanu Wali, Senior Product Manager @ LambdaTest Jeremy Palmer, Senior Product Manager @ Bitrise.

Appian 25.3: Smarter Data, Better Apps, Real AI Value

You've heard the promises. You've seen the hype. Every vendor is pitching "AI-powered, synergistic, next-generation" automation. But you're still asking the same question: "When do we see the results?" The truth is, AI is only as good as the action it enables. It's not about chasing shiny objects; it's about solving real-world business problems—eliminating bottlenecks, delighting customers, and making your operations smarter and faster. That's where we put our focus.

WSO2 Announces Oxygenate UK 2025: AI Meets Open Source

WSO2 announces the return of Oxygenate UK, its premier annual event that will take place on 2nd October 2025 in London. This transformative gathering will bring together visionary technologists, enterprise architects and industry leaders to explore how AI powered international developer platforms are redefining how we build scalable, secure and intelligent digital ecosystems.

What are compiler optimized internal PHP functions and should you import them via use statement?

Every once in a while when browsing through open-source code, you will probably have come across internal functions that are either imported implicitly with use function array_map; like here in Doctrine or prefixed with the global namespace separator, for example \is_string($foo) like in Symfony. Curious beings as we are, you might wonder as did I: Why are they doing this? Do function calls not automatically fall back into the global namespace?