Operations | Monitoring | ITSM | DevOps | Cloud

Latest Blogs

Deep Packet Inspection: What's next?

Since all technology traffic analysers have evolved, and in order to answer the question of what the next step in this evolution is many experts suggest that the deep packet inspection is the point to which all will evolve. However, deep packet inspection is not a new concept; ISPs have been using it, not without controversy, for some years. Then why is it referred to as the next step?

A Beginner's Guide to Getting Started with Google Kubernetes Engine (GKE)

There’s no shortage of providers willing to host your containers. Many of the world’s biggest cloud platforms offer Kubernetes as a service, including features such as automatic scalability and high availability. However, Google Cloud Platform (GCP) stands out as perhaps the best tool for building and hosting a Kubernetes cluster for a number of reasons. In this article, we’ll present these reasons and why GCP offers a better Kubernetes experience than other providers.

Sensu Go 5.2: Updates & introducing enterprise features in Sensu Go

We’re thrilled to announce that the latest release of Sensu Go — version 5.2 — is available today! Sensu Go empowers you to automate your monitoring workflows, offering a comprehensive monitoring solution for your infrastructure, applications, and connected devices. Sensu Go is a massive improvement over the original Sensu (version 1.x), with an emphasis on ease of use and quick time to value.

18 Statistics That Will Make Healthcare Ditch Pagers

What do VHS players and Tamagotchis have in common with the pager? It’s simple, they’re old pieces of technology that were popular in the ‘90s. It’s no longer the “Saved by the Bell” years and doctors need to get with the times by ditching their hammer pants, fanny packs … and pagers! By saying goodbye to the pager, doctors can adopt a more secure, clinical communications solution that’s equipped to handle all 21st century hospital demands.

6 Powerful PHP Frameworks To Work With In 2019

Creating a website from scratch requires a lot of work, which is often tedious. In several cases, you will need to recreate the functionalities that you have built thousands of times. This recreation of functions is equal to reinventing the wheel. This is where software frameworks come handy, you can utilize such frameworks as the foundation for you application and build your program upon it.

Enable Kubernetes Pod Security Policy with kube-psp-advisor

Kubernetes Pod Security Policy is a mechanism to enforce best security practices in Kubernetes. In this tutorial, we will explain how to enable Kubernetes Pod Security Policy across your cluster using kube-psp-advisor to address the practical challenges of building an adaptive and fine-grained security policy on Kubernetes in production.

Performance monitoring with OpenTracing, OpenCensus, and OpenMetrics

If you are familiar with instrumenting applications, you may have heard of OpenMetrics, OpenTracing, and OpenCensus. These projects aim to create standards for application performance monitoring and collecting metric data. Although the projects do overlap in terms of their goals, they each take a different approach to observability and instrumentation.

Avoiding Junk-Drawer Classes in Ruby

Because Ruby is an object-oriented language, we tend to model the world as a set of objects. We say that two integers (x and y) are a Point, and a Line has two of them. While this approach is often useful, it has one big problem. It privileges one interpretation of the data over all others. It assumes that x, and y will always be a Point and that you'll never need them to act as a Cell or Vector. What happens when you do need a Cell? Well, Point owns the data. So you add a your cell methods to Point.