Repository: ambari Updated Branches: refs/heads/trunk 64238cb91 -> 5845d5463
AMBARI-21119 ADDENDUM Log Search REST API validate input configurations and log level filters (mgergely) Change-Id: Idf52271a2421410f0b7355f3d9bd695600d5b2fb Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5845d546 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5845d546 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5845d546 Branch: refs/heads/trunk Commit: 5845d546392f199d425aee8a2418f791c21da3a5 Parents: 64238cb Author: Miklos Gergely <[email protected]> Authored: Mon May 29 22:36:38 2017 +0200 Committer: Miklos Gergely <[email protected]> Committed: Mon May 29 22:36:38 2017 +0200 ---------------------------------------------------------------------- .../org/apache/ambari/logsearch/model/common/LSServerFilter.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5845d546/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/model/common/LSServerFilter.java ---------------------------------------------------------------------- diff --git a/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/model/common/LSServerFilter.java b/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/model/common/LSServerFilter.java index d99a77d..84bddb8 100644 --- a/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/model/common/LSServerFilter.java +++ b/ambari-logsearch/ambari-logsearch-server/src/main/java/org/apache/ambari/logsearch/model/common/LSServerFilter.java @@ -48,6 +48,7 @@ public abstract class LSServerFilter { @JsonProperty("sort_order") private Integer sortOrder; + @JsonProperty("source_field") private String sourceField; @JsonProperty("remove_source_field")
