Prometheus exporter for Firefly-iii
Go to file
chris f50fff0df9 up reqs 2022-07-04 14:54:49 +02:00
firefly fix transaction query 2021-09-21 14:19:24 +02:00
.gitignore gitignore pat 2020-10-26 10:42:20 +01:00
README.md first bot draft 2020-11-02 00:39:25 +01:00
budgetmail.py draw budget summary 2020-11-01 16:53:51 +01:00
budgetxmpp.py xmpp script 2020-11-01 16:53:51 +01:00
exporter.py support asset account balances 2020-10-25 21:02:18 +01:00
requirements-xmpp.txt self-contain reqs 2020-11-01 16:53:51 +01:00
requirements-xmppbot.txt up reqs 2022-07-04 14:54:49 +02:00
requirements.txt up reqs 2022-07-04 14:47:10 +02:00
xmppbot.py line breaks 2020-11-05 16:37:01 +01:00

README.md

Budget Exporter

Export Firefly-iii budget data for prometheus consumption.

Usage

Install Flask and requests in your python environment:

pip install -r requirements.txt

Create a personal access token in your firefly installation:

Go to https://your-firefly-installation/profile , create a token and copy the (very long) string.

Put your personal access token and your API host in your environment:

export FIREFLY_PERSONAL_ACCESS_TOKEN="abcd.....1234"
export FIREFLY_API_HOST="https://your-firefly-installation"

Run the exporter:

FLASK_APP=exporter.py python -m flask run -h 127.0.0.1 -p 5000

Now scrape /metrics on port localhost:5000.

Docker

Or use the prebuilt docker image:

docker run -e FIREFLY_API_HOST="https://your-firefly-installation" -e FIREFLY_PERSONAL_ACCESS_TOKEN="abcd....1234" -p 9449:5000 zknt/firefly-exporter

and scrape port 9449 on your docker host.

XMPP Bot

There is a simple XMPP / Jabber bot which responds to budget queries.

Installation

Install requirements:

pip install -r requirements-xmppbot.txt

Use your personal access token from above, setting the following variables to your environment:

export FIREFLY_JABBER_ID="firefly@example.com"  # The bots JID
export FIREFLY_JABBER_PASSWORD="abcd...1234"    # The bots xmpp password
export FIREFLY_API_HOST="https://yout-firefly-installation"
export FIREFLY_PERSONAL_ACCESS_TOKEN="1234...abcd"

Preparation

Register a XMPP / Jabber account for your bot. Caveat: The bot does not support E2E and handles your financial data, so make sure the account resides on the same server as your personal account which you will use for querying.

Log into your bot account with a XMPP client and add your personal JID to your roster. Querying will only work with a two-way subscription.

Bot usage

Run python xmppbot.py.

From your personal account, send a normal chat message to your bot. Available commands:

  • budgets - list all budgets names
  • budget <budget> - query data for given budget

Docker

Run the prebuilt image:

docker run -e FIREFLY_JABBER_ID="firefly@example.com" -e FIREFLY_JABBER_PASSWORD="abcd...1234" -e FIREFLY_API_HOST="https://yout-firefly-installation" -e FIREFLY_PERSONAL_ACCESS_TOKEN="1234...abcd" zknt/firefly-xmppbot