Documentation
¶
Index ¶
Constants ¶
View Source
const ( OutputFormatJSON = "json" OutputFormatPretty = "pretty" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BundleReport ¶
type BundleReport struct {
Status ReportStatus `json:"status"`
Message string `json:"message,omitempty"`
Details []DecisionDiff `json:"details,omitempty"`
}
type DecisionDiff ¶
type DecisionDiff struct {
Status ReportStatus `json:"status"`
Message string `json:"error"`
Path string `json:"path"`
}
type Report ¶
type Report struct {
Bundles map[string]BundleReport `json:"bundles,omitempty"`
}
type ReportStatus ¶
type ReportStatus int
const ( ReportStatusUnknown ReportStatus = iota ReportStatusError ReportStatusResultDiff ReportStatusLatencyInflation ReportStatusPassed ReportStatusSkipped )
func (ReportStatus) String ¶
func (s ReportStatus) String() string
Click to show internal directories.
Click to hide internal directories.