https://github.com/general-cbic/poolex_prom_ex
PromEx plugin for poolex
https://github.com/general-cbic/poolex_prom_ex
elixir-library hacktoberfest poolex prom-ex
Last synced: 5 months ago
JSON representation
PromEx plugin for poolex
- Host: GitHub
- URL: https://github.com/general-cbic/poolex_prom_ex
- Owner: general-CbIC
- Created: 2024-04-22T09:46:24.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-05-06T03:41:25.000Z (6 months ago)
- Last Synced: 2025-05-07T06:06:12.991Z (5 months ago)
- Topics: elixir-library, hacktoberfest, poolex, prom-ex
- Language: Elixir
- Homepage:
- Size: 80.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# PoolexPromEx

[](https://hex.pm/packages/poolex_prom_ex)
[](https://hexdocs.pm/poolex_prom_ex/)
[](https://github.com/general-CbIC/poolex_prom_ex/blob/main/LICENSE)
[](https://hex.pm/packages/poolex_prom_ex)This is a plugin for your application to collect [Poolex's](https://github.com/general-CbIC/poolex) metrics with [PromEx](https://github.com/akoutmos/prom_ex).
## Requirements
| Requirement | Version |
|-------------|-----------|
| Erlang/OTP | >= 24 |
| Elixir | >= 1.12 |
| Poolex | ~> 1.0 |## Installation
To use this plugin, you need to add `:poolex_prom_ex` to your dependencies in `mix.exs`:
```elixir
defp deps do
[
{:poolex_prom_ex, "~> 1.0"}
]
end
```Then you need to add this plugin to plugins list in your `PromEx` configuration:
```elixir
defmodule MyCoolApp.PromEx do
use PromEx, otp_app: :my_cool_app@impl PromEx
def plugins do
[
Poolex.PromEx
]
end
end
```Additional information about `PromEx` installation and configuration can be found in the `PromEx` documentation: .