No description
Find a file
Simon Rieger dcc878e96f
Some checks failed
Run tests / test (push) Has been cancelled
Release / release (push) Has been cancelled
add arm64 support
2024-09-22 01:19:37 +02:00
.github Bump hansmi/ghactions-goreleaser-workflow from 0.2 to 0.3 2024-08-09 22:23:48 +02:00
contrib Add a docker-compose example for using the exporter 2024-01-06 10:07:20 +01:00
internal Initial commit 2023-07-03 00:16:08 +02:00
.gitignore Initial commit 2023-07-03 00:16:08 +02:00
.goreleaser.yml add arm64 support 2024-09-22 01:19:37 +02:00
collector.go Initial commit 2023-07-03 00:16:08 +02:00
collector_test.go Initial commit 2023-07-03 00:16:08 +02:00
correspondent.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
correspondent_test.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
documenttype.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
documenttype_test.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
go.mod Bump github.com/prometheus/client_golang from 1.19.1 to 1.20.2 2024-09-01 11:27:22 +02:00
go.sum Bump github.com/prometheus/client_golang from 1.19.1 to 1.20.2 2024-09-01 11:27:22 +02:00
LICENSE Initial commit 2023-07-03 00:16:08 +02:00
log.go Initial commit 2023-07-03 00:16:08 +02:00
log_test.go Initial commit 2023-07-03 00:16:08 +02:00
main.go Bump github.com/prometheus/common from 0.49.0 to 0.50.0 2024-03-12 21:36:04 +01:00
multicollector.go Log message after collecting metrics failed 2024-06-05 21:07:25 +02:00
README.md Document different admin access in Paperless 2.8 and newer 2024-05-14 19:52:33 +02:00
storagepath.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
storagepath_test.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
tag.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
tag_test.go Bump github.com/hansmi/paperhooks from 0.0.3 to 0.0.4 2023-07-27 00:14:04 +02:00
task.go Initial commit 2023-07-03 00:16:08 +02:00
task_test.go Initial commit 2023-07-03 00:16:08 +02:00

Paperless-ngx metrics for Prometheus

Latest release Release workflow CI workflow Go reference

This repository hosts a Prometheus metrics exporter for Paperless-ngx, a document management system transforming physical documents into a searchable online archive. The exporter relies on Paperless' REST API.

An implementation using the API was chosen to provide the same perspective as web browsers.

Usage

prometheus-paperless-exporter listens on TCP port 8081 by default. To listen on another address use the -web.listen-address flag (e.g. -web.listen-address=127.0.0.1:3000).

TLS and HTTP basic authentication is supported through the Prometheus exporter toolkit. A configuration file can be passed to the -web.config flag (documentation).

See the --help output for more flags.

Permissions

Since late 2023 Paperless-ngx supports object permissions. The metrics user requires view permissions on the following types:

  • Admin
    • Required for log analysis.
    • Starting with version 2.8 there is no distinction between different access modes (paperless-ngx#6380).
  • Correspondent
  • Document
  • DocumentType
  • PaperlessTask
  • StoragePath
  • Tag

Installation

Pre-built binaries are provided for all releases:

  • Binary archives (.tar.gz)
  • Debian/Ubuntu (.deb)
  • RHEL/Fedora (.rpm)
  • Microsoft Windows (.zip)

Docker images via GitHub's container registry:

docker pull ghcr.io/hansmi/prometheus-paperless-exporter

With the source being available it's also possible to produce custom builds directly using Go or GoReleaser.

Docker Compose

An example configuration for Docker Compose is available in contrib/docker-compose:

env --chdir contrib/docker-compose docker-compose up