destroy-session
Terminate a Consul session by its ID to release associated locks and resources. This tool is essential for managing distributed system states and ensuring cleanup.
Instructions
Destroy a session in Consul
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | ID of the session to destroy |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"default": "",
"description": "ID of the session to destroy",
"type": "string"
}
},
"type": "object"
}