Skip to content
New issue

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

MDoc fixes for #108 #112

Merged
merged 44 commits into from
Jan 4, 2022
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
dfb83ee
Upgrade to zio 1.0.4-2
toxicafunk Feb 23, 2021
3d5b54c
Merge remote-tracking branch 'upstream/master'
toxicafunk Mar 3, 2021
cf715ba
Add 'help' to docs
toxicafunk Mar 3, 2021
d825a3a
Fix CI publish
toxicafunk Mar 16, 2021
e230661
Upgrade Silencer
toxicafunk Mar 16, 2021
655f87f
Reformat
toxicafunk Mar 16, 2021
5ad2808
Merge remote-tracking branch 'upstream/master'
toxicafunk Mar 18, 2021
e957feb
Update website dependencies
toxicafunk Mar 18, 2021
af15859
Merge remote-tracking branch 'upstream/master'
toxicafunk Mar 18, 2021
9b96a28
Merge remote-tracking branch 'upstream/master'
toxicafunk Apr 19, 2021
bf8a24c
Fix sbt tests
toxicafunk Apr 19, 2021
2ccdb28
Format
toxicafunk Apr 19, 2021
992dad6
Increase time to start server
toxicafunk Apr 19, 2021
9a20375
Increase time range for meter test
toxicafunk Apr 19, 2021
592e7d4
Increase timeout for statsd server to start
toxicafunk Apr 19, 2021
654fcfe
Add sleep between statsd server and client
toxicafunk Apr 19, 2021
2e751a1
Format
toxicafunk Apr 19, 2021
0670c90
Sleep before increment
toxicafunk Apr 19, 2021
26e6506
Use async send for counter
toxicafunk Apr 19, 2021
56c0a2b
Add log message
toxicafunk Apr 19, 2021
ed79c52
Add flaky aspect
toxicafunk Apr 19, 2021
af569a6
Format
toxicafunk Apr 19, 2021
c0f29ea
Set limit for flakiness
toxicafunk Apr 19, 2021
1905806
Fork test
toxicafunk Apr 19, 2021
ca4ea09
Merge remote-tracking branch 'upstream/master'
toxicafunk Apr 19, 2021
49ceb2e
Test fail in CI due to reusing the same port
toxicafunk Apr 19, 2021
7711c20
Format
toxicafunk Apr 19, 2021
4177c5d
Remove console reporter
toxicafunk Apr 19, 2021
f3e1032
Merge remote-tracking branch 'upstream/master'
toxicafunk May 23, 2021
577c402
Fix 'ordering' on test
toxicafunk May 23, 2021
ed4fefe
Update docs
toxicafunk May 23, 2021
afb293a
Merge remote-tracking branch 'upstream/master'
toxicafunk May 23, 2021
aa35fef
Fix flaky test
toxicafunk May 23, 2021
3605e38
Merge remote-tracking branch 'upstream/master'
toxicafunk May 23, 2021
003d2f3
Merge remote-tracking branch 'upstream/master'
toxicafunk Jun 4, 2021
7cccfda
Merge remote-tracking branch 'upstream/master'
toxicafunk Jun 7, 2021
66abd70
Make tests less strict
toxicafunk Jun 7, 2021
ffccdd9
Randomize server port
toxicafunk Jun 7, 2021
5eba556
format
toxicafunk Jun 7, 2021
d1c6c35
Merge remote-tracking branch 'upstream/master'
toxicafunk Jul 5, 2021
10e89e1
Merge remote-tracking branch 'upstream/master'
toxicafunk Oct 25, 2021
1991989
Support optional prefix for statsd (Issue #97)
toxicafunk Oct 25, 2021
cc815c3
Merge remote-tracking branch 'upstream/master'
toxicafunk Jan 4, 2022
8023205
Fix MDoc for statsd
toxicafunk Jan 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/essentials/statsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Each of them takes a `Client` as a parameter but
also provides constructors with default values for each such that:

```scala mdoc:silent
Client() == Client(5, 5000, 100, None, None)
Client() == Client(5, 5000L, 100, None, None, None)
```

The `Client` constructors return a `ZManaged`. You can create your own specific client
Expand All @@ -193,7 +193,7 @@ by reusing the default client constructors like this:
or you can just use one of the custom constructors that wrap this process:

```scala mdoc:silent
StatsDClient() == StatsDClient(5, 5000, 100, None, None)
StatsDClient() == StatsDClient(5, 5000L, 100, None, None, None)
```

The first two parameters (`bufferSize` and `timeout`) define how to aggregate each
Expand Down