Telepathy is a lightweight automation tool.
The key aspects that this tool has been designed for:
This tool is designed to have a very low memory, CPU and disk footprint. (less than 50MB for both server and agent while idle). There is no database needed as well. The application is not designed for real time responsiness.
No specific language or plugin system to learn and use. Telepathy uses the system shell (typically: bash). Most commands can be automated with bash and this is the main way to execute code. If more is needed: more utilities can be installed at the system level and packaged together in a Docker images.
More functions will be added with time but the core philosophy of this application is to remove all the unnecessary features. If a function can be simply automated with bash or Docker/Kubernetes it will probably not be added to the application.
- Server: Stores the data, schedules the tasks to be executed, API for the web interface
- Agent: Executes the tasks
Server and Agents need a configuration file.
Note: the server also bundle an agent so both agent and server parameters are supported
config.json:
{
"CORS_POLICY_ORIGIN": "a_domain", // Authorized domain for the user interface. Default: same as Server
"DATA_DIR": "/data", // Directory where data are saved. Default: Current directory
"AGENT_KEY": "TO_CHANGE", // Key needed for Agents to connect to Server
"JWT_KEY": "TO_CHANGE", // Key use to encode JWT tokent. Default: random
"JWT_VALIDITY_DURATION": 604800, // Validity duration (in seconds) of the JWT token. Default: 604800 (1 week)
"TASK_HISTORY_MAX_COUNT": 100, // Maximium number of execution kept. Detault: 100
"TASK_HISTORY_MAX_AGE_DAYS": 30, // Maximum age (in days) of execution kept. Default: 30 days
"AGENT_REGISTRATION_DURATION": 1800 // Durration (in seconds) that agent are considered as connected. Default: 1800 (30 min)
}
The path of the configuration file must be given with the environment vairiable: TELEPATHY_CONFIG
config.json:
{
"AGENT_ID": "agent_name", // Name of the agent. Default: hostname
"SERVER": "http://localhost:8080", // Url of the server
"HEARTBEAT_CYCLE": 60, // Frequency (in seconds) at which the agent will connect to the server. Default: 60
"AGENT_ENABLE": true // Enable the agent (can be used to disable the agent provided by default with the server)
"AGENT_KEY": "TO_CHANGE", // Key needed for Agents to connect to Server (must be same as the one defined on the Server)
"TAGS": ["linux_x86", "cloud"] // Tags associated to this agent. Default: [] (no tag)
}
The path of the configuration file must be given with the environment vairiable: TELEPATHY_CONFIG
The services can be executed either
- From Docker images (recommended)
- From the binaries (for some agents)
- From the source code (not recommended)
Images are available on Docker Hub:
- https://hub.docker.com/r/didierhoarau/telepathy
- https://hub.docker.com/r/didierhoarau/telepathy-agent
Example of Kubernetes confirmation:
Binary are available only for agent for now. Server and Web Interface have to be deployed with Docker or source
Binary are available in the release files: [https://github.com/DidierHoarau/telepathy/releases]
Syntax:
TELEPATHY_CONFIG=./config-agent.json
./telepathy-agent
git clone https://github.com/DidierHoarau/telepathy
cd telepathy
# Server
cd telepathy-server
npm ci
npm build
TELEPATHY_CONFIG=../../config-agent.json node dist/app.js &
# Agent
cd ../telepathy-agent
npm ci
npm build
TELEPATHY_CONFIG=../../config-agent.json node dist/app.js &
# Web
cd ../telepathy-web
npm ci
npm run dev &
For the Server, on Ubuntu x64 or arm64
sudo apt-get install build-essential g++