commit | 4015d342b963ae510fff22803d9d55538b71af74 | [log] [tgz] |
---|---|---|
author | Luca Milanesio <luca.milanesio@gmail.com> | Wed Jul 13 01:26:08 2022 +0100 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Mon Oct 03 11:20:43 2022 +0000 |
tree | 916724e261817eefd95ad8f25023ee8c00149519 | |
parent | 551cd36ebc0b2ed038c8bd096c01f4b92a18d08c [diff] |
Allow different data reservoirs for metrics The default reservoir for collecting data with DropWizard may not be suitable for all types of metrics collection. The default ExponentiallyDecayingReservoir is typically suitable for data with a lots of values per unit whilst shows inaccurancy for smaller data sets spread over a longer period of time. Introduce a new DropWizardReservoirProvider which reads the reservoir type from gerrit.config in a new section called [metrics]. The reservoir can be subsequently configured in the subsection [metrics "<reservoir>"] and its parameters tailored to the Gerrit admin's metrics collection system. For example, when using Prometheus scraper on a 1 mins interval basis, it is possible to swap the default reservoir with a more suitable SlidingTimeWindow: [metrics] reservoir = SlidingTimeWindow [metrics "SlidingTimeWindow"] window = 1 min Release-Notes: introduce metrics configuration for different data reservoirs Change-Id: Iaf73bc5c1a73423d06f423ea813df2d96e151f9e
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recurse-submodules https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 8 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8
To run a Ubuntu 20.04 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.