Skip to content

Commit 12e6fad

Browse files
Fix the variable name (8.0) (#541)
Update audit-log-filter-variables.md
1 parent bf32530 commit 12e6fad

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

docs/audit-log-filter-variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ The default value is 0 (zero). This value disables the expiration of passwords.
613613

614614
If the plugin starts and encryption is enabled, the plugin checks for an audit log filter encryption password. If a password is not found, the plugin generates a random password.
615615

616-
Call `audit_log_filter_encryption_set() to set a specific password.
616+
Call [audit_log_encryption_password_set(new_password)](#audit_log_encryption_password_setnew_password) to set a specific password.
617617

618618

619619
### `audit_log_filter_prune_seconds`
@@ -710,7 +710,7 @@ Defines the Audit Log filter plugin's logging method. The valid values are the f
710710
| Data type | String |
711711
| Default | LOG_USER |
712712

713-
Specifies the syslog `facility` value. The option has the same meaning as the appropriate parameter described in the [syslog(3) manual](https://linux.die.net/man/3/syslog).
713+
Specifies the syslog `facility` value. The option has the same meaning as the appropriate parameter described in the [syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
714714

715715

716716
### `audit_log_filter_syslog_priority`
@@ -723,7 +723,7 @@ Specifies the syslog `facility` value. The option has the same meaning as the ap
723723
| Data type | String |
724724
| Default | LOG_INFO |
725725

726-
Defines the `priority` value for the syslog. The option has the same meaning as the appropriate parameter described in the [syslog(3) manual](https://linux.die.net/man/3/syslog).
726+
Defines the `priority` value for the syslog. The option has the same meaning as the appropriate parameter described in the [syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
727727

728728

729729

docs/audit-log-plugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ The audit Log plugin generates a log of following events.
283283

284284
## Stream the audit log to syslog
285285

286-
To stream the audit log to syslog you’ll need to set audit_log_handler variable to `SYSLOG`. To control the syslog file handler, the following variables can be used: audit_log_syslog_ident, audit_log_syslog_facility, and audit_log_syslog_priority These variables have the same meaning as appropriate parameters described in the [syslog(3) manual](https://linux.die.net/man/3/syslog).
286+
To stream the audit log to syslog you’ll need to set audit_log_handler variable to `SYSLOG`. To control the syslog file handler, the following variables can be used: audit_log_syslog_ident, audit_log_syslog_facility, and audit_log_syslog_priority These variables have the same meaning as appropriate parameters described in the [syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
287287

288288
!!! note
289289

@@ -879,7 +879,7 @@ will be written to syslog.
879879

880880
This variable is used to specify the `ident` value for syslog. This variable
881881
has the same meaning as the appropriate parameter described in the [syslog(3)
882-
manual](http://linux.die.net/man/3/syslog).
882+
manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
883883

884884
### `audit_log_syslog_facility`
885885

@@ -893,7 +893,7 @@ manual](http://linux.die.net/man/3/syslog).
893893

894894
This variable is used to specify the `facility` value for syslog. This
895895
variable has the same meaning as the appropriate parameter described in the
896-
[syslog(3) manual](https://linux.die.net/man/3/syslog).
896+
[syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
897897

898898
### `audit_log_syslog_priority`
899899

@@ -907,7 +907,7 @@ variable has the same meaning as the appropriate parameter described in the
907907

908908
This variable is used to specify the `priority` value for syslog. This
909909
variable has the same meaning as the appropriate parameter described in the
910-
[syslog(3) manual](https://linux.die.net/man/3/syslog).
910+
[syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
911911

912912
## Status Variables
913913

docs/release-notes/Percona-Server-8.0.26-17.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ increased visibility. [Commercial support contracts are available](https://www.p
2424

2525
Percona integrates a ZenFS RocksDB plugin to Percona Server for MySQL. This
2626
plugin places files on a raw zoned block device (ZBD) using the MyRocks File
27-
System interface. Percona provides a binary release for [Debian 11.1](https://www.debian.org/releases/bullseye/debian-installer/index). [Other Linux distributions](https://zonedstorage.io/docs/distributions/overview) are adding support for ZenFS, but Percona does not offer installation packages for those distributions yet. The `libzbd` package is now linked statically to the RocksDB storage engine.
27+
System interface. Percona provides a binary release for Debian 11.1. [Other Linux distributions](https://zonedstorage.io/docs/distributions/overview) are adding support for ZenFS, but Percona does not offer installation packages for those distributions yet. The `libzbd` package is now linked statically to the RocksDB storage engine.
2828

2929
The following dependency libraries are updated to newer versions:
3030

docs/start-transaction-with-consistent-snapshot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Start transaction with consistent snapshot
22

3-
*Percona Server for MySQL* has ported *MariaDB* [enhancement](https://mariadb.com/kb/en/enhancements-for-start-transaction-with-consistent/) for `START TRANSACTION WITH CONSISTENT SNAPSHOTS` feature to *MySQL* 5.6 group commit implementation. This enhancement makes binary log positions consistent with *InnoDB* transaction snapshots.
3+
*Percona Server for MySQL* has ported *MariaDB* [enhancement](https://mariadb.com/docs/server/ha-and-performance/standard-replication/enhancements-for-start-transaction-with-consistent-snapshot/) for `START TRANSACTION WITH CONSISTENT SNAPSHOTS` feature to *MySQL* 5.6 group commit implementation. This enhancement makes binary log positions consistent with *InnoDB* transaction snapshots.
44

55
This feature is quite useful to obtain logical backups with correct positions without running a `FLUSH TABLES WITH READ LOCK`. Binary log position can be obtained by two newly implemented status variables: [Binlog_snapshot_file](#binlog_snapshot_file) and [Binlog_snapshot_position](#binlog_snapshot_position). After starting a transaction using the `START TRANSACTION WITH CONSISTENT SNAPSHOT`, these two variables will provide you with the binlog position corresponding to the state of the database of the consistent snapshot so taken, irrespectively of which other transactions have been committed since the snapshot was taken.
66

@@ -65,4 +65,4 @@ These status variables are only available when the binary log is enabled globall
6565

6666
## Other reading
6767

68-
* [MariaDB Enhancements for START TRANSACTION WITH CONSISTENT SNAPSHOT](https://mariadb.com/kb/en/enhancements-for-start-transaction-with-consistent/)
68+
* [MariaDB Enhancements for START TRANSACTION WITH CONSISTENT SNAPSHOT](https://mariadb.com/docs/server/ha-and-performance/standard-replication/enhancements-for-start-transaction-with-consistent-snapshot/)

docs/telemetry.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,5 +391,3 @@ percona_telemetry_disable=1
391391

392392
Restart the server after editing the configuration file. This setting ensures that the telemetry remains disabled even after a server restart.
393393

394-
[Percona Privacy statement]: https://www.percona.com/privacy-policy#h.e34c40q8sb1a
395-
[disable telemetry]: #disable-telemetry

0 commit comments

Comments
 (0)