-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NormalizeTagPlugin support merges #1525
- Loading branch information
1 parent
f6ea437
commit a81e386
Showing
2 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package net.opentsdb.normalize; | ||
|
||
import com.stumbleupon.async.Deferred; | ||
import net.opentsdb.core.TSDB; | ||
import net.opentsdb.stats.StatsCollector; | ||
|
||
import java.util.Map; | ||
|
||
public abstract class NormalizePlugin { | ||
|
||
public abstract void initialize(final TSDB tsdb); | ||
|
||
public abstract Deferred<Object> shutdown(); | ||
|
||
public abstract String version(); | ||
|
||
public abstract void collectStats(final StatsCollector collector); | ||
|
||
public abstract Map<String, String> normalizeTags(Map<String, String> tags); | ||
|
||
} |