aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql14
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql
new file mode 100644
index 000000000..02550a143
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/Kusto Scripts/Create TechMonitors Table.kql
@@ -0,0 +1,14 @@
+.create table TechMonitorsTable (
+ ID: int,
+ GUID: string,
+ LAST_UPDATED: datetime,
+ CODE: int,
+ NAME: string,
+ DESCRIPTION: string,
+ MIN: real,
+ MAX: real,
+ UNITS: string,
+ POINTS_PER_FRAME: int,
+ MULTI_CHANNEL: bool,
+ CHANNEL_COUNT: int
+) \ No newline at end of file