Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for hitCount (0.48 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.clientIp = value;
        }
    
        public Long getHitCount() {
            checkSpecifiedProperty("hitCount");
            return hitCount;
        }
    
        public void setHitCount(Long value) {
            registerModifiedProperty("hitCount");
            this.hitCount = value;
        }
    
        public String getHitCountRelation() {
            checkSpecifiedProperty("hitCountRelation");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/main/config/es/fess_log_search_log.json

          "search_log" : {
            "properties" : {
              "accessType" : {
                "type" : "keyword"
              },
              "clientIp" : {
                "type" : "keyword"
              },
              "hitCount" : {
                "type" : "long"
              },
              "hitCountRelation" : {
                "type" : "keyword"
              },
              "languages" : {
                "type" : "keyword"
              },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_log.search_log/search_log.json

            "type": "date",
            "format": "date_optional_time"
          },
          "responseTime": {
            "type": "long"
          },
          "queryTime": {
            "type": "long"
          },
          "hitCount": {
            "type": "long"
          },
          "hitCountRelation": {
            "type": "keyword"
          },
          "queryOffset": {
            "type": "integer"
          },
          "queryPageSize": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsSearchLogCQ.java

        }
    
        public void setHitCount_Equal(Long hitCount) {
            setHitCount_Term(hitCount, null);
        }
    
        public void setHitCount_Equal(Long hitCount, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setHitCount_Term(hitCount, opLambda);
        }
    
        public void setHitCount_Term(Long hitCount) {
            setHitCount_Term(hitCount, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 145.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

        }
    
        public void setHitCount_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            setHitCount_Avg("hitCount", opLambda);
        }
    
        public void setHitCount_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            AvgAggregationBuilder builder = regAvgA(name, "hitCount");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 115.2K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/main/assemblies/extension/kibana/fess_log.ndjson

    \",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Average hitCount\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"area\",\"mode\":\"stacked\",\"data\":{\"label\":\"Average hitCount\",\"id\":\"1\"},\"drawLinesBetweenPoints\":true,\"showCircles\":true,\"interpolate\":\"linear\",\"valueAxis\":\"ValueAxis-1\"}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java

                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnHitCount = cci("hitCount", "hitCount", null, null, Long.class, "hitCount", null, false, false, false,
                "Long", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                            emptyListCount++;
                        } else {
                            emptyListCount = 0; // reset
                        }
                        long hitCount = ((EsResultList<EsAccessResult>) arList).getTotalHits();
                        while (hitCount > 0) {
                            if (arList.isEmpty()) {
                                ThreadUtil.sleep(fessConfig.getIndexerWebfsCommitMarginTimeAsInteger().longValue());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsSearchLogCB.java

                doColumn("accessType");
            }
    
            public void columnClientIp() {
                doColumn("clientIp");
            }
    
            public void columnHitCount() {
                doColumn("hitCount");
            }
    
            public void columnHitCountRelation() {
                doColumn("hitCountRelation");
            }
    
            public void columnLanguages() {
                doColumn("languages");
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top