Get Results view from different jenkins dashboards in 1 single jenkins -


i trying jenkins dashboard view jenkins instance running in isolated cloud , add view in jenkins dashboard have results multiple jenkins in 1 place. there way use of specific plugin or directly copying files main jenkins folder (tried adding job folder directly in jenkins/jobs folder -> didnt work).

i found solution same: in jenkins folder, there file - config.xml. there change each list view gives view , job names there specifies jobs listed in particular view.

<listview>       <owner class="hudson" reference="../../.."/>       <name>xyz</name>                 ..       <jobnames>                 ..       </jobnames>       <jobfilters/>       <columns>         <hudson.views.statuscolumn/>                 ..       </columns>       <includeregex>deploy.*</includeregex>       <recurse>false</recurse>     </listview> 

we modify config.xml in main jenkins server include new view(with specified job names) , need copy jobs folders main jenkins. restart jenkins see modified dashboard.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -