No description
Find a file
2025-04-03 06:16:53 -06:00
roles/timelogger Adding output folder creation 2025-04-02 13:05:11 -06:00
.gitignore Initial commit 2025-04-02 11:10:34 -06:00
hosts.yml Initial commit 2025-04-02 11:10:34 -06:00
LICENSE Initial commit 2025-04-02 11:10:34 -06:00
README.md Adding readme 2025-04-03 06:16:53 -06:00
site.yml Initial commit 2025-04-02 11:10:34 -06:00
timelogger.yml Initial commit 2025-04-02 11:10:34 -06:00

Ansible-TimeLogger

Ansible Playbook to setup a service on a machine that records the time every second to an output file. This is useful for generating testing information on a set of machines. Outputs to the /opt/timelogger/timelogger file by default and is also accessible via journalctl.

Example

Execute playbook with needed variables to setup a server with the time logging service.

ansible-playbook -i hosts site.yml

---
# file: hosts

kvm:
  hosts:
    srv1:
      ansible_host: 10.10.10.14

  vars:
    ansible_user: ansible