Operations | Monitoring | ITSM | DevOps | Cloud

The Definitive Guide to Configuration Management Tools

Many of the available configuration management tools, such as Ansible, Terraform, Puppet, Chef, and Saltstack provide automation for infrastructure, cloud, compliance and security management, and integration for deployment and continuous deployment (CI / CD). But what is the best tool to start automating your particular environment? The difficult task of evaluating Configuration Management Tools prevents DevOps from evolving technically and proposing improvements to the environment they manage.

How to Monitor CPU

In today's video, learn how to monitor CPU with Performance Counter Monitor in PA Server Monitor. The Performance Counter Monitor can watch any performance counter that the Windows Perfmon tool can display. This gives you great flexibility since many systems and drivers on the computer report statistics and their current state via the performance counters. In addition, CPU and memory usage counters are simulated for Linux/Unix machines via SNMP, and via VMWare interfaces for ESX servers. Monitoring and charting those values is now as easy as with a Windows server.

How to Monitor Memory

In this video, learn how to monitor memory with PA Server Monitor. Set up a monitor and alert to monitor memory usage counters. The Performance Counter Monitor can watch any performance counter that the Windows Perfmon tool can display. This gives you great flexibility since many systems and drivers on the computer report statistics and their current state via the performance counters. CPU and memory usage counters are simulated for Linux/Unix machines via SNMP, and via VMWare interfaces for ESX servers. Monitoring and charting those values is now as easy as with a Windows server.

The More You Monitor - What is Observability?

Are you embracing the key tenets of Observability in your IT infrastructure management? In this episode of The More You Monitor we’ll unpack the foundational elements of Observability and how enacting this concept can ensure high availability and pre-empt business problems. For more tips and resources check out: Or, e-mail us @ marketing@logicmonitor.com

Deploy Kubernetes Clusters on Microsoft Azure with Rancher

If you’re in enterprise IT, you’ve probably already looked into Microsoft’s Azure public cloud. Microsoft Azure offers excellent enterprise-grade features and tightly integrates with Office 365 and Active Directory. It also provides a managed Kubernetes service, AKS, that you can provision from the Azure portal.

Episode 16: Using Redis for Distributed Sessions in ASP.NET Core

We need distributed session. Spoiler: We DON'T roll it ourselves. In-memory sessions stop working as soon as there is more than one server. Most production environments have more than one server so the session issue needs to be dealt with. There are two options for sessions in a web farm. First, a load balancer can be used to lock each user on a specific box. This lets us continue to use in-memory sessions. The second is switching from in-memory to distributed session storage.