nextcloud-exporter

所属分类:hotest
开发工具:GO
文件大小:0KB
下载次数:0
上传日期:2023-06-19 19:08:08
上 传 者sh-1993
说明:  用于Nextcloud服务器的Prometheus导出器。,
(Prometheus exporter for Nextcloud servers.,)

文件列表:
.bingo/ (0, 2023-10-15)
.bingo/Variables.mk (1537, 2023-10-15)
.bingo/bingo.mod (128, 2023-10-15)
.bingo/bingo.sum (3705, 2023-10-15)
.bingo/go.mod (148, 2023-10-15)
.bingo/golangci-lint.mod (158, 2023-10-15)
.bingo/golangci-lint.sum (91798, 2023-10-15)
.bingo/variables.env (449, 2023-10-15)
.dockerignore (10, 2023-10-15)
.editorconfig (246, 2023-10-15)
.golangci.yaml (33, 2023-10-15)
CHANGELOG.md (2422, 2023-10-15)
Dockerfile (622, 2023-10-15)
LICENSE (1079, 2023-10-15)
Makefile (1398, 2023-10-15)
contrib/ (0, 2023-10-15)
contrib/allow-filesystem.png (13065, 2023-10-15)
contrib/debian/ (0, 2023-10-15)
contrib/debian/control (521, 2023-10-15)
contrib/nextcloud-exporter.service (428, 2023-10-15)
go.mod (742, 2023-10-15)
go.sum (4628, 2023-10-15)
internal/ (0, 2023-10-15)
internal/client/ (0, 2023-10-15)
internal/client/client.go (1554, 2023-10-15)
internal/client/client_test.go (3865, 2023-10-15)
internal/config/ (0, 2023-10-15)
internal/config/config.go (7262, 2023-10-15)
internal/config/config_test.go (7774, 2023-10-15)
internal/config/testdata/ (0, 2023-10-15)
internal/config/testdata/all.yml (107, 2023-10-15)
internal/config/testdata/authtoken.yml (47, 2023-10-15)
... ...

# nextcloud-exporter A [prometheus](https://prometheus.io) exporter for getting some metrics of a [Nextcloud](https://nextcloud.com/) 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: - [`ghcr.io/xperimental/nextcloud-exporter`](https://github.com/xperimental/nextcloud-exporter/pkgs/container/nextcloud-exporter) - [`xperimental/nextcloud-exporter`](https://hub.docker.com/r/xperimental/nextcloud-exporter/) The following tags are available: - `x.y.z` pointing to the release with that version - `latest` pointing to the most recent released version - `master` pointing to the latest build from the default branch ### Build from Source If you have a recent (>= 1.16) working Go installation and GNU Make, getting the binary should be as simple as ```bash 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: ```bash # 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: ```bash 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](contrib/allow-filesystem.png) --- The interactive login can also be done using a Docker container: ```bash 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 ```plain $ 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: ```yaml # 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: ```bash # 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: ```plain 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: ```yml 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 |

近期下载者

相关文件


收藏者