Azure

36 - Application Insights: The Tool You Never Knew You Needed

36 - Application Insights: The Tool You Never Knew You Needed

Understanding how our applications function in the wild is essential for developers when issues arise. With the power of knowledge, we can enable ourselves to provide the best experience to our fellow developers, and our stakeholders. One of the solutions that supplies this power is Application Insights. Application Insights is a service provided by Microsoft allowing you to monitor your application live, detect performance anomalies, and observe this data with powerful analytics. Together we will see how easy it is to add Application Insights to our applications, whether we have access to the codebase or not. Once instrumented, we will dive deeper into the capabilities of Application Insights and show how to leverage all the rich data collected from our application. Finally, as developers the last thing we want to do is troubleshoot an issue in Production, with everyone watching and the stakes are high. Watch as we monitor a live application that is throwing exceptions and how Application Insights can be used to help us solve the problem faster. When we are done, attendees will be empowered with the knowledge to leverage Application Insights to be more productive with their work.

Azure Static Web Apps are Generally Available

2021-05-19 · 7 min

Great news! Azure Static Web Apps are now Generally Available! Just to provide some reassurance, Static Web Apps are a concept that I'm fairly passionate about. You may have seen this blog post on why I think JAMStack and the cloud are a great combination. You may have seen one of my many talks on how I use Hugo, Azure Storage, Azure CDN and GitHub to easily deploy a very cheap and scalable site into Azure. But hold on, if Azure Storage is an option already - Why am I so excited about the prospect of Azure Static Web Apps? Azure Static Web Apps offer so much more than just the hosting aspect!

V020 - Weekly Technology Vlog #20

V020 - Weekly Technology Vlog #20

2021-05-16

Weekly Vlog #20 celebrates hitting 500 YouTube subscribers ahead of schedule, then reviews one of Chris's most content-heavy weeks: Azure Pipelines-as-code tutorials, an event-driven architecture walkthrough using Azure Event Grid and Azure Functions, and a candid mental health live stream. The headline Azure announcement is Azure Static Web Apps reaching general availability with built-in CI/CD, serverless API integration, and free SSL. GitHub rounds out the episode with new hardware security key support for SSH operations and native video uploads to issues and pull requests.

Cloud Drops - Building an Event-Driven workflow with Event Grid

Cloud Drops - Building an Event-Driven workflow with Event Grid

2021-05-15

Azure Event Grid routes blob-created events from Azure Storage to downstream handlers, enabling scalable event-driven pipelines where producers and consumers are fully decoupled. This Cloud Drop builds an end-to-end workflow using an Event Grid system topic, subject filtering, an Azure Storage Queue as the event handler, a system-managed identity with the Storage Queue Data Message Sender role, and an Azure Function queue trigger to process and remove each message.

Social Opinion with Jamie Maguire

Social Opinion with Jamie Maguire

2021-05-14

Have you ever wondered what it takes to build a production SaaS platform in your own time? In this Tales from the Real World episode, Chris is joined by Jamie Maguire — Developer, Microsoft MVP (AI), and Pluralsight Author — who shares the full story behind Social Opinion, a Twitter analytics and productivity platform built with .NET and Azure. Jamie walks through the evolution from a custom Bayesian text analytics API (built during his master's degree) to a full SaaS powered by Azure Cognitive Services, covering social listening, sentiment analysis, content scheduling, and audience insights. He also shares practical advice for anyone looking to build their own product: pick something you're genuinely passionate about, validate demand before writing code, and ship early.

Building an Event-Driven workflow with Event Grid

2021-05-12 · 14 min

You may have heard of Event-Driven Architectures before, but haven't had the chance to get hands-on and build one as yet. That's exactly what we'll be working through in this blog post!

Azure in a Nutshell | DEVREAL.io

Azure in a Nutshell | DEVREAL.io

2021-05-11

Cloud skills are getting increasingly important among developers, engineers but also among people working on the business side of IT projects. As more Azure datacenters are coming to the Nordics and more IT projects include Azure services, more IT professionals that understand Azure are needed. Being Azure-ready and having passed Azure certifications will increase your career opportunities dramatically. This DEVREAL episode will lead you on a path to taking your first Azure Certification. No matter if you are already using Azure, you will benefit from learning the full picture of Azure on a high level. This presentation will teach you all you need to know.

V019 - Weekly Technology Vlog #19

V019 - Weekly Technology Vlog #19

2021-05-09

Weekly Vlog #19 is broadcast live, opening with Azure's Fluent Design icon rebrand and covering key security and platform updates including the AKS Secret Store CSI driver add-on, Azure Security Center improvements for hybrid and multi-cloud Kubernetes, and new Azure VPN Gateway multi-authentication capabilities. GitHub Enterprise Server 3.1 launches with GitHub Actions, Packages, and Advanced Security, while the release radar spotlights Pulumi as an emerging cross-cloud infrastructure-as-code framework. Chris also recaps Cloud Gaming Notes episode four featuring Sudoku Social's Azure PlayFab backend and a new Cloud Drop on PowerShell in Azure Functions with Carol de Winter.

GitHub Actions and Azure - Using Environments with GitHub Actions

GitHub Actions and Azure - Using Environments with GitHub Actions

2021-05-07

Once you have a working GitHub Actions workflow, the next challenge is safely deploying across dev, staging, and production with the right secrets in the right places. This episode deep-dives into GitHub Actions Environments: how to scope secrets per environment to enforce the principle of least privilege, configure required reviewers and wait timers as production gates, and assign service principals with minimal Azure RBAC permissions. A live demo deploys the cloudwithchris.com Hugo site to Azure Storage, making every concept concrete.

Cloud Drops - Beginners guide to PowerShell in Azure Functions

Cloud Drops - Beginners guide to PowerShell in Azure Functions

2021-05-06

Azure Functions supports PowerShell Core as a runtime stack, enabling PowerShell scripters to build serverless event-driven workflows without compiled code. This Cloud Drop demonstrates creating an HTTP trigger and an Event Grid trigger function, configuring requirements.psd1 to load the Az PowerShell module, and using a system-assigned managed identity with the Contributor RBAC role to dynamically tag Azure resource groups on creation.