forked from arcanecode/KQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m1-demo-intro.csl
40 lines (34 loc) · 1.65 KB
/
m1-demo-intro.csl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//------------------------------------------------------------------------------
// Kusto Query Language (KQL) From Scratch
// Module 1 - Introduction
//
// The demos in this module serve as a very basic introduction to the KQL
// language within the Azure Log Analytics environment.
//
// Copyright (c) 2018. Microsoft, Pluralsight, Robert C. Cain.
// All rights reserved. This code may be used in part within your own
// applications.
//
// This code may NOT be redistributed in it's entirely without permission
// of one of it's copyright holders.
//------------------------------------------------------------------------------
// This is a comment
//------------------------------------------------------------------------------
// Use the left/right arrow on the left of this window, at the top to expand
// the schema pane.
//
// In the ACTIVE area, is Demo. While not an exact analogy it is similar
// to a database server.
//
// Under it are Table Groups. Table groups are kind of like databases, but
// more accurately would be a way to collect a group of tables together.
// Unlike a database, a table can be in more than one table group.
//
// Each table exposes a list of columns containing the actual data.
//------------------------------------------------------------------------------
// To retrieve data, you can simply enter the table name and hit the
// Run button at the top, or use SHIFT+ENTER
// Be warned just a table name has the potential to return a lot of data, so
// be patient if you execute this kind of query.
Perf
// In module 2, we'll see how to start filtering the returned data