Skip to main content

gcmon - zero-overhead GC monitoring for Python

PyPI CI Python Version License

gcmon watches a running Python process's garbage collector from outside the process — no code changes, no callbacks, no overhead. Export to Chrome Trace, Perfetto, or JSONL; query with PerfettoSQL. Requires CPython 3.15+.

Requires CPython 3.15+ for the monitored process and the gcmon process, built from the same source. See Limitations for details.

Why gcmon?

Python's garbage collector can introduce unpredictable pauses in applications. The standard library provides gc.get_stats() for aggregate collection counters and gc.callbacks for per-event hooks, but both run inside the target process: callbacks add execution overhead that distorts timing, while gc.get_stats() only exposes cumulative counters with no per-pause resolution. Neither can monitor a process without modifying its code.

gcmon reads GC statistics directly from a target process's memory using platform-specific memory access APIs. The target process is never paused (GC statistics are written to a ring buffer and read as a whole), so there is zero in-process overhead and no code changes required.

Use it to profile GC pause times, debug memory leaks, or integrate GC metrics into benchmarks.

Features

  • Real-time GC monitoring - Track garbage collection events in running Python processes without in-process overhead
  • Multiple export formats - Chrome Trace Event, Perfetto binary protobuf, JSONL file, and JSONL to stdout (examples)
  • CLI - Monitor processes or run scripts with GC monitoring (usage)
  • Pyperf hook integration - Seamlessly integrate with pyperf benchmarks (pyperf hook)

When to Use

Use gcmon when you want to:

  • Profile GC pause times in production or staging without modifying application code
  • Measure GC impact on latency-sensitive services (APIs, real-time systems)
  • Correlate GC activity with benchmark results via the pyperf hook
  • Track live object count trends over time across running processes
  • Debug intermittent latency spikes suspected to be GC-related

Use something else when you need to:

  • Coarse GC activity tagging in CPU profiles — use austin with -g (no per-pause timing or heap data)
  • In-process GC callbacks (e.g., triggering actions on collection) — use gc.callbacks
  • Cumulative collection counters without per-pause detail — use gc.get_stats()
  • Monitor across different Python builds — gcmon requires the exact same binary (see Limitations)

Alternatives Comparison

Approach In-process? Per-pause resolution Zero code change Overhead
gc.callbacks Yes Yes No No — distorts timing
gc.get_stats() Yes No — cumulative only No Minimal
austin No Partial¹ Yes Minimal
gcmon No Yes Yes Yes — zero in-process cost

¹ austin's -g flag tags frames during GC activity but provides no per-pause timing or heap data.

How It Works

gcmon runs outside the target process. It reads GC statistics directly from the process's memory using platform-specific memory access APIs (available in CPython 3.15+).

For the pyperf hook integration, gcmon uses an external process model:

  1. The hook spawns the gcmon CLI as a separate process
  2. The external process reads the target process memory directly
  3. Results are written to a temporary JSON file
  4. The hook reads the JSON and injects metrics into pyperf metadata

This provides zero in-process overhead during benchmarks, crash isolation (gcmon crashes don't affect the target), and clean separation of concerns.

Limitations

The monitoring and monitored processes must use the exact same Python version and build. gcmon reads GC statistics directly from the target process's in-memory data structures, and the layout of these structures varies between Python versions and build configurations (fields, offsets, sizes). Mismatched binaries are rejected by Python runtime to prevent undefined behavior or crashes.

In practice, run both processes from the same virtualenv, container image, or pyenv/uv environment so they share a single Python binary.

Requirements

  • Python: CPython 3.15 or newer is required for both the monitoring and the monitored process.
  • Operating systems: Linux, macOS, and Windows are supported (the test matrix runs on ubuntu-latest, macos-latest, and windows-latest).
  • Process access: gcmon reads another process's memory using platform-specific APIs. On Linux and Windows no extra setup is needed. On macOS, the calling process must be authorized to read the target process memory.

Installation

pip install gcmon

# With optional extras
pip install gcmon[stats]      # High-accuracy statistics (see Statistics below)
pip install gcmon[cmdline]    # Process command line in Perfetto traces
pip install gcmon[stats,cmdline]  # Both extras

[stats] — High-Accuracy Statistics

Install DDSketch for memory-efficient, high-accuracy percentile tracking:

pip install gcmon[stats]

Without this extra, statistics use a fixed 1024-sample buffer. With it, all samples are tracked with 0.1% relative accuracy. See Statistics for details.

[cmdline] — Process Command Line in Perfetto

Install psutil to populate the cmdline field in Perfetto traces:

pip install gcmon[cmdline]

When this extra is installed, the Perfetto exporter reads the command line of each monitored process and includes it in the trace. This appears as a tooltip in the Perfetto UI, making it easier to identify processes in multi-process traces.

Without this extra, the cmdline field is omitted, but all other trace data is unaffected.

Quick Start

# Monitor a running process by PID (default Chrome Trace format)
gcmon 12345

# Run a Python script with GC monitoring
gcmon run -s my_script.py

# Monitor with custom output and statistics output
gcmon 12345 -o trace.json --stats

# Perfetto binary output
gcmon 12345 --format perfetto -o trace.pftrace

# Combine multiple traces (e.g. different runs or builds) into a single file
gcmon combine trace1.json trace2.json -o combined.json -n

What you'll see

By default gcmon stays quiet — the trace is written to a file and gcmon exits when the target ends or you press Ctrl+C. Use -v to follow progress:

$ gcmon 12345 -v
[INFO] monitoring PID 12345 (chrome trace  gcmon.json)
[INFO] collected 42 GC events so far
...
[INFO] stopping (Ctrl+C)
[INFO] wrote 42 events to gcmon.json

Open the output file in Perfetto UI — the built-in SQL panel lets you query the trace directly; see the examples below.

Example: Chrome Trace Output

Chrome Trace Example

Example: GC monitoring data visualized in Perfetto UI showing:

  • Process tracks with command line tooltips (requires [cmdline] extra)
  • GC Pause slices with sub-step breakdown (Mark Alive, Fill increment, Deduce Unreachable, etc.)
  • Per-gen G{gen} counter tracks (collected, candidates, duration, uncollectable)
  • Shared heap_size top-level counter
  • Processes lifetime track showing the duration of each monitored process

Perfetto features:

  • Counter Y-axis sharing: Same metric names share Y-axis across generations (e.g., G0 collected, G1 collected, G2 collected all on one axis).
  • Process ordering: Tracks are ordered by first event timestamp, so the earliest-starting process appears at the top.
  • Command line tooltips: Install the [cmdline] extra to populate process command lines, visible as tooltips in the UI.

This visualization helps you:

  • Identify GC pause patterns - See when and how long GC pauses occur
  • Track object growth - Monitor the live object count over time
  • Analyze collection efficiency - Compare GC-related metrics
  • Debug memory issues - Spot memory leaks or inefficient collection patterns
  • Correlate sub-step timing - See which GC phase (mark, sweep, finalize) dominates pause time

Note: Sub-step slices (Mark Alive, Fill increment, Deduce Unreachable, etc.) and their associated data are only available when using a custom CPython build with enhanced GC instrumentation. Standard CPython builds provide only the top-level GC Pause slices and counter data.

Example: JSONL Output

With --format jsonl (writes to file) or --format stdout (writes to terminal), each line is a JSON object representing one GC event:

{"pid": 12345, "tid": 0, "gen": 0, "iid": 1, "ts_start": 1700000000000000, "ts_stop": 1700000000001500, "heap_size": 1048576, "collections": 42, "collected": 120, "uncollectable": 0, "candidates": 300, "duration": 1.5}
{"pid": 12345, "tid": 0, "gen": 1, "iid": 2, "ts_start": 1700000000200000, "ts_stop": 1700000000235000, "heap_size": 2097152, "collections": 3, "collected": 85, "uncollectable": 1, "candidates": 150, "duration": 3.5}
Field Description Build
pid Process ID of the monitored target Standard
gen GC generation (0, 1, or 2) Standard
iid Interpreter ID (0 for the main interpreter) Standard
ts_start, ts_stop Event timestamps (nanoseconds) Standard
heap_size Number of live objects at event time Standard
collections Cumulative collection count for this generation Standard
collected Objects collected in this event Standard
uncollectable Objects that could not be collected Standard
candidates Candidate objects for collection Standard
duration Pause duration (milliseconds) Standard
increment_size Increment size for incremental GC Custom build
alive_size Objects marked alive (gen > 0) Custom build
finalized_garbage_count Objects finalized in this event Custom build
deleted_garbage_count Objects deleted in this event Custom build
clear_weakrefs_count Weakrefs cleared in this event Custom build

Note: Fields marked Custom build require a CPython build with enhanced GC instrumentation — see the Example: Chrome Trace Output note above.

CLI Usage

The gcmon command uses subcommands (monitor, run, combine). If no subcommand is given, monitor is used by default.

monitor

Monitor a running process by PID.

# Monitor a process until interrupted (Chrome format)
gcmon 12345
# or:
gcmon monitor 12345

# Monitor with custom output file
gcmon 12345 -o gc_trace.json

# Monitor for a specific duration with verbose output
gcmon 12345 -d 30 -v

# High-frequency monitoring
gcmon 12345 --output trace.json --rate 0.01

run

Run a Python script or module with GC monitoring enabled.

Important: All options and arguments after -s/--script or -m/--module are passed verbatim to the target — they are not interpreted by gcmon. Place gcmon options before the target.

# Run a script
gcmon run -s my_script.py

# Run a module (like python -m)
gcmon run --stats --table-format md -m test test_gc -v

# Pass arguments to the script; everything after -s goes to the target
gcmon run -s benchmark.py --iterations 1000 --verbose

# Run a module with GC monitoring options
gcmon run --format jsonl -o trace.jsonl --stats -m http.server 8000

You must specify exactly one of -s/--script or -m/--module.

Options for monitor and run

Option Applies to Description Default
pid (required) monitor Process ID to monitor -
-s, --script <path> run Python script path to run -
-m, --module <name> run Module name to run (like python -m) -
-o, --output both Output file path for trace data gcmon.json (chrome), gcmon.pftrace (perfetto), gcmon.jsonl (JSONL)
-r, --rate both Polling rate in seconds 0.1
-d, --duration both Monitoring duration in seconds Until interrupted / script exits
-v, --verbose both Enable verbose output (-v for INFO, -vv for DEBUG) 0
--format both Output format: chrome (Chrome Trace Event), perfetto (Perfetto binary protobuf), jsonl (JSONL to file), or stdout (JSONL to stdout) chrome
--flush-threshold both Number of events to buffer before flushing 100
--stats both Show statistics table at end of monitoring (see Statistics) False
--table-format both Table format: plain or markdown/md plain

Environment Variables

All CLI options can be overridden via environment variables. CLI flags take precedence.

Variable Equivalent flag Description Default
GCMON_OUTPUT -o, --output Output file path for trace data gcmon.json (chrome), gcmon.pftrace (perfetto), gcmon.jsonl (JSONL)
GCMON_RATE -r, --rate Polling rate in seconds 0.1
GCMON_DURATION -d, --duration Monitoring duration in seconds Until interrupted / script exits
GCMON_VERBOSE -v, --verbose Verbose level (integer or truthy value) 0
GCMON_FORMAT --format Output format: chrome, perfetto, jsonl, or stdout chrome
GCMON_FLUSH_THRESHOLD --flush-threshold Number of events to buffer before flushing 100
GCMON_STATS --stats Enable statistics table (1, true, yes, on) False
GCMON_TABLE_FORMAT --table-format Table format: plain, md, or markdown plain

combine

Combine multiple trace files into a single trace, with optional per-PID timestamp normalization.

# Combine Chrome Trace files
gcmon combine trace1.json trace2.json -o combined.json

# Combine with timestamp normalization (each process starts at t=0)
gcmon combine trace1.json trace2.json -o combined.json -n

# Convert JSONL to Perfetto
gcmon combine trace1.jsonl --input-format jsonl --output-format perfetto -o combined.pftrace
Option Description Default
inputs (required) One or more input trace files -
-o, --output (required) Output file path for the combined trace -
--input-format Input format: chrome or jsonl chrome
--output-format Output format: chrome, jsonl, or perfetto chrome
-n, --normalize Normalize timestamps per PID so each process timeline starts at 0 False

Statistics

Use --stats to display a statistics table at the end of monitoring. The table reports GC pause durations (p50, p90, p95, p99) and counts per generation, with one row per monitored process plus an overall Total row.

Read it as: P99 is your tail latency (1 in 100 pauses is at least this long), Sum / duration tells you the GC time budget share, and Count × Avg shows how many pauses and how long they were on average. A P99 GC pause that exceeds your request SLO is a good starting point for tuning.

Example Output

$ gcmon 12345 --stats --table-format md

| PID   | Metric           | Count |     Sum |     Avg |     P50 |     P90 |     P95 |     P99 |
|-------|------------------|-------|---------|---------|---------|---------|---------|---------|
| Total | GC Pause(0)      |    42 |  35.200 |   0.838 |   0.720 |   1.500 |   1.800 |   2.400 |
|       | GC Pause(1)      |    18 |  72.000 |   4.000 |   3.500 |   6.800 |   7.500 |  10.200 |
|       | GC Pause(2)      |     5 | 125.000 |  25.000 |  22.000 |  38.000 |  42.000 |  50.000 |
|       |                  |       |         |         |         |         |         |         |
| 12345 | GC Pause(0)      |    42 |  35.200 |   0.838 |   0.720 |   1.500 |   1.800 |   2.400 |
|       | GC Pause(1)      |    18 |  72.000 |   4.000 |   3.500 |   6.800 |   7.500 |  10.200 |
|       | GC Pause(2)      |     5 | 125.000 |  25.000 |  22.000 |  38.000 |  42.000 |  50.000 |

Values shown in milliseconds. Metrics are reported per GC generation (0, 1, 2).

Without [stats] extra

By default, statistics are computed from an in-memory buffer of up to 1024 samples, with percentiles calculated exactly by sorting the buffered values. Once the buffer is full, older samples are discarded, so data is lost on long-running sessions.

With [stats] extra

Install the optional ddsketch dependency for high-accuracy, memory-efficient statistics:

pip install gcmon[stats]

This installs DDSketch, which:

  • Tracks all samples without a fixed buffer limit
  • Computes approximate quantiles with 0.1% relative accuracy
  • Uses constant memory regardless of monitoring duration

For long-running processes or high-frequency polling, the [stats] extra is recommended.

Pyperf Hook Integration

The gcmon package provides a pyperf hook for automatic GC metrics collection during benchmarks. The hook uses the same external-process model as the CLI.

Prerequisite: install pyperf first (pip install pyperf). pyperf auto-discovers the hook once gcmon is installed; pass --hook=gcmon to enable it for a benchmark.

Usage

# Run benchmark with GC monitoring
python my_benchmark.py --hook=gcmon

# Or using pyperf directly
pyperf timeit --hook=gcmon my_benchmark.py

# Save results with GC metrics
python my_benchmark.py --hook=gcmon -o benchmark_results.json

GC Metrics Collected

The hook collects and reports the following GC metrics in pyperf metadata:

  • gc_pause_gen_0_p99, gc_pause_gen_1_p99, gc_pause_gen_2_p99 - P99 GC pause duration by generation (microseconds)
  • gc_pause_gen_0_sum, gc_pause_gen_1_sum, gc_pause_gen_2_sum - Total GC pause time by generation (microseconds)
  • gc_pause_gen_0_count, gc_pause_gen_1_count, gc_pause_gen_2_count - Number of GC pauses by generation
  • gc_heap_size_p99 - P99 live object count across all samples

Example: Perfetto Trace Viewer for Pyperf Benchmarks

When you run a pyperf benchmark with the gcmon hook, you can visualize the GC activity alongside the benchmark execution in Perfetto:

Perfetto Pyperf Example

Example: Pyperf benchmark trace visualized in Perfetto showing:

  • Multiple benchmark worker processes running in parallel
  • GC Monitor process tracking memory events
  • Timeline view of benchmark execution with GC activity

This visualization helps you:

  • Correlate GC activity with benchmark performance - See how GC pauses affect benchmark timing
  • Identify performance outliers - Spot runs affected by GC pauses
  • Analyze parallel benchmark execution - Monitor multiple worker processes simultaneously
  • Debug benchmark variability - Understand sources of timing variation between runs

To generate traces for Perfetto:

export GCMON_PYPERF_HOOK_OUTPUT="gcmon_{bench_name}.jsonl"
# Run benchmark with GC monitoring and JSONL output
python my_benchmark.py --hook=gcmon --inherit-environ=GCMON_PYPERF_HOOK_OUTPUT -p 5

# Open in Perfetto UI (https://ui.perfetto.dev)

--inherit-environ is needed because pyperf isolates worker environments by default; it tells pyperf to pass GCMON_PYPERF_HOOK_OUTPUT from the parent shell to worker subprocesses so the hook writes to the intended file.

Environment Variables

Variable Description Default
GCMON_PYPERF_HOOK_OUTPUT Output path for the combined GC trace file (JSONL). Supports {bench_name} and {pid} substitution. gcmon_{bench_name}_combined_{pid}.jsonl
GCMON_PYPERF_HOOK_TEMP_DIR Directory for temporary JSONL files written during monitoring. System temp directory
GCMON_PYPERF_HOOK_VERBOSE Enable verbose logging from the hook. Accepts 1, yes, on, or true (case-insensitive). Disabled
GCMON_PYPERF_HOOK_CONTROL_TIMEOUT Timeout (seconds) for the hook to connect to the control plane. 10.0

Advanced Usage

Programmatic Control

If you start your app with gcmon run or gcmon monitor, the control plane API lets you programmatically start, stop, and annotate GC monitoring from within your application.

Import and Setup

from gcmon.control.control_client import ControlClient

# Create a client — no address needed, auto-discovered from environment
client = ControlClient()

Start/Stop Monitoring

Control when GC monitoring is active:

# Skip monitoring during setup
client.stop_monitoring()
# ... setup code ...
client.start_monitoring()

# Now GC events are tracked

Context Manager

Temporarily pause monitoring for a block of code:

with client.pause_monitoring():
    # GC monitoring is paused here
    # ... code that shouldn't be monitored ...
# Monitoring automatically resumes

Custom Instant Messages

Add application-specific markers to your trace:

client.instant_msg("request_start")
# ... handle request ...
client.instant_msg("request_end")

These messages appear as instant events in the trace viewer, helping you correlate GC activity with application behavior.

When to Use

  • Skip setup/teardown: Avoid monitoring during initialization or cleanup phases that aren't relevant to your analysis.
  • Focus on specific phases: Monitor only the critical sections of your application (e.g., request handling, batch processing).
  • Correlate with application events: Add custom markers to understand how GC pauses relate to specific operations (database queries, API calls, etc.).
  • Dynamic control: Enable/disable monitoring based on runtime conditions (e.g., only monitor during peak load).

Prerequisites

The control plane is only available if you start your app with gcmon run or gcmon monitor. Standalone processes cannot use the control plane.

Trace Analysis with Perfetto SQL

When you export traces in Perfetto format (.pftrace), you can use Perfetto's SQL query interface to perform advanced analysis beyond what the UI provides. PerfettoSQL extends SQLite's SQL dialect — any query valid in SQLite also works in PerfettoSQL.

The trace data is stored in a structured schema that you can query directly.

Accessing the SQL Interface

  1. Open your .pftrace file in Perfetto UI
  2. Press Ctrl+Space (or Cmd+Space on Mac) to open the SQL query panel
  3. Enter your SQL query and press Run

Understanding the Schema

gcmon traces use the standard Perfetto schema:

  • slice table: Contains slice events (GC pauses, sub-steps)
    • name: Event name (e.g., "GC Pause (gen=0)")
    • ts: Start timestamp (nanoseconds)
    • dur: Duration (nanoseconds)
    • arg_set_id: Reference to arguments/annotations
  • counter table: Contains counter values (live object count, collected objects, etc.)
    • track_id: Reference to the counter track
    • ts: Timestamp (nanoseconds)
    • value: Counter value
  • counter_track table: Contains counter track metadata
    • id: Track ID
    • name: Track name (e.g., "G0 collected", "heap_size")
  • process_track / thread_track: Contains process/thread information
    • id: Track ID
    • pid / tid: Process/thread ID

Example: Replicating the Stats Table

The --stats CLI option produces a summary table at runtime. You can replicate this analysis using SQL:

-- GC pause statistics
SELECT
name,
    COUNT(dur) AS count,
    ROUND(SUM(dur) / 1e6, 2) as dur_ms,
    ROUND(AVG(dur) /1e6, 4) AS avg_ms,
    -- Calculate P50, P90, and P99 in milliseconds
    ROUND(PERCENTILE(dur, 50) / 1e6, 4) AS P50_dur_ms,
    ROUND(PERCENTILE(dur, 90) / 1e6, 4) AS P90_dur_ms,
    ROUND(PERCENTILE(dur, 95) / 1e6, 4) AS P95_dur_ms,
    ROUND(PERCENTILE(dur, 99) / 1e6, 4) AS P99_dur_ms
FROM slice
WHERE category IS NOT NULL
GROUP BY name
ORDER BY IIF(parent_id IS NULL, 0, 1), name

This query:

  • Filters for GC pause slices
  • Calculates count, sum, average, and percentiles (p50, p90, p95, p99)
  • Groups results by metric name

Tips for Writing Queries

  • Timestamps are in nanoseconds: Divide by 1e6 for milliseconds, 1e9 for seconds
  • Use EXTRACT_ARG: Access slice annotations (e.g., EXTRACT_ARG(arg_set_id, 'heap_size'))
  • Filter by name: Use LIKE patterns to match specific event types
  • Join tracks: Connect slices/counters to process/thread information via track IDs
  • Use window functions: LAG(), LEAD(), ROW_NUMBER() for time-series analysis

Further Reading

See Also

Related tools that solve adjacent (but different) problems:

  • tracemalloc — track per-object allocations (in-process, not GC)
  • memray — high-resolution memory profiler (in-process, allocations)
  • py-spy — sampling CPU profiler (out-of-process, CPU frames not GC)
  • austin — sampling CPU/memory profiler (out-of-process, supports -g for GC tagging)
  • Perfetto UI — the trace viewer used by gcmon's Perfetto exporter

License

MIT License - see LICENSE for details.

Contributing

Bug reports and pull requests are welcome at GitHub.

Download files

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

Source Distribution

gcmon-0.3.1.tar.gz (62.1 kB view details)

Uploaded Source

Built Distribution

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

gcmon-0.3.1-py3-none-any.whl (69.5 kB view details)

Uploaded Python 3

File details

Details for the file gcmon-0.3.1.tar.gz.

File metadata

  • Download URL: gcmon-0.3.1.tar.gz
  • Upload date:
  • Size: 62.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gcmon-0.3.1.tar.gz
Algorithm Hash digest
SHA256 4ca411e12901371e48f5ef6239963b0e33ebc8f84a102ace3997fbe3835f01df
MD5 41d266d7a7dac4e3e6200a7bcca1389b
BLAKE2b-256 7f39578f8d4a650713c208f0a1b403f34a7bc0addb91459d2b7402d1c8943eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for gcmon-0.3.1.tar.gz:

Publisher: release.yml on sergey-miryanov/gcmon

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

File details

Details for the file gcmon-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: gcmon-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 69.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gcmon-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 657e8e969e052ce24450644d20a2042d819c7884791e8ea7a69d95d541eb77f6
MD5 94172688bee9cb137f3bc831001e1668
BLAKE2b-256 445418b207c8b629320ad77ab91575c2d3fd0e56c19090cb0dd8e9bcc616b877

See more details on using hashes here.

Provenance

The following attestation bundles were made for gcmon-0.3.1-py3-none-any.whl:

Publisher: release.yml on sergey-miryanov/gcmon

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

Release history Release notifications | RSS feed

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

This release

0.3.1 This release

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page