spring-cloud-dataflow-ui icon indicating copy to clipboard operation
spring-cloud-dataflow-ui copied to clipboard

Add ability for users to filter Job Executions by exec id, status, or name

Open cppwfs opened this issue 5 years ago • 0 comments

Epic https://github.com/spring-cloud/spring-cloud-dataflow/issues/3866 shows how a user would like filter job executions via the UI. The server currently supports the following restful endpoints to provide the filtering requested:

    "jobs/executions/name": {
      "href": "http://localhost:9393/jobs/executions{?name}",
      "templated": true
    },
    "jobs/executions/status": {
      "href": "http://localhost:9393/jobs/executions{?status}",
      "templated": true
    },
    "jobs/executions/execution": {
      "href": "http://localhost:9393/jobs/executions/{id}",
      "templated": true
    },

We probably want @sabbyanandan 's input if we want to add these filters now or wait till stories 4164, 4165 and 4166 are completed so we can add all of the filters to the UI in one PR.

cppwfs avatar Sep 24 '20 20:09 cppwfs