Skip to content

Conversation

@JavierCladellas
Copy link
Collaborator

New:

  • Support extracting performance variables using regex
  • Support extracting from standard output ! (works for any supported format)

To use stoud : just put

"filepath":"stdout"

For regex; multiple tag capturing is supported, mostly the same as the standard re python library. Variables are extracted line by line.

  • Named capture groups
{
    "pattern": "^(?P<name>[^:\\n]+):\\s*(?P<value>[-+]?[\\d.]+(?:[eE][-+]?\\d+)?)$",
    "variable_name_group":"name",
    "variable_value_group":"value"
}
  • Just named value capture group (column names will be match_0, match_1, ...
{
    "pattern": "^([^:\\n]+):\\s*(?P<value>[-+]?[\\d.]+(?:[eE][-+]?\\d+)?)$",
    "variable_value_group":"value"
}
  • numbered capture groups (0 refers to the whole line)
{
    "pattern": "^([^:\\n]+):\\s*([-+]?[\\d.]+(?:[eE][-+]?\\d+)?)$",
    "variable_name_group":1,
    "variable_value_group":2
}

@JavierCladellas JavierCladellas linked an issue Jan 26, 2026 that may be closed by this pull request
@JavierCladellas JavierCladellas self-assigned this Jan 26, 2026
@netlify
Copy link

netlify bot commented Jan 26, 2026

Deploy Preview for benchmarking-polite-crostata-92f389 ready!

Name Link
🔨 Latest commit 4c9f5c0
🔍 Latest deploy log https://app.netlify.com/projects/benchmarking-polite-crostata-92f389/deploys/6977428794e16c0008770d2e
😎 Deploy Preview https://deploy-preview-385--benchmarking-polite-crostata-92f389.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@JavierCladellas JavierCladellas added enhancement A new feature or request i/o Issues related to input/output handling labels Jan 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement A new feature or request i/o Issues related to input/output handling

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support performance extraction with regex

2 participants