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
"""secure-log2test: convert Kibana API log exports into runnable pytest suites."""
from importlib.metadata import PackageNotFoundError, version as _pkg_version
try:
__version__ = _pkg_version("secure-log2test")
except PackageNotFoundError:
# Running from a source checkout without an installed distribution.
__version__ = "0.0.0+unknown".tessl-plugin
evals
scenario-1
scenario-2
secure_log2test
tests