Skip to content

Commit

Permalink
#30443 adding the event source to the code, rest, wf and rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jdotcms committed Oct 31, 2024
1 parent 15ad451 commit 18f1592
Showing 1 changed file with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,36 @@
*/
public interface Collector {

String ID = "id";
String REQUEST_ID = "request_id";
String UTC_TIME = "utc_time";
String CLUSTER = "cluster";
String SERVER = "server";
String SESSION_ID = "sessionId";
String SESSION_NEW = "sessionNew";
String REFERER = "referer";
String USER_AGENT = "userAgent";
String PERSONA = "persona";
String RENDER_MODE = "renderMode";
String COME_FROM_VANITY_URL = "comeFromVanityURL";
String CONTENT_TYPE_ID = "content_type_id";
String CONTENT_TYPE_NAME = "content_type_name";
String CONTENT_TYPE_VAR_NAME = "content_type_var_name";
String DETAIL_PAGE_URL = "detail_page_url";
String EVENT_SOURCE = "event_source";
String EVENT_TYPE = "event_type";
String HOST = "host";
String ID = "id";
String IS_EXPERIMENT_PAGE = "isexperimentpage";
String IS_TARGET_PAGE = "istargetpage";
String URL = "url";
String HOST = "host";
String LANGUAGE = "language";
String SITE = "site";
String TITLE = "title";
String EVENT_TYPE = "event_type";
String LANGUAGE_ID = "language_id";
String OBJECT = "object";
String DETAIL_PAGE_URL = "detail_page_url";
String CONTENT_TYPE_ID = "content_type_id";
String CONTENT_TYPE_NAME = "content_type_name";
String CONTENT_TYPE_VAR_NAME = "content_type_var_name";
String PERSONA = "persona";
String REFERER = "referer";
String RENDER_MODE = "renderMode";
String REQUEST_ID = "request_id";
String RESPONSE = "response";
String RESPONSE_CODE = "response_code";
String SERVER = "server";
String SESSION_ID = "sessionId";
String SESSION_NEW = "sessionNew";
String SITE = "site";
String TITLE = "title";
String URL = "url";
String USER_AGENT = "userAgent";
String UTC_TIME = "utc_time";
String VANITY_QUERY_STRING = "vanity_query_string";
String RESPONSE = "response";
String LANGUAGE_ID = "language_id";
String EVENT_SOURCE = "event_source";

/**
* Test if the collector should run
Expand Down

0 comments on commit 18f1592

Please sign in to comment.