Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mindflavor/prometheus_folder_size_exporter
A Rust only folder size exporter for Prometheus (Grafana)
https://github.com/mindflavor/prometheus_folder_size_exporter
async folder-size grafana hyper prometheus-exporter rust
Last synced: 3 months ago
JSON representation
A Rust only folder size exporter for Prometheus (Grafana)
- Host: GitHub
- URL: https://github.com/mindflavor/prometheus_folder_size_exporter
- Owner: MindFlavor
- License: mit
- Created: 2019-01-25T19:45:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-05T19:21:35.000Z (about 1 year ago)
- Last Synced: 2024-04-25T05:21:06.181Z (8 months ago)
- Topics: async, folder-size, grafana, hyper, prometheus-exporter, rust
- Language: Rust
- Size: 48.8 KB
- Stars: 16
- Watchers: 5
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prometheus Folder size Exporter
[![legal](https://img.shields.io/github/license/mindflavor/prometheus_folder_size_exporter.svg)](LICENSE)
![Rust](https://github.com/MindFlavor/prometheus_folder_size_exporter/workflows/Rust/badge.svg)[![Crate](https://img.shields.io/crates/v/prometheus_folder_size_exporter.svg)](https://crates.io/crates/prometheus_folder_size_exporter) [![cratedown](https://img.shields.io/crates/d/prometheus_folder_size_exporter.svg)](https://crates.io/crates/prometheus_folder_size_exporter) [![cratelastdown](https://img.shields.io/crates/dv/prometheus_folder_size_exporter.svg)](https://crates.io/crates/prometheus_folder_size_exporter)
[![release](https://img.shields.io/github/release/MindFlavor/prometheus_folder_size_exporter.svg)](https://github.com/MindFlavor/prometheus_folder_size_exporter/releases/tag/0.5.0)
[![commitssince](https://img.shields.io/github/commits-since/mindflavor/prometheus_folder_size_exporter/0.5.0.svg)](https://img.shields.io/github/commits-since/mindflavor/prometheus_folder_size_exporter/0.5.0.svg)## Intro
A Rust Prometheus exporter for folder size. This tool exports the folder size information (optionally including every subdir) in a format that [Prometheus](https://prometheus.io/) can understand.
## Prerequisites
* You need [Rust](https://www.rust-lang.org/) to compile this code. Simply follow the instructions on Rust's website to install the toolchain. If you get wierd errors while compiling please try and update your Rust version first (I have developed it on `rustc 1.53.0-nightly (f82664191 2021-03-21)`).
## Compilation
To compile the latest master version:
```bash
git clone https://github.com/MindFlavor/prometheus_folder_size_exporter.git
cd prometheus_folder_size_exporter
cargo install --path .
```If you want the latest release you can simply use:
```bash
cargo install prometheus_folder_size_exporter
```## Usage
Start the binary with `-h` to get the complete syntax. The parameters are:
| Parameter | Mandatory | Valid values | Default | Description |
| -- | -- | -- | -- | -- |
| `-v` | no | | | Enable verbose mode.
| `-p` | no | any valid port number | 9974 | Specify the serivce port. This is the port your Prometheus instance should point to.
| `-i` | yes | a valid config json file | - | The configuration file. This json is detailed below (you can find an example here: [example.json](example.json)).
| `-b` | no | Any number > 0 | Off | Enables the async storage calculation. The value specifies how often (in seconds) the calculation will be done. If not specified, the values will be calculated synchronously at each HTTP Get.Once started, the tool will listen on the specified port (or the default one, 9974, if not specified) and return a Prometheus valid response at the url `/metrics`. So to check if the tool is working properly simply browse the `http://localhost:9974` (or whichever port you choose).
### JSON configuration file
Name | Valid values | Description
-- | -- | --
`path` | Any valid path | The starting analysis path.
`explode_depth` | Any positive number or -1 | This setting controls how deep the folder explosion will go. -1 means no limit. 0 means no explosion.
`sum_remaining_subfolders` | `true` or `false` | This setting specifies if the last exploded folder size should include the subfolders.So, for example, to monitor a single folder set `explode_depth = 0` and pick `sum_remaining_subfolders` based on is you want the total folder + subfolder size or not.
To monitor a folder and its first level subfolders you specify `explode_depth = 1`.### Systemd service file
Now add the exporter to the Prometheus exporters as usual. I recommend to start it as a service. My systemd service file is like this one:
```
[Unit]
Description=Prometheus Folder size Exporter
Wants=network-online.target
After=network-online.target[Service]
User=node_exporter
Group=node_exporter
Type=simple
ExecStart=/usr/local/bin/prometheus_folder_size_exporter -i /etc/prometheus_folder_size_exporter.json -p 9974[Install]
WantedBy=multi-user.target
```