The TorchServe Actuator plugin exposes Spring Actuator-like endpoints to retrieve basic information about running TorchServe instance. Allows monitoring the server using Spring Boot Admin.
Inspired by pyctuator
- /actuator/health
- Shows the state of the loaded models and their workers.
 
 - /actuator/health/${model_name}
- Shows the state of the specific model workers
 
 - /actuator/info
- Shows git information, if available, as well as plugin build info.
 
 
- 
Download the latest release JAR file from the Releases page of this repository.
 - 
Supply the path to a directory with a plugin either using CLI or
config.propertiesof a TorchServe instance: 
CLI:
torchserve
--start \
--model-store <model_store_dir> \
--plugins-path <plugin_dir>Config file:
# config.properties
...
plugins_path=<plugin_dir>