Skip to content

Commit b46b830

Browse files
committed
Eliminated multiline hardwired links from md
Signed-off-by: mrgarris0n <gergely.karacsonyi@gmail.com>
1 parent 5962891 commit b46b830

File tree

38 files changed

+97
-175
lines changed

38 files changed

+97
-175
lines changed

_includes/doc/admin-guide/options/deployment.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
| Type:| string|
44
|Default:| empty string|
55

6-
*Description:* Required. This option specifies your [Sumo Logic
7-
deployment](https://help.sumologic.com/APIs/General-API-Information/Sumo-Logic-Endpoints-and-Firewall-Security).
6+
*Description:* Required. This option specifies your Sumo Logic deployment.
87

98
For details on the deployment() option in the sumologic-http()
109
destination\'s declaration, see [[Declaration for the sumologic-http() destination|adm-dest-sumologic-http]].

_includes/doc/admin-guide/options/qos.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,4 @@
66
| | 1 - at least once (a much slower option than 0) |
77
| | 2 - exactly once (the slowest option) |
88

9-
*Description:* The [Quality of Service (QoS)
10-
level](https://www.hivemq.com/blog/mqtt-essentials-part-6-mqtt-quality-of-service-levels/)
11-
in MQTT messaging is an agreement between sender and receiver on the
12-
guarantee of delivering a message.
9+
*Description:* The Quality of Service (QoS) level in MQTT messaging is an agreement between sender and receiver on the guarantee of delivering a message.

doc/_admin-guide/020_The_concepts_of_syslog-ng/005_Licensing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ code package is under LGPL, the rest is GPL.
1414
{: .notice--info}
1515

1616
For details about the LGPL and GPL licenses, see
17-
[[GNU Lesser General Public License|lgpl-license]] and
18-
[[GNU General Public License|gpl-license]], respectively.
17+
GNU Lesser General Public License and
18+
GNU General Public License, respectively.
1919

2020
For clarity, the Documentation is licensed separately.
2121
For details, see The syslog-ng Open Source Edition Documentation License.

doc/_admin-guide/020_The_concepts_of_syslog-ng/007_The_structure_of_a_log_message/001_IETF_syslog_messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A syslog message consists of the following parts:
1212
- [[STRUCTURED-DATA|adm-struct-ietf#the-structured-data-message-part]]
1313
- [[MSG|adm-struct-ietf#the-msg-message-part]]
1414

15-
The following is a sample syslog message (source: <https://tools.ietf.org/html/rfc5424>):
15+
The following is a sample syslog message [(source)|rfc-5424]:
1616

1717
><34>1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8
1818

doc/_admin-guide/050_The_configuration_file/006_Modules_in_syslog-ng/002_Visualize_the_configuration.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ description: >-
88
configuration, and exports it as a graph into a JSON structure.
99
---
1010

11-
The resulting JSON file can be converted into [DOT file format](https://
12-
en.wikipedia.org/wiki/DOT_(graph_description_language)) that visualization
13-
tools (for example, Graphviz) can use. The package
11+
The resulting JSON file can be converted into DOT file format that visualization tools (for example, Graphviz) can use. The package
1412
includes a Python script to convert the exported JSON file into DOT
1513
format:
1614
`<syslog-ng-installation-directory>/contrib/scripts/config-graph-json-to-dot.py`

doc/_admin-guide/060_Sources/100_osquery/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ description: >-
1313
The osquery() source of syslog-ng OSE allows you read the results of
1414
periodical osquery queries (from the
1515
/var/log/osquery/osqueryd.results.log file) and automatically parse the
16-
messages (if you want to use syslog-ng OSE to [send log messages to
17-
osquery, read this blogpost](https://syslog-ng.com/blog/endpoint-visibility-and-monitoring-using-osquery-and-syslog-ng/)).
16+
messages (if you want to use syslog-ng OSE to send log messages to
17+
osquery, read this blogpost).
18+
1819
For example, you can:
1920

2021
- Create filters from the fields of the messages.

doc/_admin-guide/060_Sources/140_Python/000_Server_style_Python_sources.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ pure Python super classes.
6868

6969
You can implement your own event loop, or integrate the event loop of an
7070
external framework or library, for example,
71-
KafkaConsumer,
72-
Flask, [Twisted
73-
engine](https://twistedmatrix.com/trac/), and so on.
71+
KafkaConsumer, Flask, Twisted engine, and so on.
7472

7573
To post messages, call LogSource::post_message() method in the run
7674
method.

doc/_admin-guide/060_Sources/190_systemd-journal/000_systemd-journal_options.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ matches(
6464
| Type: | string|
6565
| Default: | "*" |
6666

67-
*Description:* The namespace() option works exactly the same way as [the
68-
respective option of the Journalctl command line tool](https://www.freedesktop.org/software/systemd/man/journalctl.html#--namespace=NAMESPACE).
67+
*Description:* The namespace() option works exactly the same way as the
68+
respective option of the Journalctl command line tool.
6969

7070
The following modes of operation are available:
7171

@@ -118,8 +118,7 @@ source s_journal
118118
**NOTE:** Namespace support was introduced to the Journalctl command line
119119
tool in Systemd version 2.45. The syslog-ng OSE application supports the
120120
namespace() option from version 3.29. For further information about
121-
namespaces on the Systemd side, see [Journal
122-
Namespaces](<https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html#Journal> Namespaces).
121+
namespaces on the Systemd side, see Journal Namespaces.
123122
{: .notice--info}
124123

125124
## prefix()

doc/_admin-guide/070_Destinations/000_amqp/000_amqp_options.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ authentication:
2323

2424
- external: Authentication happens using an out-of-band mechanism, for
2525
example, x509 certificate peer verification, client IP address
26-
range, or similar. For more information, see the [RabbitMQ
27-
documentation](https://www.rabbitmq.com/access-control.html).
26+
range, or similar. For more information, see the RabbitMQ
27+
documentation.
2828

2929
{% include doc/admin-guide/options/batch-bytes.md %}
3030

@@ -127,8 +127,7 @@ Available in syslog-ng OSE version 3.21 and later.
127127
|Default:| |
128128

129129
*Description:* Sets maximal number of channels (the channel-max option
130-
described in the [AMQP Reference
131-
Guide](https://www.rabbitmq.com/amqp-0-9-1-reference.html).
130+
described in the AMQP Reference Guide).
132131

133132
{% include doc/admin-guide/tls-block.md %}
134133

doc/_admin-guide/070_Destinations/000_amqp/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: 'amqp: Publishing messages using AMQP'
33
short_title: amqp
44
id: adm-dest-amqp
55
description: >-
6-
The amqp() driver publishes messages using the [AMQP (Advanced Message
7-
Queuing Protocol)](http://www.amqp.org/). syslog-ng OSE supports AMQP
6+
The amqp() driver publishes messages using the AMQP (Advanced Message Queuing Protocol). syslog-ng OSE supports AMQP
87
versions 0.9.1 and 1.0. The syslog-ng OSE amqp() driver supports
98
persistence, and every available exchange types.
109
---

0 commit comments

Comments
 (0)