Description
Graphite client for Elixir with zero dependencies
Graphitex alternatives and similar packages
Based on the "Debugging" category.
Alternatively, view Graphitex alternatives based on common mentions on social networks and blogs.
-
observer_cli
Visualize Elixir & Erlang nodes on the command line, it aims to helpe developers debug production systems. -
ex_debug_toolbar
A toolbar for Phoenix projects to interactively debug code and display useful information about requests: logs, timelines, database queries etc. -
rexbug
An Elixir wrapper for the redbug production-friendly Erlang tracing debugger. -
exrun
Distributed tracing for Elixir with rate limiting and simple macro-based interface. -
erlang-metrics
A generic interface to different metrics systems in Erlang. -
quaff
The Debug module provides a simple helper interface for running Elixir code in the erlang graphical debugger. -
ether
Ether provides functionality to hook Elixir into the Erlang debugger.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Graphitex or a related project?
README
Graphitex
Graphite client for Elixir with zero dependencies
Installation
If available in Hex, the package can be installed as:
- Add
graphitex
to your list of dependencies inmix.exs
:
def deps do
[{:graphitex, "~> 0.1.0"}]
end
- Ensure
graphitex
is started before your application:
def application do
[applications: [:graphitex]]
end
- Set up configuration in
config.config.exs
:
config :graphitex, host: '188.166.101.102', port: 2003
- API:
Graphitex.metric(4, "aws.cluster_one.avg_cpu")
# or
Graphitex.metric(4, ["aws", "cluster_one", "avg_cpu"])
# or
Graphitex.metric(41.0, [:aws, :cluster_one, :avg_cpu])
by default :os.system_time(:seconds)
used as timestamp, but you can pass ts
as an argument
Graphitex.metric(41, "aws.cluster_one.avg_cpu",:os.system_time(:seconds))
likewise there is a shortcut
Graphitex.metric(41, "aws.cluster_one.avg_cpu", Graphitex.now)
Insert batch:
[{4, "client.transactions.east"},
{2, "client.transactions.west"},
{5, "client.transactions.north", Graphitex.now}
]
|> Graphitex.metric_batch(batch)
*Note that all licence references and agreements mentioned in the Graphitex README section above
are relevant to that project's source code only.