Dave Shawley
a2695e4d1a
Enable badges.
2021-04-09 19:07:27 -04:00
Dave Shawley
5242245191
0.0.1: First alpha release
2021-04-08 11:51:40 -04:00
dave-shawley
cfd166c667
Merge pull request #4 from dave-shawley/release-time
...
Release time
2021-04-08 11:24:39 -04:00
Dave Shawley
6835e0fd2d
0.0.1: Trying out the release pipeline!
2021-04-08 08:12:48 -04:00
Dave Shawley
ea8d2363fe
Add build.yml
...
Roughly based on what @gmr did in sprockets-postgres... still not sure
if the explicit `if` guard is necessary.
2021-04-08 08:11:36 -04:00
Dave Shawley
f51870b2f9
Add minimal pyproject.toml.
...
cuz Tim Peters said so
2021-04-08 07:58:03 -04:00
Dave Shawley
2fb3646f0d
Changes recommended by twine and pypi.
...
Interestingly enough twine check does not seem to check classifiers for
correctness ... testpypi rejected my first upload :(
2021-04-08 07:56:40 -04:00
Dave Shawley
3a5196e68b
Add typing markers.
2021-04-08 07:26:14 -04:00
dave-shawley
6832ea8ee2
Update run-tests.yml
...
Guess that I don't need to do this explicitly ... who knew?!
2021-04-07 08:02:13 -04:00
dave-shawley
d7b4fc568b
Update run-tests.yml
...
Hopefully fix the `if` condition for sonar analysis
2021-04-07 07:55:43 -04:00
dave-shawley
a28f984c84
Merge pull request #3 from dave-shawley/add-sonar
...
Add sonarqube analysis
2021-04-07 07:50:16 -04:00
Dave Shawley
e35f903744
Update sonar upload to only run on main.
2021-04-07 07:44:04 -04:00
Dave Shawley
27c357f14a
Fix workflow syntax error... hopefully
2021-04-07 07:35:03 -04:00
Dave Shawley
4986aa2868
Add more detail in sonar-project.properties.
2021-04-07 07:29:45 -04:00
Dave Shawley
40708fa70c
Pass coverage.xml to sonar analysis.
...
Since the code doesn't contain any version specific stuff, we don't need
to combine coverage output files (thank $diety).
2021-04-07 07:27:30 -04:00
Dave Shawley
396f667598
Add docs badge.
2021-04-06 22:01:46 -04:00
Dave Shawley
4cb93c59d5
Add sonarqube badge.
2021-04-06 22:00:25 -04:00
Dave Shawley
9e44f0ef73
Add sonarqube properties file.
2021-04-06 21:54:15 -04:00
dave-shawley
a47442332c
Add sonar cloud into run-tests
2021-04-06 21:51:36 -04:00
dave-shawley
26e596172e
Merge pull request #2 from dave-shawley/add-rtd
...
Add readthedocs.org configuration
2021-04-06 21:31:16 -04:00
Dave Shawley
7b57fa9fa9
Try to fix codecov uploads...
2021-04-06 21:25:46 -04:00
Dave Shawley
5d7a6f6941
Integrate with readthedocs.org.
2021-04-06 08:08:01 -04:00
Ryan Mclean
a0e2ef1c19
Merge pull request #1 from sprockets/syn
...
Initial implementation
2021-04-05 14:06:12 -04:00
Dave Shawley
0d911fc3e2
Enable codecov upload.
2021-03-30 08:29:48 -04:00
Dave Shawley
5a52437857
Remove coverage from tox.ini.
...
This makes running in parallel work properly.
2021-03-30 08:10:24 -04:00
Dave Shawley
51e1f2ccae
Make type annotations safe for Python 3.7.
2021-03-30 08:09:53 -04:00
Dave Shawley
da95efa544
Move path prefixing into Connector.
...
This makes the low-level code a little more opinionated. If there is a
good reason for making `timers`, `counters`, etc. optional, then we can
PR it into place.
2021-03-30 07:56:20 -04:00
Dave Shawley
0f0bae1199
Set upper bound on metrics queue size.
2021-03-30 07:22:22 -04:00
Dave Shawley
5c947d6798
Make docs a little cleaner.
2021-03-29 07:46:23 -04:00
Dave Shawley
2ecdee61c4
Clean up type annotations.
...
This almost makes mypy happy. I did manage to step on a defect that
there really isn't a great workaround for so I resorted to disabling
typing there.
https://github.com/python/mypy/issues/2427
2021-03-29 07:46:12 -04:00
Dave Shawley
b84e52592d
Prefix management -- take two.
...
Agree with @aremm here ... instead of requiring contortions to run
without a prefix, let's just require that it is explicitly set to `None`
if you want to skip the prefix. If you `prefix` isn't in the settings
explicitly, then use `$STATSD_PREFIX` if it is set; otherwise, try to
construct a prefix from service & environment, if that fails, then fail
hard in the initializer.
2021-03-24 08:10:07 -04:00
Dave Shawley
65df480421
Expose a more usable interface on the Connector
.
...
@nvllsvm likes the interface that https://statsd.readthedocs.io/ exposes
and I agree. I mimicked this interface on the lower-level Connector. I
left the sprockets.mixins.metrics style on the tornado helpers for
compat reasons. You can always use `self.statsd_connector.incr()` in
your request handlers if you prefer the other interface.
2021-03-24 07:41:06 -04:00
Dave Shawley
e5c343e577
Verify 100% coverage in local tox.
2021-03-24 07:35:49 -04:00
Dave Shawley
2aeddc8bc3
Rename mixins module to tornado.
...
Tried to make it clear that tornado is an optional requirement.
2021-03-24 06:54:24 -04:00
Dave Shawley
7ee536e99f
Fix test error.
2021-03-24 06:30:26 -04:00
Dave Shawley
9a8f23c614
Require prefix unless allow_no_prefix is set.
2021-03-23 22:01:27 -04:00
Dave Shawley
f6017d1a06
Add $STATSD_PREFIX support.
2021-03-23 22:01:02 -04:00
Dave Shawley
05650286da
Remove usage of typing.Protocol.
...
It wasn't adding too much and it isn't available in Python 3.7.
2021-03-23 21:21:16 -04:00
Dave Shawley
c634c20906
Expose UDP support in the mixins.
2021-03-23 07:58:45 -04:00
Dave Shawley
c4c44f9864
Add support for UDP sockets.
2021-03-23 07:57:32 -04:00
Dave Shawley
38a5e3f566
Refactor to pull out TCP details.
...
This will make it easier to add the UDP protocol.
2021-03-23 07:57:32 -04:00
Dave Shawley
6d310db517
Move statsd connector to attribute.
...
Since @aremm still believes that `Application.settings` should only be
used for configuration and not for state ;)
2021-03-23 07:57:32 -04:00
Dave Shawley
69dfb51bf8
Rework application prefix configuration.
...
Use a default of `None` instead of `applications` if the neither service
nor environment keys are set.
2021-03-23 07:57:27 -04:00
Dave Shawley
63dc44fd22
Ensure that docs build as part of CI.
2021-03-11 07:43:17 -05:00
Dave Shawley
28e369c122
Make timeout parameters configurable.
2021-03-11 07:31:24 -05:00
Dave Shawley
65b5bacbee
Reorder logic to emphasize common paths.
...
I snuck in a call to verify that the connected event is set before the
call to _process_metric. This closes a small loophole where the
transport could be None inside of _process_metric.
2021-03-11 07:03:18 -05:00
Dave Shawley
00759ed20b
Correct some resource leaks in tests.
2021-03-10 07:16:47 -05:00
Dave Shawley
4360bc298a
Run style, lint, and unittests using GH actions.
...
There is some commented out code for code coverage reporting that can be
enabled after this repo is publicised.
2021-03-10 07:14:21 -05:00
Dave Shawley
f8c63a55fc
Switch to asynctest for Py 3.7 support.
...
Decided to switch the tests to using asynctest so that we can guarantee
support on Python 3.7 and newer. Also added pins in setup.cfg and a
tox.ini file if you want to use it.
2021-03-10 06:46:17 -05:00
Dave Shawley
720dd79193
Add Application & RequestHandler mixins.
2021-03-10 06:46:06 -05:00