Module Values.ConfigurationSummarySource

Provides a summary of pipeline configuration components including sources, processors, and destinations.

Sourcetype nonrec t = {
  1. sources : Sources.t option;
    (*

    The list of data sources configured in the pipeline.

    *)
  2. dataSources : DataSources.t option;
    (*

    The list of data sources that provide telemetry data to the pipeline.

    *)
  3. processors : Processors.t option;
    (*

    The list of processors configured in the pipeline for data transformation.

    *)
  4. processorCount : Integer.t option;
    (*

    The total number of processors configured in the pipeline.

    *)
  5. sinks : Sinks.t option;
    (*

    The list of destinations where processed data is sent.

    *)
}
Sourceval make : ?sources:??? -> ?dataSources:??? -> ?processors:??? -> ?processorCount:??? -> ?sinks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list ]) 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