Skip to main content

Rocket League replay parsing and analysis.

Project description

sprocket-rl-parser

An open-source project for decompiling and analyzing Rocket League replays. It exposes a Python API that returns protobuf metadata, JSON output, and a pandas DataFrame for frame-by-frame analysis.

Install

pip install sprocket-rl-parser

Quickstart (Python)

import carball

analysis_manager = carball.analyze_replay_file("path/to/replay.replay")

# Protobuf game metadata + stats
proto_game = analysis_manager.get_protobuf_data()

# JSON-friendly dict
json_game = analysis_manager.get_json_data()

# Frame-by-frame data
data_frame = analysis_manager.get_data_frame()

CLI

The package installs a carball command for one-off parsing.

carball --input path/to/replay.replay --json output.json --proto output.proto --gzip frames.gzip

Output formats

Protobuf

analysis_manager.get_protobuf_data() returns a game_pb2.Game object. This is the authoritative metadata and stats output (players, teams, events, goals, etc.). The schema lives under api/ in this repo.

JSON

analysis_manager.get_json_data() returns a JSON-compatible dict matching the protobuf schema. Use analysis_manager.write_json_out_to_file() to persist the output.

DataFrame (frame-by-frame)

analysis_manager.get_data_frame() returns a pandas DataFrame with a MultiIndex column structure:

  • The index is the sequential frame number.
  • Columns are tuples like (object, field) where object is game, ball, or a player name.

Example: pull ball positions and a single player's positions.

ball = data_frame["ball"][["pos_x", "pos_y", "pos_z"]]
player = data_frame["SomePlayerName"][["pos_x", "pos_y", "pos_z"]]

You can also persist the DataFrame with gzip and read it back:

import gzip
from carball.analysis.utils.pandas_manager import PandasManager

with gzip.open("frames.gzip", "wb") as f:
    analysis_manager.write_pandas_out_to_file(f)

with gzip.open("frames.gzip", "rb") as f:
    df = PandasManager.read_numpy_from_memory(f)

Advanced options

analyze_replay_file supports additional flags:

  • analysis_per_goal=True to analyze each goal segment independently.
  • calculate_intensive_events=True for extra stats that are more expensive to compute.
  • clean=False to skip data cleanup if you want rawer frame data.
analysis_manager = carball.analyze_replay_file(
    "path/to/replay.replay",
    analysis_per_goal=False,
    calculate_intensive_events=True,
    clean=True,
)

Troubleshooting

  • If you see missing or invalid data, try calculate_intensive_events=False and clean=True first.
  • For reproducible analysis, make sure you are parsing the raw .replay file and not a previously decompiled JSON.

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

sprocket_rl_parser-1.2.37-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.37-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.37-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.37-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.37-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.37-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.37-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.37-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.37-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.37-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.37-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.37-cp39-cp39-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.37-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.37-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.37-cp38-cp38-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sprocket_rl_parser-1.2.37-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d986bfe52a1d7f883a28757d3229896adedb0f9d4bf7d465baa61a965e1862b
MD5 49412327f5dd78b2aedff6d25a0a8f18
BLAKE2b-256 f711b125a7430e7d7e5ec49dbe35374da2410c07674ef583eb35aacde8d670ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8808d4d0b56fcfcf93cf3addbd7560e007c321fb57237f0c1fa7cd62aeeced6b
MD5 9334d530a8ef3771e1d095791c143717
BLAKE2b-256 79eeea3d7052568f0d72472b6701a04641629cce90d9d38eca159aa2ccd16ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f87d027ae596a8482ba4f5fe12013c57d217a0a80c72893e015125fbd0884ea
MD5 449af6564ff32c285144622c2496351e
BLAKE2b-256 a64ee88c3fe39b78a5e2331f59e71a10fcd2e369151fa90abb47fc428dacd7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f0fca79ac4f1b8a55909fbb6f5316ade4caec87224f88869d6cf88f03acb7be
MD5 4a4ad2244039c04003f825ba6dd2da0a
BLAKE2b-256 e6cd8d70fdc1981fbffacf8d137a18b93c0df2a6356e14af09128c0de623e3da

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09006127fce408a3d2d893649266923f7bad04f00cc28c109c52e774ebf81bcf
MD5 b919bc2353b4c54b2d9076824248d8aa
BLAKE2b-256 03e0ec43770691565186a81de03731ab489d3dcbce63c26990f4a428d9e33b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a7a38b8c254db8c167cc186538acdf138cc0d731da9d93e496519ce1c4b1fe8
MD5 66a1f4da1c1c2595744ccea3f7bb8880
BLAKE2b-256 d4ea1bcd87d8e3077c1f547e54483c3504e311d75a75e415f01bfce076d0d02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 622aa86f6a93af498cf3e41501d2c3e33404937876b4d395b611119492f53df4
MD5 1131e33f347a815636e4391cc6967d30
BLAKE2b-256 d818963709ef82cffa2a8c487e675a992e1ff9e3303b0bcf0c2866a12fddeffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 050163577bb6ee8b734682a45d2694766affcf76621e9f67e2618b6a8db1dd29
MD5 2e099eb484d1167b6d1d241acae12b4c
BLAKE2b-256 720428f482fcb9390208fda84f4554ceffce9a4dbf5192d05ac03e4e5dc53968

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01c23fc9cd293100b525b13dcebb92c8840db864165d8903f3ebab1ee8c15c90
MD5 485ffa6f921df7ebfafcd5f53048a8bb
BLAKE2b-256 c51e08afde53f5802f7a9556723ee22798d3e7dafb66b8c85469f59805304265

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9ebfec628d8ea2b46d08ec8bc138c3b9cbcd3c167494d9ec5db8afe3af31c3c
MD5 ab53cee11ac767b00e37174a9762586d
BLAKE2b-256 355c4218104aec7ecd6f406d8a4b50cd2cc51f547b7a8df54fbe98797dfac79d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab3a945c5229c3c89b950be237c2f52b993a467037679d881142e6275bc2d077
MD5 017cf27669091d9696cfa55c8ebee317
BLAKE2b-256 11280fa49ef1a7118c81de23684cf59f029255c2569700d6c31d538b6075731a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92599226772d968b833eb7f4c293fcd508d2a9217c1341657360d095de8ebf9b
MD5 5b08510906946b1883d86d97ec8b3475
BLAKE2b-256 d412e26478773447a9fb5195f6fc50bb77b3ab4777ecc1ea11f8beadab048668

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0eac31fd6dd12ea21afe1e37fd7f0795f44b8327a4bfd5f4b7767b30e3625d0
MD5 fadf2f53dcac7cecca5337fc67be7770
BLAKE2b-256 2c3eda421ea9e435f33df146e8a6a8b5ef9dcb47553c685bfa888aac2f4a736f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a966a2cfa96b46fc784ff652be69fc423f4502f02c8e155820ae81c1f71b56f5
MD5 9bbb3b520c259b47af356a27c15c0262
BLAKE2b-256 6a9f73b663dab362f752c44f2f30ab401e9dd0031a507f8080f017b200ae53d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56916d9b9e3a294951738bb2e9c8ea6a033b752dfe7b1225aa0c672d69603226
MD5 26b5c9d7d57217253b601574fe06e3e9
BLAKE2b-256 800508c2181ef003ee696282acbe30589006edd22b1d2b02d0a80fd6c4a5c5b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b734620c57be02f542be0aad40d54d23a65b25a8147b83ad8b40bbc6ea30c895
MD5 72d6ca7390d76f20b4f7a5870ac4c445
BLAKE2b-256 30342216f8877233b1750d31e2e9975f003f6a917aae47806d360b750284dcd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6e2755c012b6981adf40268f5a085f1b088d80c51b62a4750e9239b0732539c4
MD5 19717621e55508017dbc7e0435e40df2
BLAKE2b-256 09c916a95ef0c11fac0221dd6e87b1b390c33a631af3e7e779ed439104d7a876

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp38-cp38-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 872a41d08befd18a1400b0b63e3814d6bfe0c5697302278794db7b0eb5174508
MD5 45ae827b8fefec2928e8d699c77d4971
BLAKE2b-256 fa066869aa3f7300b1949f71eabddba876b02166b9ee761e88c8f151b4ddb732

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 595f924d4ffdaa9966af39610e1f94aba9ed39fc0a389ef7500dce120beea381
MD5 255df468e40c45627b8a98f6fc3c0048
BLAKE2b-256 9d16fe877b771b50ab46b8676f23a584bb53929795e676ba3e2a3f8a2273b210

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sprocket_rl_parser-1.2.37-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.37-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03cd67f69d745b98ca058d3ef785ad2a3323eeb062ad9f3b5ce7a9f441810900
MD5 c85d628bf6dddef88524339ef30c4be8
BLAKE2b-256 c937e0365cf9f7cab636483cf9c991759c3893f45ac128db9c8f333e181b6c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.37-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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