diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-12-03 20:21:25 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 20:21:25 +1100 |
commit | fdec84aa427e2e3b806eb15f462d652f8554cc8d (patch) | |
tree | b19a82452978801a2320daac6e80ff48cf942453 /synmark/suites/__init__.py | |
parent | Transfer power level state events on room upgrade (#6237) (diff) | |
download | synapse-fdec84aa427e2e3b806eb15f462d652f8554cc8d.tar.xz |
Add benchmarks for structured logging performance (#6266)
Diffstat (limited to 'synmark/suites/__init__.py')
-rw-r--r-- | synmark/suites/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synmark/suites/__init__.py b/synmark/suites/__init__.py new file mode 100644 index 0000000000..cfa3b0ba38 --- /dev/null +++ b/synmark/suites/__init__.py @@ -0,0 +1,3 @@ +from . import logging + +SUITES = [(logging, 1000), (logging, 10000), (logging, None)] |