Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Promex is a Prometheus exporter for HAProxy |
| 3 | * |
| 4 | * It is highly inspired by the official Prometheus exporter. |
| 5 | * See: https://github.com/prometheus/haproxy_exporter |
| 6 | * |
| 7 | * Copyright 2019 Christopher Faulet <cfaulet@haproxy.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version |
| 12 | * 2 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | */ |
| 15 | |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 16 | #include <haproxy/action-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 17 | #include <haproxy/api.h> |
Willy Tarreau | 3f0f82e | 2020-06-04 19:42:41 +0200 | [diff] [blame] | 18 | #include <haproxy/applet.h> |
Willy Tarreau | 4980160 | 2020-06-04 22:50:02 +0200 | [diff] [blame] | 19 | #include <haproxy/backend.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 20 | #include <haproxy/cfgparse.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 21 | #include <haproxy/compression.h> |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 22 | #include <haproxy/dns.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 23 | #include <haproxy/frontend.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 24 | #include <haproxy/global.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 25 | #include <haproxy/http.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 26 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 27 | #include <haproxy/htx.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 28 | #include <haproxy/list.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 29 | #include <haproxy/listener.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 30 | #include <haproxy/log.h> |
Willy Tarreau | 551271d | 2020-06-04 08:32:23 +0200 | [diff] [blame] | 31 | #include <haproxy/pipe.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 32 | #include <haproxy/pool.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 33 | #include <haproxy/proxy.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 34 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 35 | #include <haproxy/server.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 36 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 37 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 38 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 39 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 40 | #include <haproxy/task.h> |
William Dauchy | 5a982a7 | 2021-01-08 13:18:06 +0100 | [diff] [blame] | 41 | #include <haproxy/version.h> |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 42 | |
| 43 | /* Prometheus exporter applet states (appctx->st0) */ |
| 44 | enum { |
| 45 | PROMEX_ST_INIT = 0, /* initialized */ |
| 46 | PROMEX_ST_HEAD, /* send headers before dump */ |
| 47 | PROMEX_ST_DUMP, /* dumping stats */ |
| 48 | PROMEX_ST_DONE, /* finished */ |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 49 | PROMEX_ST_END, /* treatment terminated */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | /* Prometheus exporter dumper states (appctx->st1) */ |
| 53 | enum { |
| 54 | PROMEX_DUMPER_INIT = 0, /* initialized */ |
| 55 | PROMEX_DUMPER_GLOBAL, /* dump metrics of globals */ |
| 56 | PROMEX_DUMPER_FRONT, /* dump metrics of frontend proxies */ |
| 57 | PROMEX_DUMPER_BACK, /* dump metrics of backend proxies */ |
| 58 | PROMEX_DUMPER_LI, /* dump metrics of listeners */ |
| 59 | PROMEX_DUMPER_SRV, /* dump metrics of servers */ |
| 60 | PROMEX_DUMPER_DONE, /* finished */ |
| 61 | }; |
| 62 | |
| 63 | /* Prometheus exporter flags (appctx->ctx.stats.flags) */ |
| 64 | #define PROMEX_FL_METRIC_HDR 0x00000001 |
| 65 | #define PROMEX_FL_INFO_METRIC 0x00000002 |
Christopher Faulet | b713c4f | 2021-01-20 15:02:50 +0100 | [diff] [blame] | 66 | #define PROMEX_FL_FRONT_METRIC 0x00000004 |
| 67 | #define PROMEX_FL_BACK_METRIC 0x00000008 |
| 68 | #define PROMEX_FL_SRV_METRIC 0x00000010 |
| 69 | #define PROMEX_FL_SCOPE_GLOBAL 0x00000020 |
| 70 | #define PROMEX_FL_SCOPE_FRONT 0x00000040 |
| 71 | #define PROMEX_FL_SCOPE_BACK 0x00000080 |
| 72 | #define PROMEX_FL_SCOPE_SERVER 0x00000100 |
| 73 | #define PROMEX_FL_NO_MAINT_SRV 0x00000200 |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 74 | |
| 75 | #define PROMEX_FL_SCOPE_ALL (PROMEX_FL_SCOPE_GLOBAL|PROMEX_FL_SCOPE_FRONT|PROMEX_FL_SCOPE_BACK|PROMEX_FL_SCOPE_SERVER) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 76 | |
Christopher Faulet | 0312c0d | 2021-01-20 15:19:12 +0100 | [diff] [blame] | 77 | /* Promtheus metric type (gauge or counter) */ |
| 78 | enum promex_mt_type { |
| 79 | PROMEX_MT_GAUGE = 1, |
| 80 | PROMEX_MT_COUNTER = 2, |
| 81 | }; |
| 82 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 83 | /* The max length for metrics name. It is a hard limit but it should be |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 84 | * enough. |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 85 | */ |
| 86 | #define PROMEX_MAX_NAME_LEN 128 |
| 87 | |
| 88 | /* The expected max length for a metric dump, including its header lines. It is |
| 89 | * just a soft limit to avoid extra work. We don't try to dump a metric if less |
| 90 | * than this size is available in the HTX. |
| 91 | */ |
| 92 | #define PROMEX_MAX_METRIC_LENGTH 512 |
| 93 | |
William Dauchy | 5a982a7 | 2021-01-08 13:18:06 +0100 | [diff] [blame] | 94 | /* Some labels for build_info */ |
| 95 | #define PROMEX_VERSION_LABEL "version=\"" HAPROXY_VERSION "\"" |
| 96 | #define PROMEX_BUILDINFO_LABEL PROMEX_VERSION_LABEL |
| 97 | |
Christopher Faulet | 0312c0d | 2021-01-20 15:19:12 +0100 | [diff] [blame] | 98 | /* Describe a prometheus metric */ |
| 99 | struct promex_metric { |
| 100 | const struct ist n; /* The metric name */ |
| 101 | enum promex_mt_type type; /* The metric type (gauge or counter) */ |
| 102 | unsigned int flags; /* PROMEX_FL_* flags */ |
| 103 | }; |
| 104 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 105 | /* Global metrics */ |
| 106 | const struct promex_metric promex_global_metrics[INF_TOTAL_FIELDS] = { |
| 107 | //[INF_NAME] ignored |
| 108 | //[INF_VERSION], ignored |
| 109 | //[INF_RELEASE_DATE] ignored |
| 110 | [INF_BUILD_INFO] = { .n = IST("build_info"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 111 | [INF_NBTHREAD] = { .n = IST("nbthread"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 112 | [INF_NBPROC] = { .n = IST("nbproc"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 113 | [INF_PROCESS_NUM] = { .n = IST("relative_process_id"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 114 | //[INF_PID] ignored |
| 115 | //[INF_UPTIME] ignored |
| 116 | [INF_UPTIME_SEC] = { .n = IST("uptime_seconds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 117 | [INF_START_TIME_SEC] = { .n = IST("start_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 118 | [INF_MEMMAX_BYTES] = { .n = IST("max_memory_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 119 | [INF_POOL_ALLOC_BYTES] = { .n = IST("pool_allocated_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 120 | [INF_POOL_USED_BYTES] = { .n = IST("pool_used_bytes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 121 | [INF_POOL_FAILED] = { .n = IST("pool_failures_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 122 | [INF_ULIMIT_N] = { .n = IST("max_fds"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 123 | [INF_MAXSOCK] = { .n = IST("max_sockets"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 124 | [INF_MAXCONN] = { .n = IST("max_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 125 | [INF_HARD_MAXCONN] = { .n = IST("hard_max_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 126 | [INF_CURR_CONN] = { .n = IST("current_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 127 | [INF_CUM_CONN] = { .n = IST("connections_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 128 | [INF_CUM_REQ] = { .n = IST("requests_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 129 | [INF_MAX_SSL_CONNS] = { .n = IST("max_ssl_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 130 | [INF_CURR_SSL_CONNS] = { .n = IST("current_ssl_connections"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 131 | [INF_CUM_SSL_CONNS] = { .n = IST("ssl_connections_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 132 | [INF_MAXPIPES] = { .n = IST("max_pipes"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 133 | [INF_PIPES_USED] = { .n = IST("pipes_used_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 134 | [INF_PIPES_FREE] = { .n = IST("pipes_free_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 135 | [INF_CONN_RATE] = { .n = IST("current_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 136 | [INF_CONN_RATE_LIMIT] = { .n = IST("limit_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 137 | [INF_MAX_CONN_RATE] = { .n = IST("max_connection_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 138 | [INF_SESS_RATE] = { .n = IST("current_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 139 | [INF_SESS_RATE_LIMIT] = { .n = IST("limit_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 140 | [INF_MAX_SESS_RATE] = { .n = IST("max_session_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 141 | [INF_SSL_RATE] = { .n = IST("current_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 142 | [INF_SSL_RATE_LIMIT] = { .n = IST("limit_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 143 | [INF_MAX_SSL_RATE] = { .n = IST("max_ssl_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 144 | [INF_SSL_FRONTEND_KEY_RATE] = { .n = IST("current_frontend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 145 | [INF_SSL_FRONTEND_MAX_KEY_RATE] = { .n = IST("max_frontend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 146 | [INF_SSL_FRONTEND_SESSION_REUSE_PCT] = { .n = IST("frontend_ssl_reuse"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 147 | [INF_SSL_BACKEND_KEY_RATE] = { .n = IST("current_backend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 148 | [INF_SSL_BACKEND_MAX_KEY_RATE] = { .n = IST("max_backend_ssl_key_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 149 | [INF_SSL_CACHE_LOOKUPS] = { .n = IST("ssl_cache_lookups_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 150 | [INF_SSL_CACHE_MISSES] = { .n = IST("ssl_cache_misses_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 151 | [INF_COMPRESS_BPS_IN] = { .n = IST("http_comp_bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 152 | [INF_COMPRESS_BPS_OUT] = { .n = IST("http_comp_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 153 | [INF_COMPRESS_BPS_RATE_LIM] = { .n = IST("limit_http_comp"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 154 | [INF_ZLIB_MEM_USAGE] = { .n = IST("current_zlib_memory"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 155 | [INF_MAX_ZLIB_MEM_USAGE] = { .n = IST("max_zlib_memory"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 156 | [INF_TASKS] = { .n = IST("current_tasks"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 157 | [INF_RUN_QUEUE] = { .n = IST("current_run_queue"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 158 | [INF_IDLE_PCT] = { .n = IST("idle_time_percent"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 159 | //[INF_NODE] ignored |
| 160 | //[INF_DESCRIPTION] ignored |
| 161 | [INF_STOPPING] = { .n = IST("stopping"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 162 | [INF_JOBS] = { .n = IST("jobs"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 163 | [INF_UNSTOPPABLE_JOBS] = { .n = IST("unstoppable_jobs"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 164 | [INF_LISTENERS] = { .n = IST("listeners"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 165 | [INF_ACTIVE_PEERS] = { .n = IST("active_peers"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 166 | [INF_CONNECTED_PEERS] = { .n = IST("connected_peers"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 167 | [INF_DROPPED_LOGS] = { .n = IST("dropped_logs_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 168 | [INF_BUSY_POLLING] = { .n = IST("busy_polling_enabled"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 169 | [INF_FAILED_RESOLUTIONS] = { .n = IST("failed_resolutions"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 170 | [INF_TOTAL_BYTES_OUT] = { .n = IST("bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 171 | [INF_TOTAL_SPLICED_BYTES_OUT] = { .n = IST("spliced_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = PROMEX_FL_INFO_METRIC }, |
| 172 | [INF_BYTES_OUT_RATE] = { .n = IST("bytes_out_rate"), .type = PROMEX_MT_GAUGE, .flags = PROMEX_FL_INFO_METRIC }, |
| 173 | //[INF_DEBUG_COMMANDS_ISSUED] ignored |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 174 | }; |
| 175 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 176 | /* frontend/backend/server fields */ |
| 177 | const struct promex_metric promex_st_metrics[ST_F_TOTAL_FIELDS] = { |
| 178 | //[ST_F_PXNAME] ignored |
| 179 | //[ST_F_SVNAME] ignored |
| 180 | [ST_F_QCUR] = { .n = IST("current_queue"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 181 | [ST_F_QMAX] = { .n = IST("max_queue"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 182 | [ST_F_SCUR] = { .n = IST("current_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 183 | [ST_F_SMAX] = { .n = IST("max_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 184 | [ST_F_SLIM] = { .n = IST("limit_sessions"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 185 | [ST_F_STOT] = { .n = IST("sessions_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 186 | [ST_F_BIN] = { .n = IST("bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 187 | [ST_F_BOUT] = { .n = IST("bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 188 | [ST_F_DREQ] = { .n = IST("requests_denied_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 189 | [ST_F_DRESP] = { .n = IST("responses_denied_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 190 | [ST_F_EREQ] = { .n = IST("request_errors_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 191 | [ST_F_ECON] = { .n = IST("connection_errors_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 192 | [ST_F_ERESP] = { .n = IST("response_errors_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 193 | [ST_F_WRETR] = { .n = IST("retry_warnings_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 194 | [ST_F_WREDIS] = { .n = IST("redispatch_warnings_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 195 | [ST_F_STATUS] = { .n = IST("status"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 196 | [ST_F_WEIGHT] = { .n = IST("weight"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 197 | [ST_F_ACT] = { .n = IST("active_servers"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) }, |
| 198 | [ST_F_BCK] = { .n = IST("backup_servers"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC ) }, |
| 199 | [ST_F_CHKFAIL] = { .n = IST("check_failures_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 200 | [ST_F_CHKDOWN] = { .n = IST("check_up_down_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 201 | [ST_F_LASTCHG] = { .n = IST("check_last_change_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 202 | [ST_F_DOWNTIME] = { .n = IST("downtime_seconds_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 203 | [ST_F_QLIMIT] = { .n = IST("queue_limit"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 204 | //[ST_F_PID] ignored |
| 205 | //[ST_F_IID] ignored |
| 206 | //[ST_F_SID] ignored |
| 207 | [ST_F_THROTTLE] = { .n = IST("current_throttle"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 208 | [ST_F_LBTOT] = { .n = IST("loadbalanced_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 209 | //[ST_F_TRACKED] ignored |
| 210 | //[ST_F_TYPE] ignored |
| 211 | //[ST_F_RATE] ignored |
| 212 | [ST_F_RATE_LIM] = { .n = IST("limit_session_rate"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 213 | [ST_F_RATE_MAX] = { .n = IST("max_session_rate"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 214 | [ST_F_CHECK_STATUS] = { .n = IST("check_status"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 215 | [ST_F_CHECK_CODE] = { .n = IST("check_code"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 216 | [ST_F_CHECK_DURATION] = { .n = IST("check_duration_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 217 | [ST_F_HRSP_1XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 218 | [ST_F_HRSP_2XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 219 | [ST_F_HRSP_3XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 220 | [ST_F_HRSP_4XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 221 | [ST_F_HRSP_5XX] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 222 | [ST_F_HRSP_OTHER] = { .n = IST("http_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 223 | //[ST_F_HANAFAIL] ignored |
| 224 | //[ST_F_REQ_RATE] ignored |
| 225 | [ST_F_REQ_RATE_MAX] = { .n = IST("http_requests_rate_max"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 226 | [ST_F_REQ_TOT] = { .n = IST("http_requests_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 227 | [ST_F_CLI_ABRT] = { .n = IST("client_aborts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 228 | [ST_F_SRV_ABRT] = { .n = IST("server_aborts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 229 | [ST_F_COMP_IN] = { .n = IST("http_comp_bytes_in_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 230 | [ST_F_COMP_OUT] = { .n = IST("http_comp_bytes_out_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 231 | [ST_F_COMP_BYP] = { .n = IST("http_comp_bytes_bypassed_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 232 | [ST_F_COMP_RSP] = { .n = IST("http_comp_responses_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 233 | [ST_F_LASTSESS] = { .n = IST("last_session_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 234 | //[ST_F_LAST_CHK] ignroed |
| 235 | //[ST_F_LAST_AGT] ignored |
| 236 | [ST_F_QTIME] = { .n = IST("queue_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 237 | [ST_F_CTIME] = { .n = IST("connect_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 238 | [ST_F_RTIME] = { .n = IST("response_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 239 | [ST_F_TTIME] = { .n = IST("total_time_average_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 240 | //[ST_F_AGENT_STATUS] ignored |
| 241 | //[ST_F_AGENT_CODE] ignored |
| 242 | //[ST_F_AGENT_DURATION] ignored |
| 243 | //[ST_F_CHECK_DESC] ignored |
| 244 | //[ST_F_AGENT_DESC] ignored |
| 245 | //[ST_F_CHECK_RISE] ignored |
| 246 | //[ST_F_CHECK_FALL] ignored |
| 247 | //[ST_F_CHECK_HEALTH] ignored |
| 248 | //[ST_F_AGENT_RISE] ignored |
| 249 | //[ST_F_AGENT_FALL] ignored |
| 250 | //[ST_F_AGENT_HEALTH] ignored |
| 251 | //[ST_F_ADDR] ignored |
| 252 | //[ST_F_COOKIE] ignored |
| 253 | //[ST_F_MODE] ignored |
| 254 | //[ST_F_ALGO] ignored |
| 255 | //[ST_F_CONN_RATE] ignored |
| 256 | [ST_F_CONN_RATE_MAX] = { .n = IST("connections_rate_max"), .type = PROMEX_MT_GAUGE, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 257 | [ST_F_CONN_TOT] = { .n = IST("connections_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 258 | [ST_F_INTERCEPTED] = { .n = IST("intercepted_requests_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 259 | [ST_F_DCON] = { .n = IST("denied_connections_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 260 | [ST_F_DSES] = { .n = IST("denied_sessions_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC ) }, |
| 261 | [ST_F_WREW] = { .n = IST("failed_header_rewriting_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 262 | [ST_F_CONNECT] = { .n = IST("connection_attempts_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 263 | [ST_F_REUSE] = { .n = IST("connection_reuses_total"), .type = PROMEX_MT_COUNTER, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 264 | [ST_F_CACHE_LOOKUPS] = { .n = IST("http_cache_lookups_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 265 | [ST_F_CACHE_HITS] = { .n = IST("http_cache_hits_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC ) }, |
| 266 | [ST_F_SRV_ICUR] = { .n = IST("idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 267 | [ST_F_SRV_ILIM] = { .n = IST("idle_connections_limit"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 268 | [ST_F_QT_MAX] = { .n = IST("max_queue_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 269 | [ST_F_CT_MAX] = { .n = IST("max_connect_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 270 | [ST_F_RT_MAX] = { .n = IST("max_response_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 271 | [ST_F_TT_MAX] = { .n = IST("max_total_time_seconds"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 272 | [ST_F_EINT] = { .n = IST("internal_errors_total"), .type = PROMEX_MT_COUNTER, .flags = (PROMEX_FL_FRONT_METRIC | PROMEX_FL_BACK_METRIC | PROMEX_FL_SRV_METRIC) }, |
| 273 | [ST_F_IDLE_CONN_CUR] = { .n = IST("unsafe_idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 274 | [ST_F_SAFE_CONN_CUR]= { .n = IST("safe_idle_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 275 | [ST_F_USED_CONN_CUR] = { .n = IST("used_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
| 276 | [ST_F_NEED_CONN_EST] = { .n = IST("need_connections_current"), .type = PROMEX_MT_GAUGE, .flags = ( PROMEX_FL_SRV_METRIC) }, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 277 | }; |
| 278 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 279 | /* Description of all stats fields */ |
| 280 | const struct ist promex_st_metric_desc[ST_F_TOTAL_FIELDS] = { |
| 281 | [ST_F_PXNAME] = IST("The proxy name."), |
| 282 | [ST_F_SVNAME] = IST("The service name (FRONTEND for frontend, BACKEND for backend, any name for server/listener)."), |
| 283 | [ST_F_QCUR] = IST("Current number of queued requests."), |
| 284 | [ST_F_QMAX] = IST("Maximum observed number of queued requests."), |
| 285 | [ST_F_SCUR] = IST("Current number of active sessions."), |
| 286 | [ST_F_SMAX] = IST("Maximum observed number of active sessions."), |
| 287 | [ST_F_SLIM] = IST("Configured session limit."), |
| 288 | [ST_F_STOT] = IST("Total number of sessions."), |
| 289 | [ST_F_BIN] = IST("Current total of incoming bytes."), |
| 290 | [ST_F_BOUT] = IST("Current total of outgoing bytes."), |
| 291 | [ST_F_DREQ] = IST("Total number of denied requests."), |
| 292 | [ST_F_DRESP] = IST("Total number of denied responses."), |
| 293 | [ST_F_EREQ] = IST("Total number of request errors."), |
| 294 | [ST_F_ECON] = IST("Total number of connection errors."), |
| 295 | [ST_F_ERESP] = IST("Total number of response errors."), |
| 296 | [ST_F_WRETR] = IST("Total number of retry warnings."), |
| 297 | [ST_F_WREDIS] = IST("Total number of redispatch warnings."), |
Willy Tarreau | 6b3bf73 | 2020-09-24 07:35:46 +0200 | [diff] [blame] | 298 | [ST_F_STATUS] = IST("Current status of the service (frontend: 0=STOP, 1=UP - backend: 0=DOWN, 1=UP - server: 0=DOWN, 1=UP, 2=MAINT, 3=DRAIN, 4=NOLB)."), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 299 | [ST_F_WEIGHT] = IST("Service weight."), |
| 300 | [ST_F_ACT] = IST("Current number of active servers."), |
| 301 | [ST_F_BCK] = IST("Current number of backup servers."), |
| 302 | [ST_F_CHKFAIL] = IST("Total number of failed check (Only counts checks failed when the server is up)."), |
| 303 | [ST_F_CHKDOWN] = IST("Total number of UP->DOWN transitions."), |
| 304 | [ST_F_LASTCHG] = IST("Number of seconds since the last UP<->DOWN transition."), |
| 305 | [ST_F_DOWNTIME] = IST("Total downtime (in seconds) for the service."), |
| 306 | [ST_F_QLIMIT] = IST("Configured maxqueue for the server (0 meaning no limit)."), |
| 307 | [ST_F_PID] = IST("Process id (0 for first instance, 1 for second, ...)"), |
| 308 | [ST_F_IID] = IST("Unique proxy id."), |
| 309 | [ST_F_SID] = IST("Server id (unique inside a proxy)."), |
| 310 | [ST_F_THROTTLE] = IST("Current throttle percentage for the server, when slowstart is active, or no value if not in slowstart."), |
| 311 | [ST_F_LBTOT] = IST("Total number of times a service was selected, either for new sessions, or when redispatching."), |
| 312 | [ST_F_TRACKED] = IST("Id of proxy/server if tracking is enabled."), |
| 313 | [ST_F_TYPE] = IST("Service type (0=frontend, 1=backend, 2=server, 3=socket/listener)."), |
| 314 | [ST_F_RATE] = IST("Current number of sessions per second over last elapsed second."), |
| 315 | [ST_F_RATE_LIM] = IST("Configured limit on new sessions per second."), |
| 316 | [ST_F_RATE_MAX] = IST("Maximum observed number of sessions per second."), |
Christopher Faulet | cf403f3 | 2019-11-21 14:35:46 +0100 | [diff] [blame] | 317 | [ST_F_CHECK_STATUS] = IST("Status of last health check (HCHK_STATUS_* values)."), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 318 | [ST_F_CHECK_CODE] = IST("layer5-7 code, if available of the last health check."), |
Christopher Faulet | 2711e51 | 2020-02-27 16:12:07 +0100 | [diff] [blame] | 319 | [ST_F_CHECK_DURATION] = IST("Total duration of the latest server health check, in seconds."), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 320 | [ST_F_HRSP_1XX] = IST("Total number of HTTP responses."), |
| 321 | [ST_F_HRSP_2XX] = IST("Total number of HTTP responses."), |
| 322 | [ST_F_HRSP_3XX] = IST("Total number of HTTP responses."), |
| 323 | [ST_F_HRSP_4XX] = IST("Total number of HTTP responses."), |
| 324 | [ST_F_HRSP_5XX] = IST("Total number of HTTP responses."), |
| 325 | [ST_F_HRSP_OTHER] = IST("Total number of HTTP responses."), |
| 326 | [ST_F_HANAFAIL] = IST("Total number of failed health checks."), |
| 327 | [ST_F_REQ_RATE] = IST("Current number of HTTP requests per second over last elapsed second."), |
| 328 | [ST_F_REQ_RATE_MAX] = IST("Maximum observed number of HTTP requests per second."), |
| 329 | [ST_F_REQ_TOT] = IST("Total number of HTTP requests received."), |
| 330 | [ST_F_CLI_ABRT] = IST("Total number of data transfers aborted by the client."), |
| 331 | [ST_F_SRV_ABRT] = IST("Total number of data transfers aborted by the server."), |
| 332 | [ST_F_COMP_IN] = IST("Total number of HTTP response bytes fed to the compressor."), |
| 333 | [ST_F_COMP_OUT] = IST("Total number of HTTP response bytes emitted by the compressor."), |
| 334 | [ST_F_COMP_BYP] = IST("Total number of bytes that bypassed the HTTP compressor (CPU/BW limit)."), |
| 335 | [ST_F_COMP_RSP] = IST("Total number of HTTP responses that were compressed."), |
| 336 | [ST_F_LASTSESS] = IST("Number of seconds since last session assigned to server/backend."), |
| 337 | [ST_F_LAST_CHK] = IST("Last health check contents or textual error"), |
| 338 | [ST_F_LAST_AGT] = IST("Last agent check contents or textual error"), |
| 339 | [ST_F_QTIME] = IST("Avg. queue time for last 1024 successful connections."), |
| 340 | [ST_F_CTIME] = IST("Avg. connect time for last 1024 successful connections."), |
| 341 | [ST_F_RTIME] = IST("Avg. response time for last 1024 successful connections."), |
| 342 | [ST_F_TTIME] = IST("Avg. total time for last 1024 successful connections."), |
| 343 | [ST_F_AGENT_STATUS] = IST("Status of last agent check."), |
| 344 | [ST_F_AGENT_CODE] = IST("Numeric code reported by agent if any (unused for now)."), |
| 345 | [ST_F_AGENT_DURATION] = IST("Time in ms taken to finish last agent check."), |
| 346 | [ST_F_CHECK_DESC] = IST("Short human-readable description of the last health status."), |
| 347 | [ST_F_AGENT_DESC] = IST("Short human-readable description of the last agent status."), |
| 348 | [ST_F_CHECK_RISE] = IST("Server's \"rise\" parameter used by health checks"), |
| 349 | [ST_F_CHECK_FALL] = IST("Server's \"fall\" parameter used by health checks"), |
| 350 | [ST_F_CHECK_HEALTH] = IST("Server's health check value between 0 and rise+fall-1"), |
| 351 | [ST_F_AGENT_RISE] = IST("Agent's \"rise\" parameter, normally 1."), |
| 352 | [ST_F_AGENT_FALL] = IST("Agent's \"fall\" parameter, normally 1."), |
| 353 | [ST_F_AGENT_HEALTH] = IST("Agent's health parameter, between 0 and rise+fall-1"), |
| 354 | [ST_F_ADDR] = IST("address:port or \"unix\". IPv6 has brackets around the address."), |
| 355 | [ST_F_COOKIE] = IST("Server's cookie value or backend's cookie name."), |
| 356 | [ST_F_MODE] = IST("Proxy mode (tcp, http, health, unknown)."), |
| 357 | [ST_F_ALGO] = IST("Load balancing algorithm."), |
| 358 | [ST_F_CONN_RATE] = IST("Current number of connections per second over the last elapsed second."), |
| 359 | [ST_F_CONN_RATE_MAX] = IST("Maximum observed number of connections per second."), |
| 360 | [ST_F_CONN_TOT] = IST("Total number of connections."), |
| 361 | [ST_F_INTERCEPTED] = IST("Total number of intercepted HTTP requests."), |
| 362 | [ST_F_DCON] = IST("Total number of requests denied by \"tcp-request connection\" rules."), |
| 363 | [ST_F_DSES] = IST("Total number of requests denied by \"tcp-request session\" rules."), |
| 364 | [ST_F_WREW] = IST("Total number of failed header rewriting warnings."), |
| 365 | [ST_F_CONNECT] = IST("Total number of connection establishment attempts."), |
| 366 | [ST_F_REUSE] = IST("Total number of connection reuses."), |
| 367 | [ST_F_CACHE_LOOKUPS] = IST("Total number of HTTP cache lookups."), |
| 368 | [ST_F_CACHE_HITS] = IST("Total number of HTTP cache hits."), |
Christopher Faulet | 20ab80c | 2019-11-08 15:24:32 +0100 | [diff] [blame] | 369 | [ST_F_SRV_ICUR] = IST("Current number of idle connections available for reuse"), |
| 370 | [ST_F_SRV_ILIM] = IST("Limit on the number of available idle connections"), |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 371 | [ST_F_QT_MAX] = IST("Maximum observed time spent in the queue"), |
| 372 | [ST_F_CT_MAX] = IST("Maximum observed time spent waiting for a connection to complete"), |
| 373 | [ST_F_RT_MAX] = IST("Maximum observed time spent waiting for a server response"), |
| 374 | [ST_F_TT_MAX] = IST("Maximum observed total request+response time (request+queue+connect+response+processing)"), |
Christopher Faulet | e4a2c8d | 2019-12-16 14:44:01 +0100 | [diff] [blame] | 375 | [ST_F_EINT] = IST("Total number of internal errors."), |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 376 | [ST_F_IDLE_CONN_CUR] = IST("Current number of unsafe idle connections."), |
| 377 | [ST_F_SAFE_CONN_CUR] = IST("Current number of safe idle connections."), |
| 378 | [ST_F_USED_CONN_CUR] = IST("Current number of connections in use."), |
| 379 | [ST_F_NEED_CONN_EST] = IST("Estimated needed number of connections."), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 380 | }; |
| 381 | |
| 382 | /* Specific labels for all info fields. Empty by default. */ |
| 383 | const struct ist promex_inf_metric_labels[INF_TOTAL_FIELDS] = { |
Christopher Faulet | 0175b1f | 2021-01-20 15:28:22 +0100 | [diff] [blame] | 384 | [INF_BUILD_INFO] = IST(PROMEX_BUILDINFO_LABEL), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 385 | }; |
| 386 | |
| 387 | /* Specific labels for all stats fields. Empty by default. */ |
| 388 | const struct ist promex_st_metric_labels[ST_F_TOTAL_FIELDS] = { |
Christopher Faulet | 0175b1f | 2021-01-20 15:28:22 +0100 | [diff] [blame] | 389 | [ST_F_HRSP_1XX] = IST("code=\"1xx\""), |
| 390 | [ST_F_HRSP_2XX] = IST("code=\"2xx\""), |
| 391 | [ST_F_HRSP_3XX] = IST("code=\"3xx\""), |
| 392 | [ST_F_HRSP_4XX] = IST("code=\"4xx\""), |
| 393 | [ST_F_HRSP_5XX] = IST("code=\"5xx\""), |
| 394 | [ST_F_HRSP_OTHER] = IST("code=\"other\""), |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 395 | }; |
| 396 | |
Christopher Faulet | d45d105 | 2019-09-06 16:10:19 +0200 | [diff] [blame] | 397 | /* Return the server status: 0=DOWN, 1=UP, 2=MAINT, 3=DRAIN, 4=NOLB. */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 398 | static int promex_srv_status(struct server *sv) |
| 399 | { |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 400 | int state = 0; |
| 401 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 402 | if (sv->cur_state == SRV_ST_RUNNING || sv->cur_state == SRV_ST_STARTING) { |
| 403 | state = 1; |
| 404 | if (sv->cur_admin & SRV_ADMF_DRAIN) |
Christopher Faulet | d45d105 | 2019-09-06 16:10:19 +0200 | [diff] [blame] | 405 | state = 3; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 406 | } |
Christopher Faulet | d45d105 | 2019-09-06 16:10:19 +0200 | [diff] [blame] | 407 | else if (sv->cur_state == SRV_ST_STOPPING) |
| 408 | state = 4; |
| 409 | |
| 410 | if (sv->cur_admin & SRV_ADMF_MAINT) |
| 411 | state = 2; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 412 | |
| 413 | return state; |
| 414 | } |
| 415 | |
| 416 | /* Convert a field to its string representation and write it in <out>, followed |
| 417 | * by a newline, if there is enough space. non-numeric value are converted in |
| 418 | * "Nan" because Prometheus only support numerical values (but it is unexepceted |
| 419 | * to process this kind of value). It returns 1 on success. Otherwise, it |
| 420 | * returns 0. The buffer's length must not exceed <max> value. |
| 421 | */ |
| 422 | static int promex_metric_to_str(struct buffer *out, struct field *f, size_t max) |
| 423 | { |
| 424 | int ret = 0; |
| 425 | |
| 426 | switch (field_format(f, 0)) { |
| 427 | case FF_EMPTY: ret = chunk_strcat(out, "Nan\n"); break; |
| 428 | case FF_S32: ret = chunk_appendf(out, "%d\n", f->u.s32); break; |
| 429 | case FF_U32: ret = chunk_appendf(out, "%u\n", f->u.u32); break; |
| 430 | case FF_S64: ret = chunk_appendf(out, "%lld\n", (long long)f->u.s64); break; |
| 431 | case FF_U64: ret = chunk_appendf(out, "%llu\n", (unsigned long long)f->u.u64); break; |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 432 | case FF_FLT: ret = chunk_appendf(out, "%f\n", f->u.flt); break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 433 | case FF_STR: ret = chunk_strcat(out, "Nan\n"); break; |
| 434 | default: ret = chunk_strcat(out, "Nan\n"); break; |
| 435 | } |
| 436 | if (!ret || out->data > max) |
| 437 | return 0; |
| 438 | return 1; |
| 439 | } |
| 440 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 441 | /* Dump the header lines for <metric>. It is its #HELP and #TYPE strings. It |
| 442 | * returns 1 on success. Otherwise, if <out> length exceeds <max>, it returns 0. |
| 443 | */ |
| 444 | static int promex_dump_metric_header(struct appctx *appctx, struct htx *htx, |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 445 | const struct promex_metric *metric, const struct ist name, |
| 446 | struct ist *out, size_t max) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 447 | { |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 448 | struct ist type; |
| 449 | |
| 450 | switch (metric->type) { |
| 451 | case PROMEX_MT_COUNTER: |
| 452 | type = ist("counter"); |
| 453 | break; |
| 454 | default: |
| 455 | type = ist("gauge"); |
| 456 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 457 | |
William Dauchy | a191b77 | 2021-01-15 22:41:39 +0100 | [diff] [blame] | 458 | if (istcat(out, ist("# HELP "), max) == -1 || |
| 459 | istcat(out, name, max) == -1 || |
| 460 | istcat(out, ist(" "), max) == -1) |
| 461 | goto full; |
| 462 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 463 | if (metric->flags & PROMEX_FL_INFO_METRIC) { |
William Dauchy | a191b77 | 2021-01-15 22:41:39 +0100 | [diff] [blame] | 464 | if (istcat(out, ist(info_fields[appctx->st2].desc), max) == -1) |
| 465 | goto full; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 466 | } |
| 467 | else { |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 468 | if (istcat(out, promex_st_metric_desc[appctx->st2], max) == -1) |
William Dauchy | a191b77 | 2021-01-15 22:41:39 +0100 | [diff] [blame] | 469 | goto full; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 470 | } |
| 471 | |
William Dauchy | a191b77 | 2021-01-15 22:41:39 +0100 | [diff] [blame] | 472 | if (istcat(out, ist("\n# TYPE "), max) == -1 || |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 473 | istcat(out, name, max) == -1 || |
| 474 | istcat(out, ist(" "), max) == -1 || |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 475 | istcat(out, type, max) == -1 || |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 476 | istcat(out, ist("\n"), max) == -1) |
| 477 | goto full; |
| 478 | |
| 479 | return 1; |
| 480 | |
| 481 | full: |
| 482 | return 0; |
| 483 | } |
| 484 | |
| 485 | /* Dump the line for <metric>. It starts by the metric name followed by its |
| 486 | * labels (proxy name, server name...) between braces and finally its value. If |
| 487 | * not already done, the header lines are dumped first. It returns 1 on |
| 488 | * success. Otherwise if <out> length exceeds <max>, it returns 0. |
| 489 | */ |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 490 | static int promex_dump_metric(struct appctx *appctx, struct htx *htx, struct ist prefix, |
| 491 | const struct promex_metric *metric, struct field *val, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 492 | struct ist *out, size_t max) |
| 493 | { |
| 494 | struct ist name = { .ptr = (char[PROMEX_MAX_NAME_LEN]){ 0 }, .len = 0 }; |
| 495 | size_t len = out->len; |
| 496 | |
| 497 | if (out->len + PROMEX_MAX_METRIC_LENGTH > max) |
| 498 | return 0; |
| 499 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 500 | /* Fill the metric name */ |
| 501 | istcat(&name, prefix, PROMEX_MAX_NAME_LEN); |
| 502 | istcat(&name, metric->n, PROMEX_MAX_NAME_LEN); |
| 503 | |
| 504 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 505 | if ((appctx->ctx.stats.flags & PROMEX_FL_METRIC_HDR) && |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 506 | !promex_dump_metric_header(appctx, htx, metric, name, out, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 507 | goto full; |
| 508 | |
| 509 | if (appctx->ctx.stats.flags & PROMEX_FL_INFO_METRIC) { |
| 510 | const struct ist label = promex_inf_metric_labels[appctx->st2]; |
| 511 | |
| 512 | if (istcat(out, name, max) == -1 || |
| 513 | (label.len && istcat(out, ist("{"), max) == -1) || |
| 514 | (label.len && istcat(out, label, max) == -1) || |
| 515 | (label.len && istcat(out, ist("}"), max) == -1) || |
| 516 | istcat(out, ist(" "), max) == -1) |
| 517 | goto full; |
| 518 | } |
| 519 | else { |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 520 | struct proxy *px = appctx->ctx.stats.obj1; |
| 521 | struct server *srv = appctx->ctx.stats.obj2; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 522 | const struct ist label = promex_st_metric_labels[appctx->st2]; |
| 523 | |
| 524 | if (istcat(out, name, max) == -1 || |
| 525 | istcat(out, ist("{proxy=\""), max) == -1 || |
| 526 | istcat(out, ist2(px->id, strlen(px->id)), max) == -1 || |
| 527 | istcat(out, ist("\""), max) == -1 || |
| 528 | (srv && istcat(out, ist(",server=\""), max) == -1) || |
| 529 | (srv && istcat(out, ist2(srv->id, strlen(srv->id)), max) == -1) || |
| 530 | (srv && istcat(out, ist("\""), max) == -1) || |
| 531 | (label.len && istcat(out, ist(","), max) == -1) || |
| 532 | (label.len && istcat(out, label, max) == -1) || |
| 533 | istcat(out, ist("} "), max) == -1) |
| 534 | goto full; |
| 535 | } |
| 536 | |
| 537 | trash.data = out->len; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 538 | if (!promex_metric_to_str(&trash, val, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 539 | goto full; |
| 540 | out->len = trash.data; |
| 541 | |
| 542 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
| 543 | return 1; |
| 544 | full: |
| 545 | // Restore previous length |
| 546 | out->len = len; |
| 547 | return 0; |
| 548 | |
| 549 | } |
| 550 | |
| 551 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 552 | /* Dump global metrics (prefixed by "haproxy_process_"). It returns 1 on success, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 553 | * 0 if <htx> is full and -1 in case of any error. */ |
| 554 | static int promex_dump_global_metrics(struct appctx *appctx, struct htx *htx) |
| 555 | { |
| 556 | static struct ist prefix = IST("haproxy_process_"); |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 557 | struct field val; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 558 | struct channel *chn = si_ic(appctx->owner); |
| 559 | struct ist out = ist2(trash.area, 0); |
Christopher Faulet | 11921e6 | 2019-07-03 11:43:17 +0200 | [diff] [blame] | 560 | size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 561 | int ret = 1; |
| 562 | |
William Dauchy | 5d9b8f3 | 2021-01-11 20:07:49 +0100 | [diff] [blame] | 563 | if (!stats_fill_info(info, INF_TOTAL_FIELDS)) |
| 564 | return -1; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 565 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 566 | for (; appctx->st2 < INF_TOTAL_FIELDS; appctx->st2++) { |
| 567 | if (!(promex_global_metrics[appctx->st2].flags & appctx->ctx.stats.flags)) |
| 568 | continue; |
| 569 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 570 | switch (appctx->st2) { |
William Dauchy | 5a982a7 | 2021-01-08 13:18:06 +0100 | [diff] [blame] | 571 | case INF_BUILD_INFO: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 572 | val = mkf_u32(FN_GAUGE, 1); |
William Dauchy | 5a982a7 | 2021-01-08 13:18:06 +0100 | [diff] [blame] | 573 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 574 | |
| 575 | default: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 576 | val = info[appctx->st2]; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 577 | } |
| 578 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 579 | if (!promex_dump_metric(appctx, htx, prefix, &promex_global_metrics[appctx->st2], &val, &out, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 580 | goto full; |
| 581 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 582 | appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | end: |
Christopher Faulet | 0c55a15 | 2019-07-04 10:03:28 +0200 | [diff] [blame] | 586 | if (out.len) { |
| 587 | if (!htx_add_data_atonce(htx, out)) |
| 588 | return -1; /* Unexpected and unrecoverable error */ |
| 589 | channel_add_input(chn, out.len); |
| 590 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 591 | return ret; |
| 592 | full: |
| 593 | ret = 0; |
| 594 | goto end; |
| 595 | } |
| 596 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 597 | /* Dump frontends metrics (prefixed by "haproxy_frontend_"). It returns 1 on success, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 598 | * 0 if <htx> is full and -1 in case of any error. */ |
| 599 | static int promex_dump_front_metrics(struct appctx *appctx, struct htx *htx) |
| 600 | { |
| 601 | static struct ist prefix = IST("haproxy_frontend_"); |
| 602 | struct proxy *px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 603 | struct field val; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 604 | struct channel *chn = si_ic(appctx->owner); |
| 605 | struct ist out = ist2(trash.area, 0); |
Christopher Faulet | 11921e6 | 2019-07-03 11:43:17 +0200 | [diff] [blame] | 606 | size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx)); |
William Dauchy | b957745 | 2021-01-17 18:27:46 +0100 | [diff] [blame] | 607 | struct field *stats = stat_l[STATS_DOMAIN_PROXY]; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 608 | int ret = 1; |
| 609 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 610 | for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) { |
| 611 | if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags)) |
| 612 | continue; |
| 613 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 614 | while (appctx->ctx.stats.obj1) { |
| 615 | px = appctx->ctx.stats.obj1; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 616 | |
| 617 | /* skip the disabled proxies, global frontend and non-networked ones */ |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 618 | if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_FE)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 619 | goto next_px; |
| 620 | |
William Dauchy | b957745 | 2021-01-17 18:27:46 +0100 | [diff] [blame] | 621 | if (!stats_fill_fe_stats(px, stats, ST_F_TOTAL_FIELDS, &(appctx->st2))) |
| 622 | return -1; |
| 623 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 624 | switch (appctx->st2) { |
| 625 | case ST_F_STATUS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 626 | val = mkf_u32(FO_STATUS, !px->disabled); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 627 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 628 | case ST_F_REQ_RATE_MAX: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 629 | case ST_F_REQ_TOT: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 630 | case ST_F_HRSP_1XX: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 631 | case ST_F_INTERCEPTED: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 632 | case ST_F_CACHE_LOOKUPS: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 633 | case ST_F_CACHE_HITS: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 634 | case ST_F_COMP_IN: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 635 | case ST_F_COMP_OUT: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 636 | case ST_F_COMP_BYP: |
William Dauchy | b957745 | 2021-01-17 18:27:46 +0100 | [diff] [blame] | 637 | case ST_F_COMP_RSP: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 638 | if (px->mode != PR_MODE_HTTP) |
| 639 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 640 | val = stats[appctx->st2]; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 641 | break; |
William Dauchy | b957745 | 2021-01-17 18:27:46 +0100 | [diff] [blame] | 642 | case ST_F_HRSP_2XX: |
| 643 | case ST_F_HRSP_3XX: |
| 644 | case ST_F_HRSP_4XX: |
| 645 | case ST_F_HRSP_5XX: |
| 646 | case ST_F_HRSP_OTHER: |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 647 | if (px->mode != PR_MODE_HTTP) |
| 648 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 649 | val = stats[appctx->st2]; |
William Dauchy | b957745 | 2021-01-17 18:27:46 +0100 | [diff] [blame] | 650 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 651 | break; |
| 652 | |
| 653 | default: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 654 | val = stats[appctx->st2]; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 655 | } |
| 656 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 657 | if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2], &val, &out, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 658 | goto full; |
| 659 | next_px: |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 660 | appctx->ctx.stats.obj1 = px->next; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 661 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 662 | appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR; |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 663 | appctx->ctx.stats.obj1 = proxies_list; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | end: |
Christopher Faulet | 0c55a15 | 2019-07-04 10:03:28 +0200 | [diff] [blame] | 667 | if (out.len) { |
| 668 | if (!htx_add_data_atonce(htx, out)) |
| 669 | return -1; /* Unexpected and unrecoverable error */ |
| 670 | channel_add_input(chn, out.len); |
| 671 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 672 | return ret; |
| 673 | full: |
| 674 | ret = 0; |
| 675 | goto end; |
| 676 | } |
| 677 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 678 | /* Dump backends metrics (prefixed by "haproxy_backend_"). It returns 1 on success, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 679 | * 0 if <htx> is full and -1 in case of any error. */ |
| 680 | static int promex_dump_back_metrics(struct appctx *appctx, struct htx *htx) |
| 681 | { |
| 682 | static struct ist prefix = IST("haproxy_backend_"); |
| 683 | struct proxy *px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 684 | struct field val; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 685 | struct channel *chn = si_ic(appctx->owner); |
| 686 | struct ist out = ist2(trash.area, 0); |
Christopher Faulet | 11921e6 | 2019-07-03 11:43:17 +0200 | [diff] [blame] | 687 | size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 688 | int ret = 1; |
| 689 | uint32_t weight; |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 690 | double secs; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 691 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 692 | for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) { |
| 693 | if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags)) |
| 694 | continue; |
| 695 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 696 | while (appctx->ctx.stats.obj1) { |
| 697 | px = appctx->ctx.stats.obj1; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 698 | |
| 699 | /* skip the disabled proxies, global frontend and non-networked ones */ |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 700 | if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_BE)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 701 | goto next_px; |
| 702 | |
| 703 | switch (appctx->st2) { |
| 704 | case ST_F_STATUS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 705 | val = mkf_u32(FO_STATUS, (px->lbprm.tot_weight > 0 || !px->srv) ? 1 : 0); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 706 | break; |
| 707 | case ST_F_SCUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 708 | val = mkf_u32(0, px->beconn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 709 | break; |
| 710 | case ST_F_SMAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 711 | val = mkf_u32(FN_MAX, px->be_counters.conn_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 712 | break; |
| 713 | case ST_F_SLIM: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 714 | val = mkf_u32(FO_CONFIG|FN_LIMIT, px->fullconn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 715 | break; |
| 716 | case ST_F_STOT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 717 | val = mkf_u64(FN_COUNTER, px->be_counters.cum_conn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 718 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 719 | case ST_F_RATE_MAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 720 | val = mkf_u32(0, px->be_counters.sps_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 721 | break; |
| 722 | case ST_F_LASTSESS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 723 | val = mkf_s32(FN_AGE, be_lastsession(px)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 724 | break; |
| 725 | case ST_F_QCUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 726 | val = mkf_u32(0, px->nbpend); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 727 | break; |
| 728 | case ST_F_QMAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 729 | val = mkf_u32(FN_MAX, px->be_counters.nbpend_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 730 | break; |
| 731 | case ST_F_CONNECT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 732 | val = mkf_u64(FN_COUNTER, px->be_counters.connect); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 733 | break; |
| 734 | case ST_F_REUSE: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 735 | val = mkf_u64(FN_COUNTER, px->be_counters.reuse); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 736 | break; |
| 737 | case ST_F_BIN: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 738 | val = mkf_u64(FN_COUNTER, px->be_counters.bytes_in); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 739 | break; |
| 740 | case ST_F_BOUT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 741 | val = mkf_u64(FN_COUNTER, px->be_counters.bytes_out); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 742 | break; |
| 743 | case ST_F_QTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 744 | secs = (double)swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 745 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 746 | break; |
| 747 | case ST_F_CTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 748 | secs = (double)swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 749 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 750 | break; |
| 751 | case ST_F_RTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 752 | secs = (double)swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 753 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 754 | break; |
| 755 | case ST_F_TTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 756 | secs = (double)swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 757 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 758 | break; |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 759 | case ST_F_QT_MAX: |
| 760 | secs = (double)px->be_counters.qtime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 761 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 762 | break; |
| 763 | case ST_F_CT_MAX: |
| 764 | secs = (double)px->be_counters.ctime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 765 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 766 | break; |
| 767 | case ST_F_RT_MAX: |
| 768 | secs = (double)px->be_counters.dtime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 769 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 770 | break; |
| 771 | case ST_F_TT_MAX: |
| 772 | secs = (double)px->be_counters.ttime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 773 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 774 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 775 | case ST_F_DREQ: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 776 | val = mkf_u64(FN_COUNTER, px->be_counters.denied_req); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 777 | break; |
| 778 | case ST_F_DRESP: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 779 | val = mkf_u64(FN_COUNTER, px->be_counters.denied_resp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 780 | break; |
| 781 | case ST_F_ECON: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 782 | val = mkf_u64(FN_COUNTER, px->be_counters.failed_conns); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 783 | break; |
| 784 | case ST_F_ERESP: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 785 | val = mkf_u64(FN_COUNTER, px->be_counters.failed_resp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 786 | break; |
| 787 | case ST_F_WRETR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 788 | val = mkf_u64(FN_COUNTER, px->be_counters.retries); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 789 | break; |
| 790 | case ST_F_WREDIS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 791 | val = mkf_u64(FN_COUNTER, px->be_counters.redispatches); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 792 | break; |
| 793 | case ST_F_WREW: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 794 | val = mkf_u64(FN_COUNTER, px->be_counters.failed_rewrites); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 795 | break; |
Christopher Faulet | e4a2c8d | 2019-12-16 14:44:01 +0100 | [diff] [blame] | 796 | case ST_F_EINT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 797 | val = mkf_u64(FN_COUNTER, px->be_counters.internal_errors); |
Christopher Faulet | e4a2c8d | 2019-12-16 14:44:01 +0100 | [diff] [blame] | 798 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 799 | case ST_F_CLI_ABRT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 800 | val = mkf_u64(FN_COUNTER, px->be_counters.cli_aborts); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 801 | break; |
| 802 | case ST_F_SRV_ABRT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 803 | val = mkf_u64(FN_COUNTER, px->be_counters.srv_aborts); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 804 | break; |
| 805 | case ST_F_WEIGHT: |
| 806 | weight = (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 807 | val = mkf_u32(FN_AVG, weight); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 808 | break; |
| 809 | case ST_F_ACT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 810 | val = mkf_u32(0, px->srv_act); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 811 | break; |
| 812 | case ST_F_BCK: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 813 | val = mkf_u32(0, px->srv_bck); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 814 | break; |
| 815 | case ST_F_CHKDOWN: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 816 | val = mkf_u64(FN_COUNTER, px->down_trans); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 817 | break; |
| 818 | case ST_F_LASTCHG: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 819 | val = mkf_u32(FN_AGE, now.tv_sec - px->last_change); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 820 | break; |
| 821 | case ST_F_DOWNTIME: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 822 | val = mkf_u32(FN_COUNTER, be_downtime(px)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 823 | break; |
| 824 | case ST_F_LBTOT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 825 | val = mkf_u64(FN_COUNTER, px->be_counters.cum_lbconn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 826 | break; |
| 827 | case ST_F_REQ_TOT: |
| 828 | if (px->mode != PR_MODE_HTTP) |
| 829 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 830 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.cum_req); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 831 | break; |
| 832 | case ST_F_HRSP_1XX: |
| 833 | if (px->mode != PR_MODE_HTTP) |
| 834 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 835 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[1]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 836 | break; |
| 837 | case ST_F_HRSP_2XX: |
| 838 | if (px->mode != PR_MODE_HTTP) |
| 839 | goto next_px; |
| 840 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 841 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[2]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 842 | break; |
| 843 | case ST_F_HRSP_3XX: |
| 844 | if (px->mode != PR_MODE_HTTP) |
| 845 | goto next_px; |
| 846 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 847 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[3]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 848 | break; |
| 849 | case ST_F_HRSP_4XX: |
| 850 | if (px->mode != PR_MODE_HTTP) |
| 851 | goto next_px; |
| 852 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 853 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[4]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 854 | break; |
| 855 | case ST_F_HRSP_5XX: |
| 856 | if (px->mode != PR_MODE_HTTP) |
| 857 | goto next_px; |
| 858 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 859 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[5]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 860 | break; |
| 861 | case ST_F_HRSP_OTHER: |
| 862 | if (px->mode != PR_MODE_HTTP) |
| 863 | goto next_px; |
| 864 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 865 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.rsp[0]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 866 | break; |
| 867 | case ST_F_CACHE_LOOKUPS: |
| 868 | if (px->mode != PR_MODE_HTTP) |
| 869 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 870 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_lookups); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 871 | break; |
| 872 | case ST_F_CACHE_HITS: |
| 873 | if (px->mode != PR_MODE_HTTP) |
| 874 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 875 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.cache_hits); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 876 | break; |
| 877 | case ST_F_COMP_IN: |
| 878 | if (px->mode != PR_MODE_HTTP) |
| 879 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 880 | val = mkf_u64(FN_COUNTER, px->be_counters.comp_in); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 881 | break; |
| 882 | case ST_F_COMP_OUT: |
| 883 | if (px->mode != PR_MODE_HTTP) |
| 884 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 885 | val = mkf_u64(FN_COUNTER, px->be_counters.comp_out); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 886 | break; |
| 887 | case ST_F_COMP_BYP: |
| 888 | if (px->mode != PR_MODE_HTTP) |
| 889 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 890 | val = mkf_u64(FN_COUNTER, px->be_counters.comp_byp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 891 | break; |
| 892 | case ST_F_COMP_RSP: |
| 893 | if (px->mode != PR_MODE_HTTP) |
| 894 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 895 | val = mkf_u64(FN_COUNTER, px->be_counters.p.http.comp_rsp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 896 | break; |
| 897 | |
| 898 | default: |
| 899 | goto next_metric; |
| 900 | } |
| 901 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 902 | if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2], &val, &out, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 903 | goto full; |
| 904 | next_px: |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 905 | appctx->ctx.stats.obj1 = px->next; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 906 | } |
| 907 | next_metric: |
| 908 | appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR; |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 909 | appctx->ctx.stats.obj1 = proxies_list; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | end: |
Christopher Faulet | 0c55a15 | 2019-07-04 10:03:28 +0200 | [diff] [blame] | 913 | if (out.len) { |
| 914 | if (!htx_add_data_atonce(htx, out)) |
| 915 | return -1; /* Unexpected and unrecoverable error */ |
| 916 | channel_add_input(chn, out.len); |
| 917 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 918 | return ret; |
| 919 | full: |
| 920 | ret = 0; |
| 921 | goto end; |
| 922 | } |
| 923 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 924 | /* Dump servers metrics (prefixed by "haproxy_server_"). It returns 1 on success, |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 925 | * 0 if <htx> is full and -1 in case of any error. */ |
| 926 | static int promex_dump_srv_metrics(struct appctx *appctx, struct htx *htx) |
| 927 | { |
| 928 | static struct ist prefix = IST("haproxy_server_"); |
| 929 | struct proxy *px; |
| 930 | struct server *sv; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 931 | struct field val; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 932 | struct channel *chn = si_ic(appctx->owner); |
| 933 | struct ist out = ist2(trash.area, 0); |
Christopher Faulet | 11921e6 | 2019-07-03 11:43:17 +0200 | [diff] [blame] | 934 | size_t max = htx_get_max_blksz(htx, channel_htx_recv_max(chn, htx)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 935 | int ret = 1; |
| 936 | uint32_t weight; |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 937 | double secs; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 938 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 939 | for (;appctx->st2 < ST_F_TOTAL_FIELDS; appctx->st2++) { |
| 940 | if (!(promex_st_metrics[appctx->st2].flags & appctx->ctx.stats.flags)) |
| 941 | continue; |
| 942 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 943 | while (appctx->ctx.stats.obj1) { |
| 944 | px = appctx->ctx.stats.obj1; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 945 | |
| 946 | /* skip the disabled proxies, global frontend and non-networked ones */ |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 947 | if (px->disabled || px->uuid <= 0 || !(px->cap & PR_CAP_BE)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 948 | goto next_px; |
| 949 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 950 | while (appctx->ctx.stats.obj2) { |
| 951 | sv = appctx->ctx.stats.obj2; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 952 | |
Christopher Faulet | eba2294 | 2019-11-19 14:18:24 +0100 | [diff] [blame] | 953 | if ((appctx->ctx.stats.flags & PROMEX_FL_NO_MAINT_SRV) && (sv->cur_admin & SRV_ADMF_MAINT)) |
| 954 | goto next_sv; |
| 955 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 956 | switch (appctx->st2) { |
| 957 | case ST_F_STATUS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 958 | val = mkf_u32(FO_STATUS, promex_srv_status(sv)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 959 | break; |
| 960 | case ST_F_SCUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 961 | val = mkf_u32(0, sv->cur_sess); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 962 | break; |
| 963 | case ST_F_SMAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 964 | val = mkf_u32(FN_MAX, sv->counters.cur_sess_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 965 | break; |
| 966 | case ST_F_SLIM: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 967 | val = mkf_u32(FO_CONFIG|FN_LIMIT, sv->maxconn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 968 | break; |
| 969 | case ST_F_STOT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 970 | val = mkf_u64(FN_COUNTER, sv->counters.cum_sess); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 971 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 972 | case ST_F_RATE_MAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 973 | val = mkf_u32(FN_MAX, sv->counters.sps_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 974 | break; |
| 975 | case ST_F_LASTSESS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 976 | val = mkf_s32(FN_AGE, srv_lastsession(sv)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 977 | break; |
| 978 | case ST_F_QCUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 979 | val = mkf_u32(0, sv->nbpend); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 980 | break; |
| 981 | case ST_F_QMAX: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 982 | val = mkf_u32(FN_MAX, sv->counters.nbpend_max); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 983 | break; |
| 984 | case ST_F_QLIMIT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 985 | val = mkf_u32(FO_CONFIG|FS_SERVICE, sv->maxqueue); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 986 | break; |
| 987 | case ST_F_BIN: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 988 | val = mkf_u64(FN_COUNTER, sv->counters.bytes_in); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 989 | break; |
| 990 | case ST_F_BOUT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 991 | val = mkf_u64(FN_COUNTER, sv->counters.bytes_out); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 992 | break; |
| 993 | case ST_F_QTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 994 | secs = (double)swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 995 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 996 | break; |
| 997 | case ST_F_CTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 998 | secs = (double)swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 999 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1000 | break; |
| 1001 | case ST_F_RTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 1002 | secs = (double)swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1003 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1004 | break; |
| 1005 | case ST_F_TTIME: |
Christopher Faulet | af4bf14 | 2019-09-24 16:35:19 +0200 | [diff] [blame] | 1006 | secs = (double)swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES) / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1007 | val = mkf_flt(FN_AVG, secs); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1008 | break; |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 1009 | case ST_F_QT_MAX: |
| 1010 | secs = (double)sv->counters.qtime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1011 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 1012 | break; |
| 1013 | case ST_F_CT_MAX: |
| 1014 | secs = (double)sv->counters.ctime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1015 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 1016 | break; |
| 1017 | case ST_F_RT_MAX: |
| 1018 | secs = (double)sv->counters.dtime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1019 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 1020 | break; |
| 1021 | case ST_F_TT_MAX: |
| 1022 | secs = (double)sv->counters.ttime_max / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1023 | val = mkf_flt(FN_MAX, secs); |
Christopher Faulet | 8fc027d | 2019-11-08 15:05:31 +0100 | [diff] [blame] | 1024 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1025 | case ST_F_CONNECT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1026 | val = mkf_u64(FN_COUNTER, sv->counters.connect); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1027 | break; |
| 1028 | case ST_F_REUSE: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1029 | val = mkf_u64(FN_COUNTER, sv->counters.reuse); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1030 | break; |
| 1031 | case ST_F_DRESP: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1032 | val = mkf_u64(FN_COUNTER, sv->counters.denied_resp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1033 | break; |
| 1034 | case ST_F_ECON: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1035 | val = mkf_u64(FN_COUNTER, sv->counters.failed_conns); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1036 | break; |
| 1037 | case ST_F_ERESP: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1038 | val = mkf_u64(FN_COUNTER, sv->counters.failed_resp); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1039 | break; |
| 1040 | case ST_F_WRETR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1041 | val = mkf_u64(FN_COUNTER, sv->counters.retries); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1042 | break; |
| 1043 | case ST_F_WREDIS: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1044 | val = mkf_u64(FN_COUNTER, sv->counters.redispatches); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1045 | break; |
| 1046 | case ST_F_WREW: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1047 | val = mkf_u64(FN_COUNTER, sv->counters.failed_rewrites); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1048 | break; |
Christopher Faulet | e4a2c8d | 2019-12-16 14:44:01 +0100 | [diff] [blame] | 1049 | case ST_F_EINT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1050 | val = mkf_u64(FN_COUNTER, sv->counters.internal_errors); |
Christopher Faulet | e4a2c8d | 2019-12-16 14:44:01 +0100 | [diff] [blame] | 1051 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1052 | case ST_F_CLI_ABRT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1053 | val = mkf_u64(FN_COUNTER, sv->counters.cli_aborts); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1054 | break; |
| 1055 | case ST_F_SRV_ABRT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1056 | val = mkf_u64(FN_COUNTER, sv->counters.srv_aborts); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1057 | break; |
| 1058 | case ST_F_WEIGHT: |
| 1059 | weight = (sv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1060 | val = mkf_u32(FN_AVG, weight); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1061 | break; |
Christopher Faulet | cf403f3 | 2019-11-21 14:35:46 +0100 | [diff] [blame] | 1062 | case ST_F_CHECK_STATUS: |
| 1063 | if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) != CHK_ST_ENABLED) |
| 1064 | goto next_sv; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1065 | val = mkf_u32(FN_OUTPUT, sv->check.status); |
Christopher Faulet | cf403f3 | 2019-11-21 14:35:46 +0100 | [diff] [blame] | 1066 | break; |
| 1067 | case ST_F_CHECK_CODE: |
| 1068 | if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) != CHK_ST_ENABLED) |
| 1069 | goto next_sv; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1070 | val = mkf_u32(FN_OUTPUT, (sv->check.status < HCHK_STATUS_L57DATA) ? 0 : sv->check.code); |
Christopher Faulet | cf403f3 | 2019-11-21 14:35:46 +0100 | [diff] [blame] | 1071 | break; |
Christopher Faulet | 2711e51 | 2020-02-27 16:12:07 +0100 | [diff] [blame] | 1072 | case ST_F_CHECK_DURATION: |
| 1073 | if (sv->check.status < HCHK_STATUS_CHECKED) |
| 1074 | goto next_sv; |
| 1075 | secs = (double)sv->check.duration / 1000.0; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1076 | val = mkf_flt(FN_DURATION, secs); |
Christopher Faulet | 2711e51 | 2020-02-27 16:12:07 +0100 | [diff] [blame] | 1077 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1078 | case ST_F_CHKFAIL: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1079 | val = mkf_u64(FN_COUNTER, sv->counters.failed_checks); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1080 | break; |
| 1081 | case ST_F_CHKDOWN: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1082 | val = mkf_u64(FN_COUNTER, sv->counters.down_trans); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1083 | break; |
| 1084 | case ST_F_DOWNTIME: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1085 | val = mkf_u32(FN_COUNTER, srv_downtime(sv)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1086 | break; |
| 1087 | case ST_F_LASTCHG: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1088 | val = mkf_u32(FN_AGE, now.tv_sec - sv->last_change); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1089 | break; |
| 1090 | case ST_F_THROTTLE: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1091 | val = mkf_u32(FN_AVG, server_throttle_rate(sv)); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1092 | break; |
| 1093 | case ST_F_LBTOT: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1094 | val = mkf_u64(FN_COUNTER, sv->counters.cum_lbconn); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1095 | break; |
Marcin Deranek | 3c27dda | 2020-05-15 18:32:51 +0200 | [diff] [blame] | 1096 | case ST_F_REQ_TOT: |
| 1097 | if (px->mode != PR_MODE_HTTP) |
| 1098 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1099 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.cum_req); |
Marcin Deranek | 3c27dda | 2020-05-15 18:32:51 +0200 | [diff] [blame] | 1100 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1101 | case ST_F_HRSP_1XX: |
| 1102 | if (px->mode != PR_MODE_HTTP) |
| 1103 | goto next_px; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1104 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[1]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1105 | break; |
| 1106 | case ST_F_HRSP_2XX: |
| 1107 | if (px->mode != PR_MODE_HTTP) |
| 1108 | goto next_px; |
| 1109 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1110 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[2]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1111 | break; |
| 1112 | case ST_F_HRSP_3XX: |
| 1113 | if (px->mode != PR_MODE_HTTP) |
| 1114 | goto next_px; |
| 1115 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1116 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[3]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1117 | break; |
| 1118 | case ST_F_HRSP_4XX: |
| 1119 | if (px->mode != PR_MODE_HTTP) |
| 1120 | goto next_px; |
| 1121 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1122 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[4]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1123 | break; |
| 1124 | case ST_F_HRSP_5XX: |
| 1125 | if (px->mode != PR_MODE_HTTP) |
| 1126 | goto next_px; |
| 1127 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1128 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[5]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1129 | break; |
| 1130 | case ST_F_HRSP_OTHER: |
| 1131 | if (px->mode != PR_MODE_HTTP) |
| 1132 | goto next_px; |
| 1133 | appctx->ctx.stats.flags &= ~PROMEX_FL_METRIC_HDR; |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1134 | val = mkf_u64(FN_COUNTER, sv->counters.p.http.rsp[0]); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1135 | break; |
Christopher Faulet | 20ab80c | 2019-11-08 15:24:32 +0100 | [diff] [blame] | 1136 | case ST_F_SRV_ICUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1137 | val = mkf_u32(0, sv->curr_idle_conns); |
Christopher Faulet | 20ab80c | 2019-11-08 15:24:32 +0100 | [diff] [blame] | 1138 | break; |
| 1139 | case ST_F_SRV_ILIM: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1140 | val = mkf_u32(FO_CONFIG|FN_LIMIT, (sv->max_idle_conns == -1) ? 0 : sv->max_idle_conns); |
Christopher Faulet | 20ab80c | 2019-11-08 15:24:32 +0100 | [diff] [blame] | 1141 | break; |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 1142 | case ST_F_IDLE_CONN_CUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1143 | val = mkf_u32(0, sv->curr_idle_nb); |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 1144 | break; |
| 1145 | case ST_F_SAFE_CONN_CUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1146 | val = mkf_u32(0, sv->curr_safe_nb); |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 1147 | break; |
| 1148 | case ST_F_USED_CONN_CUR: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1149 | val = mkf_u32(0, sv->curr_used_conns); |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 1150 | break; |
| 1151 | case ST_F_NEED_CONN_EST: |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1152 | val = mkf_u32(0, sv->est_need_conns); |
Christopher Faulet | c55a626 | 2020-07-10 15:39:39 +0200 | [diff] [blame] | 1153 | break; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1154 | |
| 1155 | default: |
| 1156 | goto next_metric; |
| 1157 | } |
| 1158 | |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1159 | if (!promex_dump_metric(appctx, htx, prefix, &promex_st_metrics[appctx->st2], &val, &out, max)) |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1160 | goto full; |
| 1161 | |
Christopher Faulet | eba2294 | 2019-11-19 14:18:24 +0100 | [diff] [blame] | 1162 | next_sv: |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1163 | appctx->ctx.stats.obj2 = sv->next; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | next_px: |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1167 | appctx->ctx.stats.obj1 = px->next; |
| 1168 | appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1169 | } |
| 1170 | next_metric: |
| 1171 | appctx->ctx.stats.flags |= PROMEX_FL_METRIC_HDR; |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1172 | appctx->ctx.stats.obj1 = proxies_list; |
| 1173 | appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1174 | } |
| 1175 | |
| 1176 | |
| 1177 | end: |
Christopher Faulet | 0c55a15 | 2019-07-04 10:03:28 +0200 | [diff] [blame] | 1178 | if (out.len) { |
| 1179 | if (!htx_add_data_atonce(htx, out)) |
| 1180 | return -1; /* Unexpected and unrecoverable error */ |
| 1181 | channel_add_input(chn, out.len); |
| 1182 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1183 | return ret; |
| 1184 | full: |
| 1185 | ret = 0; |
| 1186 | goto end; |
| 1187 | } |
| 1188 | |
| 1189 | /* Dump all metrics (global, frontends, backends and servers) depending on the |
| 1190 | * dumper state (appctx->st1). It returns 1 on success, 0 if <htx> is full and |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1191 | * -1 in case of any error. |
| 1192 | * Uses <appctx.ctx.stats.obj1> as a pointer to the current proxy and <obj2> as |
| 1193 | * a pointer to the current server/listener. */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1194 | static int promex_dump_metrics(struct appctx *appctx, struct stream_interface *si, struct htx *htx) |
| 1195 | { |
| 1196 | int ret; |
| 1197 | |
| 1198 | switch (appctx->st1) { |
| 1199 | case PROMEX_DUMPER_INIT: |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1200 | appctx->ctx.stats.obj1 = NULL; |
| 1201 | appctx->ctx.stats.obj2 = NULL; |
Christopher Faulet | efde955 | 2020-06-05 08:18:56 +0200 | [diff] [blame] | 1202 | appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_INFO_METRIC); |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1203 | appctx->st2 = INF_NAME; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1204 | appctx->st1 = PROMEX_DUMPER_GLOBAL; |
| 1205 | /* fall through */ |
| 1206 | |
| 1207 | case PROMEX_DUMPER_GLOBAL: |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1208 | if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_GLOBAL) { |
| 1209 | ret = promex_dump_global_metrics(appctx, htx); |
| 1210 | if (ret <= 0) { |
| 1211 | if (ret == -1) |
| 1212 | goto error; |
| 1213 | goto full; |
| 1214 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1215 | } |
| 1216 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1217 | appctx->ctx.stats.obj1 = proxies_list; |
| 1218 | appctx->ctx.stats.obj2 = NULL; |
Christopher Faulet | efde955 | 2020-06-05 08:18:56 +0200 | [diff] [blame] | 1219 | appctx->ctx.stats.flags &= ~PROMEX_FL_INFO_METRIC; |
Christopher Faulet | b713c4f | 2021-01-20 15:02:50 +0100 | [diff] [blame] | 1220 | appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_FRONT_METRIC); |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1221 | appctx->st2 = ST_F_PXNAME; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1222 | appctx->st1 = PROMEX_DUMPER_FRONT; |
| 1223 | /* fall through */ |
| 1224 | |
| 1225 | case PROMEX_DUMPER_FRONT: |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1226 | if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_FRONT) { |
| 1227 | ret = promex_dump_front_metrics(appctx, htx); |
| 1228 | if (ret <= 0) { |
| 1229 | if (ret == -1) |
| 1230 | goto error; |
| 1231 | goto full; |
| 1232 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1233 | } |
| 1234 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1235 | appctx->ctx.stats.obj1 = proxies_list; |
| 1236 | appctx->ctx.stats.obj2 = NULL; |
Christopher Faulet | b713c4f | 2021-01-20 15:02:50 +0100 | [diff] [blame] | 1237 | appctx->ctx.stats.flags &= ~PROMEX_FL_FRONT_METRIC; |
| 1238 | appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_BACK_METRIC); |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1239 | appctx->st2 = ST_F_PXNAME; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1240 | appctx->st1 = PROMEX_DUMPER_BACK; |
| 1241 | /* fall through */ |
| 1242 | |
| 1243 | case PROMEX_DUMPER_BACK: |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1244 | if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_BACK) { |
| 1245 | ret = promex_dump_back_metrics(appctx, htx); |
| 1246 | if (ret <= 0) { |
| 1247 | if (ret == -1) |
| 1248 | goto error; |
| 1249 | goto full; |
| 1250 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1251 | } |
| 1252 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1253 | appctx->ctx.stats.obj1 = proxies_list; |
| 1254 | appctx->ctx.stats.obj2 = (appctx->ctx.stats.obj1 ? ((struct proxy *)appctx->ctx.stats.obj1)->srv : NULL); |
Christopher Faulet | b713c4f | 2021-01-20 15:02:50 +0100 | [diff] [blame] | 1255 | appctx->ctx.stats.flags &= ~PROMEX_FL_BACK_METRIC; |
| 1256 | appctx->ctx.stats.flags |= (PROMEX_FL_METRIC_HDR|PROMEX_FL_SRV_METRIC); |
Christopher Faulet | 37286a5 | 2021-01-20 15:20:53 +0100 | [diff] [blame] | 1257 | appctx->st2 = ST_F_PXNAME; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1258 | appctx->st1 = PROMEX_DUMPER_SRV; |
| 1259 | /* fall through */ |
| 1260 | |
| 1261 | case PROMEX_DUMPER_SRV: |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1262 | if (appctx->ctx.stats.flags & PROMEX_FL_SCOPE_SERVER) { |
| 1263 | ret = promex_dump_srv_metrics(appctx, htx); |
| 1264 | if (ret <= 0) { |
| 1265 | if (ret == -1) |
| 1266 | goto error; |
| 1267 | goto full; |
| 1268 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1269 | } |
| 1270 | |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1271 | appctx->ctx.stats.obj1 = NULL; |
| 1272 | appctx->ctx.stats.obj2 = NULL; |
Christopher Faulet | b713c4f | 2021-01-20 15:02:50 +0100 | [diff] [blame] | 1273 | appctx->ctx.stats.flags &= ~(PROMEX_FL_METRIC_HDR|PROMEX_FL_SRV_METRIC); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1274 | appctx->st2 = 0; |
| 1275 | appctx->st1 = PROMEX_DUMPER_DONE; |
| 1276 | /* fall through */ |
| 1277 | |
| 1278 | case PROMEX_DUMPER_DONE: |
| 1279 | default: |
| 1280 | break; |
| 1281 | } |
| 1282 | |
| 1283 | return 1; |
| 1284 | |
| 1285 | full: |
| 1286 | si_rx_room_blk(si); |
| 1287 | return 0; |
| 1288 | error: |
| 1289 | /* unrecoverable error */ |
Amaury Denoyelle | da5b6d1 | 2020-10-02 18:32:02 +0200 | [diff] [blame] | 1290 | appctx->ctx.stats.obj1 = NULL; |
| 1291 | appctx->ctx.stats.obj2 = NULL; |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1292 | appctx->ctx.stats.flags = 0; |
| 1293 | appctx->st2 = 0; |
| 1294 | appctx->st1 = PROMEX_DUMPER_DONE; |
| 1295 | return -1; |
| 1296 | } |
| 1297 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 1298 | /* Parse the query string of request URI to filter the metrics. It returns 1 on |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1299 | * success and -1 on error. */ |
| 1300 | static int promex_parse_uri(struct appctx *appctx, struct stream_interface *si) |
| 1301 | { |
| 1302 | struct channel *req = si_oc(si); |
| 1303 | struct channel *res = si_ic(si); |
| 1304 | struct htx *req_htx, *res_htx; |
| 1305 | struct htx_sl *sl; |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1306 | char *p, *key, *value; |
| 1307 | const char *end; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1308 | struct buffer *err; |
| 1309 | int default_scopes = PROMEX_FL_SCOPE_ALL; |
| 1310 | int len; |
| 1311 | |
| 1312 | /* Get the query-string */ |
| 1313 | req_htx = htxbuf(&req->buf); |
| 1314 | sl = http_get_stline(req_htx); |
| 1315 | if (!sl) |
| 1316 | goto error; |
| 1317 | p = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), '?'); |
| 1318 | if (!p) |
| 1319 | goto end; |
| 1320 | end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl); |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1321 | |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1322 | /* copy the query-string */ |
| 1323 | len = end - p; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1324 | chunk_reset(&trash); |
| 1325 | memcpy(trash.area, p, len); |
| 1326 | trash.area[len] = 0; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1327 | p = trash.area; |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1328 | end = trash.area + len; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1329 | |
| 1330 | /* Parse the query-string */ |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1331 | while (p < end && *p && *p != '#') { |
| 1332 | value = NULL; |
| 1333 | |
| 1334 | /* decode parameter name */ |
| 1335 | key = p; |
| 1336 | while (p < end && *p != '=' && *p != '&' && *p != '#') |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1337 | ++p; |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1338 | /* found a value */ |
| 1339 | if (*p == '=') { |
| 1340 | *(p++) = 0; |
| 1341 | value = p; |
| 1342 | } |
| 1343 | else if (*p == '&') |
| 1344 | *(p++) = 0; |
| 1345 | else if (*p == '#') |
| 1346 | *p = 0; |
Willy Tarreau | 62ba9ba | 2020-04-23 17:54:47 +0200 | [diff] [blame] | 1347 | len = url_decode(key, 1); |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1348 | if (len == -1) |
| 1349 | goto error; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1350 | |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1351 | /* decode value */ |
| 1352 | if (value) { |
| 1353 | while (p < end && *p != '=' && *p != '&' && *p != '#') |
| 1354 | ++p; |
| 1355 | if (*p == '=') |
| 1356 | goto error; |
| 1357 | if (*p == '&') |
| 1358 | *(p++) = 0; |
| 1359 | else if (*p == '#') |
| 1360 | *p = 0; |
Willy Tarreau | 62ba9ba | 2020-04-23 17:54:47 +0200 | [diff] [blame] | 1361 | len = url_decode(value, 1); |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1362 | if (len == -1) |
| 1363 | goto error; |
| 1364 | } |
| 1365 | |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1366 | if (strcmp(key, "scope") == 0) { |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1367 | default_scopes = 0; /* at least a scope defined, unset default scopes */ |
| 1368 | if (!value) |
| 1369 | goto error; |
| 1370 | else if (*value == 0) |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1371 | appctx->ctx.stats.flags &= ~PROMEX_FL_SCOPE_ALL; |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1372 | else if (*value == '*') |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1373 | appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_ALL; |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1374 | else if (strcmp(value, "global") == 0) |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1375 | appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_GLOBAL; |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1376 | else if (strcmp(value, "server") == 0) |
William Dauchy | c65f656 | 2019-11-26 12:56:26 +0100 | [diff] [blame] | 1377 | appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_SERVER; |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1378 | else if (strcmp(value, "backend") == 0) |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1379 | appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_BACK; |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1380 | else if (strcmp(value, "frontend") == 0) |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1381 | appctx->ctx.stats.flags |= PROMEX_FL_SCOPE_FRONT; |
| 1382 | else |
| 1383 | goto error; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1384 | } |
Tim Duesterhus | 8cb12a8 | 2021-01-02 22:31:55 +0100 | [diff] [blame] | 1385 | else if (strcmp(key, "no-maint") == 0) |
Christopher Faulet | eba2294 | 2019-11-19 14:18:24 +0100 | [diff] [blame] | 1386 | appctx->ctx.stats.flags |= PROMEX_FL_NO_MAINT_SRV; |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | end: |
| 1390 | appctx->ctx.stats.flags |= default_scopes; |
| 1391 | return 1; |
| 1392 | |
| 1393 | error: |
| 1394 | err = &http_err_chunks[HTTP_ERR_400]; |
| 1395 | channel_erase(res); |
| 1396 | res->buf.data = b_data(err); |
| 1397 | memcpy(res->buf.area, b_head(err), b_data(err)); |
| 1398 | res_htx = htx_from_buf(&res->buf); |
| 1399 | channel_add_input(res, res_htx->data); |
| 1400 | appctx->st0 = PROMEX_ST_END; |
| 1401 | return -1; |
| 1402 | } |
| 1403 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1404 | /* Send HTTP headers of the response. It returns 1 on success and 0 if <htx> is |
| 1405 | * full. */ |
| 1406 | static int promex_send_headers(struct appctx *appctx, struct stream_interface *si, struct htx *htx) |
| 1407 | { |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 1408 | struct channel *chn = si_ic(appctx->owner); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1409 | struct htx_sl *sl; |
| 1410 | unsigned int flags; |
| 1411 | |
| 1412 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_ENC|HTX_SL_F_XFER_LEN|HTX_SL_F_CHNK); |
| 1413 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist("200"), ist("OK")); |
| 1414 | if (!sl) |
| 1415 | goto full; |
| 1416 | sl->info.res.status = 200; |
| 1417 | if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) || |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1418 | !htx_add_header(htx, ist("Content-Type"), ist("text/plain; version=0.0.4")) || |
| 1419 | !htx_add_header(htx, ist("Transfer-Encoding"), ist("chunked")) || |
| 1420 | !htx_add_endof(htx, HTX_BLK_EOH)) |
| 1421 | goto full; |
| 1422 | |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 1423 | channel_add_input(chn, htx->data); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1424 | return 1; |
| 1425 | full: |
| 1426 | htx_reset(htx); |
| 1427 | si_rx_room_blk(si); |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
| 1431 | /* The function returns 1 if the initialisation is complete, 0 if |
| 1432 | * an errors occurs and -1 if more data are required for initializing |
| 1433 | * the applet. |
| 1434 | */ |
| 1435 | static int promex_appctx_init(struct appctx *appctx, struct proxy *px, struct stream *strm) |
| 1436 | { |
| 1437 | appctx->st0 = PROMEX_ST_INIT; |
| 1438 | return 1; |
| 1439 | } |
| 1440 | |
| 1441 | /* The main I/O handler for the promex applet. */ |
| 1442 | static void promex_appctx_handle_io(struct appctx *appctx) |
| 1443 | { |
| 1444 | struct stream_interface *si = appctx->owner; |
| 1445 | struct stream *s = si_strm(si); |
| 1446 | struct channel *req = si_oc(si); |
| 1447 | struct channel *res = si_ic(si); |
| 1448 | struct htx *req_htx, *res_htx; |
| 1449 | int ret; |
| 1450 | |
| 1451 | res_htx = htx_from_buf(&res->buf); |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1452 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 1453 | goto out; |
| 1454 | |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 1455 | /* Check if the input buffer is available. */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1456 | if (!b_size(&res->buf)) { |
| 1457 | si_rx_room_blk(si); |
| 1458 | goto out; |
| 1459 | } |
| 1460 | |
| 1461 | switch (appctx->st0) { |
| 1462 | case PROMEX_ST_INIT: |
Christopher Faulet | 78407ce | 2019-11-18 14:47:08 +0100 | [diff] [blame] | 1463 | ret = promex_parse_uri(appctx, si); |
| 1464 | if (ret <= 0) { |
| 1465 | if (ret == -1) |
| 1466 | goto error; |
| 1467 | goto out; |
| 1468 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1469 | appctx->st0 = PROMEX_ST_HEAD; |
| 1470 | appctx->st1 = PROMEX_DUMPER_INIT; |
| 1471 | /* fall through */ |
| 1472 | |
| 1473 | case PROMEX_ST_HEAD: |
| 1474 | if (!promex_send_headers(appctx, si, res_htx)) |
| 1475 | goto out; |
| 1476 | appctx->st0 = ((s->txn->meth == HTTP_METH_HEAD) ? PROMEX_ST_DONE : PROMEX_ST_DUMP); |
| 1477 | /* fall through */ |
| 1478 | |
| 1479 | case PROMEX_ST_DUMP: |
| 1480 | ret = promex_dump_metrics(appctx, si, res_htx); |
| 1481 | if (ret <= 0) { |
| 1482 | if (ret == -1) |
| 1483 | goto error; |
| 1484 | goto out; |
| 1485 | } |
| 1486 | appctx->st0 = PROMEX_ST_DONE; |
| 1487 | /* fall through */ |
| 1488 | |
| 1489 | case PROMEX_ST_DONE: |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 1490 | /* Don't add TLR because mux-h1 will take care of it */ |
Willy Tarreau | f1ea47d | 2020-07-23 06:53:27 +0200 | [diff] [blame] | 1491 | res_htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1492 | if (!htx_add_endof(res_htx, HTX_BLK_EOM)) { |
| 1493 | si_rx_room_blk(si); |
| 1494 | goto out; |
| 1495 | } |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 1496 | channel_add_input(res, 1); |
| 1497 | appctx->st0 = PROMEX_ST_END; |
| 1498 | /* fall through */ |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1499 | |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 1500 | case PROMEX_ST_END: |
| 1501 | if (!(res->flags & CF_SHUTR)) { |
| 1502 | res->flags |= CF_READ_NULL; |
| 1503 | si_shutr(si); |
| 1504 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1505 | } |
| 1506 | |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1507 | out: |
| 1508 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | 9744f7c | 2019-03-27 15:48:53 +0100 | [diff] [blame] | 1509 | |
| 1510 | /* eat the whole request */ |
| 1511 | if (co_data(req)) { |
| 1512 | req_htx = htx_from_buf(&req->buf); |
| 1513 | co_htx_skip(req, req_htx, co_data(req)); |
| 1514 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1515 | return; |
| 1516 | |
| 1517 | error: |
| 1518 | res->flags |= CF_READ_NULL; |
| 1519 | si_shutr(si); |
| 1520 | si_shutw(si); |
| 1521 | } |
| 1522 | |
| 1523 | struct applet promex_applet = { |
| 1524 | .obj_type = OBJ_TYPE_APPLET, |
| 1525 | .name = "<PROMEX>", /* used for logging */ |
| 1526 | .init = promex_appctx_init, |
| 1527 | .fct = promex_appctx_handle_io, |
| 1528 | }; |
| 1529 | |
| 1530 | static enum act_parse_ret service_parse_prometheus_exporter(const char **args, int *cur_arg, struct proxy *px, |
| 1531 | struct act_rule *rule, char **err) |
| 1532 | { |
| 1533 | /* Prometheus exporter service is only available on "http-request" rulesets */ |
| 1534 | if (rule->from != ACT_F_HTTP_REQ) { |
| 1535 | memprintf(err, "Prometheus exporter service only available on 'http-request' rulesets"); |
| 1536 | return ACT_RET_PRS_ERR; |
| 1537 | } |
Christopher Faulet | f959d08 | 2019-02-07 15:38:42 +0100 | [diff] [blame] | 1538 | |
| 1539 | /* Add applet pointer in the rule. */ |
| 1540 | rule->applet = promex_applet; |
| 1541 | |
| 1542 | return ACT_RET_PRS_OK; |
| 1543 | } |
| 1544 | static void promex_register_build_options(void) |
| 1545 | { |
| 1546 | char *ptr = NULL; |
| 1547 | |
| 1548 | memprintf(&ptr, "Built with the Prometheus exporter as a service"); |
| 1549 | hap_register_build_opts(ptr, 1); |
| 1550 | } |
| 1551 | |
| 1552 | |
| 1553 | static struct action_kw_list service_actions = { ILH, { |
| 1554 | { "prometheus-exporter", service_parse_prometheus_exporter }, |
| 1555 | { /* END */ } |
| 1556 | }}; |
| 1557 | |
| 1558 | INITCALL1(STG_REGISTER, service_keywords_register, &service_actions); |
| 1559 | INITCALL0(STG_REGISTER, promex_register_build_options); |