Operations | Monitoring | ITSM | DevOps | Cloud

Turbo360

Azure Functions Live - March 2020

The experts from Azure Functions team has yet again joined us for the monthly webcast. Given the unprecedented time, this webcast happened a bit unusual where the folks joined from their home rather from Channel 9 studio and which made this webcast even more unique and exciting. In this session, Jeff Hollan, Eduardo and Alex Karcher have joined to give us the picture of the latest happenings in the Azure Functions space.

Azure Service Bus Topics vs Event Grid

This blog will brief on the distinction between Azure Service Bus Topics and Azure Event Grid. First let us see a short introduction of what these Azure services are, before getting deeper into their distinctions. It is important to note the difference between services that deliver an event and services that deliver a message. Service Bus topics handles messages whereas Azure Event Grid handles events.

Defer Mode in Azure Service Bus Queues and Topic Subscriptions

Azure Service Bus is a brokered messaging service offered by Azure that can be used to decouple the various applications forming the business integration solving the business problem. The Applications transfer messages between them to share the data between them. The messages can be in XML, JSON or simple text format.

Azure Storage Queue vs Service Bus Queue

There are two types of queuing mechanisms supported by Azure. Storage Queues are part of the Azure Storage infrastructure, feature a simple REST-based GET/PUT/PEEK interface, providing reliable, persistent messaging within and between services. Service Bus Queues are part of a broader Azure messaging infrastructure that supports queuing as well as publish/subscribe mechanism, and more advanced integration patterns.

Azure API App vs Web App

Azure App Service, one of the most used among the Azure offered Services. When the requirement is to host web applications, REST APIs, and mobile back ends, Azure App Service is the go-to Http- based solution. Apps hosted in Azure App Service can be integrated with on-premises or cloud services. It supports both the Windows and Linux-based environments to run and scale the applications.

Serverless360 BAM - A Quick Walkthrough

In a real-time business scenario, various Azure services are integrated to define a business process. Day by day these business processes grow in complexity and monitoring them turns out to be a real challenge. In order to overcome these challenges, Serverless360 provides end-to-end tracking via Business Activity Monitoring.

Azure Functions Live - February 2020

Azure Functions team is back again for their monthly live webcast with a lot of interesting updates and community highlights. This webcast was quite special since their announcement on Social Media regarding the new Azure Functions management experience in the portal certainly created a buzz. In this session, Jeff Hollan, Byron Cardiff and Matthew Henderson joined to give us a picture of the latest happenings in the Azure Functions space.

Send Custom HTML Email Notification with Power Automate Outlook Connector

Two years ago, I wrote a similar post on Microsoft Flow: How to pass the SQL data table results in a Markdown-formatted table into an Email notification or Approval Requests. It is still quite up to date, i.e., it is an excellent solution that you can still use today. The only problem with that article is that I was using “send an email” action in Power Automate Outlook connector that is currently deprecated.

How to access a property value of repeating object in a JSON message

Recently, I had a scenario in which it was necessary to access the content of the source JSON message and extract a property that contains a date-time. That property was in the last object (a repeating object) for control purposes, and my first idea was to get it done with Azure Function and that’s it. But then I was thinking, if I need to use Function for all these simple tasks, what’s the point?