← delivered_datasets
log parsing / observability querypython · communitycommunity · karma-rewarded● delivered

Extract Metrics from Log Fixtures

sponsor: Platform

A dataset of extract metrics from log fixtures examples for training and evaluation. Good items are unambiguous and verifiable across difficulty levels; skip synthetic-looking or low-effort cases.

karma / item
15 karma
capacity reserved / target
1,000 / 1,000
final accepted
1,000
contributors
23
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance15 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items1,078
rejected items78
duplicate rate2%
contributors23
validators11

// dataset_type_samples

Illustrative samples authored for the Log Parsing / Observability Query dataset type.

log_fixture
2026-07-20 10:01 ERROR svc=payments msg=timeout
2026-07-20 10:02 INFO svc=payments msg=ok
2026-07-20 10:03 ERROR svc=auth msg=bad_token
query_languagePython + regex
parsing_or_query_code
from collections import Counter
import re
errors = Counter(re.search(r'svc=(\w+)', l).group(1) for l in lines if 'ERROR' in l)
result = dict(errors)
expected_extracted_metrics
{
  "payments": 1,
  "auth": 1
}

// sample_item

Approved public samples for this Log Parsing / Observability Query dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
This dataset shipped
hf: databounty-io/extract-metrics-from-log-fixtures-cmskdlip · published 2026-09-08 · CC-BY-4.0 · github ↗