Turn a Kibana JSON log export into a runnable pytest suite using the secure-log2test CLI. Use when the user has a Kibana or Elasticsearch JSON export of API traffic and wants a regression suite from production logs, when extracting test cases from staging traffic, when scrubbing auth headers or secret-looking body fields before logs leave the laptop, when bridging Kibana-captured requests into a pytest-based suite for CI, when the user mentions Kibana logs, Elasticsearch JSON export, log-to-test conversion, log replay tests, auth header redaction, PII in logs, or regression tests from production traffic.
92
100%
Does it follow best practices?
Impact
93%
1.00xAverage score across 2 eval scenarios
Passed
No known issues
{
"hits": {
"total": {"value": 4, "relation": "eq"},
"hits": [
{
"_source": {
"method": "GET",
"url": "/api/v1/users",
"status": 200,
"duration": 42
}
},
{
"_source": {
"method": "POST",
"url": "/api/v1/users",
"status": 201,
"duration": 110
}
},
{
"_source": {
"method": "PUT",
"url": "/api/v1/users/42",
"status": 204,
"duration": 87
}
},
{
"_source": {
"method": "DELETE",
"url": "/api/v1/users/99",
"status": 404,
"duration": 21
}
}
]
}
}.tessl-plugin
evals
scenario-1
scenario-2
secure_log2test
tests