Deactivate Anomaly Detection Plugin

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
Opensearch-Dashboard 1.2.0 / OS RedHat

Describe the issue:
Hello everyone,
I would like to deactivate Anomaly Detection Plugin without removing him.
Does anyone have a solution to do this

Configuration:

Relevant Logs or Screenshots:

@ohltyler @AMoo-Miki Can you assist @Nikelaos with this answer? thank you

I use 2 methods for disabling plugins without deleting them from the filesystem:

  1. By renaming the manifest file: I rename opensearch_dashboards.json for that plugin to opensearch_dashboards-original.json
    This will prevent the plugin from being discovered completely.

  2. By giving the plugin an unsatisfiable dependency in the manifest file: I edit opensearch_dashboards.json for the plugin and add "something" to the requiredPlugins.
    If the plugin’s manifest doesn’t already have a requiredPlugins, I just add it. The end result is:

    {
      ...
      "requiredPlugins": [
        ...
        "something"
      ],
      ...
    }
    
1 Like