-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[client] Support no_trigger_import in x_opencti_files
- Loading branch information
1 parent
1b66a21
commit cf6b01d
Showing
15 changed files
with
232 additions
and
15 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
autoapi==2.0.1 | ||
sphinx==7.2.5 | ||
sphinx==7.2.6 | ||
sphinx-autodoc-typehints==1.24.0 | ||
sphinx_rtd_theme==1.3.0 |
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
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
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,115 @@ | ||
import logging | ||
from typing import Type, Union | ||
|
||
from prometheus_client import Counter, Enum, start_http_server | ||
|
||
|
||
class OpenCTIMetricHandler: | ||
def __init__(self, activated: bool = False, port: int = 9095): | ||
""" | ||
Init of OpenCTIMetricHandler class. | ||
Parameters | ||
---------- | ||
activated : bool, default False | ||
If True use metrics in client and connectors. | ||
port : int, default 9095 | ||
Port for prometheus server. | ||
""" | ||
self.activated = activated | ||
|
||
if self.activated: | ||
logging.info(f"Exposing metrics on port {port}") | ||
start_http_server(port) | ||
|
||
self._metrics = { | ||
"bundle_send": Counter( | ||
"bundle_send", | ||
"Number of bundle send", | ||
), | ||
"record_send": Counter( | ||
"record_send", | ||
"Number of record (objects per bundle) send", | ||
), | ||
"run_count": Counter( | ||
"run_count", | ||
"Number of run", | ||
), | ||
"ping_api_count": Counter( | ||
"ping_api_count", | ||
"Number of ping to the api", | ||
), | ||
"ping_api_error": Counter( | ||
"ping_api_error", | ||
"Number of error when pinging the api", | ||
), | ||
"error_count": Counter( | ||
"error_count", | ||
"Number of error", | ||
), | ||
"client_error_count": Counter( | ||
"client_error_count", | ||
"Number of client error", | ||
), | ||
"state": Enum( | ||
"state", "State of connector", states=["idle", "running", "stopped"] | ||
), | ||
} | ||
|
||
def _metric_exists( | ||
self, name: str, expected_type: Union[Type[Counter], Type[Enum]] | ||
) -> bool: | ||
""" | ||
Check if a metric exists and has the correct type. | ||
If it does not, log an error and return False. | ||
Parameters | ||
---------- | ||
name : str | ||
Name of the metric to check. | ||
expected_type : Counter or Enum | ||
Expected type of the metric. | ||
Returns | ||
------- | ||
bool | ||
True if the metric exists and is of the correct type else False. | ||
""" | ||
if name not in self._metrics: | ||
logging.error(f"Metric {name} does not exist.") | ||
return False | ||
if not isinstance(self._metrics[name], expected_type): | ||
logging.error(f"Metric {name} is not of expected type {expected_type}.") | ||
return False | ||
return True | ||
|
||
def inc(self, name: str, n: int = 1): | ||
""" | ||
Increment the metric (counter) `name` by `n`. | ||
Parameters | ||
---------- | ||
name : str | ||
Name of the metric to increment. | ||
n : int, default 1 | ||
Increment the counter by `n`. | ||
""" | ||
if self.activated: | ||
if self._metric_exists(name, Counter): | ||
self._metrics[name].inc(n) | ||
|
||
def state(self, state: str, name: str = "state"): | ||
""" | ||
Set the state `state` for metric `name`. | ||
Parameters | ||
---------- | ||
state : str | ||
State to set. | ||
name : str, default = "state" | ||
Name of the metric to set. | ||
""" | ||
if self.activated: | ||
if self._metric_exists(name, Enum): | ||
self._metrics[name].state(state) |
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
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
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
Oops, something went wrong.