docs: Python client identification options - #287
Open
Aryex wants to merge 1 commit into
Open
Conversation
Aryex
force-pushed
the
alexl/agent/python-client-info-config
branch
from
July 26, 2026 21:27
e5855f5 to
a27e842
Compare
…or Python Signed-off-by: kiro-agent <kiro-agent@users.noreply.github.com>
Aryex
force-pushed
the
alexl/agent/python-client-info-config
branch
from
July 27, 2026 14:45
a27e842 to
ce664f5
Compare
Aryex
marked this pull request as ready for review
July 27, 2026 14:45
jeremyprime
reviewed
Jul 27, 2026
| addresses=[NodeAddress("localhost", 6379)], | ||
| client_info_tag="my-framework:1.2.3", | ||
| ) | ||
| client = GlideClient(config) |
Collaborator
There was a problem hiding this comment.
Should be client = GlideClient.create(config).
jeremyprime
reviewed
Jul 27, 2026
Collaborator
There was a problem hiding this comment.
So far client_info_tag has only been added to Python which is why this page focuses on Python (see valkey-io/valkey-glide#6429 for task to add to all clients). But this page could also go over current lib_name and client_name usage across all clients.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Document the new
lib_nameandclient_info_tagconfiguration options added to the Python client for framework/library identification in CLIENT INFO output.Source Commits
28e99a6— feat(python): Add configurable lib_name and client_info_tag to client config (async + sync)Changes
how-to/monitoring/client-identification.mdx— explains the use case, shows the behavior matrix, provides examples for async/sync Python clients, and notes "coming soon" for other languagesreference/connection-options.mdx— added a "Client Identification Options" section with an availability table and exampleastro.config.mjs— added the new page to the Monitoring sidebar sectionContext
Libraries and frameworks embedding GLIDE need to identify themselves to the Valkey server for adoption tracking, observability, and debugging. The new
client_info_tagoption preserves the GLIDE identity (GlidePy/GlidePySync) while appending a framework-specific tag, andlib_nameallows a full override. This is currently Python-only; Node.js and other languages are planned as follow-ups.Source PR: valkey-glide #6389
cc @omerrubi-amzn
This PR was generated by the automated documentation pipeline.