Implementation of execution of maintenance task is complete on the Jenkins controller. Currently I am working on a way to store the execution data into a log file and display it in the UI.
To do this I'll need a way to write and read from the file in real time to show the status of execution.
Data to be stored in log file are -
1) Git repo name
2) Size of the repo
3) Type of maintenance task
3) Previous maintenance execution timestamp
4) Current Status
5) Execution time
We were looking at various options. We came across rrd files (Round robin database). I don't think rrd is suitable for current requirements. We can however use it for analysis of maintenance tasks over a period of time.
Is there any plugin in Jenkins which I can refer so that I can write to a file and display the results in the maintenance UI as a table?
Hrushikesh Rao