Packages
Ship your Telemetry metrics to Logflare for long term storage, easy search and flexible dashboarding.
Current section
Files
Jump to
Current section
Files
telemetry_metrics_logflare
mix.exs
mix.exs
defmodule TelemetryMetricsLogflare.MixProject do
use Mix.Project
def project do
[
app: :telemetry_metrics_logflare,
version: "0.1.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Telemetry Metrics Logflare",
source_url: "https://github.com/Logflare/telemetry_metrics_logflare",
homepage_url: "https://logflare.app",
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {TelemetryMetricsLogflare.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:typed_struct, "~> 0.2.1"},
{:telemetry, "~> 0.4.0"},
{:telemetry_poller, "~> 0.5.0"},
{:telemetry_metrics, "~> 0.6.0"},
{:cachex, "~> 3.0"},
{:map_keys, "~> 0.1.0"},
# HTTP
{:tesla, "~> 1.0"},
{:mint, "~> 1.0"},
# Testing,
{:postgrex, "~> 0.15", only: :test},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:faker, "~> 0.12", only: :test, runtime: false},
{:mimic, "~> 1.3", only: :test},
# Code quality
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.11", only: :test, runtime: false},
{:bertex, "~> 1.0"},
# Docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description() do
"Ship your Telemetry metrics to Logflare for long term storage, easy search and flexible dashboarding."
end
defp package() do
[
links: %{"GitHub" => "https://github.com/Logflare/telemetry_metrics_logflare"},
licenses: ["MIT"]
]
end
end