Compare commits

..

8 Commits

Author SHA1 Message Date
Joao P Dubas
e586a29e75 chore: fix telemetry locked version
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-04-25 14:54:10 +00:00
Joao P Dubas
4446996415 feat: enable metrics endpoint 2022-04-25 14:45:03 +00:00
Joao P Dubas
f24d13e007 chore: remove unused service
pgcli is defined in a override file
2022-04-25 14:45:03 +00:00
Joao P Dubas
c891a42c4d chore (metric): enable ecto and absinthe 2022-04-25 14:45:03 +00:00
Joao P Dubas
386ef829ff feat: add prom_ex to expose system metrics 2022-04-25 14:45:03 +00:00
166cfed7b3 chore(deps): update dependency telemetry_metrics to ~> 0.6 (#12)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [telemetry_metrics](https://hex.pm/packages/telemetry_metrics) | minor | `~> 0.4` -> `~> 0.6` |

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #12
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2022-04-25 13:42:42 +00:00
0dc3d6f6c7 chore(deps): update dependency phoenix_live_dashboard to ~> 0.6 (#11)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [phoenix_live_dashboard](https://hex.pm/packages/phoenix_live_dashboard) | minor | `~> 0.4` -> `~> 0.6` |

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #11
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2022-04-25 13:31:13 +00:00
e09f789bb0 chore(deps): update dependency gettext to ~> 0.19 (#9)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [gettext](https://hex.pm/packages/gettext) | minor | `~> 0.11` -> `~> 0.19` |

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #9
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2022-04-25 13:24:44 +00:00

View File

@ -35,18 +35,18 @@ defmodule Wabanex.MixProject do
{:crudry, "~> 2.4.0"}, {:crudry, "~> 2.4.0"},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false},
{:ecto_sql, "~> 3.4"}, {:ecto_sql, "~> 3.4"},
{:gettext, "~> 0.11"}, {:gettext, "~> 0.19"},
{:jason, "~> 1.0"}, {:jason, "~> 1.0"},
{:junit_formatter, "~> 3.1", only: [:test]}, {:junit_formatter, "~> 3.1", only: [:test]},
{:lcov_ex, "~> 0.2", only: [:dev, :test], runtime: false}, {:lcov_ex, "~> 0.2", only: [:dev, :test], runtime: false},
{:pg_ranges, "~> 1.1"}, {:pg_ranges, "~> 1.1"},
{:phoenix, "~> 1.6.0"}, {:phoenix, "~> 1.6.0"},
{:phoenix_ecto, "~> 4.1"}, {:phoenix_ecto, "~> 4.1"},
{:phoenix_live_dashboard, "~> 0.4"}, {:phoenix_live_dashboard, "~> 0.6"},
{:prom_ex, "~> 1.7"},
{:plug_cowboy, "~> 2.0"}, {:plug_cowboy, "~> 2.0"},
{:postgrex, ">= 0.0.0"}, {:postgrex, ">= 0.0.0"},
{:telemetry_metrics, "~> 0.4"}, {:prom_ex, "~> 1.7"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"} {:telemetry_poller, "~> 1.0"}
] ]
end end