Project

General

Profile

Bug #2097

Updated by Luke Murphey over 6 years ago

When configuring a field as number, if a decimal number is provided, the LE will display it as an integer, even if storing it correctly within the KVStore.

Sample configs:

*collections.conf* #collections.conf
<pre>
[test]
# name of the process that the data represents
field.step = string
field.seq = number
</pre>


*transforms.conf* #transforms.conf
<pre>
[test]
collection=test
external_type = kvstore
fields_list = step,seq
</pre>


Populating the KV Store. The values provided for seq are decimal.

Back