aboutsummaryrefslogtreecommitdiff
path: root/src/lsistat-cl.opt
blob: 2807b73cfb23d00b688f755211562b46ddb49672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* This file is part of Eclat.
   Copyright (C) 2012, 2013 Sergey Poznyakoff.
 
   Eclat is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
 
   Eclat is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 
   You should have received a copy of the GNU General Public License
   along with Eclat.  If not, see <http://www.gnu.org/licenses/>. */

OPTIONS_COMMAND_BEGIN("eclat",
              [<lsistat, describe-instance-status>],
              [<describe the status of Amazon EC2 instances including any scheduled events>],
	      [<[FILTER...]>],
	      [<gnu>],
	      [<noversion>])

OPTION(all,a,,
       [<return the health status for all instances>])
BEGIN
	all_option = 1;
END

OPTIONS_END

static void
parse_options(int argc, char *argv[], int *index)
{
	static char *event_codes[] = {
		"instance-reboot",
		"system-reboot",
		"system-maintenance",
		"instance-retirement",
		NULL
	};
	static char *instance_state_name[] = {
		"pending",
		"running",
		"shutting-down",
		"terminated",
		"stopping",
		"stopped",
		NULL
	};
	static char *instance_state_code[] = {
		"0 (pending)",
		"16 (running)",
		"32 (shutting-down)",
		"48 (terminated)",
		"64 (stopping)",
		"80 (stopped)"
	};
	static char *system_status[] = {
		"ok",
		"impaired",
		"initializing",
		"insufficient-data",
		"not-applicable",
		NULL
	};
	static char *system_reachability[] = {
		"passed",
		"failed",
		"initializing",
		"insufficient-data",
		NULL
	};
	static char *instance_status[] = {
		"ok",
		"impaired",
		"initializing",
		"insufficient-data",
		"not-applicable"
	};
	static char *instance_reachability[] = {
		"passed",
		"failed",
		"initializing",
		"insufficient-data",
		NULL
	};
	static struct filter_descr filters[] = {
		{ "availability-zone",   FILTER_STRING },
		{ "event.code",          FILTER_ENUM, event_codes },
		{ "event.description",   FILTER_STRING },
		{ "event.not-after",     FILTER_DATE },
		{ "instance-state-name", FILTER_ENUM, instance_state_name },
		{ "instance-state-code", FILTER_ENUM, instance_state_code },
		{ "system-status.status",FILTER_ENUM, system_status },
		{ "system-status.reachability",
		                         FILTER_ENUM, system_reachability },
		{ "instance-status.status",
		                         FILTER_ENUM, instance_status },
		{ "instance-status.reachability",
		                         FILTER_ENUM, instance_reachability },
		{ NULL }
	};
	available_filters = filters;
	proginfo.print_help_hook = list_filters;
	GETOPT(argc, argv, *index, exit(EX_USAGE))
}

Return to:

Send suggestions and report system problems to the System administrator.