You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prometheus/model/textparse
machine424 18b81ad79d
feat: ProtobufParse.formatOpenMetricsFloat: improve float formatting by using strconv.AppendFloat instead of fmt.Sprint
1 month ago
..
testdata textparse: Refactored benchmark (#15083) 2 months ago
README.md
benchmark_test.go textparse: Refactored benchmark (#15083) 2 months ago
interface.go textparse: Refactored main testing utils for reusability; fixed proto Units. (#15095) 2 months ago
interface_test.go textparse: Refactored main testing utils for reusability; fixed proto Units. (#15095) 2 months ago
openmetricslex.l
openmetricslex.l.go
openmetricsparse.go [PERF] textparse: optimize OM `p.isCreatedSeries()` (#15150) 2 months ago
openmetricsparse_test.go [PERF] textparse: further optimzations for OM `CreatedTimestamps` (#15097) 2 months ago
promlex.l
promlex.l.go
promparse.go
promparse_test.go textparse: Refactored main testing utils for reusability; fixed proto Units. (#15095) 2 months ago
protobufparse.go feat: ProtobufParse.formatOpenMetricsFloat: improve float formatting by using strconv.AppendFloat instead of fmt.Sprint 1 month ago
protobufparse_test.go feat: ProtobufParse.formatOpenMetricsFloat: improve float formatting by using strconv.AppendFloat instead of fmt.Sprint 1 month ago

README.md

Making changes to textparse lexers

In the rare case that you need to update the textparse lexers, edit promlex.l or openmetricslex.l and then run the following command: golex -o=promlex.l.go promlex.l

Note that you need golex installed: go get -u modernc.org/golex