From 639d70f8755c249128d920f9295e5a30bad4bbe2 Mon Sep 17 00:00:00 2001 From: Victoria Date: Wed, 7 Aug 2024 14:20:04 -0700 Subject: [PATCH] updated datatype from float to decimal --- src/CollectSFDataDll/Kusto/KustoIngestionMappings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CollectSFDataDll/Kusto/KustoIngestionMappings.cs b/src/CollectSFDataDll/Kusto/KustoIngestionMappings.cs index 6a034e98..5820fb58 100644 --- a/src/CollectSFDataDll/Kusto/KustoIngestionMappings.cs +++ b/src/CollectSFDataDll/Kusto/KustoIngestionMappings.cs @@ -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 }