We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Background Let's implement new functionality for exporting runs according to filter to the csv report. For this:
csv
New API method POST runs/filter/export Body PagingRunFilterVO Param delimiter (Optional, default=",") Param fieldDelimiter (Optional, default="|")
runs/filter/export
PagingRunFilterVO
delimiter
fieldDelimiter
CSV format:
Run ID,Run Name,Parent Run ID,Instance Type,Tags,Pipeline,Docker Image,Started Date,Completed Date,Owner
Reuse PipelineRunManager.searchPipelineRuns for this new functionality
PipelineRunManager.searchPipelineRuns
Introduce new system preference system.run.filter.max.page.size (default 1000)
system preference
system.run.filter.max.page.size
Use system.run.filter.max.page.size to check in PipelineRunManager.searchPipelineRuns if page size is allowed
The text was updated successfully, but these errors were encountered:
okolesn
No branches or pull requests
Background
Let's implement new functionality for exporting runs according to filter to the
csv
report.For this:
New API method
POST
runs/filter/export
Body
PagingRunFilterVO
Param
delimiter
(Optional, default=",")Param
fieldDelimiter
(Optional, default="|")CSV format:
Reuse
PipelineRunManager.searchPipelineRuns
for this new functionalityIntroduce new
system preference
system.run.filter.max.page.size
(default 1000)Use
system.run.filter.max.page.size
to check inPipelineRunManager.searchPipelineRuns
if page size is allowedThe text was updated successfully, but these errors were encountered: