We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey! I've found a little typo:
diff --git a/Readme.md b/Readme.md index ec4bcf8..7321a5d 100644 --- a/Readme.md +++ b/Readme.md @@ -31,10 +31,10 @@ IStatsd statsd = new Stastd(new StatsdOptions(){ HostOrIp = "127.0.0.1"}, new Tc statsd.CountAsync("myapp.counterstat"); //default to 1 aka increment statsd.CountAsync("myapp.counterstat", 6); statsd.CountAsync("myapp.counterstat", -6); -statsd.TimerAsync("myapp.timeMyFunction", ()=>{ +statsd.TimingAsync("myapp.timeMyFunction", ()=>{ //code to instrument }); -statsd.TimerAsync("myapp.timeData", 400); //400ms +statsd.TimingAsync("myapp.timeData", 400); //400ms statsd.GaugeAsync("autotest.gaugeyo", 422); statsd.GaugeDeltaAsync("autotest.gaugeyo", -10); statsd.SetAsync("autotest.setyo", 888);
The text was updated successfully, but these errors were encountered:
@falanger thanks, do you want to drop a PR?
Sorry, something went wrong.
No branches or pull requests
Hey! I've found a little typo:
The text was updated successfully, but these errors were encountered: