Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 30 05:55:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java

                result.setRequestedAt(toLocalDateTime(source.get("requestedAt")));
                result.setUrl(DfTypeUtil.toString(source.get("url")));
                result.setUserSessionId(DfTypeUtil.toString(source.get("userSessionId")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.6K 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 115.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        public String logType = LOG_TYPE_SEARCH;
    
        /** Query ID filter for search logs. */
        public String queryId;
    
        /** User session ID filter for search logs. */
        public String userSessionId;
    
        /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */
        public String requestedTimeRange;
    
        /** Access type filter for search logs (web, json, gsa, admin, other). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java

                    + Arrays.toString(roles) + ", searchWord=" + searchWord + ", user=" + user + ", userAgent=" + userAgent + ", userInfoId="
                    + userInfoId + ", userSessionId=" + userSessionId + ", virtualHost=" + virtualHost + ", documents=" + documentList + "]";
        }
    
        @Override
        public String getEventType() {
            return "log";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

        /**
         * The query ID field for searching specific queries.
         */
        public String queryId;
    
        /**
         * The user session ID field for filtering logs by session.
         */
        public String userSessionId;
    
        /**
         * The requested time range field for filtering logs by date.
         */
        public String requestedTimeRange;
    
        /**
         * The access type field for filtering logs by access method.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top