pyupio / statuspage
- воскресенье, 13 марта 2016 г. в 16:08:13
Python
A statuspage generator that lets you host your statuspage for free on Github.
A statuspage generator that lets you host your statuspage for free by Github. Uses issues to display incidents and labels for severity.
See a real status page generated by this at status.pyup.io or a demo site
You'll need to create an GitHub API token. Go to your personal settings page on GitHub and locate
the Personal access tokens
tab on the left. Click on Generate new token
and give it a description. Make
sure to check the public_repo
scope. Copy the token somewhere safe, you won't be able to see it
again once you leave the page.
curl -L https://github.com/pyupio/statuspage/raw/master/dist/statuspage_osx > /usr/local/bin/statuspage
chmod +x /usr/local/bin/statuspage
curl -L https://github.com/pyupio/statuspage/raw/master/dist/statuspage_linux > /usr/local/bin/statuspage
chmod +x /usr/local/bin/statuspage
To create a new status page, run
statuspage create --token=<yourtoken>
Name: mystatuspage
Systems, eg (Website,API): Website, CDN, API
You'll be prompted for the name and the systems you want to show a status for.
The command takes a couple of seconds to run. Once ready, it will output the URLs to the issue tracker and your new status page
Create new issues at https://github.com/<login>/mystatuspage/issues
Visit your new status page at https://<login>.github.com/mystatuspage/
To create a new issue, go to your newly created repo and click on New Issue
.
Click on the cog icon at labels on the right. What labels you choose next will tell the generator about the affected system(s) and the severity. Your system's labels are all black.
Add a systems label, eg. Website
and pick a severity eg. major outage
and add them to the issue.
Now, fill in the title, leave a comment and click on Submit new issue
.
Go back to your commandline and type:
statuspage update --token=<yourtoken>
Name: mystatuspage
This will update your status page and show a major outage on your Website.
If you change the issue (eg. when you add a new label, create a comment or close the issue), you'll
need to run statuspage update
again.
In order to create/update a status page for an organization, add the name of the organization to
the --org
flag, e.g.:
statuspage create --org=my-org --name=..
Please note: You need to have the proper permissions to create a new repository for the given organization.
Important: All customizations have to happen in the gh-pages
branch. If you are using the
command line, make sure to
git checkout gh-pages
or, on the website, select the gh-pages
branch before editing things.
The template is fully customizable, edit template.html
.
Add a logo.png
to your repo's root and change template.html
to point to that file.
CSS is located at style.css
in the root directory. Just edit it and commit the file.
If you want to use your own domain to host your status page, you'll need to create a CNAME file in your repository and set up a CNAME record pointing to that page with your DNS provider.
If you have e.g. the domain mydomain.com
, your GitHub username is myusername
and you want
your status page to be reachable at status.mydomain.com
Create a CNAME
file in the root of your repository
status.mydomain.com
Go to your DNS provider and create a new CNAME record pointing to your
Name Type Value
status CNAME myusername.github.io
See Using a custom domain with GitHub Pages for more info.