Azure, Technology

25. Monitor Resources using Azure Monitor

Overview of Azure Monitor Azure Monitor is a centrally place to monitor applications and infrastructure. It can monitor: VMs Applications Storage accounts Containers Networks SQL By default Azure Monitor doesn’t do anything until you connect your infrastructure to it. “Azure Monitor collects monitoring telemetry from a variety of on-premises and Azure sources. Management tools, such as those in Azure Security…

Continue Reading

Azure, Technology

24. Monitor and troubleshoot virtual networking

Azure Monitor for Networks “Azure Monitor Network Insights provides a comprehensive view of health and metrics for all deployed network resources, without requiring any configuration. It also provides access to network monitoring capabilities like Connection Monitor, flow logging for network security groups (NSGs), and Traffic Analytics.” From <https://docs.microsoft.com/en-us/azure/azure-monitor/insights/network-insights-overview> Monitoring Networks Go to “azure Portal -> Monitor -> Networks” From here you can see your different networks and…

Continue Reading

Azure, Technology

22. Secure Access to Virtual Networks

NSGs (Network Security Groups) “You can use an Azure network security group to filter network traffic to and from Azure resources in an Azure virtual network. A network security group contains security rules that allow or deny inbound network traffic to, or outbound network traffic from, several types of Azure resources. For each rule, you can specify source and destination, port, and…

Continue Reading

Azure, Technology

23. Configure Load Balancing

Introduction to Load Balancing What is a load balancer? “An Azure load balancer is a Layer-4 (TCP, UDP) load balancer that provides high availability by distributing incoming traffic among healthy VMs. A load balancer health probe monitors a given port on each VM and only distributes traffic to an operational VM. You define a front-end IP configuration that contains one…

Continue Reading

Azure, Technology

20. Implement and Manage Virtual Networking

Introduction to VNet Peering By default, a VM on one VNet cannot communicate with a VM on another VNet. You can setup peering relationship between the 2 networks to allow them to communicate. Peering must be setup to work in both directions Setting up Peering In this example we will setup the connection between the Virtual Networks: vSydney and vMelbourne…

Continue Reading

Azure, Technology

19. Manage Virtual Networking

Virtual Networks A virtual network is like the glue that binds various resources together in the infrastructure as a service model. EG: a VM without a Virtual network would be a standalone VM without any access to other resources. Virtual networks don’t have any cost. There is a limit of around 250 virtual networks per region. Before creating your Virtual…

Continue Reading

Azure, Technology

21. Configure Name Resolution

Azure DNS Services DNS is like the phone book for the internet, it is how the domain names get translated to IP addresses. Azure DNS Service Options There are 3 main options Azure provides DNS (default) – no configuration required – can use hostnames to connect to machines on the same VNet without requiring FQDN You provide DNS (run your…

Continue Reading

Azure, Technology

18. Azure Kubernetes Services (AKS)

Introduction to Containers Containers are a cross platform way of deploying code.  It is an abstraction on top of VM’s. Kubernetes is formally a Google standard but is now an industry standard for running containers. https://azure.microsoft.com/en-au/services/kubernetes-service/ “Azure Kubernetes Service (AKS) offers serverless Kubernetes, an integrated continuous integration and continuous delivery (CI/CD) experience, and enterprise-grade security and governance. Unite your development…

Continue Reading

Azure, Technology

17. Azure App Services

Introduction to App Services An App service is a way for you run code but not have to be concerned about managing a server. An example of this is a Web app. Using a web app is like using a Windows IIS server that someone else has setup and pre configured for you. You don’t have to worry about the…

Continue Reading

Azure, Technology

16. Manage VM Backups

Enabling VM Backups Go to the VM  -> Backup Selecting an existing Recovery Vault or create a new one Choose backup policy: the default is daily but you can customise your own – Frequency – time to run – Retention period You can also run a manual backup by clicking on Backup Now from the backups dashboard. Backup Jobs To…

Continue Reading