Skip to content

Commit 07e6a8b

Browse files
committed
Fix doxygen documentation
1 parent 5140cd9 commit 07e6a8b

5 files changed

+13
-8
lines changed

CONFIGURATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@file
1+
# Configuration properties
22
## Global configuration properties
33

44
Property | C/P | Range | Default | Importance | Description

INTRODUCTION.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
//@file INTRODUCTION.md
21
# Introduction to librdkafka - the Apache Kafka C/C++ client library
32

43

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ libs:
2121

2222
CONFIGURATION.md: src/rdkafka.h examples
2323
@printf "$(MKL_YELLOW)Updating$(MKL_CLR_RESET)\n"
24-
@echo '//@file' > CONFIGURATION.md.tmp
24+
@echo "# Configuration properties" > CONFIGURATION.md.tmp
2525
@(examples/rdkafka_performance -X list >> CONFIGURATION.md.tmp; \
2626
cmp CONFIGURATION.md CONFIGURATION.md.tmp || \
2727
mv CONFIGURATION.md.tmp CONFIGURATION.md; \

STATISTICS.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ This (prettified) example output is from a short-lived producer using the follow
221221

222222
Note: this output is prettified using `jq .`, the JSON object emitted by librdkafka does not contain line breaks.
223223

224-
```{
224+
```json
225+
{
225226
"name": "rdkafka#producer-1",
226227
"client_id": "rdkafka",
227228
"type": "producer",

mainpage.doxy

+9-4
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,29 @@
55
*
66
* @section intro Introduction
77
*
8-
* For an introduction and manual to librdkafka see INTRODUCTION.md
8+
* For an introduction and manual to librdkafka see \ref INTRODUCTION.md
99
*
1010
* @section conf Configuration
1111
*
1212
* librdkafka is highly configurable to meet any deployment demands.
1313
* It is usually safe to leave most configuration properties to their default
1414
* values.
1515
*
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+
*
1818
* @remark Application developers are recommended to provide a non-hardcoded
1919
* interface to librdkafka's string based name-value configuration
2020
* property interface, allowing users to configure any librdkafka
2121
* property directly without alterations to the application.
2222
* This allows for seamless upgrades where linking to a new version
2323
* of librdkafka automatically provides new configuration
2424
* 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.
2631
*
2732
* @section c_api C API
2833
*

0 commit comments

Comments
 (0)