- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for ClientIP (0.19 sec)
-
src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java
this.accessType = value; } public String getClientIp() { checkSpecifiedProperty("clientIp"); return convertEmptyToNull(clientIp); } public void setClientIp(String value) { registerModifiedProperty("clientIp"); this.clientIp = value; } public Long getHitCount() { checkSpecifiedProperty("hitCount"); return hitCount;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.2K bytes - Viewed (0) -
internal/handlers/forwarder.go
func ipv6fix(clientIP string) string { return strings.Split(clientIP, "%")[0] } func (rw *headerRewriter) Rewrite(req *http.Request) { if clientIP, _, err := net.SplitHostPort(req.RemoteAddr); err == nil { clientIP = ipv6fix(clientIP) if req.Header.Get(xRealIP) == "" { req.Header.Set(xRealIP, clientIP) } } xfProto := req.Header.Get(xForwardedProto)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 07 05:42:10 UTC 2023 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsSearchLogCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setClientIp_SpanTerm(String clientIp) { setClientIp_SpanTerm("clientIp", null); } public void setClientIp_SpanTerm(String clientIp, ConditionOptionCall<SpanTermQueryBuilder> opLambda) { SpanTermQueryBuilder builder = regSpanTermQ("clientIp", clientIp);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 145.4K bytes - Viewed (0) -
src/main/config/es/fess_log_search_log.json
{ "fess_log.search_log" : { "aliases" : { }, "mappings" : { "search_log" : { "properties" : { "accessType" : { "type" : "keyword" }, "clientIp" : { "type" : "keyword" }, "hitCount" : { "type" : "long" }, "hitCountRelation" : { "type" : "keyword" }, "languages" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Apr 12 15:00:27 UTC 2019 - 2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_log.search_log/search_log.json
}, "queryPageSize": { "type": "integer" }, "userAgent": { "type": "keyword" }, "referer": { "type": "keyword" }, "clientIp": { "type": "keyword" }, "userSessionId": { "type": "keyword" }, "accessType": { "type": "keyword" }, "userInfoId": { "type": "keyword"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 25 13:38:21 UTC 2022 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java
public void setClientIp_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setClientIp_Terms("clientIp", opLambda, null); } public void setClientIp_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsSearchLogCA> aggsLambda) { setClientIp_Terms("clientIp", opLambda, aggsLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 115.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java
return "SearchLog [searchFieldLogList=" + searchFieldLogList + ", headerList=" + headerList + ", userInfo=" + userInfo + ", fields=" + fields + ", accessType=" + accessType + ", clientIp=" + clientIp + ", hitCount=" + hitCount + ", languages=" + languages + ", queryId=" + queryId + ", queryOffset=" + queryOffset + ", queryPageSize=" + queryPageSize + ", queryTime=" + queryTime
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsSearchLogCB.java
doColumn("_id"); } public void columnAccessType() { doColumn("accessType"); } public void columnClientIp() { doColumn("clientIp"); } public void columnHitCount() { doColumn("hitCount"); } public void columnHitCountRelation() { doColumn("hitCountRelation"); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java
try { final RESULT result = entityType.newInstance(); result.setAccessType(DfTypeUtil.toString(source.get("accessType"))); result.setClientIp(DfTypeUtil.toString(source.get("clientIp"))); result.setHitCount(DfTypeUtil.toLong(source.get("hitCount"))); result.setHitCountRelation(DfTypeUtil.toString(source.get("hitCountRelation")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.5K bytes - Viewed (0)