No description
  • JavaScript 81.2%
  • PHP 13.4%
  • Vue 4.2%
  • TypeScript 0.6%
  • CSS 0.6%
Find a file
Nextcloud bot 25cfcf8af0
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-07-17 01:57:59 +00:00
.github ci: Disable npm-audit-fix on stable34 2026-07-09 11:43:25 +02:00
.tx [tx-robot] Update transifex configuration 2022-09-30 11:22:48 +00:00
appinfo feat: Vue 2026-07-08 23:23:48 +02:00
css feat: Vue 2026-07-08 23:23:48 +02:00
img removed custom svg icons and added nextcloud core icons to section headers 2020-03-18 13:19:09 +01:00
js fix(deps): Fix npm audit 2026-07-09 09:33:01 +00:00
l10n fix(l10n): Update translations from Transifex 2026-07-17 01:57:59 +00:00
lib feat: Add support for hwmon sensors 2026-07-08 23:23:48 +02:00
LICENSES feat: Vue 2026-07-08 23:23:48 +02:00
src feat: Vue 2026-07-08 23:23:48 +02:00
templates feat: Vue 2026-07-08 23:23:48 +02:00
tests feat: Vue 2026-07-08 23:23:48 +02:00
vendor-bin chore: Require PHP 8.3 2026-06-16 23:47:16 +02:00
.git-blame-ignore-revs chore: ignore code style changes in git blame 2024-09-22 16:34:32 +02:00
.gitattributes feat: Vue 2026-07-08 23:23:48 +02:00
.gitignore feat: Vue 2026-07-08 23:23:48 +02:00
.nextcloudignore feat: Vue 2026-07-08 23:23:48 +02:00
.php-cs-fixer.dist.php chore: add vendor-bin 2025-04-01 18:43:12 +02:00
AUTHORS.md chore: Add SPDX header 2024-05-09 16:03:27 +02:00
composer.json chore: Require PHP 8.3 2026-06-16 23:47:16 +02:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-07-12 05:34:28 +00:00
COPYING initial commit of some boilerplate code 2016-07-21 15:00:26 +02:00
eslint.config.mjs feat: Vue 2026-07-08 23:23:48 +02:00
package-lock.json fix(deps): Fix npm audit 2026-07-09 09:33:01 +00:00
package.json feat: Vue 2026-07-08 23:23:48 +02:00
psalm.xml chore: Require PHP 8.3 2026-06-16 23:47:16 +02:00
README.md fix: update wording about apps element in monitoring response 2024-06-24 18:41:06 +02:00
REUSE.toml feat: Vue 2026-07-08 23:23:48 +02:00
vite.config.mjs feat: Vue 2026-07-08 23:23:48 +02:00

Monitoring

REUSE status

This apps provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc. Check out the provided Example XML output for the details.

The admin can look up this information directly in Nextcloud (Settings -> Management-> Information) or connect an external monitoring tool to the provided end-points.

Installation

This app is part of the standard Nextcloud package and can be found in the directory nextcloud/apps/serverinfo

API

The API provides a lot of information about a running Nextcloud instance in XML or JSON format by using the following URL.

https://<nextcloud-fqdn>/ocs/v2.php/apps/serverinfo/api/v1/info
  • To request the information in JSON append the url parameter format=json
  • Use the url parameter skipUpdate=true to omit server updates.
  • Use the url parameter skipApps=true to omit app updates (including available app updates will send an external request to the app store).

Example XML output:

<?xml version="1.0"?>
<ocs>
	<meta>
		<status>ok</status>
		<statuscode>200</statuscode>
		<message>OK</message>
	</meta>
	<data>
		<nextcloud>
			<system>
				<version>30.0.0.1</version>
				<theme/>
				<enable_avatars>yes</enable_avatars>
				<enable_previews>yes</enable_previews>
				<memcache.local>OC\Memcache\APCu</memcache.local>
				<memcache.distributed>none</memcache.distributed>
				<filelocking.enabled>yes</filelocking.enabled>
				<memcache.locking>OC\Memcache\Redis</memcache.locking>
				<debug>no</debug>
				<freespace>48472801280</freespace>
				<cpuload>
					<element>1.81</element>
					<element>1.39</element>
					<element>1.24</element>
				</cpuload>
				<mem_total>8183664</mem_total>
				<mem_free>5877568</mem_free>
				<swap_total>0</swap_total>
				<swap_free>0</swap_free>
				<apps>
					<!-- only with skipApps=false -->
					<num_installed>53</num_installed>
					<num_updates_available>1</num_updates_available>
					<app_updates>
						<files_antivirus>2.0.1</files_antivirus>
					</app_updates>
				</apps>
				<update>
					<!-- only with skipUpdate=false -->
					<lastupdatedat>1719244666</lastupdatedat>
					<available/>
				</update>
			</system>
			<storage>
				<num_users>7</num_users>
				<num_files>708860</num_files>
				<num_storages>125</num_storages>
				<num_storages_local>7</num_storages_local>
				<num_storages_home>7</num_storages_home>
				<num_storages_other>111</num_storages_other>
			</storage>
			<shares>
				<num_shares>1</num_shares>
				<num_shares_user>0</num_shares_user>
				<num_shares_groups>0</num_shares_groups>
				<num_shares_link>0</num_shares_link>
				<num_shares_link_no_password>0</num_shares_link_no_password>
				<num_fed_shares_sent>0</num_fed_shares_sent>
				<num_fed_shares_received>0</num_fed_shares_received>
				<permissions_4_1>1</permissions_4_1>
			</shares>
		</nextcloud>
		<server>
			<webserver>Apache/2.4</webserver>
			<php>
				<version>7.2.14</version>
				<memory_limit>536870912</memory_limit>
				<max_execution_time>3600</max_execution_time>
				<upload_max_filesize>535822336</upload_max_filesize>
			</php>
			<database>
				<type>mysql</type>
				<version>10.2.21</version>
				<size>331382784</size>
			</database>
		</server>
		<activeUsers>
			<last5minutes>2</last5minutes>
			<last1hour>4</last1hour>
			<last24hours>5</last24hours>
		</activeUsers>
	</data>
</ocs>

Example JSON output:

{"ocs":{"meta":{"status":"ok","statuscode":200,"message":"OK"},"data":{"nextcloud":{"system":{"version":"30.0.0.1","theme":"","enable_avatars":"yes","enable_previews":"yes","memcache.local":"OC\\Memcache\\APCu","memcache.distributed":"none","filelocking.enabled":"yes","memcache.locking":"OC\\Memcache\\Redis","debug":"no","freespace":48472944640,"cpuload":[0.84999999999999997779553950749686919152736663818359375,1.04000000000000003552713678800500929355621337890625,1.1699999999999999289457264239899814128875732421875],"mem_total":8183664,"mem_free":5877156,"swap_total":0,"swap_free":0,"apps":{"num_installed":53,"num_updates_available":1,"app_updates":{"files_antivirus":"2.0.1"}}},"storage":{"num_users":7,"num_files":708860,"num_storages":125,"num_storages_local":7,"num_storages_home":7,"num_storages_other":111},"shares":{"num_shares":1,"num_shares_user":0,"num_shares_groups":0,"num_shares_link":0,"num_shares_link_no_password":0,"num_fed_shares_sent":0,"num_fed_shares_received":0,"permissions_4_1":"1"}},"server":{"webserver":"Apache\/2.4","php":{"version":"7.2.14","memory_limit":536870912,"max_execution_time":3600,"upload_max_filesize":535822336},"database":{"type":"mysql","version":"10.2.21","size":331382784}},"activeUsers":{"last5minutes":2,"last1hour":3,"last24hours":5}}}}

Configuration

Background job to update storage statistics

Since collecting storage statistics might take time and cause slow downs, they are updated in the background. A background job runs once every three hours to update the number of storages and files. The interval can be overridden per app settings (the value is specified in seconds):

php occ config:app:set --value=3600 serverinfo job_interval_storage_stats

It is also possible to trigger the update manually per occ call. With verbose mode enabled, the current values are being printed.

php occ serverinfo:update-storage-statistics -v --output=json_pretty
{
    "num_users": 80,
    "num_files": 3934,
    "num_storages": 2545,
    "num_storages_local": 2,
    "num_storages_home": 2510,
    "num_storages_other": 33
}
Restricted mode (>= Nextcloud 28)

To obtain information about your server, the serverinfo app reads files outside the application directory (e.g. /proc on Linux) or executes shell commands (e.g. df on Linux).

If you don't want that (for example, to avoid open_basedir warnings) enable the restricted mode.

Enable:

php occ config:app:set --value=yes serverinfo restricted_mode

Disable:

php occ config:app:delete serverinfo restricted_mode

Show phpinfo (>= Nextcloud 28)

Enable:

php occ config:app:set --value=yes serverinfo phpinfo

Disable:

php occ config:app:delete serverinfo phpinfo