Module Values.BotStatisticsSource

Statistics about a specific bot's traffic to a path, including the bot name, request count, and percentage of traffic.

Sourcetype nonrec t = {
  1. botName : FilterString.t option;
    (*

    The name of the bot. For example, gptbot or googlebot.

    *)
  2. requestCount : RequestCount.t option;
    (*

    The number of requests from this bot to the associated path within the specified time window.

    *)
  3. percentage : PercentageValue.t option;
    (*

    The percentage of total requests to the associated path that came from this bot.

    *)
}
Sourceval make : ?botName:??? -> ?requestCount:??? -> ?percentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of PercentageValue.t | `Long of RequestCount.t | `String of FilterString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t