Skip to content

Return custom mapping fields for HttpIntegration

What does this MR do?

Contributes to #262707 (closed)
Implements #295186 (closed)

Returns persisted custom mapping for an HTTP Integration.

The implementation is behind a feature flag.

Enable feature flag

Feature.enable(:multiple_http_integrations_custom_mapping)

Screenshots (strongly suggested)

GraphQL query

query Extract($fullPath: ID!) {
  project(fullPath: $fullPath) {
    alertManagementHttpIntegrations {
      nodes {
        id
        payloadExample
        payloadAttributeMappings {
          fieldName
          path
          type
          label
        }
	payloadAlertFields {
          path
          type
          label
        }
      }
    }
  }
}

GraphQL query variables

{
  "fullPath": "<PROJECT/FULLPATH>"
}

Example

Screenshot_2021-02-16_at_12.16.36

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 Peter Leitzen

Merge request reports