[JIRA] (JENKINS-51208) Execution time of parallel steps displayed as max time among all steps in block

2019-04-25 Thread dam...@addepar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Damien Jiang edited a comment on  JENKINS-51208  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Execution time of parallel steps displayed as max time among all steps in block   
 

  
 
 
 
 

 
 Bump; looks like there are no plans to fix this problem? It makes monitoring / optimizing pipelines much more annoying.Btw, before the parallel block is completely finished, each parallelized step _does_ report the right runtime! It's only  update  updated  to the "runtime of the whole parallel block" at the end of the block.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-51208) Execution time of parallel steps displayed as max time among all steps in block

2019-04-25 Thread dam...@addepar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Damien Jiang commented on  JENKINS-51208  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Execution time of parallel steps displayed as max time among all steps in block   
 

  
 
 
 
 

 
 Bump; looks like there are no plans to fix this problem? It makes monitoring / optimizing pipelines much more annoying. Btw, before the parallel block is completely finished, each parallelized step does report the right runtime! It's only update to the "runtime of the whole parallel block" at the end of the block.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-51208) Execution time of parallel steps displayed as max time among all steps in block

2018-05-08 Thread dam...@addepar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Damien Jiang created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-51208  
 
 
  Execution time of parallel steps displayed as max time among all steps in block   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 pmd_timing.png  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2018-05-08 21:16  
 
 
Environment: 
 Jenkins 2.73.3, Blue Ocean 1.5.0  
 
 
Labels: 
 blueocean  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Damien Jiang  
 

  
 
 
 
 

 
 Current behavior: In Blue Ocean, during a parallel block, the runtime reported for each individual step is reported as the max time of any step within the block, rather than its actual runtime. This reminds me of https://issues.jenkins-ci.org/browse/JENKINS-38536, which was supposedly fixed. For example, in the screenshot, the total time of the "pmd" step should have been < 10 minutes, but it's reported as 21m56s. 21m56s is actually the runtime of the "Integration-test-runner" step (not shown). Every other step in the parallel block also reports a 21m56s runtime, despite their lesser runtimes. Parallel step runtimes are also incorrectly reported in the Blue Ocean REST API, which is my actual problem—we're trying to do analytics on step runtimes, and can't do so because they're incorrect. The times are correctly reported in, say, the pipeline plugin (/flowGraphTable), but not in Blue Ocean. Desired behavior: Correctly display the runtime of each parallel step.