get.url.params: Extract from the data frame with the access log the urls...

Description Usage Arguments Value Author(s) Examples

Description

The function supports multivalued parameters, but does not support parameters inside urls yet.

Usage

1

Arguments

dfLog

a dataframe with the access log. Can be load with read.apache.access.log or read.multiple.apache.access.log.

Value

a structure of data frames with query strings parameters for each url of the log

Author(s)

Diogo Silveira Mendonca

Examples

1
2
3
4
5
6
7
8
#Load a log which the urls have query strings
path = system.file("examples", "access_log_with_query_string.log", package = "ApacheLogProcessor")

#Read a log file with combined format and return it in a data frame
df = read.apache.access.log(path, format = "common")

#Clear the urls with parameters inside
params <- get.url.params(df)

ApacheLogProcessor documentation built on May 2, 2019, 7:55 a.m.