Sha256: d94ddeb5212a8fca3c3cca0d6a4668bd71a3d24ef3249b5386da0241dbb05179

Contents?: true

Size: 1.3 KB

Versions: 7

Compression:

Stored size: 1.3 KB

Contents

name: Test Application

config:
  logger: /path/to/log/eye.log

application:
  working_dir: /path/to/application

notifications:
  - name: monitoring
    type: jabber
    level: info
    contact: test+admin@example.com
    config:
      from: test+notifier@example.com

triggers:
  - name: flapping
    config:
      times: 10
      within: 1 minute

checks:
  - name: memory
    config:
      times: 3
      every: 20 seconds
      below: 1.5 gigabytes

processes:
  - name: my-process
    config:
      start_timeout: 25 seconds
      start_command: bundle exec my-process
      pid_file: tmp/pids/my-process.pid
      stdall: log/my-process.log
      monitor_children:
        checks:
          - name: memory
            config:
              times: 2
              every: 10 seconds
              below: 512 megabytes
  - name: first-grouped-process
    group: my-group
    config:
      start_command: bundle exec grouped-process
      pid_file: tmp/pids/first-grouped-process.pid
  - name: second-grouped-process
    group: my-group
    config:
      start_command: bundle exec grouped-process
      pid_file: tmp/pids/second-grouped-process.pid
  - name: clustered-process
    group: cluster
    count: 2
    config:
      start_command: bundle exec clustered-process
      pid_file: "tmp/pids/clustered-process-{ID}.pid"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
eye-patch-1.1.0 test/fixtures/test.yml
eye-patch-1.0.1 test/fixtures/test.yml
eye-patch-1.0.0 test/fixtures/test.yml
eye-patch-0.5.1 test/fixtures/test.yml
eye-patch-0.5.0 test/fixtures/test.yml
eye-patch-0.4.2 test/fixtures/test.yml
eye-patch-0.4.1 test/fixtures/test.yml