معرفی شرکت ها


connectmon-0.2.7


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A tool for monitoring tasks and connectors in Kafka Connect.
ویژگی مقدار
سیستم عامل -
نام فایل connectmon-0.2.7
نام connectmon
نسخه کتابخانه 0.2.7
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jens Peder Meldgaard
ایمیل نویسنده jenspederm@gmail.com
آدرس صفحه اصلی https://github.com/JenspederM/ConnectMon
آدرس اینترنتی https://pypi.org/project/connectmon/
مجوز -
# ConnectMon A tool for monitoring tasks and connectors in Kafka Connect. ## Installation With pip ``` pip install connectmon ``` With poetry ``` poetry add connectmon ``` ## Usage ```py from connectmon import env, API from connectmon.messaging import TeamsService ## Setup Kafka Connect Rest API client and check if cluster is reachable connect = API(env.CONNECT_URL) ## Get all connectors and check if any are in a failed state connectors = connect.get_all_connectors() ## Loop through all channels and send messages for channel in env.CHANNELS.channels: if channel.type == "teams": service = TeamsService(connect, channel) service.process_channel_connectors(connectors) service.send_message() ``` ## Configuration Base configuration for ConnectMon is handled through Environment Variables. ### Environment Variables | Name | Type | Description | Default | |------|------|-------------| ------- | | **CONFIG_PATH** | Optional string | The path to the channel configuration file | `""` | | **CONNECT_URL** | string | The URL of the Connect cluster | `"http://localhost:8083"` | | SKIP_TLS_VERIFY | boolean | Whether to skip TLS verification | `False` | | ENVIRONMENT | string | The environment the application is running in | `"dev"` | | LOG_LEVEL | string | The log level for the application | `"INFO"` | | LOG_FORMAT | string | The log format for the application | `"(asctime)s - ..."` | > *Name in bold are required!* If `CONFIG_PATH` is provided, the application will attempt to load configuration from the file, which will set `settings.CHANNELS` with the channels configured in the supplied configuration file. ### Channel Configuration You can configure specific channels to receive notifications when connectors or tasks are paused or failed. A config file could look like this ```yaml channels: - name: my-teams-team-name type: teams url: https://my-org.webhook.office.com/webhookb2/... actions: - RESTART_FAILED include: - i-want-to-monitor-this-connector - this-too exclude: - who-cares-about-this-connector - this-is-someone-elses-problem ``` Supported fields for channels are: | Name | Type | Description | Default | | ---- | ---- | ----------- | ------- | | **name** | string | Name of the channel | `""` | | **type** | string | Type of channel | `""` | | **url** | string | Url to send payload to | `""` | | actions | list of strings | Can be any of `RESTART_FAILED`, `RESTART_FAILED_CONNECTORS`, `RESTART_FAILED_TASKS`, `RESUME_PAUSED_CONNECTORS` | `RESTART_FAILED` | | include | list of strings | Names of connectors to include for this channel | `["*"]` | | exclude | list of strings | Names of connectors to *exclude* for this channel | `[]` | > Current only Microsoft Teams or `type: "teams"` is supported.


نیازمندی

مقدار نام
>=1.10.5,<2.0.0 pydantic
>=0.21.1,<0.22.0 python-dotenv
>=6.0,<7.0 pyyaml
>=2.28.2,<3.0.0 requests
>=0.2.2,<0.3.0 pymsteams


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl connectmon-0.2.7:

    pip install connectmon-0.2.7.whl


نصب پکیج tar.gz connectmon-0.2.7:

    pip install connectmon-0.2.7.tar.gz