forked from alibaba/nacos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE alibaba#12282]Fix the issue where monitoring data cannot be fo…
…und through the IP dimension in the ListeningQuery
- Loading branch information
Showing
5 changed files
with
144 additions
and
9 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
37 changes: 37 additions & 0 deletions
37
config/src/main/java/com/alibaba/nacos/config/server/enums/ConfigSearchRequestTypeEnum.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,37 @@ | ||
package com.alibaba.nacos.config.server.enums; | ||
|
||
/** | ||
* Config search request type enum. | ||
* | ||
* @author hmydk | ||
*/ | ||
public enum ConfigSearchRequestTypeEnum { | ||
|
||
IP("IP"), | ||
CONFIG("config"); | ||
|
||
|
||
private final String type; | ||
|
||
ConfigSearchRequestTypeEnum(String type) { | ||
this.type = type; | ||
} | ||
|
||
/** | ||
* check type is legal. | ||
* @param type type | ||
* @return true or false | ||
*/ | ||
public static boolean checkTypeLegal(String type) { | ||
for (ConfigSearchRequestTypeEnum configSearchRequestTypeEnum : ConfigSearchRequestTypeEnum.values()) { | ||
if (configSearchRequestTypeEnum.getType().equals(type)) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
} |
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