Entities
An entity is something that exists - a "thing", like a VM, or a Container is an entity. OliveTin allows you to then dynamically generate actions based around these entities.
This is really useful if you want to generate wake on lan or poweroff actions for server entities, for example.
A very popular use case that entities were designed for was for container entities - in a similar way you could generate start, stop, and restart container actions.
Entities are just loaded from files on disk. OliveTin watches these files for updates while it is running and refreshes dashboards, actions, and the Entities page when data changes.
Display names
Each entity instance needs a human-readable name in the UI. OliveTin picks the first matching string field from this list (case-insensitive field names):
title, name, id, hostname, host, label
If none of those fields contain a string value, the instance appears as Untitled Entity. Add one of those fields to every row in your entity file — for example title: My Vehicle or name: server1.
The chosen field is shown as the instance name in lists and dashboards. On the entity details page, it appears in the page heading; see Entity details page for which other fields are listed.
Live reload
-
Entity file content — when a watched data file is updated on disk, OliveTin reloads instances and notifies the web UI. No restart is required.
-
New entity types in
config.yaml— when you add a new entry underentities:and reload config, OliveTin starts watching that file without a full restart. -
Entity file path changes — when you change an entity’s file path in config and reload, OliveTin switches to the new file without a restart.
-
Removing or renaming entity types — restart OliveTin if you remove an entity definition or rename its type; otherwise stale entity data may remain in memory until restart.
|
On Docker Desktop for Windows, bind-mounted entity files may not trigger file-watch events when updated from the host (for example by a cron job writing through a volume). If live reload does not pick up changes, restart the container after updating the file, run OliveTin on Linux, or write the file in place on the same filesystem OliveTin watches. |
Entity data files can contain any fields you need. Those values are available in action templates as {{ .CurrentEntity.field }} — for example, {{ .CurrentEntity.status }} or {{ .CurrentEntity.hostname }}.
Entity field values are not sanitized for shell safety. If you substitute them into shell or shellAfterCompleted, OliveTin assumes the entity files are server-controlled and that you accept responsibility for that data. See Entity and .Env values are not shell-sanitized.
To control which fields appear in the Entities page table and entity details view, configure properties on the entity definition in config.yaml. See Entity properties for details.
To restrict which users may see an entity type (list, details, search, and related UI), list acls on the entity definition. See Access Control Lists (Entities section). Entity types with no acls stay unrestricted.
entities:
- file: /etc/OliveTin/containers.json
name: container
- file: /etc/OliveTin/servers.yaml
name: server
icon: ssh
acls:
- ops
properties:
- name: hostname
title: Hostname
- name: ip
title: IP
Entity Actions can only be used on Dashboards.
What’s Next?
Now that you understand entities, here’s how to use them effectively:
-
Configure entity properties - Choose which fields appear in the UI and API
-
Configure entity icons - Set an icon for each entity type
-
Create YAML entity files - Learn the YAML format for entity files
-
Create JSON entity files - Learn the JSON format for entity files
-
View entity examples - See complete examples of entity configurations
-
Use entities in dashboards - Combine entities with dashboards for dynamic action generation
-
Container control panel solution - See a complete example using container entities
-
Systemd control panel solution - See a complete example using systemd entities