import { Option, u16, u32 } from "./_commons"; export interface PageVisitEventHTTP { /** The URL that was accessed */ url: string; /** * The HTTP method that was used * Renamed to method in metroplex */ mtd: string; /** * The response code from the HTTP request. * In the event that no response is received this field will be omitted * Should have value of minimum 0 * Renamed to resp_code in metroplex */ code?: Option; /** * The amount of time it took for the request to complete * Should have value of minimum 0 * Renamed to resp_time in metroplex */ r_time?: Option; /** * The length of the response payload * Should have value of minimum 0 * Renamed to resp_length in metroplex */ resp_len?: Option; /** The HTTP data sequence number, if any */ seq?: Option; }