Effective Monitoring : How to Setup SMS alerts for any unhealthy resource on Azure

If you are hosting your application on any environment whether it’s in cloud or on-prem, an effective monitoring helps to increase the uptime by proactively notifying us of critical issues so that you resolve them before they become problems. An effective monitoring is a part of Devops process which helps you to achieve the following,… Read More Effective Monitoring : How to Setup SMS alerts for any unhealthy resource on Azure

Build and Deploy Future Proof Application with Azure Kubernetes Service in 10 Minutes (Nodejs, Go + AKS)

Quarantine, self isolation , social distancing for the past one month, I’m living with these words. While most of us are investing this time to learn new technologies/tools. I challenged myself to skill up myself and have deep knowledge on certain services on Azure. Kubernetes provides a uniform way of managing containers. Its aim is… Read More Build and Deploy Future Proof Application with Azure Kubernetes Service in 10 Minutes (Nodejs, Go + AKS)

How to deploy Web App to a Sub-folder on Azure Appservice

I came across this question about “How to deploy a web app within a sub folder on Azure” in Stackoverflow many times. Even though there is an official documentation, this question has not been addressed in general. With Virtual Directories, You could keep your web sites in separate folders and use the ‘virtual directories and… Read More How to deploy Web App to a Sub-folder on Azure Appservice

Resolve Issue : ASP.NET Core 2.1 runs fine locally but when publishing to Azure says “An error occurred while starting the application.”

After building my first production ready application with ASP.NET Core 2.1 and tested locally when i tried to deploy for the first time on Azure, I was stuck with the following page. Since many different problems can cause this error page, I would strongly recommend the following in order to determine the root cause quickly… Read More Resolve Issue : ASP.NET Core 2.1 runs fine locally but when publishing to Azure says “An error occurred while starting the application.”

How to configure localization on Asp.Net Core project

In this post I’ll walk through the process of adding localization to an ASP.NET Core application. Localization in ASP.NET Core is almost similar to the way it works in the ASP.NET 4.X. You have to define a number of .resx resource files in your application, one for each culture you support. You then reference resources… Read More How to configure localization on Asp.Net Core project