Reputation: 1523
I have this on latest Jenkins but the graph legend is showing weird characters instead of English. Anyone know what could it be? Encoding? This is the same even with other plugins that shows graphs.
Upvotes: 3
Views: 1449
Reputation: 608
I had the same problem on a system with CentOS Linux release 7.4.1708 (Core), Jenkins 2.73.1, apache-tomcat-8.5.4, java 1.8.0_121.
You need to check the installed fonts.
fc-list
I solved this by installing the DejaVu fonts.
yum install dejavu-sans-fonts.noarch dejavu-sans-mono-fonts.noarch
Upvotes: 7