Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for userSessionId (0.4 sec)

  1. src/main/config/es/fess_log_search_log.json

                "type" : "keyword"
              },
              "userAgent" : {
                "type" : "keyword"
              },
              "userInfoId" : {
                "type" : "keyword"
              },
              "userSessionId" : {
                "type" : "keyword"
              },
              "virtualHost" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

            if (StringUtil.isNotBlank(pager.queryId)) {
                cb.query().setQueryId_Term(pager.queryId);
            }
            if (StringUtil.isNotBlank(pager.userSessionId)) {
                cb.query().setUserSessionId_Term(pager.userSessionId);
            }
            if (StringUtil.isNotBlank(pager.accessType)) {
                cb.query().setAccessType_Term(pager.accessType);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_log.click_log/click_log.json

    {
        "properties": {
          "urlId": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "order": {
            "type": "integer"
          },
          "requestedAt": {
            "type": "date",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Feb 24 22:07:26 UTC 2019
    - 544 bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp

                                                        <td><la:link
                                                                href="/admin/searchlog/search?logType=search&amp;queryId=${f:u(info.value)}&amp;userSessionId=&amp;requestedTimeRange=&amp;accessType=">${f:h(info.value)}</la:link></td>
                                                    </c:when>
                                                    <c:when test="${info.key == 'User Info ID'}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java

                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnUserSessionId = cci("userSessionId", "userSessionId", null, null, String.class, "userSessionId", null,
                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/main/config/es/fess_log_click_log.json

              },
              "requestedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "url" : {
                "type" : "keyword"
              },
              "userSessionId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021059710",
            "number_of_shards" : "5",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Jun 30 05:55:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          },
          "userAgent": {
            "type": "keyword"
          },
          "referer": {
            "type": "keyword"
          },
          "clientIp": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "accessType": {
            "type": "keyword"
          },
          "userInfoId": {
            "type": "keyword"
          },
          "languages" : {
            "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)
  8. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

            setUserSessionId_Terms("userSessionId", opLambda, null);
        }
    
        public void setUserSessionId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsSearchLogCA> aggsLambda) {
            setUserSessionId_Terms("userSessionId", 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)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author shinsuke
     */
    public class SearchForm {
    
        public String logType;
    
        public String queryId;
    
        public String userSessionId;
    
        public String requestedTimeRange;
    
        public String accessType;
    
        public String size;
    
        public void setPageSize(final int size) {
            this.size = Integer.toString(size);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsSearchLogCB.java

                doColumn("userAgent");
            }
    
            public void columnUserInfoId() {
                doColumn("userInfoId");
            }
    
            public void columnUserSessionId() {
                doColumn("userSessionId");
            }
    
            public void columnVirtualHost() {
                doColumn("virtualHost");
            }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top