Coder Social home page Coder Social logo

nextcloud-exporter's Introduction

nextcloud-exporter

A prometheus exporter for getting some metrics of a nextcloud server instance.

Installation

Docker Image

The preferred way to use nextcloud-exporter is by running the provided Docker image. It is currently provided on Docker Hub and GitHub Container Registry:

docker pull ghcr.io/xperimental/nextcloud-exporter:latest
docker pull xperimental/nextcloud-exporter:latest

In addition to the latest tag which points to the version currently in the master branch, tagged versions are also available.

From Source

If you have a recent (>= 1.16) working Go installation and GNU Make, getting the binary should be as simple as

git clone https://github.com/xperimental/nextcloud-exporter.git
cd nextcloud-exporter
make

After this there should be a nextcloud-exporter binary in your current directory.

Client credentials

The exporter supports two different approaches for authenticating with the Nextcloud server:

  • Token authentication (needs Nextcloud 22 or newer)
  • Username and password

If you have Nextcloud 22 then using the token authentication is recommended, because it does not need a normal user account with admin privileges.

If both a token and username/password are specified in the configuration, the token will take precedence.

Token authentication

Nextcloud 22 and newer versions support "token authentication" for the serverinfo. That way, accessing this information does not need a normal user account with admin privileges. You can set the token to anything you like, but the recommendation is to set it to a long random number:

# Generate random value (for example using openssl)
TOKEN=$(openssl rand -hex 32)
# Set token (using the occ console application)
occ config:app:set serverinfo token --value "$TOKEN"

You can then use this generated token in the exported configuration instead of username and password.

Username and password authentication

To access the serverinfo API you will need the credentials of an admin user. It is recommended to create a separate user for that purpose. It's also possible for the exporter to generate an "app password", so that the real user password is never saved to the configuration. This also makes the exporter show up in the security panel of the user as a connected application.

To let the nextcloud-exporter create an app password, start it with the --login parameter:

nextcloud-exporter --login --server https://nextcloud.example.com

The exporter will generate a login URL that you need to open in your browser. Be sure to login with the correct user if you created a special user for the exporter as the app password will be bound to the logged-in user. Once the access has been granted using the browser the exporter will output the username and password that need to be entered into the configuration.

When the login process is done, it is possible to disable filesystem access for the generated token in the user's settings:

Allow filesystem access checkbox


The interactive login can also be done using a Docker container:

docker run --rm -it ghcr.io/xperimental/nextcloud-exporter --login --server https://nextcloud.example.com

The login flow needs at least Nextcloud 16 to work.

Usage

$ nextcloud-exporter --help
Usage of nextcloud-exporter:
  -a, --addr string          Address to listen on for connections. (default ":9205")
      --auth-token string    Authentication token. Can replace username and password when using Nextcloud 22 or newer.
  -c, --config-file string   Path to YAML configuration file.
      --login                Use interactive login to create app password.
  -p, --password string      Password for connecting to Nextcloud.
  -s, --server string        URL to Nextcloud server.
  -t, --timeout duration     Timeout for getting server info document. (default 5s)
      --tls-skip-verify      Skip certificate verification of Nextcloud server.
  -u, --username string      Username for connecting to Nextcloud.
  -V, --version              Show version information and exit.

After starting the server will offer the metrics on the /metrics endpoint, which can be used as a target for prometheus.

Configuration methods

There are three methods of configuring the nextcloud-exporter (higher methods take precedence over lower ones):

  • Environment variables
  • Configuration file
  • Command-line parameters

Environment variables

All settings can also be specified through environment variables:

Environment variable Flag equivalent
NEXTCLOUD_SERVER --server
NEXTCLOUD_USERNAME --username
NEXTCLOUD_PASSWORD --password
NEXTCLOUD_AUTH_TOKEN --auth-token
NEXTCLOUD_LISTEN_ADDRESS --addr
NEXTCLOUD_TIMEOUT --timeout
NEXTCLOUD_TLS_SKIP_VERIFY --tls-skip-verify

Configuration file

The --config-file option can be used to read the configuration options from a YAML file:

# required
server: "https://example.com"
# required for token authentication
authToken: "example-token"
# required for username/password authentication
username: "example"
password: "example"
# optional
listenAddress: ":9205"
timeout: "5s"
tlsSkipVerify: false

Loading Credentials from Files

Both the authentication token and the password can optionally be read from a separate file instead of directly from the input methods above.

This can be achieved by setting the value to the path of the file prefixed with an "@", for example:

# Authentication token
nextcloud-exporter -c config-without-token.yml --auth-token @/path/to/tokenfile
# Password
nextcloud-exporter -c config-without-password.yml -p @/path/to/passwordfile

This also works when the password or token is set using one of the other configuration modes (configuration file or environment variables).

Other information

Info URL

The exporter reads the metrics from the Nextcloud server using its "serverinfo" API. You can find the URL of this API in the administrator settings in the "Monitoring" section. It should look something like this:

https://example.com/ocs/v2.php/apps/serverinfo/api/v1/info

The path will be automatically added to the server URL you provide, so in the above example setting --server https://example.com would be sufficient.

If you open this URL in a browser you should see an XML structure with the information that will be used by the exporter.

Scrape configuration

The exporter will query the nextcloud server every time it is scraped by prometheus. If you want to reduce load on the nextcloud server you need to change the scrape interval accordingly:

scrape_configs:
  - job_name: 'nextcloud'
    scrape_interval: 90s
    static_configs:
      - targets: ['localhost:9205']

Exported metrics

These metrics are exported by nextcloud-exporter:

name description
nextcloud_active_users_daily_total Number of active users in the last 24 hours
nextcloud_active_users_hourly_total Number of active users in the last hour
nextcloud_active_users_total Number of active users for the last five minutes
nextcloud_apps_installed_total Number of currently installed apps
nextcloud_apps_updates_available_total Number of apps that have available updates
nextcloud_database_info Contains meta information about the database as labels. Value is always 1.
nextcloud_database_size_bytes Size of database in bytes as reported from engine
nextcloud_exporter_info Contains meta information of the exporter. Value is always 1.
nextcloud_files_total Number of files served by the instance
nextcloud_free_space_bytes Free disk space in data directory in bytes
nextcloud_php_info Contains meta information about PHP as labels. Value is always 1.
nextcloud_php_memory_limit_bytes Configured PHP memory limit in bytes
nextcloud_php_upload_max_size_bytes Configured maximum upload size in bytes
nextcloud_scrape_errors_total Counts the number of scrape errors by this collector
nextcloud_shares_federated_total Number of federated shares by direction sent / received
nextcloud_shares_total Number of shares by type:
authlink: shared password protected links
group: shared groups
link: all shared links
user: shared users
mail: shared by mail
room: shared with room
nextcloud_system_info Contains meta information about Nextcloud as labels. Value is always 1.
nextcloud_up Indicates if the metrics could be scraped by the exporter:
1: successful
0: unsuccessful (server down, server/endpoint not reachable, invalid credentials, ...)
nextcloud_users_total Number of users of the instance

nextcloud-exporter's People

Contributors

fieteboerner avatar horaynarea avatar j0wi avatar jacksgt avatar mrueg avatar noerw avatar potager avatar simske avatar spearki avatar willibutz avatar xperimental avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.