|
| 1 | +--- |
| 2 | +title: Manage InfluxDB 3 plugins with InfluxDB 3 Explorer |
| 3 | +description: > |
| 4 | + Use InfluxDB 3 Explorer to manage InfluxDB 3 processing engine plugins. |
| 5 | +menu: |
| 6 | + influxdb3_explorer: |
| 7 | + name: Manage InfluxDB plugins |
| 8 | +weight: 5 |
| 9 | +cascade: |
| 10 | + related: |
| 11 | + - /influxdb3/core/plugins/, InfluxDB 3 Core Processing engine plugins |
| 12 | + - /influxdb3/enterprise/plugins/, InfluxDB 3 Enterprise Processing engine plugins |
| 13 | +cascade: |
| 14 | + prepend: | |
| 15 | + > [!Warning] |
| 16 | + > #### {{% product-name %}} plugin management is currently in beta |
| 17 | + > |
| 18 | + > The {{% product-name %}} plugin management tools and the Plugin Library are |
| 19 | + > currently in **beta**. |
| 20 | +--- |
| 21 | + |
| 22 | +{{% product-name %}} lets you manage plugins in your InfluxDB 3 instance or cluster. |
| 23 | +[InfluxDB 3 Processing engine plugins](/influxdb3/enterprise/plugins/) let you |
| 24 | +extend your database with custom Python code. |
| 25 | +Use {{% product-name %}} to manage plugins in your InfluxDB 3 instance and |
| 26 | +install prebuilt plugins from the _Plugin Library_. |
| 27 | + |
| 28 | +Each plugin can define one or more _triggers_—rules that |
| 29 | +specify when the plugin should execute. Triggers are typically based on |
| 30 | +conditions such as data arriving in a specific table or matching certain |
| 31 | +criteria. |
| 32 | + |
| 33 | +- **Data writes** - Process and transform data as it enters the database |
| 34 | +- **Scheduled events** - Run code at defined intervals or specific times |
| 35 | +- **HTTP requests** - Expose custom API endpoints that execute your code |
| 36 | + |
| 37 | +When a trigger condition is met, InfluxDB 3 automatically runs the associated |
| 38 | +plugin code. This enables real-time data processing, enrichment, or alerting |
| 39 | +without manual intervention. |
| 40 | +Use the InfluxDB 3 Explorer UI to enable, disable, or configure triggers for each plugin. |
| 41 | + |
| 42 | +<!-- TOC --> |
| 43 | + |
| 44 | +- [View installed plugins](#view-installed-plugins) |
| 45 | + - [Filter installed plugins](#filter-installed-plugins) |
| 46 | +- [Enable or disable a plugin](#enable-or-disable-a-plugin) |
| 47 | +- [ View Plugin Logs](#-view-plugin-logs) |
| 48 | +- [Delete a plugin](#delete-a-plugin) |
| 49 | +- [Use the Plugin Library](#use-the-plugin-library) |
| 50 | + |
| 51 | +<!-- /TOC --> |
| 52 | + |
| 53 | +## View installed plugins |
| 54 | + |
| 55 | +To view plugins installed in your InfluxDB 3 server, navigate to |
| 56 | +**Manage Plugins** > **Overview**. |
| 57 | + |
| 58 | +1. Navigate to the **Manage Plugins** > **Overview** section in the left sidebar. |
| 59 | +2. All installed plugins are listed under the _All Plugins_ tab. |
| 60 | + |
| 61 | +### Filter installed plugins |
| 62 | + |
| 63 | +To filter installed plugins by state, use the top tabs to filter by: |
| 64 | + |
| 65 | +- **All Plugins** |
| 66 | +- **Running** |
| 67 | +- **Stopped** |
| 68 | +- **Errors** |
| 69 | + |
| 70 | +You can also use the **search bar** to filter by plugin name. |
| 71 | + |
| 72 | +## Enable or disable a plugin |
| 73 | + |
| 74 | +1. In the plugin list, locate the desired plugin. |
| 75 | + |
| 76 | + - **If the plugin is currently running (enabled)**, click {{< icon "pause" >}} to disable the plugin. |
| 77 | + - **If the plugin is currently stopped (disabled)**, click the {{< icon "play" >}} button to enable the plugin. |
| 78 | + |
| 79 | +## View plugin logs |
| 80 | + |
| 81 | +1. In the plugin list, locate the desired plugin. |
| 82 | +2. Click **Logs** to view the most recent logs output by the plugin. |
| 83 | +3. To view more log entries, click **View More**. |
| 84 | +4. To export the logs, click **Export**. |
| 85 | + |
| 86 | +## Delete a plugin |
| 87 | + |
| 88 | +1. In the plugin list, locate the desired plugin. |
| 89 | +2. Click the **{{< icon "trash" >}} button** to delete the plugin. |
| 90 | +3. Confirm that you want to delete the plugin. |
| 91 | + |
| 92 | +{{< children hlevel="h2" >}} |
0 commit comments