...
No optional parameters | |
Description | Shuts down the server! |
Example URLS | |
Output example | {"status": "Shutting down server!"} |
No optional parameters | |
Description | Tells the config server to reload all configuration |
Example URLS | http://localhost:5300/restservices/admin/reloadconfiguration |
Output example | {"status": "Reloading all configuration"} |
No optional parameters | |
Description | Lists all services known to the config server with connection and status information |
Example URLS | |
Output example | [ ....... More services listed here ] |
...
Required parameter is a server. | |
Description | starts or stops a server with a given name |
Example URLS | http://localhost:5300/restservices/admin/startserver?server=useradmin1 |
Output example | {"status": "Starting server useradmin1"} |
http://server:port/restservices/admin/getconfigurationentries | |
No required paramaters | |
Description | Returns all configuration entries known to the config server |
Example URLS | http://localhost:5300/restservices/admin/getconfigurationentries |
Output example | [ ........ } |
...
http://server:port/restservices/admin/loggingevents?server=xx | |
Required server name | |
Description | Returns latest log entries for the given server stored in the log server memory |
Example URLS | http://localhost:5300/restservices/admin/loggingevents?server=configserver1 |
Output example | [ { .... ] |
http://server:port/restservices/admin/recentaccessedurls?server=xx | |
Required server name | |
Description | Returns latest accessed URLs for a dispatcher |
Example URLS | http://localhost:5300/restservices/admin/recentaccessedurls?server=dispatcher1 |
Output example | .... |
http://server:port/restservices/admin/updateconfigurationserverentry?server=xx&description=yy&extend=zz&type=kk | |
Required server name Optional description, extend and type | |
Description | Creates or updates a configuration server entry |
Example URLS | |
Output example | {"status": "ok"} |
http://server:port/restservices/admin/updateconfigurationgroupentry?server=xx&group=gg&description=yy | |
Required server and group name Optional description | |
Description | Creates or updates a configuration group entry under a server |
Example URLS | |
Output example | {"status": "ok"} |
http://server:port/restservices/admin/updateconfigurationproperty?server=xx&group=gg&key=kk&value=vv&description=yy | |
Required server, group, key name and value Optional description | |
Description | Creates or updates a configuration property entry under a server and group |
Example URLS | |
Output example | {"status": "ok"} |
http://server:port/restservices/admin/deleteconfigurationserverentry?server=ss http://server:port/restservices/admin/deleteconfigurationgroupentry?server=ss&group=gg http://server:port/restservices/admin/deleteconfigurationproperty?server=ss&group=gg&key=kk | |
Required server, group (group and property), key for property | |
Description | Deletes a server, group or single configuration property |
Example URLS | |
Output example | {"status": "ok"} |