Skip to content

Commit

Permalink
start with blue line
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-mcgoldrick committed Jan 30, 2025
1 parent 4fa192f commit 18123b5
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ public LineChartModel getTpsChartModel() {

private void initChartModel() {
LOG.info("Initializing user chart model...");
Iterator<String> lineColor= Iterables.cycle(List.of("rgb(255, 99, 132)","rgb(75, 192, 192)","rgb(255, 205, 86)","rgb(201, 203, 207)","rgb(54, 162, 235)")).iterator();
Iterator<String> lineColor= Iterables.cycle(
List.of("rgb(54, 162, 235)","rgb(255, 99, 132)","rgb(75, 192, 192)","rgb(255, 205, 86)","rgb(201, 203, 207)")).iterator();
chartModel = null;
if (currentJobInstance != null && currentJobInstance.getStatusDetailMap() != null) {
List<String> labels = new ArrayList<>();
Expand Down Expand Up @@ -274,7 +275,8 @@ private void initChartModel() {
private void initializeTpsModel() {
LOG.info("Initializing TPS chart model...");
AWSXRay.beginSubsegment("Initialize TpsModel");
Iterator<String> lineColor= Iterables.cycle(List.of("rgb(255, 99, 132)","rgb(75, 192, 192)","rgb(255, 205, 86)","rgb(201, 203, 207)","rgb(54, 162, 235)")).iterator();
Iterator<String> lineColor= Iterables.cycle(
List.of("rgb(54, 162, 235)","rgb(255, 99, 132)","rgb(75, 192, 192)","rgb(255, 205, 86)","rgb(201, 203, 207)")).iterator();
tpsChartModel = null;
if (currentJobInstance != null) {
List<String> labels = new ArrayList<>();
Expand Down

0 comments on commit 18123b5

Please sign in to comment.