Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revise TidbMonitor controller #1500

Merged
merged 20 commits into from
Jan 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/controller/tidbmonitor/tidb_monitor_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func NewController(
tidbMonitorInformer := informerFactory.Pingcap().V1alpha1().TidbMonitors()
deploymentInformer := kubeInformerFactory.Apps().V1().Deployments()
typedControl := controller.NewTypedControl(controller.NewRealGenericControl(genericCli, recorder))
monitorManager := monitor.NewMonitorManager(informerFactory, kubeInformerFactory, typedControl)
monitorManager := monitor.NewMonitorManager(informerFactory, kubeInformerFactory, typedControl, recorder)

tmc := &Controller{
cli: genericCli,
Expand Down Expand Up @@ -115,7 +115,7 @@ func (tmc *Controller) processNextWorkItem() bool {
if perrors.Find(err, controller.IsRequeueError) != nil {
klog.Infof("TidbMonitor: %v, still need sync: %v, requeuing", key.(string), err)
} else {
utilruntime.HandleError(fmt.Errorf("TidbMonitor: %v, sync failed, err: %v, requeuing", key.(string), err))
utilruntime.HandleError(fmt.Errorf("TidbMonitor: %v, sync failed, err: %v", key.(string), err))
}
tmc.queue.AddRateLimited(key)
} else {
Expand Down
24 changes: 22 additions & 2 deletions pkg/monitor/monitor/monitor_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,32 @@ import (
corev1 "k8s.io/api/core/v1"
kubeinformers "k8s.io/client-go/informers"
appslisters "k8s.io/client-go/listers/apps/v1"
"k8s.io/client-go/tools/record"
"k8s.io/klog"
)

type MonitorManager struct {
typedControl controller.TypedControlInterface
deploymentLister appslisters.DeploymentLister
tcLister v1alpha1listers.TidbClusterLister
recorder record.EventRecorder
}

const (
FailedSync = "FailedSync"
SuccessSync = "SuccessSync"
)

func NewMonitorManager(
informerFactory informers.SharedInformerFactory,
kubeInformerFactory kubeinformers.SharedInformerFactory,
typedControl controller.TypedControlInterface) *MonitorManager {
typedControl controller.TypedControlInterface,
recorder record.EventRecorder) *MonitorManager {
return &MonitorManager{
typedControl: typedControl,
deploymentLister: kubeInformerFactory.Apps().V1().Deployments().Lister(),
tcLister: informerFactory.Pingcap().V1alpha1().TidbClusters().Lister(),
recorder: recorder,
}
}

Expand All @@ -50,18 +59,29 @@ func (mm *MonitorManager) Sync(monitor *v1alpha1.TidbMonitor) error {

// Sync Service
if err := mm.syncTidbMonitorService(monitor); err != nil {
message := fmt.Sprintf("Sync TidbMonitor[%s/%s] Service failed, err: %v", monitor.Namespace, monitor.Name, err)
mm.recorder.Event(monitor, corev1.EventTypeWarning, FailedSync, message)
return err
}
klog.V(4).Infof("tm[%s/%s]'s service synced", monitor.Namespace, monitor.Name)
// Sync PVC
if monitor.Spec.Persistent {
if err := mm.syncTidbMonitorPVC(monitor); err != nil {
message := fmt.Sprintf("Sync TidbMonitor[%s/%s] PVC failed,err:%v", monitor.Namespace, monitor.Name, err)
mm.recorder.Event(monitor, corev1.EventTypeWarning, FailedSync, message)
return err
}
}
klog.V(4).Infof("tm[%s/%s]'s pvc synced", monitor.Namespace, monitor.Name)

// Sync Deployment
return mm.syncTidbMonitorDeployment(monitor)
if err := mm.syncTidbMonitorDeployment(monitor); err != nil {
message := fmt.Sprintf("Sync TidbMonitor[%s/%s] Deployment failed,err:%v", monitor.Namespace, monitor.Name, err)
mm.recorder.Event(monitor, corev1.EventTypeWarning, FailedSync, message)
return err
}
klog.V(4).Infof("tm[%s/%s]'s deployment synced", monitor.Namespace, monitor.Name)
return nil
}

func (mm *MonitorManager) syncTidbMonitorService(monitor *v1alpha1.TidbMonitor) error {
Expand Down
11 changes: 10 additions & 1 deletion pkg/monitor/monitor/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ func GetMonitorObjectName(monitor *v1alpha1.TidbMonitor) string {
return fmt.Sprintf("%s-monitor", monitor.Name)
}

// getMonitorConfigMap generate the Prometheus config and Grafana config for TidbMonitor,
// If the namespace in ClusterRef is empty, we would set the TidbMonitor's namespace in the default
func getMonitorConfigMap(tc *v1alpha1.TidbCluster, monitor *v1alpha1.TidbMonitor) (*core.ConfigMap, error) {

var releaseNamespaces []string
Expand All @@ -51,6 +53,10 @@ func getMonitorConfigMap(tc *v1alpha1.TidbCluster, monitor *v1alpha1.TidbMonitor
model.AlertmanagerURL = *monitor.Spec.AlertmanagerURL
}

if len(model.ReleaseNamespaces) < 1 {
model.ReleaseNamespaces = append(model.ReleaseNamespaces, monitor.Namespace)
}

content, err := RenderPrometheusConfig(model)
if err != nil {
return nil, err
Expand Down Expand Up @@ -366,7 +372,6 @@ func getMonitorPrometheusContainer(monitor *v1alpha1.TidbMonitor, tc *v1alpha1.T
"/bin/prometheus",
"--web.enable-admin-api",
"--web.enable-lifecycle",
fmt.Sprintf("--log.level=%s", monitor.Spec.Prometheus.LogLevel),
"--config.file=/etc/prometheus/prometheus.yml",
"--storage.tsdb.path=/data/prometheus",
fmt.Sprintf("--storage.tsdb.retention=%dd", monitor.Spec.Prometheus.ReserveDays),
Expand Down Expand Up @@ -401,6 +406,10 @@ func getMonitorPrometheusContainer(monitor *v1alpha1.TidbMonitor, tc *v1alpha1.T
},
},
}
if len(monitor.Spec.Prometheus.LogLevel) > 0 {
c.Command = append(c.Command, fmt.Sprintf("--log.level=%s", monitor.Spec.Prometheus.LogLevel))
}

if tc.IsTLSClusterEnabled() {
c.VolumeMounts = append(c.VolumeMounts, core.VolumeMount{
Name: "tls-pd-client",
Expand Down