config.yaml 755 B

123456789101112131415161718192021222324252627282930313233343536
  1. logLevel: debug
  2. actions:
  3. - title: Ping
  4. shell: echo "Ping executed"
  5. icon: ping
  6. - title: Action 1
  7. shell: echo "Action 1 executed"
  8. icon: check
  9. - title: Action 2
  10. shell: echo "Action 2 executed"
  11. icon: check
  12. - title: Action 3
  13. shell: echo "Action 3 executed"
  14. icon: check
  15. - title: Action 4
  16. shell: echo "Action 4 executed"
  17. icon: check
  18. dashboards:
  19. - title: Test
  20. contents:
  21. # Uncomment to see the dashboard with the "Ping" action only
  22. - title: Ping
  23. - title: Fieldset 1
  24. type: fieldset
  25. contents:
  26. - title: Action 1
  27. - title: Action 2
  28. - title: Fieldset 2
  29. type: fieldset
  30. contents:
  31. - title: Action 3
  32. - title: Action 4