William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 1 | /* |
| 2 | * include/proto/stats.h |
| 3 | * This file contains definitions of some primitives to dedicated to |
| 4 | * statistics output. |
| 5 | * |
| 6 | * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu |
| 7 | * |
| 8 | * This library is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU Lesser General Public |
| 10 | * License as published by the Free Software Foundation, version 2.1 |
| 11 | * exclusively. |
| 12 | * |
| 13 | * This library is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * Lesser General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU Lesser General Public |
| 19 | * License along with this library; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | */ |
| 22 | |
| 23 | #ifndef _PROTO_STATS_H |
| 24 | #define _PROTO_STATS_H |
| 25 | |
| 26 | #include <common/config.h> |
| 27 | #include <types/applet.h> |
| 28 | #include <types/stream_interface.h> |
Christopher Faulet | 702226c | 2018-10-03 16:11:20 +0200 | [diff] [blame] | 29 | #include <types/stats.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 30 | |
| 31 | |
| 32 | static inline enum field_format field_format(const struct field *f, int e) |
| 33 | { |
| 34 | return f[e].type & FF_MASK; |
| 35 | } |
| 36 | |
| 37 | static inline enum field_origin field_origin(const struct field *f, int e) |
| 38 | { |
| 39 | return f[e].type & FO_MASK; |
| 40 | } |
| 41 | |
| 42 | static inline enum field_scope field_scope(const struct field *f, int e) |
| 43 | { |
| 44 | return f[e].type & FS_MASK; |
| 45 | } |
| 46 | |
| 47 | static inline enum field_nature field_nature(const struct field *f, int e) |
| 48 | { |
| 49 | return f[e].type & FN_MASK; |
| 50 | } |
| 51 | |
| 52 | static inline const char *field_str(const struct field *f, int e) |
| 53 | { |
Willy Tarreau | ddc3e9e | 2016-11-26 15:55:59 +0100 | [diff] [blame] | 54 | return (field_format(f, e) == FF_STR && f[e].u.str) ? f[e].u.str : ""; |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | static inline struct field mkf_s32(uint32_t type, int32_t value) |
| 58 | { |
| 59 | struct field f = { .type = FF_S32 | type, .u.s32 = value }; |
| 60 | return f; |
| 61 | } |
| 62 | |
| 63 | static inline struct field mkf_u32(uint32_t type, uint32_t value) |
| 64 | { |
| 65 | struct field f = { .type = FF_U32 | type, .u.u32 = value }; |
| 66 | return f; |
| 67 | } |
| 68 | |
| 69 | static inline struct field mkf_s64(uint32_t type, int64_t value) |
| 70 | { |
| 71 | struct field f = { .type = FF_S64 | type, .u.s64 = value }; |
| 72 | return f; |
| 73 | } |
| 74 | |
| 75 | static inline struct field mkf_u64(uint32_t type, uint64_t value) |
| 76 | { |
| 77 | struct field f = { .type = FF_U64 | type, .u.u64 = value }; |
| 78 | return f; |
| 79 | } |
| 80 | |
| 81 | static inline struct field mkf_str(uint32_t type, const char *value) |
| 82 | { |
| 83 | struct field f = { .type = FF_STR | type, .u.str = value }; |
| 84 | return f; |
| 85 | } |
| 86 | |
Christopher Faulet | 87d74c1 | 2019-09-24 16:35:10 +0200 | [diff] [blame] | 87 | static inline struct field mkf_flt(uint32_t type, double value) |
| 88 | { |
| 89 | struct field f = { .type = FF_FLT | type, .u.flt = value }; |
| 90 | return f; |
| 91 | } |
| 92 | |
Christopher Faulet | 2b9b678 | 2019-02-27 16:42:58 +0100 | [diff] [blame] | 93 | extern const char *stat_status_codes[]; |
| 94 | |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 95 | /* These two structs contains all field names according with |
| 96 | * the the number of entries in "enum stat_field" and |
| 97 | * "enum info_field" |
| 98 | */ |
| 99 | extern const char *info_field_names[]; |
| 100 | extern const char *stat_field_names[]; |
| 101 | |
| 102 | int stats_fill_info(struct field *info, int len); |
| 103 | int stats_fill_fe_stats(struct proxy *px, struct field *stats, int len); |
| 104 | int stats_fill_li_stats(struct proxy *px, struct listener *l, int flags, |
| 105 | struct field *stats, int len); |
| 106 | int stats_fill_sv_stats(struct proxy *px, struct server *sv, int flags, |
| 107 | struct field *stats, int len); |
| 108 | int stats_fill_be_stats(struct proxy *px, int flags, struct field *stats, int len); |
| 109 | |
| 110 | extern struct applet http_stats_applet; |
| 111 | |
| 112 | void stats_io_handler(struct stream_interface *si); |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 113 | int stats_emit_raw_data_field(struct buffer *out, const struct field *f); |
| 114 | int stats_emit_typed_data_field(struct buffer *out, const struct field *f); |
| 115 | int stats_emit_field_tags(struct buffer *out, const struct field *f, |
| 116 | char delim); |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 117 | |
| 118 | #endif /* _PROTO_STATS_H */ |
| 119 | |
| 120 | /* |
| 121 | * Local variables: |
| 122 | * c-indent-level: 8 |
| 123 | * c-basic-offset: 8 |
| 124 | * End: |
| 125 | */ |