diff options
Diffstat (limited to 'plugins/check_swap.c')
| -rw-r--r-- | plugins/check_swap.c | 844 |
1 files changed, 326 insertions, 518 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index e7ee785d..dbf53a00 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c | |||
| @@ -1,607 +1,415 @@ | |||
| 1 | /***************************************************************************** | 1 | /***************************************************************************** |
| 2 | * | 2 | * |
| 3 | * Monitoring check_swap plugin | 3 | * Monitoring check_swap plugin |
| 4 | * | 4 | * |
| 5 | * License: GPL | 5 | * License: GPL |
| 6 | * Copyright (c) 2000 Karl DeBisschop (kdebisschop@users.sourceforge.net) | 6 | * Copyright (c) 2000 Karl DeBisschop (kdebisschop@users.sourceforge.net) |
| 7 | * Copyright (c) 2000-2024 Monitoring Plugins Development Team | 7 | * Copyright (c) 2000-2024 Monitoring Plugins Development Team |
| 8 | * | 8 | * |
| 9 | * Description: | 9 | * Description: |
| 10 | * | 10 | * |
| 11 | * This file contains the check_swap plugin | 11 | * This file contains the check_swap plugin |
| 12 | * | 12 | * |
| 13 | * | 13 | * |
| 14 | * This program is free software: you can redistribute it and/or modify | 14 | * This program is free software: you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by | 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation, either version 3 of the License, or | 16 | * the Free Software Foundation, either version 3 of the License, or |
| 17 | * (at your option) any later version. | 17 | * (at your option) any later version. |
| 18 | * | 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, | 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. | 22 | * GNU General Public License for more details. |
| 23 | * | 23 | * |
| 24 | * You should have received a copy of the GNU General Public License | 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 25 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 26 | * | 26 | * |
| 27 | * | 27 | * |
| 28 | *****************************************************************************/ | 28 | *****************************************************************************/ |
| 29 | |||
| 30 | const char *progname = "check_swap"; | ||
| 31 | const char *copyright = "2000-2024"; | ||
| 32 | const char *email = "devel@monitoring-plugins.org"; | ||
| 33 | 29 | ||
| 34 | #include "common.h" | 30 | #include "common.h" |
| 35 | #include "popen.h" | 31 | #include "output.h" |
| 36 | #include "utils.h" | 32 | #include "states.h" |
| 37 | 33 | #include <limits.h> | |
| 38 | #ifdef HAVE_DECL_SWAPCTL | 34 | #ifdef HAVE_DECL_SWAPCTL |
| 39 | # ifdef HAVE_SYS_PARAM_H | 35 | # ifdef HAVE_SYS_PARAM_H |
| 40 | # include <sys/param.h> | 36 | # include <sys/param.h> |
| 41 | # endif | 37 | # endif |
| 42 | # ifdef HAVE_SYS_SWAP_H | 38 | # ifdef HAVE_SYS_SWAP_H |
| 43 | # include <sys/swap.h> | 39 | # include <sys/swap.h> |
| 44 | # endif | 40 | # endif |
| 45 | # ifdef HAVE_SYS_STAT_H | 41 | # ifdef HAVE_SYS_STAT_H |
| 46 | # include <sys/stat.h> | 42 | # include <sys/stat.h> |
| 47 | # endif | 43 | # endif |
| 48 | #endif | 44 | #endif |
| 49 | 45 | ||
| 50 | #ifndef SWAP_CONVERSION | 46 | #include <stdint.h> |
| 51 | # define SWAP_CONVERSION 1 | 47 | #include "./check_swap.d/check_swap.h" |
| 52 | #endif | 48 | #include "./utils.h" |
| 53 | 49 | ||
| 54 | typedef struct { | 50 | typedef struct { |
| 55 | bool is_percentage; | 51 | int errorcode; |
| 56 | uint64_t value; | 52 | swap_config config; |
| 57 | } threshold; | 53 | } swap_config_wrapper; |
| 58 | 54 | ||
| 59 | int check_swap (float free_swap_mb, float total_swap_mb); | 55 | static swap_config_wrapper process_arguments(int argc, char **argv); |
| 60 | int process_arguments (int argc, char **argv); | 56 | void print_usage(void); |
| 61 | int validate_arguments (void); | 57 | static void print_help(swap_config /*config*/); |
| 62 | void print_usage (void); | 58 | |
| 63 | void print_help (void); | ||
| 64 | |||
| 65 | threshold warn; | ||
| 66 | threshold crit; | ||
| 67 | int verbose; | 59 | int verbose; |
| 68 | bool allswaps = false; | ||
| 69 | int no_swap_state = STATE_CRITICAL; | ||
| 70 | |||
| 71 | int | ||
| 72 | main (int argc, char **argv) | ||
| 73 | { | ||
| 74 | unsigned int percent_used, percent; | ||
| 75 | uint64_t total_swap_mb = 0, used_swap_mb = 0, free_swap_mb = 0; | ||
| 76 | uint64_t dsktotal_mb = 0, dskused_mb = 0, dskfree_mb = 0; | ||
| 77 | uint64_t tmp_KB = 0; | ||
| 78 | int result = STATE_UNKNOWN; | ||
| 79 | char input_buffer[MAX_INPUT_BUFFER]; | ||
| 80 | #ifdef HAVE_PROC_MEMINFO | ||
| 81 | FILE *fp; | ||
| 82 | #else | ||
| 83 | int conv_factor = SWAP_CONVERSION; | ||
| 84 | # ifdef HAVE_SWAP | ||
| 85 | char *temp_buffer; | ||
| 86 | char *swap_command; | ||
| 87 | char *swap_format; | ||
| 88 | # else | ||
| 89 | # ifdef HAVE_DECL_SWAPCTL | ||
| 90 | int i=0, nswaps=0, swapctl_res=0; | ||
| 91 | # ifdef CHECK_SWAP_SWAPCTL_SVR4 | ||
| 92 | swaptbl_t *tbl=NULL; | ||
| 93 | swapent_t *ent=NULL; | ||
| 94 | # else | ||
| 95 | # ifdef CHECK_SWAP_SWAPCTL_BSD | ||
| 96 | struct swapent *ent; | ||
| 97 | # endif /* CHECK_SWAP_SWAPCTL_BSD */ | ||
| 98 | # endif /* CHECK_SWAP_SWAPCTL_SVR4 */ | ||
| 99 | # endif /* HAVE_DECL_SWAPCTL */ | ||
| 100 | # endif | ||
| 101 | #endif | ||
| 102 | char str[32]; | ||
| 103 | char *status; | ||
| 104 | 60 | ||
| 105 | setlocale (LC_ALL, ""); | 61 | #define HUNDRED_PERCENT 100 |
| 106 | bindtextdomain (PACKAGE, LOCALEDIR); | 62 | |
| 107 | textdomain (PACKAGE); | 63 | #define BYTES_TO_KiB(number) (number / 1024) |
| 64 | #define BYTES_TO_MiB(number) (BYTES_TO_KiB(number) / 1024) | ||
| 65 | |||
| 66 | const char *progname = "check_swap"; | ||
| 67 | const char *copyright = "2000-2024"; | ||
| 68 | const char *email = "devel@monitoring-plugins.org"; | ||
| 108 | 69 | ||
| 109 | status = strdup (""); | 70 | int main(int argc, char **argv) { |
| 71 | setlocale(LC_ALL, ""); | ||
| 72 | bindtextdomain(PACKAGE, LOCALEDIR); | ||
| 73 | textdomain(PACKAGE); | ||
| 110 | 74 | ||
| 111 | /* Parse extra opts if any */ | 75 | /* Parse extra opts if any */ |
| 112 | argv=np_extra_opts (&argc, argv, progname); | 76 | argv = np_extra_opts(&argc, argv, progname); |
| 113 | 77 | ||
| 114 | if (process_arguments (argc, argv) == ERROR) | 78 | swap_config_wrapper tmp = process_arguments(argc, argv); |
| 115 | usage4 (_("Could not parse arguments")); | ||
| 116 | 79 | ||
| 117 | #ifdef HAVE_PROC_MEMINFO | 80 | if (tmp.errorcode != OK) { |
| 118 | if (verbose >= 3) { | 81 | usage4(_("Could not parse arguments")); |
| 119 | printf("Reading PROC_MEMINFO at %s\n", PROC_MEMINFO); | ||
| 120 | } | 82 | } |
| 121 | fp = fopen (PROC_MEMINFO, "r"); | ||
| 122 | while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, fp)) { | ||
| 123 | /* | ||
| 124 | * The following sscanf call looks for a line looking like: "Swap: 123 123 123" | ||
| 125 | * On which kind of system this format exists, I can not say, but I wanted to | ||
| 126 | * document this for people who are not adapt with sscanf anymore, like me | ||
| 127 | */ | ||
| 128 | if (sscanf (input_buffer, "%*[S]%*[w]%*[a]%*[p]%*[:] %lu %lu %lu", &dsktotal_mb, &dskused_mb, &dskfree_mb) == 3) { | ||
| 129 | dsktotal_mb = dsktotal_mb / (1024 * 1024); /* Apply conversion */ | ||
| 130 | dskused_mb = dskused_mb / (1024 * 1024); | ||
| 131 | dskfree_mb = dskfree_mb / (1024 * 1024); | ||
| 132 | total_swap_mb += dsktotal_mb; | ||
| 133 | used_swap_mb += dskused_mb; | ||
| 134 | free_swap_mb += dskfree_mb; | ||
| 135 | if (allswaps) { | ||
| 136 | if (dsktotal_mb == 0) | ||
| 137 | percent=100.0; | ||
| 138 | else | ||
| 139 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); | ||
| 140 | result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); | ||
| 141 | if (verbose) | ||
| 142 | xasprintf (&status, "%s [%lu (%d%%)]", status, dskfree_mb, 100 - percent); | ||
| 143 | } | ||
| 144 | } | ||
| 145 | 83 | ||
| 146 | /* | 84 | swap_config config = tmp.config; |
| 147 | * The following sscanf call looks for lines looking like: "SwapTotal: 123" and "SwapFree: 123" | ||
| 148 | * This format exists at least on Debian Linux with a 5.* kernel | ||
| 149 | */ | ||
| 150 | else if (sscanf (input_buffer, "%*[S]%*[w]%*[a]%*[p]%[TotalFreCchd]%*[:] %lu %*[k]%*[B]", str, &tmp_KB)) { | ||
| 151 | if (verbose >= 3) { | ||
| 152 | printf("Got %s with %lu\n", str, tmp_KB); | ||
| 153 | } | ||
| 154 | /* I think this part is always in Kb, so convert to mb */ | ||
| 155 | if (strcmp ("Total", str) == 0) { | ||
| 156 | dsktotal_mb = tmp_KB / 1024; | ||
| 157 | } | ||
| 158 | else if (strcmp ("Free", str) == 0) { | ||
| 159 | dskfree_mb = dskfree_mb + tmp_KB / 1024; | ||
| 160 | } | ||
| 161 | else if (strcmp ("Cached", str) == 0) { | ||
| 162 | dskfree_mb = dskfree_mb + tmp_KB / 1024; | ||
| 163 | } | ||
| 164 | } | ||
| 165 | } | ||
| 166 | fclose(fp); | ||
| 167 | dskused_mb = dsktotal_mb - dskfree_mb; | ||
| 168 | total_swap_mb = dsktotal_mb; | ||
| 169 | used_swap_mb = dskused_mb; | ||
| 170 | free_swap_mb = dskfree_mb; | ||
| 171 | #else | ||
| 172 | # ifdef HAVE_SWAP | ||
| 173 | xasprintf(&swap_command, "%s", SWAP_COMMAND); | ||
| 174 | xasprintf(&swap_format, "%s", SWAP_FORMAT); | ||
| 175 | |||
| 176 | /* These override the command used if a summary (and thus ! allswaps) is required */ | ||
| 177 | /* The summary flag returns more accurate information about swap usage on these OSes */ | ||
| 178 | # ifdef _AIX | ||
| 179 | if (!allswaps) { | ||
| 180 | xasprintf(&swap_command, "%s", "/usr/sbin/lsps -s"); | ||
| 181 | xasprintf(&swap_format, "%s", "%lu%*s %lu"); | ||
| 182 | conv_factor = 1; | ||
| 183 | } | ||
| 184 | # endif | ||
| 185 | 85 | ||
| 186 | if (verbose >= 2) | 86 | swap_result data = get_swap_data(config); |
| 187 | printf (_("Command: %s\n"), swap_command); | ||
| 188 | if (verbose >= 3) | ||
| 189 | printf (_("Format: %s\n"), swap_format); | ||
| 190 | 87 | ||
| 191 | child_process = spopen (swap_command); | 88 | if (data.errorcode != STATE_OK) { |
| 192 | if (child_process == NULL) { | 89 | puts("SWAP UNKNOWN - Failed to retrieve Swap usage"); |
| 193 | printf (_("Could not open pipe: %s\n"), swap_command); | 90 | exit(STATE_UNKNOWN); |
| 194 | return STATE_UNKNOWN; | ||
| 195 | } | 91 | } |
| 196 | 92 | ||
| 197 | child_stderr = fdopen (child_stderr_array[fileno (child_process)], "r"); | 93 | if (verbose) { |
| 198 | if (child_stderr == NULL) | 94 | printf("Swap retrieval result:\n" |
| 199 | printf (_("Could not open stderr for %s\n"), swap_command); | 95 | "\tFree: %llu\n" |
| 200 | 96 | "\tUsed: %llu\n" | |
| 201 | sprintf (str, "%s", ""); | 97 | "\tTotal: %llu\n", |
| 202 | /* read 1st line */ | 98 | data.metrics.free, data.metrics.used, data.metrics.total); |
| 203 | fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process); | ||
| 204 | if (strcmp (swap_format, "") == 0) { | ||
| 205 | temp_buffer = strtok (input_buffer, " \n"); | ||
| 206 | while (temp_buffer) { | ||
| 207 | if (strstr (temp_buffer, "blocks")) | ||
| 208 | sprintf (str, "%s %s", str, "%lu"); | ||
| 209 | else if (strstr (temp_buffer, "dskfree")) | ||
| 210 | sprintf (str, "%s %s", str, "%lu"); | ||
| 211 | else | ||
| 212 | sprintf (str, "%s %s", str, "%*s"); | ||
| 213 | temp_buffer = strtok (NULL, " \n"); | ||
| 214 | } | ||
| 215 | } | 99 | } |
| 216 | 100 | ||
| 217 | /* If different swap command is used for summary switch, need to read format differently */ | 101 | double percent_used; |
| 218 | # ifdef _AIX | 102 | mp_check overall = mp_check_init(); |
| 219 | if (!allswaps) { | 103 | if (config.output_format_is_set) { |
| 220 | fgets(input_buffer, MAX_INPUT_BUFFER - 1, child_process); /* Ignore first line */ | 104 | mp_set_format(config.output_format); |
| 221 | sscanf (input_buffer, swap_format, &total_swap_mb, &used_swap_mb); | ||
| 222 | free_swap_mb = total_swap_mb * (100 - used_swap_mb) /100; | ||
| 223 | used_swap_mb = total_swap_mb - free_swap_mb; | ||
| 224 | if (verbose >= 3) | ||
| 225 | printf (_("total=%.0f, used=%.0f, free=%.0f\n"), total_swap_mb, used_swap_mb, free_swap_mb); | ||
| 226 | } else { | ||
| 227 | # endif | ||
| 228 | while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process)) { | ||
| 229 | sscanf (input_buffer, swap_format, &dsktotal_mb, &dskfree_mb); | ||
| 230 | |||
| 231 | dsktotal_mb = dsktotal_mb / conv_factor; | ||
| 232 | /* AIX lists percent used, so this converts to dskfree in MBs */ | ||
| 233 | # ifdef _AIX | ||
| 234 | dskfree_mb = dsktotal_mb * (100 - dskfree_mb) / 100; | ||
| 235 | # else | ||
| 236 | dskfree_mb = dskfree_mb / conv_factor; | ||
| 237 | # endif | ||
| 238 | if (verbose >= 3) | ||
| 239 | printf (_("total=%.0f, free=%.0f\n"), dsktotal_mb, dskfree_mb); | ||
| 240 | |||
| 241 | dskused_mb = dsktotal_mb - dskfree_mb; | ||
| 242 | total_swap_mb += dsktotal_mb; | ||
| 243 | used_swap_mb += dskused_mb; | ||
| 244 | free_swap_mb += dskfree_mb; | ||
| 245 | if (allswaps) { | ||
| 246 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); | ||
| 247 | result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); | ||
| 248 | if (verbose) | ||
| 249 | xasprintf (&status, "%s [%.0f (%d%%)]", status, dskfree_mb, 100 - percent); | ||
| 250 | } | ||
| 251 | } | ||
| 252 | # ifdef _AIX | ||
| 253 | } | 105 | } |
| 254 | # endif | 106 | mp_subcheck sc1 = mp_subcheck_init(); |
| 255 | 107 | sc1 = mp_set_subcheck_default_state(sc1, STATE_OK); | |
| 256 | /* If we get anything on STDERR, at least set warning */ | ||
| 257 | while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) | ||
| 258 | result = max_state (result, STATE_WARNING); | ||
| 259 | |||
| 260 | /* close stderr */ | ||
| 261 | (void) fclose (child_stderr); | ||
| 262 | 108 | ||
| 263 | /* close the pipe */ | 109 | /* if total_swap_mb == 0, let's not divide by 0 */ |
| 264 | if (spclose (child_process)) | 110 | if (data.metrics.total != 0) { |
| 265 | result = max_state (result, STATE_WARNING); | 111 | percent_used = HUNDRED_PERCENT * ((double)data.metrics.used) / ((double)data.metrics.total); |
| 266 | # else | 112 | } else { |
| 267 | # ifdef CHECK_SWAP_SWAPCTL_SVR4 | 113 | sc1 = mp_set_subcheck_state(sc1, config.no_swap_state); |
| 114 | sc1.output = (char *)_("Swap is either disabled, not present, or of zero size."); | ||
| 268 | 115 | ||
| 269 | /* get the number of active swap devices */ | 116 | mp_add_subcheck_to_check(&overall, sc1); |
| 270 | if((nswaps=swapctl(SC_GETNSWP, NULL))== -1) | 117 | mp_exit(overall); |
| 271 | die(STATE_UNKNOWN, _("Error getting swap devices\n") ); | 118 | } |
| 272 | 119 | ||
| 273 | if(nswaps == 0) | 120 | if (verbose) { |
| 274 | die(STATE_OK, _("SWAP OK: No swap devices defined\n")); | 121 | printf("Computed usage percentage: %g\n", percent_used); |
| 122 | } | ||
| 275 | 123 | ||
| 276 | if(verbose >= 3) | 124 | mp_perfdata pd = perfdata_init(); |
| 277 | printf("Found %d swap device(s)\n", nswaps); | 125 | pd.label = "swap"; |
| 126 | pd = mp_set_pd_value(pd, data.metrics.free); | ||
| 127 | pd.uom = "B"; | ||
| 278 | 128 | ||
| 279 | /* initialize swap table + entries */ | 129 | if (config.warn_is_set) { |
| 280 | tbl=(swaptbl_t*)malloc(sizeof(swaptbl_t)+(sizeof(swapent_t)*nswaps)); | 130 | uint64_t warn_print = config.warn.value; |
| 131 | if (config.warn.is_percentage) { | ||
| 132 | warn_print = config.warn.value * (data.metrics.total / HUNDRED_PERCENT); | ||
| 133 | } | ||
| 281 | 134 | ||
| 282 | if(tbl==NULL) | 135 | mp_perfdata_value warn_pd = mp_create_pd_value(warn_print); |
| 283 | die(STATE_UNKNOWN, _("malloc() failed!\n")); | ||
| 284 | 136 | ||
| 285 | memset(tbl, 0, sizeof(swaptbl_t)+(sizeof(swapent_t)*nswaps)); | 137 | mp_range warn_range = mp_range_init(); |
| 286 | tbl->swt_n=nswaps; | 138 | warn_range.end_infinity = false; |
| 287 | for(i=0;i<nswaps;i++){ | 139 | warn_range.end = warn_pd; |
| 288 | if((tbl->swt_ent[i].ste_path=(char*)malloc(sizeof(char)*MAXPATHLEN)) == NULL) | ||
| 289 | die(STATE_UNKNOWN, _("malloc() failed!\n")); | ||
| 290 | } | ||
| 291 | 140 | ||
| 292 | /* and now, tally 'em up */ | 141 | pd.warn = warn_range; |
| 293 | swapctl_res=swapctl(SC_LIST, tbl); | 142 | pd.warn_present = true; |
| 294 | if(swapctl_res < 0){ | ||
| 295 | perror(_("swapctl failed: ")); | ||
| 296 | die(STATE_UNKNOWN, _("Error in swapctl call\n")); | ||
| 297 | } | 143 | } |
| 298 | 144 | ||
| 299 | for(i=0;i<nswaps;i++){ | 145 | if (config.crit_is_set) { |
| 300 | dsktotal_mb = (float) tbl->swt_ent[i].ste_pages / SWAP_CONVERSION; | 146 | uint64_t crit_print = config.crit.value; |
| 301 | dskfree_mb = (float) tbl->swt_ent[i].ste_free / SWAP_CONVERSION; | 147 | if (config.crit.is_percentage) { |
| 302 | dskused_mb = ( dsktotal_mb - dskfree_mb ); | 148 | crit_print = config.crit.value * (data.metrics.total / HUNDRED_PERCENT); |
| 303 | |||
| 304 | if (verbose >= 3) | ||
| 305 | printf ("dsktotal_mb=%.0f dskfree_mb=%.0f dskused_mb=%.0f\n", dsktotal_mb, dskfree_mb, dskused_mb); | ||
| 306 | |||
| 307 | if(allswaps && dsktotal_mb > 0){ | ||
| 308 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); | ||
| 309 | result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); | ||
| 310 | if (verbose) { | ||
| 311 | xasprintf (&status, "%s [%.0f (%d%%)]", status, dskfree_mb, 100 - percent); | ||
| 312 | } | ||
| 313 | } | 149 | } |
| 314 | 150 | ||
| 315 | total_swap_mb += dsktotal_mb; | 151 | mp_perfdata_value crit_pd = mp_create_pd_value(crit_print); |
| 316 | free_swap_mb += dskfree_mb; | ||
| 317 | used_swap_mb += dskused_mb; | ||
| 318 | } | ||
| 319 | 152 | ||
| 320 | /* and clean up after ourselves */ | 153 | mp_range crit_range = mp_range_init(); |
| 321 | for(i=0;i<nswaps;i++){ | 154 | crit_range.end_infinity = false; |
| 322 | free(tbl->swt_ent[i].ste_path); | 155 | crit_range.end = crit_pd; |
| 156 | |||
| 157 | pd.crit = crit_range; | ||
| 158 | pd.crit_present = true; | ||
| 323 | } | 159 | } |
| 324 | free(tbl); | ||
| 325 | # else | ||
| 326 | # ifdef CHECK_SWAP_SWAPCTL_BSD | ||
| 327 | 160 | ||
| 328 | /* get the number of active swap devices */ | 161 | mp_perfdata_value max = mp_create_pd_value(data.metrics.total); |
| 329 | nswaps=swapctl(SWAP_NSWAP, NULL, 0); | 162 | pd.max = max; |
| 163 | pd.max_present = true; | ||
| 330 | 164 | ||
| 331 | /* initialize swap table + entries */ | 165 | mp_perfdata_value min = mp_create_pd_value(0); |
| 332 | ent=(struct swapent*)malloc(sizeof(struct swapent)*nswaps); | 166 | pd.min = min; |
| 167 | pd.min_present = true; | ||
| 333 | 168 | ||
| 334 | /* and now, tally 'em up */ | 169 | mp_add_perfdata_to_subcheck(&sc1, pd); |
| 335 | swapctl_res=swapctl(SWAP_STATS, ent, nswaps); | 170 | if (verbose > 1) { |
| 336 | if(swapctl_res < 0){ | 171 | printf("Warn threshold value: %" PRIu64 "\n", config.warn.value); |
| 337 | perror(_("swapctl failed: ")); | ||
| 338 | die(STATE_UNKNOWN, _("Error in swapctl call\n")); | ||
| 339 | } | 172 | } |
| 340 | 173 | ||
| 341 | for(i=0;i<nswaps;i++){ | 174 | if (config.warn_is_set) { |
| 342 | dsktotal_mb = (float) ent[i].se_nblks / conv_factor; | 175 | if ((config.warn.is_percentage && (percent_used >= (100 - (double)config.warn.value))) || |
| 343 | dskused_mb = (float) ent[i].se_inuse / conv_factor; | 176 | config.warn.value >= data.metrics.free) { |
| 344 | dskfree_mb = ( dsktotal_mb - dskused_mb ); | 177 | sc1 = mp_set_subcheck_state(sc1, STATE_WARNING); |
| 345 | |||
| 346 | if(allswaps && dsktotal_mb > 0){ | ||
| 347 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); | ||
| 348 | result = max_state (result, check_swap(dskfree_mb, dsktotal_mb)); | ||
| 349 | if (verbose) { | ||
| 350 | xasprintf (&status, "%s [%.0f (%d%%)]", status, dskfree_mb, 100 - percent); | ||
| 351 | } | ||
| 352 | } | 178 | } |
| 353 | |||
| 354 | total_swap_mb += dsktotal_mb; | ||
| 355 | free_swap_mb += dskfree_mb; | ||
| 356 | used_swap_mb += dskused_mb; | ||
| 357 | } | 179 | } |
| 358 | 180 | ||
| 359 | /* and clean up after ourselves */ | 181 | if (verbose > 1) { |
| 360 | free(ent); | 182 | printf("Crit threshold value: %" PRIu64 "\n", config.crit.value); |
| 361 | |||
| 362 | # endif /* CHECK_SWAP_SWAPCTL_BSD */ | ||
| 363 | # endif /* CHECK_SWAP_SWAPCTL_SVR4 */ | ||
| 364 | # endif /* HAVE_SWAP */ | ||
| 365 | #endif /* HAVE_PROC_MEMINFO */ | ||
| 366 | |||
| 367 | /* if total_swap_mb == 0, let's not divide by 0 */ | ||
| 368 | if(total_swap_mb) { | ||
| 369 | percent_used = 100 * ((double) used_swap_mb) / ((double) total_swap_mb); | ||
| 370 | } else { | ||
| 371 | percent_used = 100; | ||
| 372 | status = "- Swap is either disabled, not present, or of zero size. "; | ||
| 373 | } | 183 | } |
| 374 | 184 | ||
| 375 | result = max_state (result, check_swap(free_swap_mb, total_swap_mb)); | 185 | if (config.crit_is_set) { |
| 376 | printf (_("SWAP %s - %d%% free (%dMB out of %dMB) %s|"), | 186 | if ((config.crit.is_percentage && (percent_used >= (100 - (double)config.crit.value))) || |
| 377 | state_text (result), | 187 | config.crit.value >= data.metrics.free) { |
| 378 | (100 - percent_used), (int) free_swap_mb, (int) total_swap_mb, status); | 188 | sc1 = mp_set_subcheck_state(sc1, STATE_CRITICAL); |
| 189 | } | ||
| 190 | } | ||
| 379 | 191 | ||
| 380 | uint64_t warn_print = warn.value; | 192 | xasprintf(&sc1.output, _("%g%% free (%lluMiB out of %lluMiB)"), (100 - percent_used), |
| 381 | if (warn.is_percentage) warn_print = warn.value * (total_swap_mb *1024 *1024/100); | 193 | data.metrics.free >> 20, data.metrics.total >> 20); |
| 382 | uint64_t crit_print = crit.value; | ||
| 383 | if (crit.is_percentage) crit_print = crit.value * (total_swap_mb *1024 *1024/100); | ||
| 384 | 194 | ||
| 385 | puts (perfdata_uint64 ("swap", free_swap_mb *1024 *1024, "B", | 195 | overall.summary = "Swap"; |
| 386 | true, warn_print, | 196 | mp_add_subcheck_to_check(&overall, sc1); |
| 387 | true, crit_print, | ||
| 388 | true, 0, | ||
| 389 | true, (long) total_swap_mb * 1024 * 1024)); | ||
| 390 | 197 | ||
| 391 | return result; | 198 | mp_exit(overall); |
| 392 | } | 199 | } |
| 393 | 200 | ||
| 201 | int check_swap(float free_swap_mb, float total_swap_mb, swap_config config) { | ||
| 202 | if (total_swap_mb == 0) { | ||
| 203 | return config.no_swap_state; | ||
| 204 | } | ||
| 394 | 205 | ||
| 395 | int | 206 | uint64_t free_swap = |
| 396 | check_swap(float free_swap_mb, float total_swap_mb) | 207 | (uint64_t)(free_swap_mb * |
| 397 | { | 208 | (1024 * 1024)); /* Convert back to bytes as warn and crit specified in bytes */ |
| 398 | |||
| 399 | if (!total_swap_mb) return no_swap_state; | ||
| 400 | 209 | ||
| 401 | uint64_t free_swap = free_swap_mb * (1024 * 1024); /* Convert back to bytes as warn and crit specified in bytes */ | 210 | if (!config.crit.is_percentage && config.crit.value >= free_swap) { |
| 402 | uint64_t usage_percentage = ((total_swap_mb - free_swap_mb) / total_swap_mb) * 100; | 211 | return STATE_CRITICAL; |
| 212 | } | ||
| 213 | if (!config.warn.is_percentage && config.warn.value >= free_swap) { | ||
| 214 | return STATE_WARNING; | ||
| 215 | } | ||
| 403 | 216 | ||
| 404 | if (warn.value || crit.value) { /* Thresholds defined */ | 217 | uint64_t usage_percentage = |
| 405 | if (!crit.is_percentage && crit.value >= free_swap) return STATE_CRITICAL; | 218 | (uint64_t)((total_swap_mb - free_swap_mb) / total_swap_mb) * HUNDRED_PERCENT; |
| 406 | if (!warn.is_percentage && warn.value >= free_swap) return STATE_WARNING; | ||
| 407 | 219 | ||
| 408 | if (crit.is_percentage && | 220 | if (config.crit.is_percentage && config.crit.value != 0 && |
| 409 | crit.value != 0 && | 221 | usage_percentage >= (HUNDRED_PERCENT - config.crit.value)) { |
| 410 | usage_percentage >= (100 - crit.value)) | 222 | return STATE_CRITICAL; |
| 411 | { | 223 | } |
| 412 | return STATE_CRITICAL; | ||
| 413 | } | ||
| 414 | 224 | ||
| 415 | if (warn.is_percentage && | 225 | if (config.warn.is_percentage && config.warn.value != 0 && |
| 416 | warn.value != 0 && | 226 | usage_percentage >= (HUNDRED_PERCENT - config.warn.value)) { |
| 417 | usage_percentage >= (100 - warn.value)) | 227 | return STATE_WARNING; |
| 418 | { | 228 | } |
| 419 | return STATE_WARNING; | ||
| 420 | } | ||
| 421 | 229 | ||
| 422 | return STATE_OK; | 230 | return STATE_OK; |
| 423 | } else { /* Without thresholds */ | ||
| 424 | return STATE_OK; | ||
| 425 | } | ||
| 426 | } | 231 | } |
| 427 | 232 | ||
| 428 | 233 | #define output_format_index CHAR_MAX + 1 | |
| 429 | 234 | ||
| 430 | /* process command-line arguments */ | 235 | /* process command-line arguments */ |
| 431 | int | 236 | swap_config_wrapper process_arguments(int argc, char **argv) { |
| 432 | process_arguments (int argc, char **argv) | 237 | swap_config_wrapper conf_wrapper = {.errorcode = OK}; |
| 433 | { | 238 | conf_wrapper.config = swap_config_init(); |
| 434 | int c = 0; /* option character */ | 239 | |
| 435 | 240 | static struct option longopts[] = {{"warning", required_argument, 0, 'w'}, | |
| 436 | int option = 0; | 241 | {"critical", required_argument, 0, 'c'}, |
| 437 | static struct option longopts[] = { | 242 | {"allswaps", no_argument, 0, 'a'}, |
| 438 | {"warning", required_argument, 0, 'w'}, | 243 | {"no-swap", required_argument, 0, 'n'}, |
| 439 | {"critical", required_argument, 0, 'c'}, | 244 | {"verbose", no_argument, 0, 'v'}, |
| 440 | {"allswaps", no_argument, 0, 'a'}, | 245 | {"version", no_argument, 0, 'V'}, |
| 441 | {"no-swap", required_argument, 0, 'n'}, | 246 | {"help", no_argument, 0, 'h'}, |
| 442 | {"verbose", no_argument, 0, 'v'}, | 247 | {"output-format", required_argument, 0, output_format_index}, |
| 443 | {"version", no_argument, 0, 'V'}, | 248 | {0, 0, 0, 0}}; |
| 444 | {"help", no_argument, 0, 'h'}, | 249 | |
| 445 | {0, 0, 0, 0} | 250 | while (true) { |
| 446 | }; | 251 | int option = 0; |
| 447 | 252 | int option_char = getopt_long(argc, argv, "+?Vvhac:w:n:", longopts, &option); | |
| 448 | while (1) { | 253 | |
| 449 | c = getopt_long (argc, argv, "+?Vvhac:w:n:", longopts, &option); | 254 | if (option_char == -1 || option_char == EOF) { |
| 450 | |||
| 451 | if (c == -1 || c == EOF) | ||
| 452 | break; | 255 | break; |
| 256 | } | ||
| 453 | 257 | ||
| 454 | switch (c) { | 258 | switch (option_char) { |
| 455 | case 'w': /* warning size threshold */ | 259 | case 'w': /* warning size threshold */ |
| 456 | { | 260 | { |
| 457 | /* | 261 | /* |
| 458 | * We expect either a positive integer value without a unit, which means | 262 | * We expect either a positive integer value without a unit, which |
| 459 | * the unit is Bytes or a positive integer value and a percentage sign (%), | 263 | * means the unit is Bytes or a positive integer value and a |
| 460 | * which means the value must be with 0 and 100 and is relative to the total swap | 264 | * percentage sign (%), which means the value must be with 0 and 100 |
| 461 | */ | 265 | * and is relative to the total swap |
| 462 | size_t length; | 266 | */ |
| 463 | length = strlen(optarg); | 267 | size_t length; |
| 464 | 268 | length = strlen(optarg); | |
| 465 | if (optarg[length - 1] == '%') { | 269 | conf_wrapper.config.warn_is_set = true; |
| 466 | /* It's percentage */ | 270 | |
| 467 | warn.is_percentage = true; | 271 | if (optarg[length - 1] == '%') { |
| 468 | optarg[length - 1] = '\0'; | 272 | /* It's percentage */ |
| 469 | if (is_uint64(optarg, &warn.value)) { | 273 | conf_wrapper.config.warn.is_percentage = true; |
| 470 | if (warn.value > 100) { | 274 | optarg[length - 1] = '\0'; |
| 471 | usage4 (_("Warning threshold percentage must be <= 100!")); | 275 | if (is_uint64(optarg, &conf_wrapper.config.warn.value)) { |
| 472 | } | 276 | if (conf_wrapper.config.warn.value > HUNDRED_PERCENT) { |
| 473 | } | 277 | usage4(_("Warning threshold percentage must be <= 100!")); |
| 474 | break; | ||
| 475 | } else { | ||
| 476 | /* It's Bytes */ | ||
| 477 | warn.is_percentage = false; | ||
| 478 | if (is_uint64(optarg, &warn.value)) { | ||
| 479 | break; | ||
| 480 | } else { | ||
| 481 | usage4 (_("Warning threshold be positive integer or percentage!")); | ||
| 482 | } | 278 | } |
| 483 | } | 279 | } |
| 280 | break; | ||
| 281 | } /* It's Bytes */ | ||
| 282 | conf_wrapper.config.warn.is_percentage = false; | ||
| 283 | if (is_uint64(optarg, &conf_wrapper.config.warn.value)) { | ||
| 284 | break; | ||
| 484 | } | 285 | } |
| 286 | usage4(_("Warning threshold be positive integer or " | ||
| 287 | "percentage!")); | ||
| 288 | } | ||
| 485 | case 'c': /* critical size threshold */ | 289 | case 'c': /* critical size threshold */ |
| 486 | { | 290 | { |
| 487 | /* | 291 | /* |
| 488 | * We expect either a positive integer value without a unit, which means | 292 | * We expect either a positive integer value without a unit, which |
| 489 | * the unit is Bytes or a positive integer value and a percentage sign (%), | 293 | * means the unit is Bytes or a positive integer value and a |
| 490 | * which means the value must be with 0 and 100 and is relative to the total swap | 294 | * percentage sign (%), which means the value must be with 0 and 100 |
| 491 | */ | 295 | * and is relative to the total swap |
| 492 | size_t length; | 296 | */ |
| 493 | length = strlen(optarg); | 297 | size_t length; |
| 494 | 298 | length = strlen(optarg); | |
| 495 | if (optarg[length - 1] == '%') { | 299 | conf_wrapper.config.crit_is_set = true; |
| 496 | /* It's percentage */ | 300 | |
| 497 | crit.is_percentage = true; | 301 | if (optarg[length - 1] == '%') { |
| 498 | optarg[length - 1] = '\0'; | 302 | /* It's percentage */ |
| 499 | if (is_uint64(optarg, &crit.value)) { | 303 | conf_wrapper.config.crit.is_percentage = true; |
| 500 | if (crit.value> 100) { | 304 | optarg[length - 1] = '\0'; |
| 501 | usage4 (_("Critical threshold percentage must be <= 100!")); | 305 | if (is_uint64(optarg, &conf_wrapper.config.crit.value)) { |
| 502 | } | 306 | if (conf_wrapper.config.crit.value > HUNDRED_PERCENT) { |
| 503 | } | 307 | usage4(_("Critical threshold percentage must be <= 100!")); |
| 504 | break; | ||
| 505 | } else { | ||
| 506 | /* It's Bytes */ | ||
| 507 | crit.is_percentage = false; | ||
| 508 | if (is_uint64(optarg, &crit.value)) { | ||
| 509 | break; | ||
| 510 | } else { | ||
| 511 | usage4 (_("Critical threshold be positive integer or percentage!")); | ||
| 512 | } | 308 | } |
| 513 | } | 309 | } |
| 514 | } | 310 | break; |
| 515 | case 'a': /* all swap */ | 311 | } /* It's Bytes */ |
| 516 | allswaps = true; | 312 | conf_wrapper.config.crit.is_percentage = false; |
| 313 | if (is_uint64(optarg, &conf_wrapper.config.crit.value)) { | ||
| 314 | break; | ||
| 315 | } | ||
| 316 | usage4(_("Critical threshold be positive integer or " | ||
| 317 | "percentage!")); | ||
| 318 | } | ||
| 319 | case 'a': /* all swap */ | ||
| 320 | conf_wrapper.config.allswaps = true; | ||
| 517 | break; | 321 | break; |
| 518 | case 'n': | 322 | case 'n': |
| 519 | if ((no_swap_state = mp_translate_state(optarg)) == ERROR) { | 323 | if ((conf_wrapper.config.no_swap_state = mp_translate_state(optarg)) == ERROR) { |
| 520 | usage4 (_("no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); | 324 | usage4(_("no-swap result must be a valid state name (OK, " |
| 325 | "WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); | ||
| 521 | } | 326 | } |
| 522 | break; | 327 | break; |
| 523 | case 'v': /* verbose */ | 328 | case 'v': /* verbose */ |
| 524 | verbose++; | 329 | verbose++; |
| 525 | break; | 330 | break; |
| 526 | case 'V': /* version */ | 331 | case output_format_index: { |
| 527 | print_revision (progname, NP_VERSION); | 332 | parsed_output_format parser = mp_parse_output_format(optarg); |
| 528 | exit (STATE_UNKNOWN); | 333 | if (!parser.parsing_success) { |
| 529 | case 'h': /* help */ | 334 | // TODO List all available formats here, maybe add anothoer usage function |
| 530 | print_help (); | 335 | printf("Invalid output format: %s\n", optarg); |
| 531 | exit (STATE_UNKNOWN); | 336 | exit(STATE_UNKNOWN); |
| 532 | case '?': /* error */ | 337 | } |
| 533 | usage5 (); | 338 | |
| 339 | conf_wrapper.config.output_format_is_set = true; | ||
| 340 | conf_wrapper.config.output_format = parser.output_format; | ||
| 341 | break; | ||
| 342 | } | ||
| 343 | case 'V': /* version */ | ||
| 344 | print_revision(progname, NP_VERSION); | ||
| 345 | exit(STATE_UNKNOWN); | ||
| 346 | case 'h': /* help */ | ||
| 347 | print_help(conf_wrapper.config); | ||
| 348 | exit(STATE_UNKNOWN); | ||
| 349 | case '?': /* error */ | ||
| 350 | usage5(); | ||
| 534 | } | 351 | } |
| 535 | } | 352 | } |
| 536 | 353 | ||
| 537 | c = optind; | 354 | if ((conf_wrapper.config.warn.is_percentage == conf_wrapper.config.crit.is_percentage) && |
| 538 | if (c == argc) | 355 | (conf_wrapper.config.warn.value < conf_wrapper.config.crit.value)) { |
| 539 | return validate_arguments (); | 356 | /* This is NOT triggered if warn and crit are different units, e.g warn |
| 540 | 357 | * is percentage and crit is absolute. We cannot determine the condition | |
| 541 | return validate_arguments (); | 358 | * at this point since we dont know the value of total swap yet |
| 542 | } | ||
| 543 | |||
| 544 | |||
| 545 | |||
| 546 | int | ||
| 547 | validate_arguments (void) | ||
| 548 | { | ||
| 549 | if ((warn.is_percentage == crit.is_percentage) && (warn.value < crit.value)) { | ||
| 550 | /* This is NOT triggered if warn and crit are different units, e.g warn is percentage | ||
| 551 | * and crit is absolute. We cannot determine the condition at this point since we | ||
| 552 | * dont know the value of total swap yet | ||
| 553 | */ | 359 | */ |
| 554 | usage4(_("Warning should be more than critical")); | 360 | usage4(_("Warning should be more than critical")); |
| 555 | } | 361 | } |
| 556 | return OK; | ||
| 557 | } | ||
| 558 | |||
| 559 | 362 | ||
| 560 | 363 | return conf_wrapper; | |
| 561 | void | ||
| 562 | print_help (void) | ||
| 563 | { | ||
| 564 | print_revision (progname, NP_VERSION); | ||
| 565 | |||
| 566 | printf (_(COPYRIGHT), copyright, email); | ||
| 567 | |||
| 568 | printf ("%s\n", _("Check swap space on local machine.")); | ||
| 569 | |||
| 570 | printf ("\n\n"); | ||
| 571 | |||
| 572 | print_usage (); | ||
| 573 | |||
| 574 | printf (UT_HELP_VRSN); | ||
| 575 | printf (UT_EXTRA_OPTS); | ||
| 576 | |||
| 577 | printf (" %s\n", "-w, --warning=INTEGER"); | ||
| 578 | printf (" %s\n", _("Exit with WARNING status if less than INTEGER bytes of swap space are free")); | ||
| 579 | printf (" %s\n", "-w, --warning=PERCENT%"); | ||
| 580 | printf (" %s\n", _("Exit with WARNING status if less than PERCENT of swap space is free")); | ||
| 581 | printf (" %s\n", "-c, --critical=INTEGER"); | ||
| 582 | printf (" %s\n", _("Exit with CRITICAL status if less than INTEGER bytes of swap space are free")); | ||
| 583 | printf (" %s\n", "-c, --critical=PERCENT%"); | ||
| 584 | printf (" %s\n", _("Exit with CRITICAL status if less than PERCENT of swap space is free")); | ||
| 585 | printf (" %s\n", "-a, --allswaps"); | ||
| 586 | printf (" %s\n", _("Conduct comparisons for all swap partitions, one by one")); | ||
| 587 | printf (" %s\n", "-n, --no-swap=<ok|warning|critical|unknown>"); | ||
| 588 | printf (" %s %s\n", _("Resulting state when there is no swap regardless of thresholds. Default:"), state_text(no_swap_state)); | ||
| 589 | printf (UT_VERBOSE); | ||
| 590 | |||
| 591 | printf ("\n"); | ||
| 592 | printf ("%s\n", _("Notes:")); | ||
| 593 | printf (" %s\n", _("Both INTEGER and PERCENT thresholds can be specified, they are all checked.")); | ||
| 594 | printf (" %s\n", _("Without thresholds, the plugin shows free swap space and performance data, but always returns OK.")); | ||
| 595 | printf (" %s\n", _("On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.")); | ||
| 596 | |||
| 597 | printf (UT_SUPPORT); | ||
| 598 | } | 364 | } |
| 599 | 365 | ||
| 366 | void print_help(swap_config config) { | ||
| 367 | print_revision(progname, NP_VERSION); | ||
| 368 | |||
| 369 | printf(_(COPYRIGHT), copyright, email); | ||
| 370 | |||
| 371 | printf("%s\n", _("Check swap space on local machine.")); | ||
| 372 | |||
| 373 | printf("\n\n"); | ||
| 374 | |||
| 375 | print_usage(); | ||
| 376 | |||
| 377 | printf(UT_HELP_VRSN); | ||
| 378 | printf(UT_EXTRA_OPTS); | ||
| 379 | |||
| 380 | printf(" %s\n", "-w, --warning=INTEGER"); | ||
| 381 | printf(" %s\n", _("Exit with WARNING status if less than INTEGER bytes " | ||
| 382 | "of swap space are free")); | ||
| 383 | printf(" %s\n", "-w, --warning=PERCENT%"); | ||
| 384 | printf(" %s\n", _("Exit with WARNING status if less than PERCENT of " | ||
| 385 | "swap space is free")); | ||
| 386 | printf(" %s\n", "-c, --critical=INTEGER"); | ||
| 387 | printf(" %s\n", _("Exit with CRITICAL status if less than INTEGER bytes " | ||
| 388 | "of swap space are free")); | ||
| 389 | printf(" %s\n", "-c, --critical=PERCENT%"); | ||
| 390 | printf(" %s\n", _("Exit with CRITICAL status if less than PERCENT of " | ||
| 391 | "swap space is free")); | ||
| 392 | printf(" %s\n", "-a, --allswaps"); | ||
| 393 | printf(" %s\n", _("Conduct comparisons for all swap partitions, one by one")); | ||
| 394 | printf(" %s\n", "-n, --no-swap=<ok|warning|critical|unknown>"); | ||
| 395 | printf(" %s %s\n", | ||
| 396 | _("Resulting state when there is no swap regardless of thresholds. " | ||
| 397 | "Default:"), | ||
| 398 | state_text(config.no_swap_state)); | ||
| 399 | printf(UT_OUTPUT_FORMAT); | ||
| 400 | printf(UT_VERBOSE); | ||
| 401 | |||
| 402 | printf("\n"); | ||
| 403 | printf("%s\n", _("Notes:")); | ||
| 404 | printf(" %s\n", _("Both INTEGER and PERCENT thresholds can be specified, " | ||
| 405 | "they are all checked.")); | ||
| 406 | printf(" %s\n", _("On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.")); | ||
| 407 | |||
| 408 | printf(UT_SUPPORT); | ||
| 409 | } | ||
| 600 | 410 | ||
| 601 | void | 411 | void print_usage(void) { |
| 602 | print_usage (void) | 412 | printf("%s\n", _("Usage:")); |
| 603 | { | 413 | printf(" %s [-av] -w <percent_free>%% -c <percent_free>%%\n", progname); |
| 604 | printf ("%s\n", _("Usage:")); | 414 | printf(" -w <bytes_free> -c <bytes_free> [-n <state>]\n"); |
| 605 | printf (" %s [-av] [-w <percent_free>%%] [-c <percent_free>%%]\n",progname); | ||
| 606 | printf (" [-w <bytes_free>] [-c <bytes_free>] [-n <state>]\n"); | ||
| 607 | } | 415 | } |
