aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql
blob: a737ffef3e38c12a3c34518de5fbd47c76f5d688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.create table LogsTable (
  SerialNumber: string,
  MachineType: string,
  Environment: string,
  Organization: string,
  Site: string,
  CreatedTime: datetime,
  UploadTime: datetime,
  Source: string,
  Category: string,
  Class: string,
  Method: string,
  Line: int,
  Message: string
)