socktop-webterm/files/profiles.json.example

70 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

{
"profiles": {
"rpi-master": {
"name": "Raspberry Pi Master",
"host": "192.168.1.100",
"port": 3000,
"auth": {
"type": "ssh_key",
"username": "pi",
"key_path": "~/.config/socktop/rpi-master.pem"
},
"tags": ["production", "master", "rpi"],
"color": "#a6d189"
},
"rpi-worker-1": {
"name": "Raspberry Pi Worker 1",
"host": "192.168.1.101",
"port": 3000,
"auth": {
"type": "ssh_key",
"username": "pi",
"key_path": "~/.config/socktop/rpi-worker-1.pem"
},
"tags": ["production", "worker", "rpi"],
"color": "#8caaee"
},
"rpi-worker-2": {
"name": "Raspberry Pi Worker 2",
"host": "192.168.1.102",
"port": 3000,
"auth": {
"type": "ssh_key",
"username": "pi",
"key_path": "~/.config/socktop/rpi-worker-2.pem"
},
"tags": ["production", "worker", "rpi"],
"color": "#ca9ee6"
},
"rpi-worker-3": {
"name": "Raspberry Pi Worker 3",
"host": "192.168.1.103",
"port": 3000,
"auth": {
"type": "ssh_key",
"username": "pi",
"key_path": "~/.config/socktop/rpi-worker-3.pem"
},
"tags": ["production", "worker", "rpi"],
"color": "#ef9f76"
},
"local": {
"name": "Local Agent",
"host": "localhost",
"port": 3001,
"auth": {
"type": "none"
},
"tags": ["local", "dev"],
"color": "#e5c890"
}
},
"default_profile": "local",
"settings": {
"refresh_interval": 1000,
"theme": "catppuccin-frappe",
"show_graphs": true,
"compact_mode": false
}
}