This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code changes for action listener plugin
- Loading branch information
1 parent
ec29ff6
commit 3d7b459
Showing
7 changed files
with
224 additions
and
2 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...on/opendistro/elasticsearch/performanceanalyzer/decisionmaker/actions/ActionListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package com.amazon.opendistro.elasticsearch.performanceanalyzer.decisionmaker.actions; | ||
|
||
/** | ||
* This listener is notified whenever an action suggestion is | ||
* published by the decision maker Publisher | ||
*/ | ||
public interface ActionListener { | ||
|
||
/** | ||
* Called when Publisher emits an action | ||
*/ | ||
void actionPublished(Action action); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/main/java/com/amazon/opendistro/elasticsearch/performanceanalyzer/plugins/Plugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package com.amazon.opendistro.elasticsearch.performanceanalyzer.plugins; | ||
|
||
/** | ||
* Allows adding custom extensions to the analysis graph. | ||
* <p> | ||
* RCA framework plugins can be installed to extend the analysis graph through custom | ||
* metric nodes, rca nodes, deciders or action listeners. These can subscribe to flow | ||
* units from existing nodes to add new functionality, or override existing graph nodes to | ||
* customize for specific use cases. | ||
*/ | ||
public abstract class Plugin { | ||
|
||
public abstract String name(); | ||
|
||
} |
72 changes: 72 additions & 0 deletions
72
...ava/com/amazon/opendistro/elasticsearch/performanceanalyzer/plugins/PluginController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package com.amazon.opendistro.elasticsearch.performanceanalyzer.plugins; | ||
|
||
import com.amazon.opendistro.elasticsearch.performanceanalyzer.decisionmaker.actions.ActionListener; | ||
import com.amazon.opendistro.elasticsearch.performanceanalyzer.decisionmaker.deciders.Publisher; | ||
import java.lang.reflect.Constructor; | ||
import java.lang.reflect.InvocationTargetException; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
public class PluginController { | ||
|
||
private static final Logger LOG = LogManager.getLogger(PluginController.class); | ||
private final Publisher publisher; | ||
private List<Plugin> plugins; | ||
|
||
public PluginController(Publisher publisher) { | ||
this.publisher = publisher; | ||
this.plugins = new ArrayList<>(); | ||
loadFrameworkPlugins(); | ||
registerActionListeners(); | ||
} | ||
|
||
private void loadFrameworkPlugins() { | ||
for (Class<?> pluginClass : PluginControllerConfig.getFrameworkPlugins()) { | ||
final Constructor<?>[] constructors = pluginClass.getConstructors(); | ||
if (constructors.length == 0) { | ||
throw new IllegalStateException( | ||
"no public constructor found for plugin class: [" + pluginClass.getName() + "]"); | ||
} | ||
if (constructors.length > 1) { | ||
throw new IllegalStateException( | ||
"unique constructor expected for plugin class: [" + pluginClass.getName() + "]"); | ||
} | ||
if (constructors[0].getParameterCount() != 0) { | ||
throw new IllegalStateException( | ||
"default constructor expected for plugin class: [" + pluginClass.getName() + "]"); | ||
} | ||
|
||
try { | ||
plugins.add((Plugin) constructors[0].newInstance()); | ||
LOG.info("loaded plugin: [{}]", plugins.get(plugins.size() - 1).name()); | ||
} catch (InstantiationException | IllegalAccessException | InvocationTargetException e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
} | ||
|
||
private void registerActionListeners() { | ||
for (Plugin plugin: plugins) { | ||
if (ActionListener.class.isAssignableFrom(plugin.getClass())) { | ||
publisher.addActionListener((ActionListener)plugin); | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...m/amazon/opendistro/elasticsearch/performanceanalyzer/plugins/PluginControllerConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package com.amazon.opendistro.elasticsearch.performanceanalyzer.plugins; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class PluginControllerConfig { | ||
|
||
/** | ||
* Returns a list of entry point classes for internal framework plugins | ||
*/ | ||
public static List<Class<? extends Plugin>> getFrameworkPlugins() { | ||
List<Class<? extends Plugin>> frameworkPlugins = new ArrayList<>(); | ||
frameworkPlugins.add(PublisherEventsLogger.class); | ||
return frameworkPlugins; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...om/amazon/opendistro/elasticsearch/performanceanalyzer/plugins/PublisherEventsLogger.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package com.amazon.opendistro.elasticsearch.performanceanalyzer.plugins; | ||
|
||
import com.amazon.opendistro.elasticsearch.performanceanalyzer.decisionmaker.actions.Action; | ||
import com.amazon.opendistro.elasticsearch.performanceanalyzer.decisionmaker.actions.ActionListener; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
/** | ||
* A simple listener that logs all actions published by the publisher | ||
*/ | ||
public class PublisherEventsLogger extends Plugin implements ActionListener { | ||
|
||
private static final Logger LOG = LogManager.getLogger(PublisherEventsLogger.class); | ||
public static final String NAME = "publisher_events_logger_plugin"; | ||
|
||
@Override | ||
public void actionPublished(Action action) { | ||
LOG.info("Action: [{}] published by decision maker publisher.", action.name()); | ||
} | ||
|
||
@Override | ||
public String name() { | ||
return NAME; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters