go.mod 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. module github.com/opencost/opencost/modules/prometheus-source
  2. go 1.25.5
  3. replace (
  4. github.com/golang/lint => golang.org/x/lint v0.0.0-20180702182130-06c8688daad7
  5. github.com/opencost/opencost/core => ./../../core
  6. )
  7. require (
  8. github.com/Masterminds/semver/v3 v3.4.0
  9. github.com/julienschmidt/httprouter v1.3.0
  10. github.com/opencost/opencost/core v0.0.0-20241211165149-ee44b80e2fd0
  11. github.com/prometheus/client_golang v1.23.2
  12. github.com/rs/zerolog v1.34.0
  13. gopkg.in/yaml.v2 v2.4.0
  14. k8s.io/client-go v0.35.2
  15. )
  16. require (
  17. github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
  18. github.com/fsnotify/fsnotify v1.9.0 // indirect
  19. github.com/fxamacker/cbor/v2 v2.9.0 // indirect
  20. github.com/go-logr/logr v1.4.3 // indirect
  21. github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
  22. github.com/goccy/go-json v0.10.5 // indirect
  23. github.com/google/uuid v1.6.0 // indirect
  24. github.com/json-iterator/go v1.1.12 // indirect
  25. github.com/mattn/go-colorable v0.1.14 // indirect
  26. github.com/mattn/go-isatty v0.0.20 // indirect
  27. github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
  28. github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
  29. github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
  30. github.com/pelletier/go-toml/v2 v2.2.4 // indirect
  31. github.com/prometheus/client_model v0.6.2 // indirect
  32. github.com/prometheus/common v0.67.5 // indirect
  33. github.com/sagikazarmark/locafero v0.12.0 // indirect
  34. github.com/spf13/afero v1.15.0 // indirect
  35. github.com/spf13/cast v1.10.0 // indirect
  36. github.com/spf13/pflag v1.0.10 // indirect
  37. github.com/spf13/viper v1.21.0 // indirect
  38. github.com/subosito/gotenv v1.6.0 // indirect
  39. github.com/x448/float16 v0.8.4 // indirect
  40. go.yaml.in/yaml/v2 v2.4.3 // indirect
  41. go.yaml.in/yaml/v3 v3.0.4 // indirect
  42. golang.org/x/net v0.51.0 // indirect
  43. golang.org/x/oauth2 v0.35.0 // indirect
  44. golang.org/x/sys v0.41.0 // indirect
  45. golang.org/x/term v0.40.0 // indirect
  46. golang.org/x/text v0.34.0 // indirect
  47. golang.org/x/time v0.14.0 // indirect
  48. google.golang.org/protobuf v1.36.11 // indirect
  49. gopkg.in/inf.v0 v0.9.1 // indirect
  50. k8s.io/api v0.35.2 // indirect
  51. k8s.io/apimachinery v0.35.2 // indirect
  52. k8s.io/klog/v2 v2.130.1 // indirect
  53. k8s.io/kube-openapi v0.0.0-20260127142750-a19766b6e2d4 // indirect
  54. k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect
  55. sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
  56. sigs.k8s.io/randfill v1.0.0 // indirect
  57. sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
  58. sigs.k8s.io/yaml v1.6.0 // indirect
  59. )