Underlying targets and methods:
| Pattern | Method | Purpose |
|---|---|---|
| / | GET | Returns a HTML page with a form for key/value display and management |
| POST | Accept HTML form-based requests to modify the key/value store | |
| /*x | * | Catchall for 404 Not Found response |
| /favicon.ico | GET | Returns the application icon image |
| /healthz | GET | Returns a 204 when application is healthy |
| PUT | Overwrite default health check result | |
| /identity | GET | Return identify information as JSON |
| PUT | Modify identity information | |
| /kvs | GET | Returns the entire key/value store as JSON |
| POST | Add or overwrite a key/value pair | |
| /kvs/:key | DELETE | Remove a key/value pair (if present) |
| GET | Returns a key/value pair as JSON | |
| PUT | Sets the value associated with a key | |
| /metrics | GET | Prometheus-compatible metrics interface |
| /now | GET | Returns server time as JSON |
| /page-config | GET | Returns page configuration as JSON |
| PUT | Overwrite elements of the page configuration | |
| /sitemap | GET | Displays a summary of HTTP targets & methods (this page) |
| /status/:code | * | Forces the requested HTTP response code |
| /visible | GET | Check server visibility of target URLs |