Overview
SystemInfo API is an API for retrieving Fess system information. You can view environment variables, Java system properties, Fess configuration properties, and bug report information.
Base URL
This API requires an access token with the Radmin-api permission. See Admin API Overview for authentication details.
Endpoint List
| Method | Path | Description |
|---|---|---|
| GET | / | Get system information |
Get System Information
Request
This endpoint accepts no query parameters.
Response
The response includes version indicating the product version, status indicating the processing result, and the following four property groups. Each property group is an array of objects that have label and value.
Response Fields
| Field | Description |
|---|---|
version | Fess product version (e.g. 15.7.0). |
status | Result code indicating the processing outcome. 0 means success. |
envProps | List of OS environment variables (array of label / value). Values are returned verbatim via System.getenv(). |
systemProps | List of Java system properties (array of label / value). Values are returned verbatim via System.getProperties(). |
fessProps | List of Fess configuration properties (array of label / value). Includes values from fess_config.properties and system properties set via the admin UI. Sensitive items are masked (see note below). |
bugReportProps | List of information collected for bug reports (array of label / value). Includes key OS and Java runtime system properties (os.name, os.version, java.vm.version, etc.) and Fess system property values. |
Note
In fessProps, the following sensitive configuration values are masked and returned as XXXXXXXX: http.proxy.password, ldap.admin.security.credentials, spnego.preauth.password, app.cipher.key, oic.client.id, oic.client.secret.
Warning
envProps (environment variables) and systemProps (Java system properties) are NOT masked — values are returned as-is. If secrets such as credentials are stored in environment variables or system properties, they will appear in the response.
Usage Examples
Get System Information
Extract a Specific System Property
List Environment Variables
Reference
Admin API Overview - Admin API Overview
Stats API - Stats API
General API - General Settings API
System Info - System Information Guide