From f7bdb6daad4052a410a95c9d01aeb83fcb39ffb9 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 21 Apr 2025 14:05:58 -0500 Subject: [PATCH] chore(influxdb3): Core and Enterprise: update to request trigger-spec --- content/shared/v3-core-plugins/_index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/shared/v3-core-plugins/_index.md b/content/shared/v3-core-plugins/_index.md index 08516af13..2ab099cd9 100644 --- a/content/shared/v3-core-plugins/_index.md +++ b/content/shared/v3-core-plugins/_index.md @@ -241,12 +241,12 @@ The plugin receives the scheduled call time. ### Create a trigger for HTTP requests -[For an HTTP request plugin], use the `path:` trigger specification to configure and enable a [plugin for HTTP requests](#for-http-requests)--for example: +For an [HTTP request plugin](#for-http-requests), use the `request:` trigger specification to configure and enable a [plugin for HTTP requests](#for-http-requests)--for example: ```bash # Create an endpoint at /api/v3/engine/webhook influxdb3 create trigger \ - --trigger-spec "path:webhook" \ + --trigger-spec "request:webhook" \ --plugin-filename "webhook_handler.py" \ --database my_database \ webhook_processor @@ -337,7 +337,7 @@ influxdb3 create trigger \ # Disable the trigger on error influxdb3 create trigger \ - --trigger-spec "path:webhook" \ + --trigger-spec "request:webhook" \ --plugin-filename "webhook_handler.py" \ --error-behavior disable \ --database my_database \