-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Rules list query can easily exceed default proxy header buffer sizes #148287
Labels
bug
Fixes for quality problems that affect the customer experience
response-ops-mx-backlog
ResponseOps MX backlog
Team:ResponseOps
Label for the ResponseOps team (formerly the Cases and Alerting teams)
Comments
weltenwort
added
bug
Fixes for quality problems that affect the customer experience
Team:ResponseOps
Label for the ResponseOps team (formerly the Cases and Alerting teams)
labels
Jan 3, 2023
Pinging @elastic/response-ops (Team:ResponseOps) |
github-project-automation
bot
moved this to Awaiting Triage
in AppEx: ResponseOps - Rules & Alerts Management
Jan 5, 2023
XavierM
moved this from Awaiting Triage
to Todo
in AppEx: ResponseOps - Rules & Alerts Management
Jan 5, 2023
XavierM
added a commit
that referenced
this issue
Jan 12, 2023
## Summary FIX -> #148287 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this issue
Jan 12, 2023
## Summary FIX -> elastic#148287 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios (cherry picked from commit f2342fc)
kibanamachine
referenced
this issue
Jan 13, 2023
# Backport This will backport the following commits from `main` to `8.6`: - [Rule find post (#148836)](#148836) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Xavier Mouligneau","email":"[email protected]"},"sourceCommit":{"committedDate":"2023-01-12T23:43:43Z","message":"Rule find post (#148836)\n\n## Summary\r\n\r\nFIX -> https://github.com/elastic/kibana/issues/148287\r\n\r\n\r\n### Checklist\r\n\r\n- [x] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"f2342fc3a88492b1083603912975424ec36352e6","branchLabelMapping":{"^v8.7.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","release_note:skip","impact:high","Team:ResponseOps","v8.7.0","v8.6.1"],"number":148836,"url":"https://github.com/elastic/kibana/pull/148836","mergeCommit":{"message":"Rule find post (#148836)\n\n## Summary\r\n\r\nFIX -> https://github.com/elastic/kibana/issues/148287\r\n\r\n\r\n### Checklist\r\n\r\n- [x] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"f2342fc3a88492b1083603912975424ec36352e6"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.7.0","labelRegex":"^v8.7.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/148836","number":148836,"mergeCommit":{"message":"Rule find post (#148836)\n\n## Summary\r\n\r\nFIX -> https://github.com/elastic/kibana/issues/148287\r\n\r\n\r\n### Checklist\r\n\r\n- [x] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"f2342fc3a88492b1083603912975424ec36352e6"}},{"branch":"8.6","label":"v8.6.1","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"url":"https://github.com/elastic/kibana/pull/148858","number":148858,"state":"OPEN"}]}] BACKPORT--> Co-authored-by: Xavier Mouligneau <[email protected]>
jennypavlova
pushed a commit
to jennypavlova/kibana
that referenced
this issue
Jan 13, 2023
## Summary FIX -> elastic#148287 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
2 tasks
cnasikas
added
response-ops-mx-backlog
ResponseOps MX backlog
and removed
Team:ResponseOps
Label for the ResponseOps team (formerly the Cases and Alerting teams)
labels
Oct 29, 2024
wayneseymour
added
the
Team:ResponseOps
Label for the ResponseOps team (formerly the Cases and Alerting teams)
label
Nov 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Fixes for quality problems that affect the customer experience
response-ops-mx-backlog
ResponseOps MX backlog
Team:ResponseOps
Label for the ResponseOps team (formerly the Cases and Alerting teams)
ℹ️ Metadata
Kibana version: main, at least 136ed80
Original install method (e.g. download page, yum, from source, etc.): source
🐞 Description
When opening the rules page in Kibana stack monitoring it loads the table data with a
GET
request containing a very long list of query parameters. The default query is so long that, together with the authentication cookie and other headers, the request header size exceeds the buffer size in the default nginx and apache httpd configuration, which is set to 8 kB. This causes the server to respond with414 Request URI too long
and the rule table to remain unpopulated.🔢 Steps to reproduce
414
response code.🆗 Expected behavior
The filters are submitted in the request body so the header size is independent of the number and complexity of the filters.
The text was updated successfully, but these errors were encountered: