Skip to main content
grafilter
=========

Dashboards like [Grafana](http://grafana.org) are awesome, but sometimes they make it hard to look at all the metrics, without first spending time to configure a dashboard. Grafilter is meant to provide lightweight and easy access to your metrics. You can still customize visuals of course, but in a way that let's you store these customizations in a versioned config management system such as [Ansible](http://www.ansible.com), [BundleWrap](http://bundlewrap.org) or [Chef](https://www.chef.io/chef/) as opposed to a database like Grafana 2 does.

Grafilter supports InfluxDB 0.9.0 and onwards.

![PyPI downloads](http://img.shields.io/pypi/dm/grafilter.svg)   ![PyPI version](http://img.shields.io/pypi/v/grafilter.svg)   ![Python 3.x](http://img.shields.io/badge/Python-3.4-green.svg)   ![License](http://img.shields.io/badge/License-GPLv3-red.svg)

Install
-------

```
apt-get install python3-pip
pip3 install grafilter
```

Configure
---------

Create a file with these contents anywhere:

```python
CACHE_TIMEOUT = 300
CONFIG_DIR = "/var/lib/grafilter"
DEBUG = False
IGNORED_TAGS = ["_key"]
INFLUXDB_DB = "metrics"
INFLUXDB_URL = "http://user:pass@influxdb.example.com:8086"
```

Note that `INFLUXDB_URL` points to the HTTP API port of InfluxDB.

Run
---

```sh
GRAFILTER_SETTINGS=/path/to/grafilter.cfg grafilter
```

Customize
---------

You can customize the appearance of your individual metrics by placing files in the `metrics` subdirectory of your `CONFIG_DIR`. These files must have a `.json` extension and look like this:

```json
{
"pattern": "\\.load$",
"transform": "lambda x: math.floor(x)",
"type": "area"
}
```

Note that `pattern` is a regular expression that has to match the [line protocol](https://influxdb.com/docs/v0.9/write_protocols/line.html)-style name of the metrics you want to customize (e.g. `measurement,tag1=value1,tag2=value2`). Each metric will only be styled according to the first file with a matching `pattern`. All other options listed here are optional.

Option | Explanation
-------|------------
`max` | force highest value on y axis (int or float)
`merge` | a Python expression describing a function that takes two numeric values and the time interval between them and returns one numeric value. It can be used to calculate the difference between two sequential datapoints and use the result in your graph (useful for ever increasing counters, e.g. `lambda x, y, t: (y - x) / t`). You have access to the [math module from the Python standard library](https://docs.python.org/3/library/math.html). Applied before `transform`.
`min` | force lowest value on y axis (int or float)
`short_name` | a cosmetic name for this metric, e.g. "Load Average"
`transform` | a Python expression describing a function that takes a numeric value and returns another. It can be used to perform conversions and other math on your metrics. You have access to the [math module from the Python standard library](https://docs.python.org/3/library/math.html). Applied after `merge`.
`type` | chart type: `area`, `area-spline`, `area-step`, `line`, `spline` or `step` (defaults to `line`)
`unit_format` | a [d3 format specifier](https://github.com/mbostock/d3/wiki/Formatting#d3_format) for your y axis (e.g. "s" to turn "1000" into "1K" and "1000000" into "1M")
`unit` | any string you want to be displayed next to your y axis

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grafilter-0.3.0.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

grafilter-0.3.0-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file grafilter-0.3.0.tar.gz.

File metadata

  • Download URL: grafilter-0.3.0.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for grafilter-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d91a5afcb1827acc52ec92080821b7fbceb82dfc654870873343c4f6a10628ce
MD5 6829f995715209edf965bd9ef0f4dac4
BLAKE2b-256 606556d5459c8a27af75a788289c4e1fc129dd30f3eaa3587627ea0d8ebb58be

See more details on using hashes here.

File details

Details for the file grafilter-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for grafilter-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bcbf7449ebb386321d8c62b8d76128c465d01c1485957bc49fbb88620215e646
MD5 22064bf07862f3d9b63bbb41f8592ad3
BLAKE2b-256 7a35286bdef33bf740809cb33606103423efe02d92b91e3662b81bc8b1282315

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page