Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prometheus/client_golang
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Percona-Lab/client_golang
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 13 commits
  • 3 files changed
  • 3 contributors

Commits on Jun 30, 2022

  1. PMM-9919 Add support for meta metrics

    Signed-off-by: Shashank Sinha <[email protected]>
    ShashankSinha252 committed Jun 30, 2022
    Copy the full SHA
    d576f06 View commit details
  2. Fix Copyright

    ShashankSinha252 committed Jun 30, 2022
    Copy the full SHA
    f39111d View commit details
  3. Updated mod file

    ShashankSinha252 committed Jun 30, 2022
    Copy the full SHA
    91797ab View commit details
  4. refactor

    ritbl committed Jun 30, 2022
    Copy the full SHA
    b4e77ba View commit details
  5. fix collection

    ritbl committed Jun 30, 2022
    Copy the full SHA
    379971c View commit details
  6. add comment

    ritbl committed Jun 30, 2022
    Copy the full SHA
    705d6a9 View commit details
  7. add comment

    ritbl committed Jun 30, 2022
    Copy the full SHA
    62c42f0 View commit details
  8. fix desc

    ritbl committed Jun 30, 2022
    Copy the full SHA
    9231b85 View commit details
  9. refactor

    ritbl committed Jun 30, 2022
    Copy the full SHA
    42ed7fb View commit details
  10. cleanup

    ritbl committed Jun 30, 2022
    Copy the full SHA
    ea5a3aa View commit details
  11. report metrics correctly

    ritbl committed Jun 30, 2022
    Copy the full SHA
    5d01ef4 View commit details
  12. add comment

    ritbl committed Jun 30, 2022
    Copy the full SHA
    0a025db View commit details

Commits on Jul 1, 2022

  1. Merge pull request #1 from Percona-Lab/PMM-9919-add-scrape-metrics-pe…

    …r-collector
    
    PMM-9919 Add MeasureCollectTime
    ritbl authored Jul 1, 2022
    Copy the full SHA
    ee06569 View commit details
Showing with 117 additions and 4 deletions.
  1. +3 −2 go.mod
  2. +76 −2 go.sum
  3. +38 −0 prometheus/collector_metric.go
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/prometheus/client_golang
module github.com/Percona-Lab/client_golang

go 1.17

@@ -8,6 +8,7 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/golang/protobuf v1.5.2
github.com/json-iterator/go v1.1.12
github.com/prometheus/client_golang v1.12.2
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.34.0
github.com/prometheus/procfs v0.7.3
@@ -18,7 +19,7 @@ require (
require (
github.com/jpillora/backoff v1.0.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
Loading