Module Values.NodeFabricLogPublishingConfigurationSource

Configuration properties for logging events associated with a peer node owned by a member in a Managed Blockchain network.

Sourcetype nonrec t = {
  1. chaincodeLogs : LogConfigurations.t option;
    (*

    Configuration properties for logging events associated with chaincode execution on a peer node. Chaincode logs contain the results of instantiating, invoking, and querying the chaincode. A peer can run multiple instances of chaincode. When enabled, a log stream is created for all chaincodes, with an individual log stream for each chaincode.

    *)
  2. peerLogs : LogConfigurations.t option;
    (*

    Configuration properties for a peer node log. Peer node logs contain messages generated when your client submits transaction proposals to peer nodes, requests to join channels, enrolls an admin peer, and lists the chaincode instances on a peer node.

    *)
}
Sourceval make : ?chaincodeLogs:??? -> ?peerLogs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Boolean of Enabled.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