Popularity
6.7
Growing
Activity
0.0
-
25
2
8
Programming language: Crystal
License: MIT License
Tags:
Misc
Latest version: v0.1.0
statsd.cr alternatives and similar shards
Based on the "Misc" category.
Alternatively, view statsd.cr alternatives based on common mentions on social networks and blogs.
-
burocracia.cr
burocracia.cr the dependecyless shard to validate, generate and format Brazilian burocracias such as CPF, CNPJ and CEP -
crystal-web-framework-stars
Web frameworks for Crystal, most starred on Github
Get performance insights in less than 4 minutes.
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Promoted
scoutapm.com
Do you think we are missing an alternative of statsd.cr or a related project?
README
statsd.cr
A statsd client library for Crystal.
Installation
Add this to your application's shard.yml
:
dependencies:
statsd:
github: miketheman/statsd.cr
Usage
require "statsd"
statsd = Statsd::Client.new
statsd.increment "myapp.login_page", 1
# Datadog-compliant statsd tags:
statsd.increment "page.views", tags: ["page:login", "app:myapp"]
See examples/test.cr
for more.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Test your changes with
make spec
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
Inspired by syslog.cr and statsd.
- @miketheman Mike Fiedler - creator, maintainer