File: control

package info (click to toggle)
golang-github-spacejam-loghisto 0.0~git20170903.ca67f4e-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: makefile: 4
file content (37 lines) | stat: -rw-r--r-- 1,627 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Source: golang-github-spacejam-loghisto
Standards-Version: 4.7.2
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Dmitry Smirnov <onlyjob@debian.org>,
 Tim Potter <tpot@hpe.com>,
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-golang,
 golang-go,
 golang-glog-dev | golang-github-golang-glog-dev,
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-spacejam-loghisto
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-spacejam-loghisto.git
Homepage: https://github.com/spacejam/loghisto
XS-Go-Import-Path: github.com/spacejam/loghisto

Package: golang-github-spacejam-loghisto-dev
Architecture: all
Depends:
 ${misc:Depends},
 golang-go,
 golang-glog-dev | golang-github-golang-glog-dev,
Description: counters and logarithmically bucketed histograms for distributed systems
 A metric system for high performance counters and histograms. Unlike
 popular metric systems today, this does not destroy the accuracy of
 histograms by sampling. Instead, a logarithmic bucketing function
 compresses values, generally within 1% of their true value (although
 between 0 and 1 the precision loss may not be within this boundary). This
 allows for extreme compression, which allows us to calculate arbitrarily
 high percentiles with no loss of accuracy - just a small amount of
 precision.  This is particularly useful for highly-clustered events that
 are tolerant of a small precision loss, but for which you REALLY care
 about what the tail looks like, such as measuring latency across a
 distributed system.