Skip to content

Commit 596a81b

Browse files
committed
Eliminating legacy links vol1
Signed-off-by: mrgarris0n <gergely.karacsonyi@gmail.com>
1 parent bc5d4fe commit 596a81b

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

doc/_admin-guide/070_Destinations/100_Kafka-c/002_Flow_control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ You can specify a "high water mark" limit for the Kafka client in the
1818
properties-file().
1919

2020
For more information about how the C implementation of the kafka()
21-
destination works with syslog-ng OSE, click [[here]].
21+
destination works with syslog-ng OSE, click [[here|adm-dest-kafkac]].

doc/_admin-guide/070_Destinations/200_Python/README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ the second part of the Python destination. The Python class processes
2323
the log messages it receives, and can do virtually anything that you can
2424
code in Python. You can either embed the Python class into your
2525
syslog-ng OSE configuration file, or
26-
[[store it in an external Python file]].
26+
[[store it in an external Python file|adm-conf-python]].
2727

2828
```config
2929
destination <name_of_the_python_destination>{
@@ -102,9 +102,8 @@ Error handling in the python() destination.
102102

103103
The send method sends a message to the target service. It should return
104104
True to indicate success, or self.QUEUED when using batch mode. For
105-
other possible return values, see the description of the [[flush()
106-
method|adm-dest-python#flushself-method-optional]]. Note that for batch mode, the
107-
flush() method must be implemented as well.
105+
other possible return values, see the description of the [[flush() method|adm-dest-python#flushself-method-optional]].
106+
Note that for batch mode, the flush() method must be implemented as well.
108107

109108
This is the only mandatory method of the destination.
110109

@@ -208,7 +207,7 @@ The Python destination handles errors as follows.
208207

209208
The purpose of this example is only to demonstrate the basics of the
210209
Python destination, if you really want to write log messages into text
211-
files, use the [[file destination]] instead.
210+
files, use the [[file destination|adm-dest-file]] instead.
212211

213212
The following sample code writes the body of log messages into the
214213
/tmp/example.txt file. Only the send() method is implemented, meaning
@@ -273,9 +272,8 @@ class TextDestination(object):
273272
```
274273

275274
For a more detailed example about sending log messages to an MQTT
276-
(Message Queuing Telemetry Transport) server, see the [Writing Python
277-
destination in syslog-ng: how to send log messages to MQTT blog
278-
post](https://www.syslog-ng.com/community/b/blog/posts/writing-python-destination-in-syslog-ng-how-to-send-log-messages-to-mqtt).
275+
(Message Queuing Telemetry Transport) server, see the
276+
[Writing Python destination in syslog-ng: how to send log messages to MQTT](https://www.syslog-ng.com/community/b/blog/posts/writing-python-destination-in-syslog-ng-how-to-send-log-messages-to-mqtt) blog post.
279277

280278
### Example: Print logs in batch mode
281279

@@ -299,4 +297,4 @@ class MyDestination(object):
299297
```
300298

301299
For the list of available optional parameters, see
302-
[[python() destination options]].
300+
python() destination options.

doc/_admin-guide/070_Destinations/260_Splunk/000_Splunk-hec-event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ destination d_splunk_hec_raw {
7272
};
7373
```
7474

75-
The options of the `splunk-hec-raw()` destination are similar to the [[splunk-hec-event()]] destination, however, the `channel()` option is mandatory. The `channel()` option must be a globally unique channel identifier (GUID), this ID differentiates the data from different clients. Note that Splunk does not generate this ID, you must create it for yourself. When Splunk sees a new channel identifier, it creates a new channel.
75+
The options of the `splunk-hec-raw()` destination are similar to the [[splunk-hec-event()|adm-dest-splunk-hec-event]] destination, however, the `channel()` option is mandatory. The `channel()` option must be a globally unique channel identifier (GUID), this ID differentiates the data from different clients. Note that Splunk does not generate this ID, you must create it for yourself. When Splunk sees a new channel identifier, it creates a new channel.
7676

77-
Use the `template()` option to set the content of the log message sent to Splunk. Avoid using the `event()` option, that is used in the [[splunk-hec-event()]] destination.
77+
Use the `template()` option to set the content of the log message sent to Splunk. Avoid using the `event()` option, that is used in the [[splunk-hec-event()|adm-dest-splunk-hec-event]] destination.

doc/_admin-guide/070_Destinations/310_syslog-ng/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: >-
77
syslog-ng node in EWMM format.
88
---
99

10-
The [[Enterprise-wide message model (EWMM)]]
10+
The [[Enterprise-wide message model (EWMM)]]
1111
allows you to deliver structured messages from the initial
1212
receiving syslog-ng component right up to the central log server,
1313
through any number of hops. It does not matter if you parse the messages
@@ -18,11 +18,12 @@ component in your infrastructure has received it, which is important if
1818
you want to forward a message for example, to a SIEM system. To make use
1919
of the enterprise-wide message model, you have to use the syslog-ng()
2020
destination on the sender side, and the
21-
[[default-network-drivers() source]] on the receiver side.
21+
[[default-network-drivers() source|adm-src-def-netw]]
22+
on the receiver side.
2223

2324
The syslog-ng() destination driver is available in version 3.16 and
2425
later. The node that receives this message must use the
25-
[[default-network-drivers() source]]
26+
[[default-network-drivers() source|adm-src-def-netw]]
2627
to properly handle the messages.
2728

2829
The following is a sample log message in EWMM format.

doc/_admin-guide/180_Best_practices_and_examples/005_Load_balancing_logs/001_msec_hashing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ description: >-
1111
![]({{ site.baseurl}}/assets/images/caution.png) **CAUTION:**
1212
Consider that network-load-balancer() is not a destination, only a script that
1313
generates the example configuration described in
14-
[[Load balancing with round robin]].
14+
[[Load balancing with round robin|adm-pract-round-robin]].
1515
Also consider that the configuration generator script may change incompatibly
1616
in the future. As a result, One Identity does not officially support using
1717
this script, and recommends that you only use this script at your own risk.
1818
{: .notice--warning}
1919

2020
As an alternative to using the example configuration described in
21-
[[Load balancing with round robin]], a
21+
[[Load balancing with round robin|adm-pract-round-robin]], a
2222
configuration generator script is also available in syslog-ng OSE:
2323

2424
```config

0 commit comments

Comments
 (0)