Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f1a33dd
Added intrastructure and integration point with OTel (#3864)
vladvildanov Dec 8, 2025
ab2af70
Added export of operation duration metric (#3881)
vladvildanov Dec 15, 2025
2e7b2db
Added export of resiliency metrics (#3888)
vladvildanov Dec 17, 2025
f46b1f5
Added export of connection basic metrics (#3891)
vladvildanov Jan 5, 2026
57cf6d7
Added pub/sub and stream lag metrics export (#3898)
vladvildanov Jan 5, 2026
26a11c2
Added OTel benchmark test (#3903)
vladvildanov Jan 5, 2026
9dc37a8
Added export of connection advanced metrics (#3910)
vladvildanov Jan 19, 2026
ce58929
Added CSC metrics export (#3911)
vladvildanov Jan 20, 2026
c4a4292
Added memory and CPU usage (#3933)
vladvildanov Feb 3, 2026
98c6030
Removed events dispatching overhead, refactored metrics attributes (#…
vladvildanov Feb 4, 2026
2f3fd25
Added async recorders and registry (#3950)
vladvildanov Feb 11, 2026
f48a4e0
Added bucket override configuration (#3952)
vladvildanov Feb 11, 2026
6c28630
Remove async instrumentations (#3953)
vladvildanov Feb 12, 2026
6bc1c74
Merge branch 'master' of github.com:redis/redis-py into feat/observab…
vladvildanov Feb 12, 2026
1f387e6
Fix tests and codestyle
vladvildanov Feb 12, 2026
810e97d
Fixed missing parameters
vladvildanov Feb 12, 2026
2f08920
Fixed tests
vladvildanov Feb 12, 2026
ce3ff2e
Fixed tests
vladvildanov Feb 12, 2026
12173fb
Fixed tests
vladvildanov Feb 12, 2026
b1023b4
Marked argument as unused
vladvildanov Feb 12, 2026
4de2db4
Fixed tests
vladvildanov Feb 12, 2026
4dc1802
Added missing metric export
vladvildanov Feb 12, 2026
453101d
Fixes units and pool name attribute
elena-kolevska Feb 12, 2026
42d7b6c
Updated test for pool name attribute
elena-kolevska Feb 13, 2026
15cd729
Updates more tests
elena-kolevska Feb 13, 2026
dc66503
Linter
elena-kolevska Feb 13, 2026
0989bfe
Added try...except blocks for recorder functions
vladvildanov Feb 13, 2026
304dd72
Added documentation
vladvildanov Feb 13, 2026
647567e
Updated wordlist
vladvildanov Feb 13, 2026
392ca36
Update redis/cluster.py
vladvildanov Feb 13, 2026
d8c68c1
Update redis/connection.py
vladvildanov Feb 13, 2026
8a93c8c
Update redis/connection.py
vladvildanov Feb 13, 2026
efc817a
Update pyproject.toml
vladvildanov Feb 16, 2026
ee7702a
Merge branch 'master' of github.com:redis/redis-py into feat/observab…
vladvildanov Feb 16, 2026
2cdc1b7
Codestyle fixes
vladvildanov Feb 16, 2026
734578d
Fixed metric export
vladvildanov Feb 16, 2026
88a9964
Fixed assertions
vladvildanov Feb 16, 2026
327bfbe
Added geo failover metric export
vladvildanov Feb 16, 2026
7a254ed
Codestyle fixes
vladvildanov Feb 16, 2026
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
15 changes: 15 additions & 0 deletions .github/wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ClusterPubSub
ConnectionPool
config
CoreCommands
CSC
DatabaseConfig
DNS
EchoHealthCheck
Expand All @@ -22,17 +23,22 @@ EVALSHA
failover
FQDN
Grokzen's
handoff
Healthcheck
HealthCheckPolicies
healthcheck
healthchecks
INCR
init
IOError
Instrumentations
JSONCommands
Jaeger
Ludovico
Magnocavallo
MeterProvider
MetricGroup
millis
MultiDbConfig
MultiDBClient
McCurdy
Expand All @@ -46,6 +52,12 @@ OpenCensus
OpenTelemetry
OpenTracing
Otel
otel
OTelConfig
otlp
OTLPMetricExporter
PeriodicExportingMetricReader
proto
PubSub
READONLY
RediSearch
Expand Down Expand Up @@ -145,6 +157,7 @@ repo
runtime
sedrik
sharded
sdk
ssl
str
stunnel
Expand All @@ -160,4 +173,6 @@ unicode
url
virtualenv
www
XREAD
XREADGROUP
yaml
4 changes: 2 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ jobs:
runs-on: ubuntu-latest
needs: [ redis_version ]
# in pipeline ofter these pypy jobs hang, so their timeout is set
# to just 40 minutes - close to the max time the jobs are running at the moment
# to just 50 minutes - close to the max time the jobs are running at the moment
# adding more tests will make them even slower, and we will need to adjust the timeout
timeout-minutes: 40
timeout-minutes: 50
strategy:
max-parallel: 30
fail-fast: false
Expand Down
Loading