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

feat: Add redis based reliability reporting #778

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a8b64b7
feat: Add database tracking and report for Push Reliability
jrconlin Sep 23, 2024
dc1763a
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Sep 25, 2024
14bd4fb
f lint
jrconlin Sep 25, 2024
e914b14
f remove extra from pending pr
jrconlin Sep 25, 2024
4f25172
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Oct 2, 2024
e9ff9f5
f r's
jrconlin Oct 2, 2024
c9a3512
f r's
jrconlin Oct 2, 2024
f8c7ee9
f lint
jrconlin Oct 2, 2024
1dd624f
f post test
jrconlin Oct 8, 2024
05e73cc
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Oct 8, 2024
8291039
f r's
jrconlin Oct 9, 2024
ed67eb4
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Oct 11, 2024
6c2c7d4
feat: Add redis based reliability reporting
jrconlin Oct 8, 2024
3a0beef
f isort
jrconlin Oct 17, 2024
efb1cf5
f add documentation
jrconlin Oct 17, 2024
c658a09
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Oct 17, 2024
588a4ea
Merge branch 'master' into feat/SYNC-4324_track_db
jrconlin Oct 17, 2024
1c7e26a
f r's
jrconlin Oct 18, 2024
07e7db3
f r's
jrconlin Oct 18, 2024
950c996
Merge branch 'feat/SYNC-4324_track_db' into feat/SYNC-4327_redis
jrconlin Oct 21, 2024
853268c
f post merge fix
jrconlin Oct 21, 2024
28bd921
f add metric logging to reliability_cron.py
jrconlin Oct 22, 2024
e465b36
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Oct 24, 2024
148ac9b
Merge branch 'master' into feat/SYNC-4327_redis
jrconlin Oct 31, 2024
b42ea79
Merge branch 'master' into feat/SYNC-4327_redis
rachaelcrook Nov 6, 2024
7fea96c
Merge branch 'master' into feat/SYNC-4327_redis
pjenvey Nov 13, 2024
d9824f3
f r's
jrconlin Nov 22, 2024
62ecdc7
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Nov 22, 2024
3de403d
f fix tests
jrconlin Nov 22, 2024
51d7f7f
f r's
jrconlin Dec 6, 2024
b86ef6b
f autocomplete
jrconlin Dec 6, 2024
b0d1984
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Dec 17, 2024
1f15f74
f r's
jrconlin Dec 17, 2024
76b02dd
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Dec 17, 2024
1bf49d2
f fix up pymarks
jrconlin Dec 18, 2024
92eb64f
Merge branch 'master' of github.com:mozilla-services/autopush-rs into…
jrconlin Dec 18, 2024
9c7b13c
f switch to pytest.ini
jrconlin Dec 18, 2024
2243e8a
f force the config file
jrconlin Dec 18, 2024
15c5e46
f move pytest to integration root
jrconlin Dec 19, 2024
e7939f6
f use the one in /code?
jrconlin Dec 19, 2024
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: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ jobs:
username: $DOCKER_USER
password: $DOCKER_PASS
command: gcloud beta emulators bigtable start --host-port=localhost:8086
# - image: redis/redis-stack-server
# auth:
# username: $DOCKER_USER
# password: $DOCKER_PASS
resource_class: large
environment:
BIGTABLE_EMULATOR_HOST: localhost:8086
Expand Down
Loading