We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scaled_float
Add support in ECS for scaled_float as an allowed numeric type in the schema field definitions.
A scaled_float has an additional parameter, the scaling_factor. scaling_factor is always required for a scaled_float.
scaling_factor
{ "my-index-0002" : { "mappings" : { "properties" : { "my_scaled_float_field" : { "type" : "scaled_float", "scaling_factor" : 1000.0 } } } } }
The text was updated successfully, but these errors were encountered:
ebeahan
Successfully merging a pull request may close this issue.
Add support in ECS for
scaled_float
as an allowed numeric type in the schema field definitions.A
scaled_float
has an additional parameter, thescaling_factor
.scaling_factor
is always required for ascaled_float
.The text was updated successfully, but these errors were encountered: