updated datatype from float to decimal

This commit is contained in:
Victoria 2024-08-07 14:20:04 -07:00
Родитель 8b539ef294
Коммит 639d70f875
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -36,7 +36,7 @@ namespace CollectSFData.Kusto
{
new KustoCsvSchema() { Name = "Timestamp", DataType = "datetime", Ordinal = count++ },
new KustoCsvSchema() { Name = "CounterName", DataType = "string", Ordinal = count++ },
new KustoCsvSchema() { Name = "CounterValue", DataType = "float", Ordinal = count++ },
new KustoCsvSchema() { Name = "CounterValue", DataType = "decimal", Ordinal = count++ },
new KustoCsvSchema() { Name = "Object", DataType = "string", Ordinal = count++ },
new KustoCsvSchema() { Name = "Counter", DataType = "string", Ordinal = count++ },
new KustoCsvSchema() { Name = "Instance", DataType = "string", Ordinal = count }