hfm

module
v1.2.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2016 License: BSD-2-Clause

README

hfm (High Frequency Monitor) hfm mascot

hfm is an application to run tests in parallel at a high frequency. If the outcome of the test results in a state change, other commands can be executed.

It is designed to be a general purpose, loosely-coupled tool, by having both the tests and the state change commands be executed by the operating system. For example, one could write the test in shell or c, and have it called through the exec facility.

In practice, the overhead of spawning a new process per test limits frequency that can be achieved by the tests, and their results. Anecdotally, 5ms intervals have been seen to be achievable.

An example application is to poll other network services for health, and to take actions based on their health status changes.

Design

hfm is not currently a real-time monitor.

Scheduling is managed using Go's time.Sleep, which currently only guarantees it "pauses the current goroutine for at least the duration d". Therefore tests will run by "at least" the interval you specify. Scheduling in this way ensures that we are not creating a backlog (or flood) of tests, should a test execute for longer than the specified interval.

This may give a false confidence about any statistics that are generated by the system, due to Coordinated Omission.

Architecture

Architecture Diagram

The control loop spawns one rule driver per rule. The driver takes care of all of the bookkeeping of the rule for its lifetime. Each test is run as a heavyweight OS process, which can limit the actual frequency that tests can run at. Additionally, the state change commands are run as a heavyweight OS process, and are just spawned at the rate they are needed. High-frequency state changes may become a problem, as the spawn rate is not throttled, nor are these child processes monitored. Debouncing the state change may help to alleviate this.

Building

hfm currently uses gb (verison 0.4.0 and up) to build.

Try make for hints.

There's a patch-local-go-libucl make target that will allow you to use the locally installed libucl vs. a vendorized version.

There is a new repo for packaging related updates.

FreeBSD

hfm is available in the ports tree as sysutils/hfm.

Configuration

Definitions

Rule

Is a test, and all of the scheduling and other meta-data that goes with the test

Run

Is a single invocation of a test, and the related housekeeping (for example, state change invocations)

Interval

Is a time period, measured in seconds by default. See Time Multipliers

Configuration Format

hfm uses libucl for its configuration, this allows a great amount of flexibility in the supported configuration syntax.

Layout

At the most complicated, there are two supported levels of grouping and inheritance available:

global
group {
	test {
	}
}

A test could reside at any level of nesting, each is valid:

test="true"
test1 {
	test="true"
}
group1 {
	test1 {
		test="true"
	}
}

If a test is found at a depth, no child configurations are traversed:

group1 {
	test="true"
	test1 {
		test="won't get here"
	}
}

Inheritable settings are passed down, closest to the test first:

interval=1s
group1 {
	interval=2s
	test1 {
		test="true"
	}
}
test2 {
		test="true"
}

test1 would run every 2 seconds, while test2 would run every second.

Configuration Values
status (inheritable, string-enum, default: enabled)
  • enabled - This rule's test will run at the scheduled interval, the change_fail or change_success command will execute normally.

  • disabled - This rule's test will not run. In fact, the rule will never be scheduled. It might come in handy to disable polling of a group of tests at a time, for example.

  • always-fail - This rule's test will run at the scheduled interval, regardless of the outcome, the change_fail will execute each run.

  • always-success - This rule's test will run at the scheduled interval, regardless of the outcome, the change_success will execute every time.

test (string)

The command to execute to preform a test. The command must give an exit code equal to 0 to indicate success. If the call to os.Exec fails (for example, the command specified could not be found), the rule becomes disabled, and no state change event occurs.

test_arguments (string, array of strings)

Any parameters to pass to the test command as an argument. An example combination may be to run a config-file only shell command:

test="/bin/sh"
test_arguments=["-c", "true; if $?; then false; fi" ]
start_delay (inheritable, interval, default: 0)

Delay the initial run of this test by start_delay. This may help stagger the load of the tests.

runs (inheritable, number, default: 0)

Number of times to run a rule, before setting it to disabled. This is helpful mainly for testing, although, if used in concert with status="always-fail", it would be useful to administratively force a fail script to run on reload. For example:

Changing a rule (or group) from:

rule {
	test="check-host"
	change_fail="down-host"
	change_success="up-host"
}

to:

rule {
	runs=1
	status="always-fail"
	test="check-host"
	change_fail="down-host"
	change_success="up-host"
}

will cause down-host to run exactly once on an hfm reload.

interval (inheritable, interval, default: 0)

Interval to delay between start of a test after the start of a successful test. A value of 0 means to preform the next run immediately after the current run. If a test takes longer to execute than "interval," then the next one will be run immediately.

interval_fail (inheritable, interval, default: 0)

Interval to delay between start of a test after the start of a failed test. A value of 0 means to preform the next run immediately after the current run. If a test takes longer to execute than "interval," then the next one will be run immediately. This allows one to configure hfm to run failed tests less (or more) aggressively than successful tests.

timeout_int (inheritable, interval, default: 0)

The amount of time the test process is allowed to run before sending a SIGINT signal. A value of 0 means a signal will not be sent.

timeout_kill (inheritable, interval, default: 0)

The amount of time the test process is allowed to run before sending a SIGKILL signal. A value of 0 means a signal will not be sent.

change_success (string)

The command to execute to preform a when a previously failed (or unrun) test returns a success.

change_success_debounce (inheritable, number, default: 1)

The number of test runs that need to return successful from a previously failed run, before change_success is run. A value of 1 means that change_success will run immediately.

change_success_arguments (string, array of strings)

Any parameters to pass to the change_success command as an argument. An example combination may be to run a config-file only shell command:

change_success="/bin/sh"
change_success_arguments=["-c", "true; if $?; then false; fi" ]
change_fail (string)

The command to execute to preform a when a previously successful (or unrun) test returns a failure.

change_fail_debounce (inheritable, number, default: 1)

The number of test runs that need to return failure from a previously successful run, before change_fail is run. A value of 1 means that change_fail will run immediately.

change_fail_arguments (string, array of strings)

Any parameters to pass to the change_fail command as an argument. An example combination may be to run a config-file only shell command:

change_fail="/bin/sh"
change_fail_arguments=["-c", "true; if $?; then false; fi" ]

Directories

Path Synopsis
src

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL