Operations | Monitoring | ITSM | DevOps | Cloud

The latest News and Information on DevOps, CI/CD, Automation and related technologies.

An overview of OpenStack storage

OpenStack storage is probably one of the most complex topics in OpenStack architecture right after networking. There are many different storage options, at least a few storage services, and tons of supported storage backends. It is very easy to get lost. But do not worry, there is hope. Since OpenStack was initially created as an open-source implementation of the Amazon Web Service Elastic Compute Cloud (AWS EC2), its storage architecture is quite similar to leading public clouds.

8 Ways to Ensure a Greener Data Center

After becoming increasingly popular in the mid-2000s, cloud computing has revolutionized the data center industry. Aside from providing cost-savings, security, mobility, and scalability benefits, cloud computing was also expected to be more environmentally friendly than other data storing and processing methods. By being highly efficient, cloud operators can reduce the use of electricity and other materials that typically increase a data center’s carbon footprint.

Better Way To Write Async Function in Node/Express/Next - Handle catch(err) Only Once.

Avoid Writing a Lot of Try Catch by Catching The ‘catch()’ Just Once. How annoying it is to write a lot of try-catch for each async function in an express app? What if you never need to write a try catch block for all async functions and still be able to handle the errors?

Designing your incident severity levels

We wrote this article in response to a question asked in our Slack Community. Click here to join hundreds of technology leaders discussing best practices for incident response! ✨ We know a thing or two about incident response. As such, we're often asked to advise when companies are designing their incident response processes. A common question is "How do you design your incident severity levels?". It's a great question given how central they are to incident response!

Qoddi vs Heroku and AWS: what to choose as a Startup

You have many options when it comes to choosing a platform to deploy your app. In this article, we will compare AWS, Heroku, and Qoddi. Heroku is hosted on AWS, making Heroku, like Qovery for instance, nothing more than a management platform for AWS services. You can do everything you do on Heroku (or Qovery) directly with AWS for a lesser price but Heroku removes all the infrastructure management layer (or DevOps) you still need to have with AWS or any other cloud providers.

Network Monitoring & Management Best Practices for Beginners

Looking to build your basic IT knowledge in 2022? In this post we'll cover some general network monitoring and network management best practices that MSPs and IT departments use to support their organizations. Any discussion about IT is eventually going to lead towards network monitoring and management. All told, one of the most well-understood roles of an IT department or IT provider is that of keeping a business’ essential systems up and running.

Using gRPC with Python

Microservice is now the architecture of choice for many developers when crafting cloud-native applications. A microservices application is a collection of loosely coupled services that communicate with each other, enhancing collaboration, maintainability, scalability, and deployment. There are several options for enabling this communication between microservices. REST is the most popular among developers, sometimes used synonymously with APIs. However, gRPC can be a better alternative to REST.