Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: stolostron/multicluster-observability-operator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5a1ffa80fd7fd458bb51d46f09bdbc18fd53a4d5
Choose a base ref
..
head repository: stolostron/multicluster-observability-operator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c944948822ff66d374fe7105c9c75e38e92a2476
Choose a head ref
Showing with 11,232 additions and 9,036 deletions.
  1. +148 −132 ...ring-operator-acm-212-pull-request.yaml → endpoint-monitoring-operator-acm-213-pull-request.yaml}
  2. +148 −132 ...{endpoint-monitoring-operator-acm-212-push.yaml → endpoint-monitoring-operator-acm-213-push.yaml}
  3. +148 −132 ...-dashboard-loader-acm-212-pull-request.yaml → grafana-dashboard-loader-acm-213-pull-request.yaml}
  4. +148 −132 .tekton/{grafana-dashboard-loader-acm-212-push.yaml → grafana-dashboard-loader-acm-213-push.yaml}
  5. +148 −132 .tekton/{metrics-collector-acm-212-pull-request.yaml → metrics-collector-acm-213-pull-request.yaml}
  6. +148 −132 .tekton/{metrics-collector-acm-212-push.yaml → metrics-collector-acm-213-push.yaml}
  7. +148 −132 ...erator-acm-212-pull-request.yaml → multicluster-observability-operator-acm-213-pull-request.yaml}
  8. +148 −132 ...observability-operator-acm-212-push.yaml → multicluster-observability-operator-acm-213-push.yaml}
  9. +148 −132 .tekton/{rbac-query-proxy-acm-212-pull-request.yaml → rbac-query-proxy-acm-213-pull-request.yaml}
  10. +148 −132 .tekton/{rbac-query-proxy-acm-212-push.yaml → rbac-query-proxy-acm-213-push.yaml}
  11. +1 −1 COMPONENT_VERSION
  12. +2 −1 cicd-scripts/customize-mco.sh
  13. +1 −1 collectors/metrics/Dockerfile.dev
  14. +1 −1 collectors/metrics/cmd/metrics-collector/main.go
  15. +5 −0 collectors/metrics/pkg/forwarder/forwarder.go
  16. +1 −1 collectors/metrics/pkg/metricfamily/hypershift_transformer.go
  17. +1 −1 collectors/metrics/pkg/metricfamily/hypershift_transformer_test.go
  18. +45 −17 collectors/metrics/pkg/metricsclient/metricsclient.go
  19. +103 −0 collectors/metrics/pkg/metricsclient/metricsclient_test.go
  20. +8 −9 go.mod
  21. +14 −15 go.sum
  22. +1 −1 operators/endpointmetrics/controllers/observabilityendpoint/observabilityaddon_controller.go
  23. +1 −4 ...dpointmetrics/controllers/observabilityendpoint/observabilityaddon_controller_integration_test.go
  24. +1 −1 operators/endpointmetrics/controllers/observabilityendpoint/observabilityaddon_controller_test.go
  25. +27 −0 operators/endpointmetrics/controllers/observabilityendpoint/predicate_func.go
  26. +9,329 −7,633 ...ors/endpointmetrics/controllers/observabilityendpoint/testdata/crd/hostedclusters.hypershift.yaml
  27. +1 −1 operators/endpointmetrics/main.go
  28. +25 −9 operators/endpointmetrics/pkg/collector/metrics_collector.go
  29. +1 −1 operators/endpointmetrics/pkg/hypershift/hypershift.go
  30. +1 −1 operators/endpointmetrics/pkg/hypershift/hypershift_test.go
  31. +1 −1 operators/endpointmetrics/pkg/openshift/openshift_test.go
  32. +1 −1 operators/multiclusterobservability/Dockerfile.dev
  33. +1 −1 ...lusterobservability/controllers/multiclusterobservability/multiclusterobservability_controller.go
  34. +56 −4 ...robservability/controllers/multiclusterobservability/multiclusterobservability_controller_test.go
  35. +1 −1 operators/multiclusterobservability/controllers/placementrule/hub_ocp_monitoring_util.go
  36. +1 −2 operators/multiclusterobservability/manifests/base/alertmanager/alertmanager-statefulset.yaml
  37. +1 −1 operators/multiclusterobservability/manifests/base/grafana/deployment.yaml
  38. +1 −1 operators/multiclusterobservability/manifests/base/proxy/deployment.yaml
  39. +22 −2 operators/multiclusterobservability/pkg/rendering/renderer.go
  40. +10 −0 operators/multiclusterobservability/pkg/rendering/renderer_alertmanager.go
  41. +49 −1 operators/multiclusterobservability/pkg/rendering/renderer_alertmanager_test.go
  42. +7 −0 operators/multiclusterobservability/pkg/rendering/renderer_grafana.go
  43. +6 −0 operators/multiclusterobservability/pkg/rendering/renderer_proxy.go
  44. +24 −1 operators/multiclusterobservability/pkg/rendering/renderer_test.go
  45. +2 −2 tests/pkg/tests/observability_dashboard_test.go
Loading