Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Fast and reliable Elixir client for StatsD-compatible servers

License

NotificationsYou must be signed in to change notification settings

SalesLoft/statix

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI StatusHex Version

Statix is an Elixir client for StatsD-compatible servers.It is focused on speed without sacrificing simplicity, completeness, or correctness.

What makes Statix the fastest library around:

  • direct sending to socket[1]
  • caching of the UDP packet header
  • connection pooling to distribute the metric sending
  • diligent usage ofIO lists

[1] In contrast with process-based clients, Statix has lower memory consumption and higher throughput – Statix v1.0.0 does about876640 counter increments per flush:

Statix

It is possible to measure that yourself.
for_<-1..10_000doTask.start(fn->for_<-1..10_000doStatixSample.increment("sample",1)endend)end

Make sure you have StatsD server running to get more realistic results.

Seethe documentation for detailed usage information.

Installation

Add Statix as a dependency to yourmix.exs file:

defpdeps()do[{:statix,">= 0.0.0"}]end

Then runmix deps.get in your shell to fetch the dependencies.

License

This software is licensed underthe ISC license.

About

Fast and reliable Elixir client for StatsD-compatible servers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Elixir100.0%

[8]ページ先頭

©2009-2025 Movatter.jp