aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql
diff options
context:
space:
mode:
authorRoy Ben Shabat <roy.mail.net@gmail.com>2025-08-22 17:05:23 +0300
committerRoy Ben Shabat <roy.mail.net@gmail.com>2025-08-22 17:05:23 +0300
commitb09f463df418b2acaac65c725be33b242a3db2c5 (patch)
tree50c3dbf57ee217ddd40f883dd9c711aab9983cfb /Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql
parent27581825838039ef77ba1c6466f044b61eb8a009 (diff)
downloadTango-b09f463df418b2acaac65c725be33b242a3db2c5.tar.gz
Tango-b09f463df418b2acaac65c725be33b242a3db2c5.zip
Kusto Scripts.
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql12
1 files changed, 12 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql
new file mode 100644
index 000000000..b109eebdd
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create MachineStatuses Table.kql
@@ -0,0 +1,12 @@
+.create table MachineStatusesTable (
+ SerialNumber: string,
+ MachineType: string,
+ Environment: string,
+ Organization: string,
+ Site: string,
+ CreatedTime: datetime,
+ UploadTime: datetime,
+ State: string,
+ OverallTemperature: real,
+ Status: dynamic
+)