Skip to main content

An extremely fast Python linter and code formatter, written in Rust.

Project description

Ruff

Ruff image image image Actions status Discord

Docs | Playground

An extremely fast Python linter and code formatter, written in Rust.

Shows a bar chart with benchmark results.

Linting the CPython codebase from scratch.

  • ⚡️ 10-100x faster than existing linters (like Flake8) and formatters (like Black)
  • 🐍 Installable via pip
  • 🛠️ pyproject.toml support
  • 🤝 Python 3.12 compatibility
  • ⚖️ Drop-in parity with Flake8, isort, and Black
  • 📦 Built-in caching, to avoid re-analyzing unchanged files
  • 🔧 Fix support, for automatic error correction (e.g., automatically remove unused imports)
  • 📏 Over 800 built-in rules, with native re-implementations of popular Flake8 plugins, like flake8-bugbear
  • ⌨️ First-party editor integrations for VS Code and more
  • 🌎 Monorepo-friendly, with hierarchical and cascading configuration

Ruff aims to be orders of magnitude faster than alternative tools while integrating more functionality behind a single, common interface.

Ruff can be used to replace Flake8 (plus dozens of plugins), Black, isort, pydocstyle, pyupgrade, autoflake, and more, all while executing tens or hundreds of times faster than any individual tool.

Ruff is extremely actively developed and used in major open-source projects like:

...and many more.

Ruff is backed by Astral. Read the launch post, or the original project announcement.

Testimonials

Sebastián Ramírez, creator of FastAPI:

Ruff is so fast that sometimes I add an intentional bug in the code just to confirm it's actually running and checking the code.

Nick Schrock, founder of Elementl, co-creator of GraphQL:

Why is Ruff a gamechanger? Primarily because it is nearly 1000x faster. Literally. Not a typo. On our largest module (dagster itself, 250k LOC) pylint takes about 2.5 minutes, parallelized across 4 cores on my M1. Running ruff against our entire codebase takes .4 seconds.

Bryan Van de Ven, co-creator of Bokeh, original author of Conda:

Ruff is ~150-200x faster than flake8 on my machine, scanning the whole repo takes ~0.2s instead of ~20s. This is an enormous quality of life improvement for local dev. It's fast enough that I added it as an actual commit hook, which is terrific.

Timothy Crosley, creator of isort:

Just switched my first project to Ruff. Only one downside so far: it's so fast I couldn't believe it was working till I intentionally introduced some errors.

Tim Abbott, lead developer of Zulip:

This is just ridiculously fast... ruff is amazing.

Table of Contents

For more, see the documentation.

  1. Getting Started
  2. Configuration
  3. Rules
  4. Contributing
  5. Support
  6. Acknowledgements
  7. Who's Using Ruff?
  8. License

Getting Started

For more, see the documentation.

Installation

Ruff is available as ruff on PyPI:

pip install ruff

You can also install Ruff via Homebrew, Conda, and with a variety of other package managers.

Usage

To run Ruff as a linter, try any of the following:

ruff check                          # Lint all files in the current directory (and any subdirectories).
ruff check path/to/code/            # Lint all files in `/path/to/code` (and any subdirectories).
ruff check path/to/code/*.py        # Lint all `.py` files in `/path/to/code`.
ruff check path/to/code/to/file.py  # Lint `file.py`.
ruff check @arguments.txt           # Lint using an input file, treating its contents as newline-delimited command-line arguments.

Or, to run Ruff as a formatter:

ruff format                          # Format all files in the current directory (and any subdirectories).
ruff format path/to/code/            # Format all files in `/path/to/code` (and any subdirectories).
ruff format path/to/code/*.py        # Format all `.py` files in `/path/to/code`.
ruff format path/to/code/to/file.py  # Format `file.py`.
ruff format @arguments.txt           # Format using an input file, treating its contents as newline-delimited command-line arguments.

Ruff can also be used as a pre-commit hook via ruff-pre-commit:

- repo: https://github.com/astral-sh/ruff-pre-commit
  # Ruff version.
  rev: v0.4.7
  hooks:
    # Run the linter.
    - id: ruff
      args: [ --fix ]
    # Run the formatter.
    - id: ruff-format

Ruff can also be used as a VS Code extension or alongside any other editor through the Ruff LSP.

Ruff can also be used as a GitHub Action via ruff-action:

name: Ruff
on: [ push, pull_request ]
jobs:
  ruff:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: chartboost/ruff-action@v1

Configuration

Ruff can be configured through a pyproject.toml, ruff.toml, or .ruff.toml file (see: Configuration, or Settings for a complete list of all configuration options).

If left unspecified, Ruff's default configuration is equivalent to the following ruff.toml file:

# Exclude a variety of commonly ignored directories.
exclude = [
    ".bzr",
    ".direnv",
    ".eggs",
    ".git",
    ".git-rewrite",
    ".hg",
    ".ipynb_checkpoints",
    ".mypy_cache",
    ".nox",
    ".pants.d",
    ".pyenv",
    ".pytest_cache",
    ".pytype",
    ".ruff_cache",
    ".svn",
    ".tox",
    ".venv",
    ".vscode",
    "__pypackages__",
    "_build",
    "buck-out",
    "build",
    "dist",
    "node_modules",
    "site-packages",
    "venv",
]

# Same as Black.
line-length = 88
indent-width = 4

# Assume Python 3.8
target-version = "py38"

[lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`)  codes by default.
select = ["E4", "E7", "E9", "F"]
ignore = []

# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

[format]
# Like Black, use double quotes for strings.
quote-style = "double"

# Like Black, indent with spaces, rather than tabs.
indent-style = "space"

# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false

# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"

Note that, in a pyproject.toml, each section header should be prefixed with tool.ruff. For example, [lint] should be replaced with [tool.ruff.lint].

Some configuration options can be provided via dedicated command-line arguments, such as those related to rule enablement and disablement, file discovery, and logging level:

ruff check --select F401 --select F403 --quiet

The remaining configuration options can be provided through a catch-all --config argument:

ruff check --config "lint.per-file-ignores = {'some_file.py' = ['F841']}"

To opt in to the latest lint rules, formatter style changes, interface updates, and more, enable preview mode by setting preview = true in your configuration file or passing --preview on the command line. Preview mode enables a collection of unstable features that may change prior to stabilization.

See ruff help for more on Ruff's top-level commands, or ruff help check and ruff help format for more on the linting and formatting commands, respectively.

Rules

Ruff supports over 800 lint rules, many of which are inspired by popular tools like Flake8, isort, pyupgrade, and others. Regardless of the rule's origin, Ruff re-implements every rule in Rust as a first-party feature.

By default, Ruff enables Flake8's F rules, along with a subset of the E rules, omitting any stylistic rules that overlap with the use of a formatter, like ruff format or Black.

If you're just getting started with Ruff, the default rule set is a great place to start: it catches a wide variety of common errors (like unused imports) with zero configuration.

Beyond the defaults, Ruff re-implements some of the most popular Flake8 plugins and related code quality tools, including:

For a complete enumeration of the supported rules, see Rules.

Contributing

Contributions are welcome and highly appreciated. To get started, check out the contributing guidelines.

You can also join us on Discord.

Support

Having trouble? Check out the existing issues on GitHub, or feel free to open a new one.

You can also ask for help on Discord.

Acknowledgements

Ruff's linter draws on both the APIs and implementation details of many other tools in the Python ecosystem, especially Flake8, Pyflakes, pycodestyle, pydocstyle, pyupgrade, and isort.

In some cases, Ruff includes a "direct" Rust port of the corresponding tool. We're grateful to the maintainers of these tools for their work, and for all the value they've provided to the Python community.

Ruff's formatter is built on a fork of Rome's rome_formatter, and again draws on both API and implementation details from Rome, Prettier, and Black.

Ruff's import resolver is based on the import resolution algorithm from Pyright.

Ruff is also influenced by a number of tools outside the Python ecosystem, like Clippy and ESLint.

Ruff is the beneficiary of a large number of contributors.

Ruff is released under the MIT license.

Who's Using Ruff?

Ruff is used by a number of major open-source projects and companies, including:

Show Your Support

If you're using Ruff, consider adding the Ruff badge to your project's README.md:

[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

...or README.rst:

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
    :target: https://github.com/astral-sh/ruff
    :alt: Ruff

...or, as HTML:

<a href="https://github.com/astral-sh/ruff"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" alt="Ruff" style="max-width:100%;"></a>

License

This repository is licensed under the MIT License

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ruff-0.4.7.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ruff-0.4.7-py3-none-win_arm64.whl (8.0 MB view details)

Uploaded Python 3Windows ARM64

ruff-0.4.7-py3-none-win_amd64.whl (8.6 MB view details)

Uploaded Python 3Windows x86-64

ruff-0.4.7-py3-none-win32.whl (7.8 MB view details)

Uploaded Python 3Windows x86

ruff-0.4.7-py3-none-musllinux_1_2_x86_64.whl (8.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

ruff-0.4.7-py3-none-musllinux_1_2_i686.whl (8.4 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

ruff-0.4.7-py3-none-musllinux_1_2_armv7l.whl (7.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

ruff-0.4.7-py3-none-musllinux_1_2_aarch64.whl (8.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

ruff-0.4.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

ruff-0.4.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (10.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

ruff-0.4.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

ruff-0.4.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (9.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

ruff-0.4.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (8.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

ruff-0.4.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

ruff-0.4.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

ruff-0.4.7-py3-none-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

ruff-0.4.7-py3-none-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file ruff-0.4.7.tar.gz.

File metadata

  • Download URL: ruff-0.4.7.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7.tar.gz
Algorithm Hash digest
SHA256 2331d2b051dc77a289a653fcc6a42cce357087c5975738157cd966590b18b5e1
MD5 deff92bef7f2fd2f3fd8229dc781a1fa
BLAKE2b-256 86fd37b826d297b29f8ed049f9739e111d0b8eb5268e47efc0f19462fb977b90

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-win_arm64.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 10f2204b9a613988e3484194c2c9e96a22079206b22b787605c255f130db5ed7
MD5 0a8d81ba1b29ff312a2bfb5dbae5c50a
BLAKE2b-256 fbe4174f07c5622df74cc8917b7c3c5eac92ca063e7728e95048010b7314e9df

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-win_amd64.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-win_amd64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 9e3ab684ad403a9ed1226894c32c3ab9c2e0718440f6f50c7c5829932bc9e054
MD5 1000fae991f335a7bf5a1a96da7d34c3
BLAKE2b-256 3b86278330ead9f978549130e582457d2a6edfaf0577d463bd589ed8cf9f084e

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-win32.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-win32.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-win32.whl
Algorithm Hash digest
SHA256 769e5a51df61e07e887b81e6f039e7ed3573316ab7dd9f635c5afaa310e4030e
MD5 5f518d62bb3ccb282f2519aed21421d4
BLAKE2b-256 2f579e7a6bc709063936d0c2b7ce20ee38c16adaab38034b1a5e80b71ec3f950

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13a1768b0691619822ae6d446132dbdfd568b700ecd3652b20d4e8bc1e498f78
MD5 e1c0cdbea9653b4aba8d260654d9e3bf
BLAKE2b-256 55dbd8d9a8f582ae0ea81181131ff8d092a5fb3e7e4b4781f4ddd51f0793bf4f

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9de9a6e49f7d529decd09381c0860c3f82fa0b0ea00ea78409b785d2308a567
MD5 15cacb8f38c6b28b5e8e96cf5eab372e
BLAKE2b-256 5fd3f9b2eb5f633790508e203f4d6574c23e3161d0fff4ca0bfe9da19e3e6e8c

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8874a9df7766cb956b218a0a239e0a5d23d9e843e4da1e113ae1d27ee420877a
MD5 9b71a28036090526aab98e86ca0293b0
BLAKE2b-256 0f773ad58c9fb2ea6390e2d29c3595119d86ac6fda8187f16e1e5b5066220c2e

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50e9651578b629baec3d1513b2534de0ac7ed7753e1382272b8d609997e27e83
MD5 e524f2cea0a4021ee451ea1f3899b5d9
BLAKE2b-256 58a46a2ece523f1d3ccd125b5f1db38a11fcaa252cc452d4c582e4cc27293ec6

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf5d818553add7511c38b05532d94a407f499d1a76ebb0cad0374e32bc67202
MD5 479b6192b356816c16fb6839bbc58200
BLAKE2b-256 c2ade8a251c07e67ef4f760e473ec612e42502a83f294fe44aca3aafb4e08f8b

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad1b20e66a44057c326168437d680a2166c177c939346b19c0d6b08a62a37589
MD5 b95d256c51b99d97f8603aa8f75dbdfd
BLAKE2b-256 f40154943fc17f4c3ebb256fd5ad5b2b6d19fb0676ee12968da91db6cf2409ff

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7c0083febdec17571455903b184a10026603a1de078428ba155e7ce9358c5f6
MD5 28c0c54a132a533db53b6a175bb2d8a4
BLAKE2b-256 7b55242f0cf3db7aacf8dcb402a25f901353f4f6f5f8c5e04542c64cfcb9b42c

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 fa4dafe3fe66d90e2e2b63fa1591dd6e3f090ca2128daa0be33db894e6c18648
MD5 95e3a27fc926735ac78919ebf575ae79
BLAKE2b-256 5d77e83c88d806be0bc57b9b376bb021cf154466127e382d39cb0efeb62e3f29

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07fc80bbb61e42b3b23b10fda6a2a0f5a067f810180a3760c5ef1b456c21b9db
MD5 12ab6cc8608149ae4888c5f336712bc4
BLAKE2b-256 7bede406117d88178b970eb1f363d9dd81d39e685be516fd65e722e3e37e76b0

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa9773c6c00f4958f73b317bc0fd125295110c3776089f6ef318f4b775f0abe4
MD5 262005cdfb3640de5e99417232ade38e
BLAKE2b-256 9c9ee59f95cb81ee84a47c143a630063030e2369d267cd118f76c06e5e209168

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59c3d110970001dfa494bcd95478e62286c751126dfb15c3c46e7915fc49694f
MD5 26058d40820f9461deba470013217511
BLAKE2b-256 775b46d3ffefafa5d7436352d1ca918122fe290c3cfbcb53c34aa67d338b3ac2

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ruff-0.4.7-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for ruff-0.4.7-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10f973d521d910e5f9c72ab27e409e839089f955be8a4c8826601a6323a89753
MD5 995051c4e1471191317e39db3e7c3002
BLAKE2b-256 d5d3023af8521e45d171746f5715dd98946fa5fbe24c4e99fe3f3ae689335224

See more details on using hashes here.

File details

Details for the file ruff-0.4.7-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ruff-0.4.7-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e089371c67892a73b6bb1525608e89a2aca1b77b5440acf7a71dda5dac958f9e
MD5 ee8d1bf37a4cb30f42fb4db1b3a066a3
BLAKE2b-256 e2e43274746201eb4d31f5846a07d40795eae0e5b6aeae8965a99b26af585a56

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page