aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql
new file mode 100644
index 000000000..a737ffef3
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create Log Table.kql
@@ -0,0 +1,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
+)