1
0
mirror of https://github.com/minio/docs.git synced 2025-07-31 18:04:52 +03:00
Andrea Longo
2023-06-19 09:56:14 -06:00
committed by GitHub
parent e7c314ccf6
commit 45d18ddef8
3 changed files with 84 additions and 15 deletions

View File

@ -190,16 +190,30 @@ HTTP Webhook Log Target
This setting corresponds to the
:envvar:`MINIO_LOGGER_WEBHOOK_PROXY` environment variable.
.. mc-conf:: queue_dir
.. versionadded:: RELEASE.2023-05-18T00-05-36Z
*Optional*
Specify the directory path, such as ``/opt/minio/events``, to enable MinIO's persistent event store for undelivered messages.
The MinIO process must have read, write, and list access on the specified directory.
MinIO stores undelivered events in the specified store while the webhook service is offline and replays the stored events when connectivity resumes.
This setting corresponds to the
:envvar:`MINIO_LOGGER_WEBHOOK_QUEUE_DIR` environment variable.
.. mc-conf:: queue_size
*Optional*
An integer value to use for the queue size for logger webhook targets.
The default is ``100000`` events.
This setting corresponds to the
:envvar:`MINIO_LOGGER_WEBHOOK_QUEUE_SIZE` environment variable.
.. _minio-server-config-logging-audit:
HTTP Webhook Audit Log Target
@ -278,8 +292,29 @@ HTTP Webhook Audit Log Target
Requires specifying :mc-conf:`~audit_webhook.client_cert`.
This setting corresponds to the
:envvar:`MINIO_AUDIT_WEBHOOK_CLIENT_KEY` environment variable.
This setting corresponds to the :envvar:`MINIO_AUDIT_WEBHOOK_CLIENT_KEY` environment variable.
.. mc-conf:: queue_dir
.. versionadded:: RELEASE.2023-05-18T00-05-36Z
*Optional*
Specify the directory path, such as ``/opt/minio/events``, to enable MinIO's persistent event store for undelivered messages.
The MinIO process must have read, write, and list access on the specified directory.
MinIO stores undelivered events in the specified store while the webhook service is offline and replays the stored events when connectivity resumes.
This setting corresponds to the :envvar:`MINIO_AUDIT_WEBHOOK_QUEUE_DIR` environment variable.
.. mc-conf:: queue_size
*Optional*
An integer value to use for the queue size for webhook targets.
The default is ``100000`` events.
This setting corresponds to the :envvar:`MINIO_AUDIT_WEBHOOK_QUEUE_SIZE` environment variable.
.. _minio-server-config-bucket-notification-amqp:
@ -2498,4 +2533,4 @@ See :ref:`minio-external-identity-management-plugin` for a tutorial on using the
.. include:: /includes/common-minio-external-auth.rst
:start-after: start-minio-identity-management-comment
:end-before: end-minio-identity-management-comment
:end-before: end-minio-identity-management-comment

View File

@ -677,6 +677,19 @@ server logs webhook endpoints:
This variable corresponds to the :mc-conf:`logger_webhook proxy
<logger_webhook.proxy>` configuration setting.
.. envvar:: MINIO_LOGGER_WEBHOOK_QUEUE_DIR
.. versionadded:: RELEASE.2023-05-18T00-05-36Z
*Optional*
Specify the directory path, such as ``/opt/minio/events``, to enable MinIO's persistent event store for undelivered messages.
The MinIO process must have read, write, and list access on the specified directory.
MinIO stores undelivered events in the specified store while the webhook service is offline and replays the stored events when connectivity resumes.
This variable corresponds to the :mc-conf:`logger_webhook queue_dir <logger_webhook.queue_dir>` configuration setting.
.. envvar:: MINIO_LOGGER_WEBHOOK_QUEUE_SIZE
*Optional*
@ -766,6 +779,27 @@ audit log webhook endpoints:
This variable corresponds to the :mc-conf:`audit_webhook client_key
<audit_webhook.client_key>` configuration setting.
.. envvar:: MINIO_AUDIT_WEBHOOK_QUEUE_DIR
.. versionadded:: RELEASE.2023-05-18T00-05-36Z
*Optional*
Specify the directory path, such as ``/opt/minio/events``, to enable MinIO's persistent event store for undelivered messages.
The MinIO process must have read, write, and list access on the specified directory.
MinIO stores undelivered events in the specified store while the webhook service is offline and replays the stored events when connectivity resumes.
This variable corresponds to the :mc-conf:`audit_webhook queue_dir <audit_webhook.queue_dir>` configuration setting.
.. envvar:: MINIO_AUDIT_WEBHOOK_QUEUE_SIZE
*Optional*
An integer value to use for the queue size for audit webhook targets.
This variable corresponds to the :mc-conf:`audit_webhook queue_size <audit_webhook.queue_size>` configuration setting.
Bucket Notifications
~~~~~~~~~~~~~~~~~~~~