Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/linkedin/dr-elephant into…
Browse files Browse the repository at this point in the history
… AggregatedMetrics
  • Loading branch information
nntnag17 committed Jun 7, 2016
2 parents 8d92f98 + 5470899 commit 29da70b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Administrator guide: [Click here](https://github.com/linkedin/dr-elephant/wiki/A

Google groups mailing list: [Click here](https://groups.google.com/forum/#!forum/dr-elephant-users)

Engineering Blog: [Click here](https://engineering.linkedin.com/blog/2016/04/dr-elephant-open-source-self-serve-performance-tuning-hadoop-spark)

## License

Copyright 2016 LinkedIn Corp.
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public class Application extends Controller {
*/
public static Result dashboard() {
long now = System.currentTimeMillis();
Date finishDate = new Date(now - DAY);
long finishDate = now - DAY;

// Update statistics only after FETCH_DELAY
if (now - _lastFetch > FETCH_DELAY) {
Expand Down
2 changes: 1 addition & 1 deletion jacoco.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ parallelExecution in jacoco.Config := false

jacoco.outputDirectory in jacoco.Config := file("target/jacoco")

jacoco.reportFormats in jacoco.Config := Seq(HTMLReport("utf-8"))
jacoco.reportFormats in jacoco.Config := Seq(XMLReport(encoding = "utf-8"), HTMLReport("utf-8"))

jacoco.excludes in jacoco.Config := Seq("views*", "*Routes*", "controllers*routes*", "controllers*Reverse*", "controllers*javascript*", "controller*ref*")

0 comments on commit 29da70b

Please sign in to comment.