feat: report user query bytes (#27188)#27198
Merged
davidby-influx merged 1 commit into1.12from Feb 6, 2026
Merged
Conversation
In SHOW STATS, include per-user query response bytes. The httpd service, returns a new statistics object. userquerybytes. Off by default, it can be turned on with the environment variable INFLUXDB_HTTP_USER_QUERY_BYTES_ENABLED or the configuration parameter UserQueryBytesEnabled in the HTTP section. This is available through SHOW STATS either when all statistics are reported, or alone with `FOR 'userquerybytes'` It is returned by /debug/vars, and stored in the _internal database when that is enabled. (cherry picked from commit 858a2c6) Fixes #27195
govambam
added a commit
to govambam/influxdb
that referenced
this pull request
Feb 12, 2026
In SHOW STATS, include per-user query response bytes. The httpd service, returns a new statistics object. userquerybytes. Off by default, it can be turned on with the environment variable INFLUXDB_HTTP_USER_QUERY_BYTES_ENABLED or the configuration parameter UserQueryBytesEnabled in the HTTP section. This is available through SHOW STATS either when all statistics are reported, or alone with `FOR 'userquerybytes'` It is returned by /debug/vars, and stored in the _internal database when that is enabled. (cherry picked from commit 858a2c6) Fixes influxdata#27195
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.
In SHOW STATS, include per-user query response
bytes. The httpd service, returns a new statistics object. userquerybytes.
Off by default, it can be turned on with the
environment variable
INFLUXDB_HTTP_USER_QUERY_BYTES_ENABLED
or the configuration parameter
UserQueryBytesEnabled
in the HTTP section.
This is available through SHOW STATS either
when all statistics are reported, or alone
with
FOR 'userquerybytes'It is returned by /debug/vars, and stored in
the _internal database when that is enabled.
(cherry picked from commit 858a2c6)
Fixes #27195