Implementing Azure Cloud Design Patterns
eBook - ePub

Implementing Azure Cloud Design Patterns

Oliver Michalski, Stefano Demiliani

Condividi libro
  1. 300 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Implementing Azure Cloud Design Patterns

Oliver Michalski, Stefano Demiliani

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

A hands-on guide to mastering Azure cloud design patterns and best practices.

Key Features

  • Master architectural design patterns in Azure.
  • Get hands-on with implementing design patterns.
  • Implement best practices for improving efficiency and security

Book Description

A well designed cloud infrastructure covers factors such as consistency, maintenance, simplified administration and development, and reusability. Hence it is important to choose the right architectural pattern as it has a huge impact on the quality of cloud-hosted services. This book covers all Azure design patterns and functionalities to help you build your cloud infrastructure so it fits your system requirements.

This book initially covers design patterns that are focused on factors such as availability and data management/monitoring. Then the focus shifts to complex design patterns such as multitasking, improving scalability, valet keys, and so on, with practical use cases. The book also supplies best practices to improve the security and performance of your cloud.

By the end of this book, you will thoroughly be familiar with the different design and architectural patterns available with Windows Azure and capable of choosing the best pattern for your system.

What you will learn

  • Learn to organize Azure access
  • Design the core areas of the Azure Execution Model
  • Work with storage and data management
  • Create a health endpoint monitoring pattern
  • Automate early detection of anomalies
  • Identify and secure Azure features

Who this book is for

This book is targeted at cloud architects and cloud solution providers who are looking for an extensive guide to implementing different patterns for the deployment and maintenance of services in Microsoft Azure. Prior experience with Azure is required as the book is completely focused on design patterns.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Implementing Azure Cloud Design Patterns è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Implementing Azure Cloud Design Patterns di Oliver Michalski, Stefano Demiliani in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Computer Science e Cloud Computing. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2018
ISBN
9781788396639
Edizione
1

Monitoring and Telemetry

In the last two chapters, I've tried to extend our current perspective on Azure to specific architectural aspects. These aspects affect our day-to-day work and therefore, the design process for our own Azure solutions.
So far, the focus has been on availability, performance, and scalability. All three themes have one thing in common. They only work with telemetry data and sophisticated monitoring solutions.
In order to fully deal with the topic, we will focus on monitoring and telemetry in this chapter.
This chapter is divided into two parts. In part one, we discuss the question of what type of data we are actually talking about. Then, in part two, I will introduce you to the possible solutions for capturing this data.
We will explore the following topics in detail in this chapter:
  • Telemetry data
  • An overview of monitoring
  • Azure management portal
  • System specific tools
  • Microsoft System Center
  • Microsoft Operations Management Suite (OMS)
  • Azure Monitor
  • Azure Application Insights
  • Grafana
  • Azure Log Analytics
  • Azure Network Watcher

About telemetry data

Let's start with the question: What is telemetry data? The term telemetry, refers to the transmission of measured values from a sensor to a spatially separated location.
At this receiving point, the measured values are either only recorded and collected, or transferred directly to an evaluation process.
The acquisition of telemetry data is often supplemented by a path of action to the detecting sensor, so as to be able to respond to the delivered measured values with suitable actions. This return path is called remote control.
Let's move on to the area of monitoring. Here, we could also talk about a telemetry process. For example, a network device can assume the role of a sensor and constantly transmit data about the state of the connection, latency, and much more.
Although we can speak of telemetry, I would like to introduce a second term that is more common when using monitoring solutions: metrics.

What is a metric?

A metric is a collection of telemetry data that is visualized within the monitoring solution and provided in a monitoring dashboard.
In the area of metrics, we know two types and, according to the level of abstraction, five classifications.
Types of metrics are:
  • Pre-defined or common metrics
  • Custom metrics
What is the difference between these two types? While common metrics come in the context of general infrastructure elements (for example, to measure the CPU usage), custom metrics cover all user-defined measurement points.
Classifications of metrics are:
  • Client metrics: Client metrics are concerned with measuring the perception of the end user, for example, how long does it take for a client application to process and render results? Other areas covered by client metrics are the responsiveness of local and remote operations, the memory footprint, and the CPU usage.
  • Business metrics: Business metrics provide a viewpoint to the logical operations (all end user activities) that define the business process. In terms of best practice, business metrics should cover all business transactions that the system performs.
  • Application metrics: Application metrics include all measurements of the activity and performance of the application layer (that is, the application code, all application frameworks, and runtime execution environments used by the application). The purpose of these metrics is to help you synchronize the flow through the application with a potentially large number of concurrent user requests, analyze the resources that are consumed, and evaluate the likelihood and causes of performance issues.
  • System metrics: System metrics capture information about the performance of the underlying infrastructure. These metrics are typically focused on Key Performance Indicators (KPIs) associated with memory occupancy, network utilization, disk activity, and CPU use.
  • Service metrics: Service metrics cover the performance of dependent services, such as Azure Storage, messaging, cache, database, and any other external services your application may use. However, these types of metrics do not measure the performance of these services themselves, but capture information about the performance of the queries your system sends to them.
Let's look again at the classifications in detail.

Client metrics

Let's start with the general definition: client metrics give you an insight into the use of the system by an end user. All metrics at this level typically depend on how responsive the UI is, and how many client-side resources the application consumes.
Many modern user interfaces are browser or device based. In these situations, the primary measured values are those that are related to page views, page load time, JavaScript code, the browser or device types' geographical location, and session traces.

How do I collect the data from client metrics?

The common solution is to include JavaScript code in client-side code that records the necessary information. This code can then capture metrics such as page load times, session data (the life cycle of an interaction that can span multiple web pages and operations), JavaScript and other client-side code exceptions, or AJAX time information.
The JavaScript code sends this data to a service that collects and retrieves and inspects this information.
Azure Applicatio...

Indice dei contenuti