Skip to content

Commit

Permalink
[feature] 新增Nightingale、OpenFalcon收集器
Browse files Browse the repository at this point in the history
  • Loading branch information
lichao committed May 27, 2021
1 parent e14f485 commit 511a973
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.anymetrics.support.collector.nightingale;

import java.util.LinkedHashMap;
import java.util.Map;

public class NightingaleMetricsConfig {

Expand Down Expand Up @@ -35,7 +35,7 @@ public class NightingaleMetricsConfig {
/**
* tags字段如果不想使用上面的字符串拼接方式,可以使用tagsMap字段
*/
private LinkedHashMap<String, String> tagsMap;
private Map<String, String> tagsMap;


public void setNid(String nid) {
Expand Down Expand Up @@ -86,11 +86,11 @@ public void setValue(String value) {
this.value = value;
}

public LinkedHashMap<String, String> getTagsMap() {
public Map<String, String> getTagsMap() {
return tagsMap;
}

public void setTagsMap(LinkedHashMap<String, String> tagsMap) {
public void setTagsMap(Map<String, String> tagsMap) {
this.tagsMap = tagsMap;
}
}

0 comments on commit 511a973

Please sign in to comment.