Reputation: 53345
In our Jenkins setup we have more than 20 nodes and it would help us a lot if they would show what OS each is actually running on. I'm speaking about the build processess sidebar. Is it possible to achieve that (maybe using a plugin)? Can a slave automatically return the platform name actually?
Upvotes: 2
Views: 1648
Reputation: 22680
<jenkins_url>/computer/
shows os and architecture for each node:
[online] node1 Linux (i386)
[online] node2 SunOS (sparcv9)
[online] node3 Linux (amd64)
[online] node4 Windows Server 2008 R2 (amd64)
[online] node5 Windows 7 (x86)
If you want to distinguish linux distros - jenkins could not distinguish them - you could put distro in node description and/or labels if you need it
Upvotes: 3