mayday
...man overboard!
___ ___ ____ __ __ ___ ____ __ __
| | | / || | || \ / || | |
| _ _ || o || | || \ | o || | |
| \_/ || || ~ || D || || ~ |
| | || _ ||___, || || _ ||___, |
| | || | || || || | || |
|___|___||__|__||____/ |_____||__|__||____/
~~~~~~~~~~~~~~~~~~~~~~~~~\o/~~~~~~~~~~~~~~~~~~~~~~~~
><>
<><
overview
Mayday is a tool to simplify gathering support information. It is built in the
spirit of sysreport, son of sysreport (sosreport), and similar support tools.
Mayday gathers information about the configuration, hardware, and running state
of a system.
goals
The goals of mayday are:
- simplify gathering information about a running system into a single command
- collect information into one single file to be transferred to support staff
- when possible the file should be small enough to be sent via email (<10MB)
- not collect sensitive information like crypto keys, password hashes, etc
- extensible through plugin system
usage
In it's most simplistic form, all a user needs to do is run mayday
:
$ mayday
This will collect a basic set of data and emit it in a tar archive for
transmission to a systems administrator, site reliability engineer, or support
technician for further troubleshooting.
In addition, more data can be collected by running as the superuser:
$ sudo mayday
Even more data can be collected by adding the --danger
flag:
$ sudo mayday --danger
integration
about
Mayday can be integrated into other projects by defining a default configuration
file at either the location /etc/mayday/default.json
or
/usr/share/mayday/default.json
. Through the use of viper
YAML and TOML are now supported as well, though CoreOS
will continue to use JSON as the mechanism of choice. If multiple products are
to be supported specialized configurations can be provided as "profiles" located
in the above directories (e.g. /etc/mayday/quay.json
) and the referenced via:
$ mayday -p quay
configuration syntax
The configuration file is comprised of objects (As of 1.0.0 valid objects are
"files" and "commands"). A example of the syntax can be seen in the file
default.json.
Each top level object contains an array of the relevant items to collect.
Optionally items can be annotated with a "link" which will provide an easy to
locate pointer for commonly accessed data.
collection
Files are directly retrieved. Commands are executed and the results of standard
output (stdout
) are collected. Assets are placed into a Go "tarable"
interface and then gzipped and serialized out to a file on disk.