opstree/druid-exporter

View on GitHub

Showing 9 of 13 total issues

Function DruidHTTPEndpoint has a Cognitive Complexity of 63 (exceeds 20 allowed). Consider refactoring.
Open

func DruidHTTPEndpoint(metricsCleanupTTL int, disableHistogram bool, histogram *prometheus.HistogramVec, gauge *prometheus.GaugeVec, dnsCache *cache.Cache) http.HandlerFunc {
    gaugeCleaner := newCleaner(gauge, metricsCleanupTTL)
    return func(w http.ResponseWriter, req *http.Request) {
        var druidData []map[string]interface{}
        var id string
Severity: Minor
Found in listener/druid_endpoint.go - About 7 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function DruidHTTPEndpoint has 113 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func DruidHTTPEndpoint(metricsCleanupTTL int, disableHistogram bool, histogram *prometheus.HistogramVec, gauge *prometheus.GaugeVec, dnsCache *cache.Cache) http.HandlerFunc {
    gaugeCleaner := newCleaner(gauge, metricsCleanupTTL)
    return func(w http.ResponseWriter, req *http.Request) {
        var druidData []map[string]interface{}
        var id string
Severity: Major
Found in listener/druid_endpoint.go - About 3 hrs to fix

    Method MetricCollector.Collect has a Cognitive Complexity of 28 (exceeds 20 allowed). Consider refactoring.
    Open

    func (collector *MetricCollector) Collect(ch chan<- prometheus.Metric) {
        ch <- prometheus.MustNewConstMetric(collector.DruidHealthStatus,
            prometheus.CounterValue, GetDruidHealthMetrics())
        for _, data := range GetDruidSegmentData() {
            ch <- prometheus.MustNewConstMetric(collector.DataSourceCount,
    Severity: Minor
    Found in collector/druid.go - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method MetricCollector.Collect has 63 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func (collector *MetricCollector) Collect(ch chan<- prometheus.Metric) {
        ch <- prometheus.MustNewConstMetric(collector.DruidHealthStatus,
            prometheus.CounterValue, GetDruidHealthMetrics())
        for _, data := range GetDruidSegmentData() {
            ch <- prometheus.MustNewConstMetric(collector.DataSourceCount,
    Severity: Minor
    Found in collector/druid.go - About 1 hr to fix

      Function Collector has 59 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func Collector() *MetricCollector {
          return &MetricCollector{
              DruidHealthStatus: prometheus.NewDesc("druid_health_status",
                  "Health of Druid, 1 is healthy 0 is not",
                  nil, prometheus.Labels{
      Severity: Minor
      Found in collector/druid.go - About 1 hr to fix

        Function DruidHTTPEndpoint has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        func DruidHTTPEndpoint(metricsCleanupTTL int, disableHistogram bool, histogram *prometheus.HistogramVec, gauge *prometheus.GaugeVec, dnsCache *cache.Cache) http.HandlerFunc {
        Severity: Minor
        Found in listener/druid_endpoint.go - About 35 mins to fix

          Function GetHealth has 5 return statements (exceeds 4 allowed).
          Open

          func GetHealth(url string) float64 {
              kingpin.Parse()
              client, err := generateTLSConfig()
              if err != nil {
                  logrus.Errorf("Cannot generate http client: %v", err)
          Severity: Major
          Found in utils/http.go - About 35 mins to fix

            Function GetSQLResponse has 5 return statements (exceeds 4 allowed).
            Open

            func GetSQLResponse(url string, query string) ([]byte, error) {
                kingpin.Parse()
                client, err := generateTLSConfig()
                if err != nil {
                    logrus.Errorf("Cannot generate http client: %v", err)
            Severity: Major
            Found in utils/http.go - About 35 mins to fix

              Function generateTLSConfig has 5 return statements (exceeds 4 allowed).
              Open

              func generateTLSConfig() (*http.Client, error) {
                  kingpin.Parse()
              
                  if *certFile != "" && *keyFile != "" && *caFile != "" {
                      cert, err := tls.LoadX509KeyPair(*certFile, *keyFile)
              Severity: Major
              Found in utils/http.go - About 35 mins to fix
                Severity
                Category
                Status
                Source
                Language