Skip to content

Hardened "add" arithmetic for usage data

What does this MR do?

Hardened "add" arithemetic for usage data with SQL export feature.

Will enhance "template_repositories" metric SQL #322099 (closed) . We need + because union or SQL OR or SQL summation is slow. Next MR !54805 (merged)

Docs update !54804 (merged)

For SQL exporting

my_metric: count(Issue) + count(User)

We shall get:

SELECT (SELECT COUNT("projects"."id") FROM "projects" WHERE "projects"."namespace_id" IS NULL) + (SELECT COUNT("projects"."id") FROM "projects" INNER JOIN namespaces ON projects.namespace_id = namespaces.custom_project_templates_group_id);

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 Alper Akgun

Merge request reports