Skip to content

Commit

Permalink
Merge pull request #2 from jchristgit/fix-namespaced-typo
Browse files Browse the repository at this point in the history
Fix "namedspaced" typo
  • Loading branch information
jb3 authored Jul 2, 2024
2 parents 111159f + cefcae4 commit bc5bab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/blog/pydis-statistics-1-collection.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def report_post_count() -> None:

This is all the code necessary to create and ship off a metric to our Graphite instance.

Under the hood, we use StatsD to collect these metrics and Graphite to store them. Our bots are configured with a statsd client which is namedspaced. We collect roughly 130k of these metric payloads per day from varying areas of our bot. We use a UDP transport for this data, which is fire-and-forget, meaning we don't have to wait for a response from the server.
Under the hood, we use StatsD to collect these metrics and Graphite to store them. Our bots are configured with a statsd client which is namespaced. We collect roughly 130k of these metric payloads per day from varying areas of our bot. We use a UDP transport for this data, which is fire-and-forget, meaning we don't have to wait for a response from the server.

Pros:
- Easy to implement
Expand Down

0 comments on commit bc5bab6

Please sign in to comment.