-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Update monitoring-es-mb.json to correct datatype #126842
New issue
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
base: main
Are you sure you want to change the base?
Conversation
correct datatype
Add documentation file as per build enviromnent request
Pinging @elastic/es-data-management (Team:Data Management) |
Thanks for your contribution @ash-darin |
@consulthys Of course this breaks the dataview by creating a conflict but I see no way around it. This will stay broken till the old mappings rotate out.
is of type long. The only reason these might be keyword is if long would not have been enough to store the number value but 2^63-1 bytes is about 9 Exabytes by my calculation, so that can't be it. Thinking about it now, making it unsigned is actually not necessary. |
Thanks for the details @ash-darin |
This fixes #116766
Datatype for bytes should not be keyword but (unsigned_)long. Chose unsinged_long as there should be no negative amounts of bytes.