A tracker is used to record termination events in some sort of external system. Inside Netflix, we use trackers to record terminations to Atlas (our metrics system) and to Chronos, our event tracking system1.
If you wish to record terminations with some external system, you need to:
- Give your tracker a name (e.g., "syslog")
- Code up a type in Go that implements the Tracker interface.
- Modify github.com/netflix/chaosmonkey/tracker/getTracker so that it recognizes your tracker.
- Edit your config file to specify your tracker.
1Unfortunately, we are unable to release either of these trackers as open source. Our Atlas tracker communicates with a version of Prana that has not been released as open source, and Chronos has also not been released as open source.