Skip to content

Route CICS SDK archive through MASS#11526

Merged
gh-worker-dd-mergequeue-cf854d[bot] merged 2 commits into
masterfrom
bdu/apmlp-1407-mass-cics
Jun 4, 2026
Merged

Route CICS SDK archive through MASS#11526
gh-worker-dd-mergequeue-cf854d[bot] merged 2 commits into
masterfrom
bdu/apmlp-1407-mass-cics

Conversation

@bric3
Copy link
Copy Markdown
Contributor

@bric3 bric3 commented Jun 2, 2026

What Does This Do

When MASS_READ_URL is present, the CICS 9.1 instrumentation resolves the IBM CICS SDK archive through MASS at /internal/artifact/public.dhe.ibm.com/software/htp/cics/support/supportpacs/individual/. Without that environment variable, local builds keep using the original IBM URL.

Motivation

CI should send this build-time SDK archive through MASS once the IBM host is allowed. That keeps the dependency path explicit while preserving the upstream fallback for local builds.

Additional Notes

⚠️ This depends on the MASS allow-list update.

Contributor Checklist

  • Format the title according to the contribution guidelines.
  • Assign the type: and (comp: or inst:) labels in addition to any other useful labels.
  • Avoid using linking keywords when referencing an issue.
  • Update CODEOWNERS on source file addition, migration, or deletion. Not applicable.
  • Update public documentation with any new configuration flags or behaviors. Not applicable.

Jira ticket: APMLP-1407, [APMLP-1402]

@bric3 bric3 added inst: others All other instrumentations tag: ai generated Largely based on code generated by an AI or LLM tag: no release notes Changes to exclude from release notes type: enhancement Enhancements and improvements labels Jun 2, 2026
@bric3 bric3 marked this pull request as ready for review June 2, 2026 09:12
@bric3 bric3 requested a review from a team as a code owner June 2, 2026 09:12
@bric3 bric3 requested review from vandonr and removed request for a team June 2, 2026 09:12
@datadog-datadog-prod-us1-2

This comment has been minimized.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: b3143fe40e

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".


def massArtifactUrl = { String upstreamArtifactUrl ->
def massReadUrl = providers.environmentVariable('MASS_READ_URL').orNull
if (massReadUrl == null) {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Treat blank MASS_READ_URL as unset

If a CI job or local shell exports MASS_READ_URL as an empty or whitespace-only value, orNull still returns that value and this helper routes the Ivy repository to /internal/artifact/public.dhe.ibm.com/... instead of falling back to the IBM URL. That makes CICS SDK resolution fail in environments where the variable is defined but intentionally empty; the other MASS helpers in this repo guard this by trimming and treating blank values as absent.

Useful? React with 👍 / 👎.

@dd-octo-sts
Copy link
Copy Markdown
Contributor

dd-octo-sts Bot commented Jun 4, 2026

🟢 Java Benchmark SLOs — All performance SLOs passed

Suite Status
Startup 🟢 pass

SLO thresholds are defined here based on automatically generated metrics. A warning is raised when results are within 5% of the threshold.

PR vs. master results
Scenario Candidate master Δ (95% CI of mean)
startup:insecure-bank:iast:Agent 14.02 s 14.13 s [-1.6%; +0.1%] (no difference)
startup:insecure-bank:tracing:Agent 12.92 s 13.10 s [-3.0%; +0.2%] (no difference)
startup:petclinic:appsec:Agent 16.61 s 16.41 s [-0.2%; +2.6%] (no difference)
startup:petclinic:iast:Agent 16.72 s 16.73 s [-1.6%; +1.4%] (no difference)
startup:petclinic:profiling:Agent 16.48 s 16.75 s [-3.1%; -0.0%] (maybe better)
startup:petclinic:tracing:Agent 16.04 s 15.87 s [-0.1%; +2.1%] (no difference)

Commit: e2dfd8c7 · CI Pipeline · Benchmarking Platform UI


Load and DaCapo benchmarks can be triggered manually in the GitLab pipeline. Results will appear in the Benchmarking Platform UI after completion.

@bric3
Copy link
Copy Markdown
Contributor Author

bric3 commented Jun 4, 2026

/merge

@gh-worker-devflow-routing-ef8351
Copy link
Copy Markdown

gh-worker-devflow-routing-ef8351 Bot commented Jun 4, 2026

View all feedbacks in Devflow UI.

2026-06-04 17:11:46 UTC ℹ️ Start processing command /merge


2026-06-04 17:11:56 UTC ℹ️ MergeQueue: waiting for PR to be ready

This pull request is not mergeable according to GitHub. Common reasons include pending required checks, missing approvals, or merge conflicts — but it could also be blocked by other repository rules or settings.
It will be added to the queue as soon as checks pass and/or get approvals. View in MergeQueue UI.
Note: if you pushed new commits since the last approval, you may need additional approval.
You can remove it from the waiting list with /remove command.


2026-06-04 17:13:17 UTC ℹ️ MergeQueue: merge request added to the queue

The expected merge time in master is approximately 1h (p90).


2026-06-04 18:31:18 UTC ℹ️ MergeQueue: This merge request was merged

Copy link
Copy Markdown
Contributor

@AlexeyKuznetsov-DD AlexeyKuznetsov-DD left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, hope to see that MASS dance moved to common place at some point.

@gh-worker-dd-mergequeue-cf854d gh-worker-dd-mergequeue-cf854d Bot merged commit 97d14d6 into master Jun 4, 2026
571 checks passed
@gh-worker-dd-mergequeue-cf854d gh-worker-dd-mergequeue-cf854d Bot deleted the bdu/apmlp-1407-mass-cics branch June 4, 2026 18:31
@github-actions github-actions Bot added this to the 1.64.0 milestone Jun 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

inst: others All other instrumentations tag: ai generated Largely based on code generated by an AI or LLM tag: no release notes Changes to exclude from release notes type: enhancement Enhancements and improvements

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants