-
Notifications
You must be signed in to change notification settings - Fork 36
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
Feature/issue179/processor actors #208
Conversation
…per. Add binding manager for this kind of actor
…rator and related tests
…ors parsing for including bindings to pullers/pushers, remove bindings as first class entities
…nitorAgentActor, Correct typos, Clean code
…manual K8s api configuration
… updates in K8sPreProcessorActor, Adapt tests, Remove unnecessary code
…tween processors and pullers/pushers and its related tests, Improve K8sMonitorAgent exception management
… when killing actors in postmorten mode
def __init__(self, component_group_name: str): | ||
Generator.__init__(self, component_group_name=component_group_name) | ||
|
||
self.processor_factory = self._get_default_processor_factories() |
Check warning
Code scanning / CodeQL
`__init__` method calls overridden method Warning
_get_default_processor_factories
method PreProcessorGenerator._get_default_processor_factories
Call to self.
_get_default_processor_factories
method PostProcessorGenerator._get_default_processor_factories
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #208 +/- ##
========================================
Coverage 65.62% 65.62%
========================================
Files 83 88 +5
Lines 3296 3782 +486
========================================
+ Hits 2163 2482 +319
- Misses 1133 1300 +167
|
from powerapi.cli.generator import PullerGenerator, PusherGenerator, ProcessorGenerator, COMPONENT_TYPE_KEY, \ | ||
LISTENER_ACTOR_KEY, MONITOR_NAME_SUFFIX, PreProcessorGenerator |
Check notice
Code scanning / CodeQL
Unused import Note test
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Closes: #179