Revision 690d6cee4efc0bae1f47151658199b1e23ec28af authored by brharrington on 02 February 2021, 19:53:13 UTC, committed by GitHub on 02 February 2021, 19:53:13 UTC
Fixes #1224.

Adds variants of topk/bottomk that in addition to computing
the highest priority values will also return an aggregate
time series that includes all of the other time series that
were not high enough priority. This can be useful to see
what proportion of the overall volume is represented by
the highest priority time series. The operators have the
same signature as `:topk` and `:bottomk`, but the
aggregation to use is specified in the operator name.
There are four aggregates supported:

- min
- max
- sum
- avg

Count was not included as an aggregate because it could be
ambiguous and does not seem useful.

As part of this work there was some refactoring of the
existing aggregation operations to make the count case
more consistent.
1 parent 6078f58
Raw File
README.md
# Atlas

Backend for managing dimensional time series data.

## Links

* [Documentation](https://github.com/Netflix/atlas/wiki)
* [Mailing List](https://groups.google.com/forum/#!forum/netflix-atlas)
* [Issues](https://github.com/Netflix/atlas/issues)
* [Releases](https://github.com/Netflix/atlas/releases)

## License

Copyright 2014-2020 Netflix, Inc.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
back to top