Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 2.17 KB

README.md

File metadata and controls

55 lines (39 loc) · 2.17 KB

KairosDb Format

License: Apache 2 Jenkins Build Maven Artifact

Defines a format for persisting augmented histograms in KairosDb using Protocol Buffers.

Features

Stores a histogram and supporting statistics for recombinable queries of time series data using KairosDb. Histogram bins are computed using floating point mantissa truncation to a specified precision. Error is fixed as a percentage of the value and bins can be downsampled to a lesser precision without introducing any additional error. Supporting statistics for min, max, sum, average and count (which is inferred from the histogram) are represented separately for accuracy and are also recombinable. The logic for leveraging this data format is provided by Kairosdb Extensions.

Building

Prerequisites:

  • None

Building:

kairosdb-format> ./jdk-wrapper.sh ./mvnw verify

To use the local version you must first install it locally:

kairosdb-format> ./jdk-wrapper.sh ./mvnw install

You can determine the version of the local build from the pom file. Using the local version is intended only for testing or development.

You may also need to add the local repository to your build in order to pick-up the local version:

  • Maven - Included by default.
  • Gradle - Add mavenLocal() to build.gradle in the repositories block.
  • SBT - Add resolvers += Resolver.mavenLocal into project/plugins.sbt.

License

Published under Apache Software License 2.0, see LICENSE

© Dropbox, 2020