Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Exporter ¶
type Exporter struct {
// contains filtered or unexported fields
}
func (*Exporter) Close ¶
Close writes the in-memory data to the JSONL file specified by options.JSONLExport and closes the exporter after operation
type Options ¶
type Options struct { // File is the file to export found JSONL result to File string `yaml:"file"` // OmitRaw whether to exclude the raw request and response from the output OmitRaw bool `yaml:"omit-raw"` // BatchSize the number of records to keep in memory before writing them out to the JSONL file or 0 to disable // batching (default) BatchSize int `yaml:"batch-size"` }
Options contains the configuration options for JSONL exporter client
Click to show internal directories.
Click to hide internal directories.