Add drift_report_parser/tests/data/sample_drift_report.json
This commit is contained in:
parent
ecad95053e
commit
e98a1aefab
1 changed files with 32 additions and 0 deletions
32
drift_report_parser/tests/data/sample_drift_report.json
Normal file
32
drift_report_parser/tests/data/sample_drift_report.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
[
|
||||
{
|
||||
"timestamp": "2024-05-10T14:23:11Z",
|
||||
"pinned": true,
|
||||
"unpinned": false,
|
||||
"decision": "PASS",
|
||||
"rolling_warn_rate": 0.05,
|
||||
"counts": "warn:1,fail:0,unknown:0",
|
||||
"label": "run_001",
|
||||
"comment": "Baseline run with low drift"
|
||||
},
|
||||
{
|
||||
"timestamp": "2024-05-12T10:05:32Z",
|
||||
"pinned": false,
|
||||
"unpinned": true,
|
||||
"decision": "WARN",
|
||||
"rolling_warn_rate": 0.15,
|
||||
"counts": "warn:3,fail:0,unknown:1",
|
||||
"label": "run_002",
|
||||
"comment": "Slight increase in drift metrics"
|
||||
},
|
||||
{
|
||||
"timestamp": "2024-05-14T08:42:09Z",
|
||||
"pinned": false,
|
||||
"unpinned": true,
|
||||
"decision": "FAIL",
|
||||
"rolling_warn_rate": 0.35,
|
||||
"counts": "warn:4,fail:2,unknown:0",
|
||||
"label": "run_003",
|
||||
"comment": "Drift threshold exceeded"
|
||||
}
|
||||
]
|
||||
Loading…
Reference in a new issue