Crates.io | metrix |
lib.rs | metrix |
version | 0.13.13 |
source | src |
created_at | 2018-02-12 12:12:43.00282 |
updated_at | 2021-03-29 21:51:47.234666 |
description | metrics for application monitoring |
homepage | https://github.com/chridou/metrix |
repository | https://github.com/chridou/metrix |
max_upload_size | |
id | 50834 |
size | 351,655 |
Metrics for monitoring applications and alerting.
Applications/services can have a lot of metrics and one of the greatest
challenges is organizing them. This is what metrix
tries to help with.
Metrix does not aim for providing exact numbers and aims for applications monitoring only.
This crate is in a very early stage and the API might still change. There may be backends provided for monitoring solutions in the future but currently only a snapshot that can be serialized to JSON is provided.
Metrix is based on observations collected while running your application. These observations will then be sent to a backend where the actual metrics(counters etc.) are updated. For the metrics configured a snapshot can be queried.
The primary focus of metrix is to organize these metrics. There are several building blocks available. Most of them can have a name that will then be part of a path within a snapshot.
Labels link observations to panels. Labels can be of any type that
implements Clone + Eq + Send + 'static
. An enum
is a good choice for a
label.
An abservation is made somewhere within your application. When an observation is sent to the backend it must have a label attached. This label is then matched against the label of a panel to determine whether an observation is handled for updating or not.
Instruments are gauges, meters, etc. An instrument gets updated by an
observation where an update is meaningful. Instruments are grouped by
Panel
s.
You can find instruments in the module instruments
.
A Panel
groups instruments under same same label. So each instrument
within a panel will be updated by observations that have the same label as
the panel.
Lets say you defined a label OutgoingRequests
. If you are interested
in the request rate and the latencies. You would then create a panel with a
label OutgoingRequests
and add a histogram and a meter.
A cockpit aggregates multiple Panel
s. A cockpit can be used to monitor
different tasks/parts of a component or worklflow. A cockpit
is bound to a label type.
An example can be that you have service component that calls an external HTTP client. You could be interested in successful calls and failed calls individually. So for both cases you would create a value for your label and then add two panels to the cockpit.
Cockpits are in the module cockpit
.
The most important processor is the TelemetryProcessor
. It has
a label type as a type parameter and consist of a TelemetryTransmitter
that sends observations to the backend(used within your app)
and the actual TelemetryProcessor
that forms the backend and
processes observations. The TelemetryProcessor
can own several cockpits for a label type.
There is also a ProcessorMount
that is label agnostic and can group
several processors. It can also have a name that will be included in the
snapshot.
The processors can be found the module processor
.
The driver owns processors and asks the owned processors to process their messages. You need to add your processors to a driver to start the machinery. A driver is also a processor which means it can have a name and it can also be part of another hierarchy.
Each driver has its own thread for polling its processors so even when attached to another hierarchy all processors registered with the driver will only be driven by that driver.
Contributing is welcome. Criticism is also welcome!
Metrix is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).
Copyright (c) 2018 Christian Douven
License: Apache-2.0/MIT