File tree 5 files changed +13
-8
lines changed
5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1
- // @ file
1
+ # Configuration properties
2
2
## Global configuration properties
3
3
4
4
Property | C/P | Range | Default | Importance | Description
Original file line number Diff line number Diff line change 1
- //@file INTRODUCTION.md
2
1
# Introduction to librdkafka - the Apache Kafka C/C++ client library
3
2
4
3
Original file line number Diff line number Diff line change 21
21
22
22
CONFIGURATION.md : src/rdkafka.h examples
23
23
@printf " $( MKL_YELLOW) Updating$( MKL_CLR_RESET) \n"
24
- @echo ' //@file ' > CONFIGURATION.md.tmp
24
+ @echo " # Configuration properties " > CONFIGURATION.md.tmp
25
25
@ (examples/rdkafka_performance -X list >> CONFIGURATION.md.tmp; \
26
26
cmp CONFIGURATION.md CONFIGURATION.md.tmp || \
27
27
mv CONFIGURATION.md.tmp CONFIGURATION.md; \
Original file line number Diff line number Diff line change @@ -221,7 +221,8 @@ This (prettified) example output is from a short-lived producer using the follow
221
221
222
222
Note: this output is prettified using ` jq . ` , the JSON object emitted by librdkafka does not contain line breaks.
223
223
224
- ``` {
224
+ ``` json
225
+ {
225
226
"name" : " rdkafka#producer-1" ,
226
227
"client_id" : " rdkafka" ,
227
228
"type" : " producer" ,
Original file line number Diff line number Diff line change 5
5
*
6
6
* @section intro Introduction
7
7
*
8
- * For an introduction and manual to librdkafka see INTRODUCTION.md
8
+ * For an introduction and manual to librdkafka see \ref INTRODUCTION.md
9
9
*
10
10
* @section conf Configuration
11
11
*
12
12
* librdkafka is highly configurable to meet any deployment demands.
13
13
* It is usually safe to leave most configuration properties to their default
14
14
* values.
15
15
*
16
- * See CONFIGURATION.md for the full list of supported configuration properties.
17
- *
16
+ * See \ref CONFIGURATION.md for the full list of supported configuration properties.
17
+ *
18
18
* @remark Application developers are recommended to provide a non-hardcoded
19
19
* interface to librdkafka's string based name-value configuration
20
20
* property interface, allowing users to configure any librdkafka
21
21
* property directly without alterations to the application.
22
22
* This allows for seamless upgrades where linking to a new version
23
23
* of librdkafka automatically provides new configuration
24
24
* based features.
25
-
25
+ *
26
+ * @section stats Statistics
27
+ *
28
+ * librdkafka provides detailed metrics through its statistics interface.
29
+ *
30
+ * See \ref STATISTICS.md and \ref rd_kafka_conf_set_stats_cb.
26
31
*
27
32
* @section c_api C API
28
33
*
You can’t perform that action at this time.
0 commit comments