-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use the new data specification to handle span_layer * Add rateps aggregator * Fix second interval * Fix build error * Remove gc log * Fix expression null exception * Fix RATEPS
- Loading branch information
1 parent
da61e63
commit ed0dd61
Showing
5 changed files
with
83 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...loud/erda/analyzer/runtime/expression/functions/aggregators/RatepsFunctionAggregator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright (c) 2021 Terminus, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package cloud.erda.analyzer.runtime.expression.functions.aggregators; | ||
|
||
import cloud.erda.analyzer.common.utils.ConvertUtils; | ||
|
||
/** | ||
* @author liuhaoyang | ||
* @date 2021/12/27 10:59 | ||
*/ | ||
public class RatepsFunctionAggregator implements FunctionAggregator { | ||
|
||
private final long interval; | ||
private double sum; | ||
|
||
public RatepsFunctionAggregator(long window) { | ||
sum = 0d; | ||
interval = window * 60; | ||
} | ||
|
||
@Override | ||
public String aggregator() { | ||
return FunctionAggregatorDefine.RATEPS; | ||
} | ||
|
||
@Override | ||
public Object value() { | ||
return sum / interval; | ||
} | ||
|
||
@Override | ||
public void apply(Object value) { | ||
Double d = ConvertUtils.toDouble(value); | ||
if (d != null) { | ||
sum += d; | ||
} | ||
} | ||
|
||
@Override | ||
public void merge(FunctionAggregator other) { | ||
if (other instanceof RatepsFunctionAggregator) { | ||
this.sum += ((RatepsFunctionAggregator) other).sum; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters