Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps - Status | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. Healthchecks.io -- Cron job monitoring

Healthchecks.io -- Cron job monitoring

Scheduled Pinned Locked Moved App Wishlist
22 Posts 10 Posters 6.7k Views 15 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • robiR robi

    @Lanhild may also work in the LAMP app until someone gets a package going.

    Is this of interest @Kubernetes ?

    KubernetesK Offline
    KubernetesK Offline
    Kubernetes
    App Dev
    wrote on last edited by Kubernetes
    #5

    @robi Structure looks same as linkding App. I will check to prepare a initial package 📦

    1 Reply Last reply
    4
    • KubernetesK Offline
      KubernetesK Offline
      Kubernetes
      App Dev
      wrote on last edited by
      #6

      Sorry guys, but no quick luck with that. I didn't even get it running in my local docker instance. I receive 400 Bad Request errors in Browser, without any hint why.

      However, the Application is using following tech that I am currently not able to package:

      • incoming SMTP (optional?)
      • external database (postgres)
      • i still strugle with Django applications
      robiR 1 Reply Last reply
      1
      • timconsidineT Offline
        timconsidineT Offline
        timconsidine
        App Dev
        wrote on last edited by
        #7

        well done for attempting it 👍

        Indie app dev, scratching my itches, lover of Cloudron PaaS, communityapps.appx.uk

        1 Reply Last reply
        1
        • KubernetesK Kubernetes

          Sorry guys, but no quick luck with that. I didn't even get it running in my local docker instance. I receive 400 Bad Request errors in Browser, without any hint why.

          However, the Application is using following tech that I am currently not able to package:

          • incoming SMTP (optional?)
          • external database (postgres)
          • i still strugle with Django applications
          robiR Offline
          robiR Offline
          robi
          wrote on last edited by
          #8

          @Kubernetes thank you for the effort, can you upload it to the Cloudron Gitlab anyway with those notes?

          We don't need the SMTP integration yet as the webhooks are sufficient to get it working.

          the postgress addon should suffice, no?

          what aspect of python django apps is a struggle?

          Conscious tech

          KubernetesK 1 Reply Last reply
          1
          • robiR robi

            @Kubernetes thank you for the effort, can you upload it to the Cloudron Gitlab anyway with those notes?

            We don't need the SMTP integration yet as the webhooks are sufficient to get it working.

            the postgress addon should suffice, no?

            what aspect of python django apps is a struggle?

            KubernetesK Offline
            KubernetesK Offline
            Kubernetes
            App Dev
            wrote on last edited by
            #9

            @robi Unfortunately there is nothing to upload to Gitlab as I just tinkered with the Docker Compose file of the project. It starts up and run, but I get the Bad Gateway error.

            I think the postgress addon should be usable.

            I still lack on understanding how django applications work from architectural point of view. It seems there is always a manage.py file, but I miss too much at the moment to use it.

            1 Reply Last reply
            3
            • LanhildL Online
              LanhildL Online
              Lanhild
              App Dev
              wrote on last edited by
              #10

              @Kubernetes I might take a quick look at it. Not sure I'll go very far, but I can contribute some notes/remarks at the least

              1 Reply Last reply
              4
              • LanhildL Online
                LanhildL Online
                Lanhild
                App Dev
                wrote on last edited by Lanhild
                #11

                Had been pretty busy with work, but I looked a bit at the software today.
                Here's a small list of notes;

                We don't need the SMTP integration yet as the webhooks are sufficient to get it working.

                SMTP could be used for logging in, as there is the possibility of sending a "magic email link" for the login process.

                postgres addon is indeed needed as the application database.

                Everything related to configuration is managed through environment variables.

                I've noticed that an initial superuser needs to be created. Not sure if it can be created directly through the app's UI, but otherwise a script in the code is provided for this specific purpose.

                As for the actual startup process, I'm not sure how we can do it. It seems like uwsgi is used to start the server part of the application and run migrations, etc.

                1 Reply Last reply
                2
                • LanhildL Online
                  LanhildL Online
                  Lanhild
                  App Dev
                  wrote on last edited by Lanhild
                  #12

                  I've started a package, not sure I'll be able to go further than that though. Anyway, so far I've managed to get the UI up and running, but there is an error with the database connection.

                  https://github.com/Lanhild/healthchecks-cloudron

                  Don't hesitate to ask if there's any questions/needs

                  LanhildL 1 Reply Last reply
                  5
                  • LanhildL Lanhild

                    I've started a package, not sure I'll be able to go further than that though. Anyway, so far I've managed to get the UI up and running, but there is an error with the database connection.

                    https://github.com/Lanhild/healthchecks-cloudron

                    Don't hesitate to ask if there's any questions/needs

                    LanhildL Online
                    LanhildL Online
                    Lanhild
                    App Dev
                    wrote on last edited by
                    #13

                    @Lanhild You might need to chmod +x the start script manually

                    KubernetesK 1 Reply Last reply
                    1
                    • LanhildL Lanhild

                      @Lanhild You might need to chmod +x the start script manually

                      KubernetesK Offline
                      KubernetesK Offline
                      Kubernetes
                      App Dev
                      wrote on last edited by
                      #14

                      @Lanhild Thank your very much for your efforts! Great work what you have done. I see that you replaced the critical paths directly in the source. Not sure if that might become a problem in future releases. Probably it would be easier to use symlinks instead of replacing the paths in the source.

                      When you chmod +x start.sh before packaging the execution bit should be make it into the docker image. If you do

                      RUN chmod +x start.sh
                      

                      in your Dockerfile right after you COPY it, it should work, too.

                      1 Reply Last reply
                      3
                      • T Offline
                        T Offline
                        threetrees3
                        wrote on last edited by
                        #15

                        Just wanted to give a bump for visibility and thank the contributors for getting things going for Healthchecks!

                        Unfortunately, am not able to contribute in the code wise

                        neoplexN 1 Reply Last reply
                        0
                        • T threetrees3

                          Just wanted to give a bump for visibility and thank the contributors for getting things going for Healthchecks!

                          Unfortunately, am not able to contribute in the code wise

                          neoplexN Offline
                          neoplexN Offline
                          neoplex
                          wrote on last edited by
                          #16

                          @threetrees3 said in Healthchecks.io -- Cron job monitoring:

                          Just wanted to give a bump for visibility and thank the contributors for getting things going for Healthchecks!

                          Unfortunately, am not able to contribute in the code wise

                          Same here, having healthchecks as an app would be awesome! I've got a few instances I am looking to migrate plus, this would make it super easy to spin up dedicated customer instances as needed 🙂

                          Thanks for all the great work!

                          1 Reply Last reply
                          0
                          • M Offline
                            M Offline
                            michaelpope
                            wrote on last edited by
                            #17

                            @neoplex Just as a heads up, I believe Uptime Kuma does a lot of the same stuff. If you're looking for something they currently have on Cloudron right now (there is not an import tool though...)

                            1 Reply Last reply
                            2
                            • neoplexN Offline
                              neoplexN Offline
                              neoplex
                              wrote on last edited by
                              #18

                              @michaelpope Uptime Kuma caters to a completely different use case, although, there is some overlap e.g. webhook reporting and notification. I am running several instances of both, Uptime Kuma and healthchecks in production 🙂

                              1 Reply Last reply
                              1
                              • neoplexN Offline
                                neoplexN Offline
                                neoplex
                                wrote on last edited by
                                #19

                                Shameless follow up 😉

                                1 Reply Last reply
                                0
                                • neoplexN Offline
                                  neoplexN Offline
                                  neoplex
                                  wrote last edited by
                                  #20

                                  Has anyone worked on this in silence? If not, will port it 🙂

                                  @girish This is as simple as smokeping in terms of implementation. Generally, are you guys interested to move it to the appstore, once tested and stable? Otherwise we'll package it as a community app and set up a build pipe.

                                  timconsidineT 1 Reply Last reply
                                  2
                                  • neoplexN neoplex

                                    Has anyone worked on this in silence? If not, will port it 🙂

                                    @girish This is as simple as smokeping in terms of implementation. Generally, are you guys interested to move it to the appstore, once tested and stable? Otherwise we'll package it as a community app and set up a build pipe.

                                    timconsidineT Offline
                                    timconsidineT Offline
                                    timconsidine
                                    App Dev
                                    wrote last edited by
                                    #21

                                    @neoplex I'm tempted to say that packaging it as a community app is not a separate approach to AppStore, it's a stage along the road. Getting it in use by Cloudron users via a Community App builds the case for it to be adopted in the AppStore.

                                    Just my opinion.

                                    Indie app dev, scratching my itches, lover of Cloudron PaaS, communityapps.appx.uk

                                    1 Reply Last reply
                                    4
                                    • girishG Offline
                                      girishG Offline
                                      girish
                                      Staff
                                      wrote last edited by
                                      #22

                                      Yes, if there is broad community interest in the app, we will work with the community app packager and try to get it into the App Store. In the meantime, community apps are a great way to have a package that you have a need for available and tested by others.

                                      1 Reply Last reply
                                      1

                                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                      With your input, this post could be even better 💗

                                      Register Login
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      • Login

                                      • Don't have an account? Register

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Categories
                                      • Recent
                                      • Tags
                                      • Popular
                                      • Bookmarks
                                      • Search