Giter Club home page Giter Club logo

Comments (3)

subreme avatar subreme commented on June 15, 2024 1

I do realize that the way these errors are reported is confusing, so I'll try to look into clearer messages that distinguish between invalid syntax, missing fields, and so on.

from shopify-monitor.

subreme avatar subreme commented on June 15, 2024

Hey Branko!

I copied and pasted your config file contents into my editor and found that it wasn't valid JSON. As the Failed to parse config.json: expected, or ] at line 571 column 3 log (an error message automatically generated by the serde library) suggests, the second to last "closing curly brace" } should actually be a "closing square bracket" ]. This is because you changed the "servers": { field from an object (having named servers inside it) to an array, switching the bracket type, but forgot to change the matching closing brace at the end of the field.

You should edit your file to this:

{
  "sites": {
    "AFEW": {
      "url": "https://en.afew-store.com",
      "logo": "afew",
      "delay": 5000
    },
    "asphaltgold": {
      "url": "https://www.asphaltgold.com",
      "logo": "asphaltgold",
      "delay": 5000
    },
    "atmos": {
      "url": "https://www.atmosusa.com",
      "logo": "atmos",
      "delay": 5000
    },
    "Bodega": {
      "url": "https://bdgastore.com",
      "logo": "bodega",
      "delay": 5000
    },
    "Concepts": {
      "url": "https://cncpts.com",
      "logo": "concepts",
      "delay": 5000
    },
    "Extra Butter": {
      "url": "http://extrabutterny.com",
      "logo": "extrabutter",
      "delay": 5000
    },
    "HANON": {
      "url": "https://www.hanon-shop.com",
      "logo": "hanon",
      "delay": 5000
    },
    "Jimmy Jazz": {
      "url": "https://www.jimmyjazz.com",
      "logo": "jimmyjazz",
      "delay": 5000
    },
    "Kith": {
      "url": "https://kith.com",
      "logo": "kith",
      "delay": 5000
    },
    "Notre": {
      "url": "https://www.notre-shop.com",
      "logo": "notre",
      "delay": 5000
    },
    "Packer": {
      "url": "https://packershoes.com",
      "logo": "packer",
      "delay": 5000
    },
    "Shoe Palace": {
      "url": "https://www.shoepalace.com",
      "logo": "shoepalace",
      "delay": 5000
    },
    "Sneaker Politics": {
      "url": "https://sneakerpolitics.com",
      "logo": "sneakerpolitics",
      "delay": 5000
    },
    "Travis Scott": {
      "url": "https://shop.travisscott.com",
      "logo": "travisscott",
      "delay": 5000
    },
    "UNDEFEATED": {
      "url": "https://undefeated.com",
      "logo": "undefeated",
      "delay": 5000
    },
    "West NYC": {
      "url": "https://www.westnyc.com",
      "logo": "westnyc",
      "delay": 5000
    }
  },
  "servers": [
    {
      "name": "Test Server",
      "settings": {
        "username": "Shopify Monitor",
        "avatar": "https://avatars.githubusercontent.com/u/50165445",
        "color": null,
        "sizes": true,
        "thumbnail": true,
        "image": false,
        "footer_text": "go.go.go",
        "footer_image": "https://avatars.githubusercontent.com/u/50165445",
        "timestamp": true,
        "minimum": 0,
        "keywords": null
      },
      "channels": {
        "#minimalist": {
          "url": "xxxx_url_webhook",
          "settings": {
            "image": true
          },
          "sites": {
            "AFEW": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "asphaltgold": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "atmos": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Bodega": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Concepts": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Hanon": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Extra Butter": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Jimmy Jazz": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Kith": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Notre": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Packer": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Shoe Palace": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Sneaker Politics": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "Travis Scott": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "UNDEFEATED": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            },
            "West NYC": {
              "events": [
                {
                  "restock": true,
                  "password_up": true,
                  "password_down": true
                }
              ]
            }
          }
        },
        "#normal": {
          "url": "xxxx_url_webhook",
          "settings": {
            "sizes": true,
            "thumbnail": true,
            "footer_text": "go.go.go",
            "footer_image": "https://avatars.githubusercontent.com/u/50165445",
            "timestamp": true
          },
          "sites": {
            "AFEW": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "asphaltgold": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "atmos": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Bodega": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Concepts": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Hanon": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Extra Butter": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Jimmy Jazz": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Kith": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Notre": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Packer": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Shoe Palace": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Sneaker Politics": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "Travis Scott": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "UNDEFEATED": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            },
            "West NYC": {
              "events": [
                {
                  "restock": true
                },
                {
                  "password_up": true,
                  "settings": {
                    "color": "#e74c3c"
                  }
                },
                {
                  "password_down": true,
                  "settings": {
                    "color": "#2ecc71"
                  }
                }
              ]
            }
          }
        }
      }
    }
  ]
}

Hope this helps!

I edited the message as it turns out that GitHub doesn't format Markdown new-lines for Issue Comments in the same way as it does elsewhere...

from shopify-monitor.

Mx455 avatar Mx455 commented on June 15, 2024

I do realize that the way these errors are reported is confusing, so I'll try to look into clearer messages that distinguish between invalid syntax, missing fields, and so on.

ok thanks now it works... it would be more understandable.
How can I let the "$ cargo run --release" work in the background once it has started? monitor on a server ubuntu for continuous runs.

from shopify-monitor.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.