Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document plugins CLI option. #1790

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Plugins
sidebar_position: 6
description: Plugins overview
tags:
- public networks
- private networks
---

Expand Down
44 changes: 43 additions & 1 deletion docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -2998,13 +2998,55 @@ plugin-continue-on-error=true
</TabItem>
</Tabs>

Enables or disables continuing to run Besu if a [plugin](../../../private-networks/concepts/plugins.md)
Enables or disables continuing to run Besu if a [plugin](../../concepts/plugins.md)
fails during registration or other startup lifecycle stages.
If set to `true` and any plugin fails, Besu logs an error and continues running.
If set to `false` and any plugin fails, Besu logs an error and stops running.

The default is `false`.

### `plugins`

<Tabs>
<TabItem value="Syntax">

```bash
--plugins=<PLUGIN>[,<PLUGIN>...]...
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--plugins=<PLUGIN>[,<PLUGIN>...]...
--plugins=<PLUGIN>[,<PLUGIN>,...]

```

</TabItem>
<TabItem value="Example">

```bash
--plugins=essential-plugin,security-plugin
```

</TabItem>
<TabItem value="Environment variable">

```bash
BESU_PLUGINS=essential-plugin,security-plugin
```

</TabItem>
<TabItem value="Configuration file">

```bash
plugins=["essential-plugin","security-plugin"]
```

</TabItem>
</Tabs>

Comma-seperated list of [plugin](../../concepts/plugins.md) names to load. Each plugin must reside in
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Comma-seperated list of [plugin](../../concepts/plugins.md) names to load. Each plugin must reside in
Comma-separated list of [plugin](../../concepts/plugins.md) names to load. Each plugin must reside in

the `plugins` directory. If you omit this option, Besu automatically loads all plugins found in that directory.

The plugin name is case-sensitive, and is the name of the class that implements
[`BesuPlugin`](https://javadoc.io/doc/org.hyperledger.besu/plugin-api/latest/org/hyperledger/besu/plugin/BesuPlugin.html)
in the plugin source code.

If the specified plugin is not found, Besu exits with an error identifying the missing plugin.

### `print-paths-and-exit`

<Tabs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ title: Plugin API interfaces
sidebar_position: 4
description: Plugin interfaces
tags:
- public networks
- private networks
---

# Plugin API interfaces

API interfaces in Besu allow users to [build plugins](../concepts/plugins.md) to extend Besu functionality.
API interfaces in Besu allow users to [build plugins](../../public-networks/concepts/plugins.md) to extend Besu functionality.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
API interfaces in Besu allow users to [build plugins](../../public-networks/concepts/plugins.md) to extend Besu functionality.
API interfaces in Besu allow users to [build plugins](../concepts/plugins.md) to extend Besu's functionality.


For more information about the available interfaces, see the [Plugin API Javadoc](https://javadoc.io/doc/org.hyperledger.besu/plugin-api/latest/index.html).

Expand Down Expand Up @@ -58,4 +59,4 @@ The `start` step can be ignored and your plugin module will be instantiated when

:::

[privacy marker transactions]: ../concepts/privacy/private-transactions/processing.md
[privacy marker transactions]: ../../private-networks/concepts/privacy/private-transactions/processing.md
8 changes: 8 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,14 @@ const config = {
{
from: ["/private-networks/how-to/configure/tls/client-and-server", "/private-networks/concepts/pki", "/private-networks/how-to/configure/tls/p2p"],
to: "/private-networks/how-to/configure/tls",
},
{
from: "/private-networks/concepts/plugins",
to: "/public-networks/concepts/plugins",
},
{
from: "/private-networks/reference/plugin-api-interfaces",
to: "/public-networks/reference/plugin-api-interfaces",
}
],
createRedirects(existingPath) {
Expand Down
Loading