凡例では、青が総数、赤が実行中になっていますが、添付したイメージを見る限り逆に見
えます。
LoadStatistics.javaの
137 public CategoryDataset createDataset(TimeScale timeScale) {
138 return createDataset(timeScale,
139 new float[][]
{
140 busyExecutors.pick(timeScale).getHistory(),
141 totalExecutors.pick(timeScale).getHistory(),
142 queueLength.pick(timeScale).getHistory()
143 }
,
144 new String[]
{
145 Messages.LoadStatistics_Legends_TotalExecutors(),
146 Messages.LoadStatistics_Legends_BusyExecutors(),
147 Messages.LoadStatistics_Legends_QueueLength()
148 }
);
149 }
の140行、141行が逆に見えます。
Created an attachment (id=507)
Screenshot showing the correct legend