Skip to content

Change Prometheus proxy API to accept variables parameter as Hash only

Reuben Pereira requested to merge 219179-accept-variables-hash-only into master

What does this MR do?

Our Prometheus proxy GET API currently accepts the variables query parameter as an array. Unfortunately, we have observed that the order of elements in the array can be changed by components between the frontend and backend.

In the backend, an array like ['variable1', 'value1', 'variable2', 'value2'] is transformed into a Hash {'variable1' => 'value1', 'variable2' => 'value2'}.

To avoid the problems caused by inconsistent ordering of elements, we are now changing the format of the variables query parameter to a Hash.

This MR changes the API to accept only a Hash. The frontend has been changed to send a Hash in !33062 (merged).

Issue: #219179 (closed)

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by 🤖 GitLab Bot 🤖

Merge request reports