#' Escape sequence.
#'
#' @description
#' \code{quote()} escapes " for Datadog log queries.
#'
#' @usage quote(str)
#'
#' @param str a string which should be under ".
#' @return an escaped string.
#'
#' @details The function can be used if " would be necessary in Datadog. This is the case if an exact match
#' of the string sequence should be searched.
#'
#' @author Benjamin Holzknecht
#' @keywords escape sequences
#' @examples
#'
#'quote("200 POST")
#'
quote <- function(str){
return(paste0("\"", str, "\""))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.