feat(loadtesting): add Load Testing capability index (regression) - #389
Open
sourabhd-cbu wants to merge 4 commits into
Open
feat(loadtesting): add Load Testing capability index (regression)#389sourabhd-cbu wants to merge 4 commits into
sourabhd-cbu wants to merge 4 commits into
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Central YAML (base), Organization UI (inherited), Workspace UI (inherited) Review profile: ASSERTIVE Plan: Team Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
sourabhd-cbu
force-pushed
the
feat/loadtesting-capability-index-reg
branch
from
September 2, 2026 14:09
b0e2f91 to
62b493c
Compare
Adds capability/loadtesting.capability-index.json in the per-product format (#387): product at top level, version field, and schemas/responses/paging tables with per-capability response refs. 19 capabilities over load-api /api/v1/agent/* and 9 entities. base_url baked to the regression host (load-testing-rengg-lts.bsstag.com) for this branch.
sourabhd-cbu
force-pushed
the
feat/loadtesting-capability-index-reg
branch
from
September 2, 2026 14:27
62b493c to
fea275d
Compare
…rsion is an ISO token BE (LTAI-270) now 400s scriptRef.source url/inline and reports version as the JobConfiguration updated_at ISO token, not a numeric serialId. Align the capability index so the LLM isn't mis-instructed.
…ity index
Companion to the existing project trends endpoint — GET /projects/{projectId}/runs
lets the LLM list a whole project's run history (TB: listLoadTestRuns 'for a test
or a whole project').
… trends BE rejects weekly/monthly aggregation and ignores groupBy on the trends endpoints, so stop advertising them to the LLM (avoids a guaranteed 400 on aggregation=monthly and a silent no-op on groupBy).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds
capability/loadtesting.capability-index.json— the Load Testing product, authored in the per-product capability-index format introduced by #387./api/v1/agent/*surface, 9 entities.base_urlbaked to regression (https://load-testing-rengg-lts.bsstag.com). Companion branchfeat/loadtesting-capability-index-prodcarries the production host.Format alignment with #387
capability/(not the root combinedcapability-index.json).{ schema_version: 1, version: "1.0", build_id, loadtesting: {...} }— product at top level, noproductswrapper.summary, base_url, capabilities, schemas, responses, paging, entities.returnsand aresponsesmap referencing named responses. LTS uses one uniform response envelope ({success, data}/{success, errorCode, error}), soschemasholdsSuccessEnvelope+ErrorResponseandresponsesmaps the standard codes — plus503for insights and409for the versioned update.read, 4write, 0destructive(no delete routes).Note on
base_url(deliberate divergence from tm)tm omits
base_urlbecause it is region-sharded (EU/IN/US) and a single origin would misroute non-US accounts. LTS is not region-sharded — it has fixed per-environment hosts — so this branch bakes the regression host and its sibling bakes production. If you'd prefer config-based resolution (CAPABILITY_REGISTRY_BASE_URL_LOADTESTING[_ENV]) like tm, I'll dropbase_urland collapse to a single branch.Caveats
agent-platform-harness-common. This is a hand-authored equivalent following the same shape; the durable path is an LTS product source the export pipeline consumes — happy to move it there.Api-Token: <username>:<accessKey>, but load-api's/api/v1/agent/*agentAuthaccepts HTTP Basic only. Discovery + host resolution work with this PR;invokeEndpointwill 401 untilagentAuthacceptsApi-Token(tracked on the load-testing-backend side).Ref: LTAI-270. This is the regression variant; do not merge into the same deployment as the prod variant — they differ only in
base_url.