Skip to content

Latest commit

 

History

History
189 lines (119 loc) · 9.61 KB

get-started-portal.md

File metadata and controls

189 lines (119 loc) · 9.61 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.workload ms.tgt_pltfrm ms.topic ms.date ms.author
Get started with Log Analytics in the Azure portal | Microsoft Docs
This article provides a tutorial for using Log Analytics in the Azure portal to write queries.
log-analytics
bwren
carmonm
log-analytics
na
na
conceptual
08/20/2018
bwren

Get started with Log Analytics in the Azure portal

[!INCLUDE log-analytics-demo-environment]

In this tutorial you will learn how to use the Log Analytics page in the Azure portal (currently in preview) to write Log Analytics queries. It will teach you how to:

  • Write simple queries
  • Understand the schema of your data
  • Filter, sort, and group results
  • Apply a time range
  • Create charts
  • Save and load queries
  • Export and share queries

Meet the Log Analytics page

The Log Analytics page is a web tool used to write and execute Azure Log Analytics queries. Open it by selecting Logs (preview) in the Log Analytics menu. It starts with a new blank query.

Home page

Basic queries

Queries can be used to search terms, identify trends, analyze patterns, and provide many other insights based on your data. Start with a basic query:

Event | search "error"

This query searches the Event table for records that contain the term "error" in any property.

Queries can start with either a table name or a search command. The above example starts with the table name Event, which defines the scope of the query. The pipe (|) character separates commands, so the output of the first one in the input of the following command. You can add any number of commands to a single query.

Another way to write that same query would be:

search in (Event) "error"

In this example, search is scoped to the Event table, and all records in that table are searched for the term "error".

Running a query

Run a query by clicking the Run button or pressing Shift+Enter. Consider the following details which determine the code that will be run and the data that's returned:

  • Line breaks: A single break makes your query clearer. Multiple line breaks split it into separate queries.
  • Cursor: Place your cursor somewhere inside the query to execute it. The current query is considered to be the code up until a blank line is found.
  • Time range - A time range of last 24 hours is set by default. To use a different range, use the time-picker or add an explicit time range filter to your query.

Understand the schema

The schema is a collection of tables visually grouped under a logical category. Several of the categories are from monitoring solutions. The LogManagement category contains common data such as Windows and Syslog events, performance data, and client heartbeats.

Schema

In each table, data is organized in columns with different data types as indicated by icons next to the column name. For example, the Event table shown in the screenshot contains columns such as Computer which is text, EventCategory which is a number, and TimeGenerated which is date/time.

Filter the results

Start by getting everything in the Event table.

Event

The Log Analytics page automatically scopes results by:

  • Time range: By default, queries are limited to the last 24 hours.
  • Number of results: Results are limited to maximum of 10,000 records.

This query is very general, and it returns too many results to be useful. You can filter the results either through the table elements, or by explicitly adding a filter to the query. Filtering results through the table elements applies to the existing result set, while a filter to the query itself will return a new filtered result set and could therefore produce more accurate results.

Add a filter to the query

There is an arrow to the left of each record. Click this arrow to open the details for a specific record.

Hover above a column name for the "+" and "-" icons to display. To add a filter that will return only records with the same value, click the "+" sign. Click "-" to exclude records with this value and then click Run to run the query again.

Add filter to query

Filter through the table elements

Now let's focus on events with a severity of Error. This is specified in a column named EventLevelName. You'll need to scroll to the right to see this column.

Click the Filter icon next to the column title, and in the pop-up window select values that Starts with the text error:

Filter

Sort and group results

The results are now narrowed down to include only error events from SQL Server, created in the last 24 hours. However, the results are not sorted in any way. To sort the results by a specific column, such as timestamp for example, click the column title. One click sorts in ascending order while a second click will sort in descending.

Sort column

Another way to organize results is by groups. To group results by a specific column, simply drag the column header above the other columns. To create subgroups, drag other columns the upper bar as well.

Groups

Select columns to display

The results table often includes a lot of columns. You might find that some of the returned columns are not displayed by default, or you may want to remove some the columns that are displayed. To select the columns to show, click the Columns button:

Select columns

Select a time range

By default, the Log Analytics page applies the last 24 hours time range. To use a different range, select another value through the time picker and click Run. In addition to the preset values, you can use the Custom time range option to select an absolute range for your query.

Time picker

When selecting a custom time range, the selected values are in UTC, which could be different than your local time zone.

If the query explicitly contains a filter for TimeGenerated, the time picker title will show Set in query. Manual selection will be disabled to prevent a conflict.

Charts

In addition to returning results in a table, query results can be presented in visual formats. Use the following query as an example:

Event 
| where EventLevelName == "Error" 
| where TimeGenerated > ago(1d) 
| summarize count() by Source 

By default, results are displayed in a table. Click Chart to see the results in a graphic view:

Bar chart

The results are shown in a stacked bar chart. Click Stacked Column and select Pie to show another view of the results:

Pie chart

Different properties of the view, such as x and y axes, or grouping and splitting preferences, can be changed manually from the control bar.

You can also set the preferred view in the query itself, using the render operator.

Smart diagnostics

On a timechart, if there is a sudden spike or step in your data, you may see a highlighted point on the line. This indicates that Smart Diagnostics has identified a combination of properties that filter out the sudden change. Click the point to get more detail on the filter, and to see the filtered version. This may help you identify what caused the change:

Smart diagnostics

Pin to dashboard

To pin a diagram or table to one of your shared Azure dashboards, click the pin icon.

Pin to dashboard

Certain simplifications are applied to a chart when you pin it to a dashboard:

  • Table columns and rows: In order to pin a table to the dashboard, it must have four or fewer columns. Only the top seven rows are displayed.
  • Time restriction: Queries are automatically limited to the past 14 days.
  • Bin count restriction: If you display a chart that has a lot of discrete bins, less populated bins are automatically grouped into a single others bin.

Save queries

Once you've created a useful query, you might want to save it or share with others. The Save icon is on the top bar.

You can save either the entire query page, or a single query as a function. Functions are queries that can also be referenced by other queries. In order to save a query as a function, you must provide a function alias, which is the name used to call this query when referenced by other queries.

Save function

Log Analytics queries are always saved to a selected workspace, and shared with other users of that workspace.

Load queries

The Query Explorer icon is at the top-right area. This lists all saved queries by category. It also enables you to mark specific queries as Favorites to quickly find them in the future. Double-click a saved query to add it to the current window.

Query explorer

Export and share as link

The Log Analytics page supports several exporting methods:

  • Excel: Save the results as a CSV file.
  • Power BI: Export the results to power BI. See Import Azure Log Analytics data into Power BI for details.
  • Share a link: The query itself can be shared as a link which can then be sent and executed by other users that have access to the same workspace.

Next steps