https://github.com/Netflix/atlas
Revision 252618b5c46e75d38a36d716534c5709ae25fb78 authored by brharrington on 09 February 2022, 18:51:48 UTC, committed by GitHub on 09 February 2022, 18:51:48 UTC
Before the counter and associated id was being created
each time an aggregator instance was. Now it is part of
a settings object which can be reused. The aggregators
have also been refactored a bit to reduce code duplication.
1 parent 67ed691
Raw File
Tip revision: 252618b5c46e75d38a36d716534c5709ae25fb78 authored by brharrington on 09 February 2022, 18:51:48 UTC
reduce allocations for datapoint aggregators (#1414)
Tip revision: 252618b
.scalafmt.conf
version = 2.3.2

style = defaultWithAlign

align.openParenCallSite = false
align.openParenDefnSite = false
align.tokens = [{code = "->"}, {code = "<-"}, {code = "=>", owner = "Case"}]
continuationIndent.callSite = 2
continuationIndent.defnSite = 2
danglingParentheses = true
indentOperator = spray
maxColumn = 100
newlines.alwaysBeforeTopLevelStatements = true
project.excludeFilters = [".*\\.sbt"]
rewrite.rules = [RedundantParens, ExpandImportSelectors, AvoidInfix]
spaces.inImportCurlyBraces = false
unindentTopLevelOperators = true
back to top