LobeTia/statszee

View on GitHub

Showing 11 of 32 total issues

Function validate has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

  validate(line) {
    if (typeof line !== 'string') return false
    const lineElement = line.split(' ')
    if (lineElement.length != 2 && lineElement.length != 3) return false
    if (isNaN(lineElement[1])) return false
Severity: Minor
Found in api/services/LineProtocolService.js - About 2 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 get has 49 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  get(req, res) {
    this.app.orm.Metric.findOne({
      where: {
        namespace: req.params.namespace,
        precision: req.params.precision
Severity: Minor
Found in api/controllers/api/1.0/StatsReaderController.js - About 1 hr to fix

    Function schema has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      static schema(app, Sequelize) {
        return {
          metric: {
            type: Sequelize.BIGINT,
            index: true,
    Severity: Minor
    Found in api/models/Stat.js - About 1 hr to fix

      Function writePoint has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        writePoint(point) {
          return new Promise((fullfill, reject) => {
      
            // TODO: Add Memory-cache Stat findOrCreate (for priming new Stat rows)
            this.getMetricInstance(point)
      Severity: Minor
      Found in api/services/LineProtocolWriterService.js - About 1 hr to fix

        Function getMetricInstance has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          getMetricInstance(point) {
            const cache = this.app.services.CacheService.getCaches()
        
            return new Promise((fullfill, reject) => {
              cache.get(this.getCacheKey(point), (error, metric) => {
        Severity: Minor
        Found in api/services/LineProtocolWriterService.js - About 1 hr to fix

          Function write has 29 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            write(req, res) {
          
              new Promise((fullfill, reject) => {
                if (!req.body)throw new ValidationError()
                let lines = this.app.services.LineProtocolService.explode(req.body);
          Severity: Minor
          Found in api/controllers/api/1.0/DataLoaderController.js - About 1 hr to fix

            Function write has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              write(req, res) {
            
                new Promise((fullfill, reject) => {
                  if (!req.body)throw new ValidationError()
                  let lines = this.app.services.LineProtocolService.explode(req.body);
            Severity: Minor
            Found in api/controllers/api/1.0/DataLoaderController.js - About 35 mins 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

            Avoid too many return statements within this function.
            Open

                    if (!this.testTimeFormat(timeDefinition[1])) return false
            Severity: Major
            Found in api/services/LineProtocolService.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                  return true
              Severity: Major
              Found in api/services/LineProtocolService.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        if (isNaN(timeDefinition[0])) return false
                Severity: Major
                Found in api/services/LineProtocolService.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          if (isNaN(timeDefinition[0])) return false
                  Severity: Major
                  Found in api/services/LineProtocolService.js - About 30 mins to fix
                    Severity
                    Category
                    Status
                    Source
                    Language