Why use Systemplane
In a traditional deployment, changing a configuration value means updating environment variables and restarting the service. Systemplane eliminates that downtime for many settings:
- Adjust rate limits during traffic spikes without a redeploy — avoiding service disruption during peak transaction volumes
- Tune worker intervals based on observed workload — optimizing reconciliation throughput without touching infrastructure
- Update connection pool sizes as traffic patterns change
- Inspect current runtime values to diagnose production issues without log diving
How it works
Systemplane provides a flat key-value management API. All configuration keys are in a single namespace under
/system/matcher.
Endpoints
These endpoints are served directly by the running Matcher instance. They are not versioned under
/v1 — use the paths above exactly as shown.Permissions
Systemplane endpoints are protected by the same authentication used by all Matcher API routes. When authentication is enabled, all
/system endpoints require the system-runtime-config:admin RBAC permission (resource system-runtime-config, action admin).
When authentication is disabled, all endpoints are accessible without restriction.
Apply behaviors
Not every configuration value can be changed at runtime. Each key has an apply behavior that tells you when changes take effect:
Keys that are bootstrap-only are NOT registered in the systemplane API — they are managed exclusively through environment variables. This prevents a footgun where an admin PUT would appear to succeed but the running process would silently continue using the boot-time value.
Common configuration keys
Below are the most commonly adjusted keys, organized by category. For a complete list, call
GET /system/matcher.
Runtime-adjustable keys
These keys can be changed without restarting Matcher:Multi-tenant keys (runtime adjustable)
These keys control multi-tenant behavior and can be adjusted without restart. See Multi-Tenant Mode for details.Enabling multi-tenant mode itself (
tenancy.multi_tenant_enabled / MULTI_TENANT_ENABLED) is bootstrap-only — it is read once at startup and requires a restart. It is not registered in the Systemplane API and cannot be toggled at runtime. See the bootstrap-only table below.Bootstrap-only keys (require restart)
These keys are not registered in the systemplane API. Change them via environment variables and restart:Best practices
Inspect current values before changing
Inspect current values before changing
Call
GET /system/matcher to see all current runtime values before making any changes. This confirms what the process is actually using, which may differ from environment variables if previous PUT calls were made.Test changes in staging first
Test changes in staging first
Even though runtime changes don’t require a restart, they take effect immediately. Test in a staging environment before applying to production.
Restart for bootstrap-only keys
Restart for bootstrap-only keys
If a key is not visible in
GET /system/matcher, it is bootstrap-only. Update the environment variable and restart the service — there is no runtime path for those values.Next steps
Multi-tenant mode
Enable and configure tenant isolation.
Exception routing
Configure how exceptions are dispatched to external systems.
Match rules
Configure transaction matching rules.
Security
Authentication, authorization, and data protection.

