Package io.jenkins.blueocean.rest.model
Class BlueTrend
java.lang.Object
io.jenkins.blueocean.rest.model.Resource
io.jenkins.blueocean.rest.model.BlueTrend
A category of tabular data, typically one that changes over time (e.g. across successive runs)
To create a new "trend"
1. Implement
BlueTrendFactory
and return a new subclass of BlueTrend
2. Subclass BlueTable
and BlueTableRow
adding suitable properties to construct the data set.- Author:
- cliffmeyers
-
Field Summary
-
Constructor Summary
-
Method Summary
-
Field Details
-
ID
- See Also:
-
DISPLAY_NAME
- See Also:
-
-
Constructor Details
-
BlueTrend
public BlueTrend()
-
-
Method Details
-
getId
A unique identifier for the trend to be used in the REST API path, e.g. my-pipeline/trends/${id} Note that an ID collision will result in only one trend being available.- Returns:
- identifier
-
getDisplayName
- Returns:
- name display in UI
-
getColumns
- Specified by:
getColumns
in interfaceBlueTable
- Returns:
- map of columns' property names (keys) and descriptions (values). optional
-
getRows
-