Miroslav Zagorac | 70230c6 | 2020-12-09 16:54:31 +0100 | [diff] [blame] | 1 | /*** |
| 2 | * Copyright 2020 HAProxy Technologies |
| 3 | * |
| 4 | * This file is part of the HAProxy OpenTracing filter. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version 2 |
| 9 | * of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 19 | */ |
| 20 | #ifndef _OPENTRACING_CONFIG_H_ |
| 21 | #define _OPENTRACING_CONFIG_H_ |
| 22 | |
| 23 | #undef DEBUG_OT_SYSTIME |
| 24 | #define USE_POOL_BUFFER |
| 25 | #define USE_POOL_OT_SPAN_CONTEXT |
| 26 | #define USE_POOL_OT_SCOPE_SPAN |
| 27 | #define USE_POOL_OT_SCOPE_CONTEXT |
| 28 | #define USE_POOL_OT_RUNTIME_CONTEXT |
| 29 | #define USE_TRASH_CHUNK |
| 30 | |
| 31 | #define FLT_OT_ID_MAXLEN 64 |
| 32 | #define FLT_OT_MAXTAGS 8 |
| 33 | #define FLT_OT_MAXBAGGAGES 8 |
| 34 | #define FLT_OT_RATE_LIMIT_MAX 100.0 |
| 35 | #define FLT_OT_DEBUG_LEVEL 0b00001111 |
| 36 | |
| 37 | #endif /* _OPENTRACING_CONFIG_H_ */ |
| 38 | |
| 39 | /* |
| 40 | * Local variables: |
| 41 | * c-indent-level: 8 |
| 42 | * c-basic-offset: 8 |
| 43 | * End: |
| 44 | * |
| 45 | * vi: noexpandtab shiftwidth=8 tabstop=8 |
| 46 | */ |