Jenkins: Email the Trend Chart

Can jenkins email, plot trend charts?

+3


source to share


2 answers


Email-ext Plugin can send HTML email messages. Since the URL of the graph is known (for example, for a test trend graph, the URL is:) http://[server]/job/[job-name]/test/trend

, it can be embedded in your email with a tag <img>

like this:



<img src="${PROJECT_URL}test/trend" />

      

+7


source


I believe there is no plugin for Jenkins to send an email with a build trend graph.
For pre-mailing or reporting you can try Email-ext plugin



0


source







All Articles