core/source/localization/en.json

40 lines
2.9 KiB
JSON
Raw Normal View History

{
"conditions.unknown": "unknown",
"conditions.ok": "ok",
2023-03-04 16:00:35 +01:00
"conditions.concerning": "concerning",
"conditions.critical": "critical",
"help.title": "Heimdall — Monitoring Tool",
"help.args.order_path": "path to the order file",
"help.args.state_path": "path to the state file, which contains information about the recent checks; default: file in temporary directory, unique for the order-path input",
"help.args.database_path": "path to the database file, containing check results; default: file in temporary directory, unique for the order-path input",
2023-03-22 11:06:32 +01:00
"help.args.mutex_path": "path to file for preventing mutual execution",
"help.args.time_to_live": "how long (in seconds) result entries are supposed to be kept in database",
"help.args.send_ok_notifications": "whether an '{{condition_name}}' condition shall be reported",
"help.args.language": "language to use (instead of the language, set in the environment variables)",
"help.args.erase_state": "whether the state shall be deleted on start; this will cause that all checks are executed immediatly",
2023-06-18 23:29:57 +02:00
"help.args.show_schema": "print help to stdout and exit",
"help.args.show_schema": "print the hmdl JSON schema to stdout and exit",
"help.args.expose_full_order": "only print the extended order to stdout and exit (useful for debugging)",
"help.args.show_version": "only print the version to stdout and exit",
2023-07-06 15:09:34 +02:00
"help.args.verbosity": "threshold for log outputs",
"checks.file_state.exists": "file exists (but shall not)",
"checks.file_state.missing": "file does not exist (but shall)",
"checks.file_state.timestamp_implausible": "file is apparently from the future",
"checks.file_state.size_implausible": "file has apparently a negative size",
"checks.file_state.too_old": "file is too old",
"checks.file_state.too_big": "file is too big",
2023-03-22 14:22:54 +01:00
"checks.tls_certificate.not_obtainable": "TLS certificate not obtainable; maybe already expired",
"checks.tls_certificate.expires_soon": "TLS certificate will expire soon",
2023-03-04 16:00:35 +01:00
"checks.generic_remote.overflow": "disk drive almost full",
"checks.http_request.request_failed": "HTTP request failed",
"checks.http_request.status_code_mismatch": "actual status code {{status_code_actual}} does not match expected value {{status_code_expected}}",
"checks.http_request.header_missing": "header '{{key}}' is unset and hence does not match the expected value '{{value_expected}}'",
2023-07-03 10:32:23 +02:00
"checks.http_request.header_value_mismatch": "actual header value for key '{{key}}' '{{value_actual}}' does not match the expected value {{value_expected}}",
"checks.http_request.body_misses_part": "body does not contain the expected part '{{part}}'",
"misc.state_file_path": "state file path",
2023-03-22 11:06:32 +01:00
"misc.check_procedure_failed": "check procedure failed",
"misc.still_running": "already/still running",
"misc.cleanup_info": "removed {{count}} old result entries",
"misc.order_file_not_found": "order file not found: {{path}}"
}