Reader small image

You're reading from  Learn Azure Administration - Second Edition

Product typeBook
Published inDec 2023
PublisherPackt
ISBN-139781837636112
Edition2nd Edition
Right arrow
Author (1)
Kamil Mrzygłód
Kamil Mrzygłód
author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód

Right arrow

Using workspaces

Azure Log Analytics can be used as it is without provisioning any additional components. In this scenario, you may even be unaware of its existence as it’s incorporated into Azure Monitor in quite a seamless way. However, if you’d like to integrate it with other services (for instance, by deploying diagnostics settings and sending logs from services to a single place), you may be interested in creating a service called Azure Log Analytics Workspace. Let’s see how to use it.

Using Azure Log Analytics Workspace

To start using Azure Log Analytics Workspace, we’ll need to create it. Use the following command to deploy it inside your resource group:

az group create -l <location> -n <resource-group-name>
az monitor log-analytics workspace create -n <workspace-name> \
  -g <resource-group-name>

Once created, a workspace can be used as a data sink for logs generated by other services. To send logs from...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn Azure Administration - Second Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781837636112

Author (1)

author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód