gcmon - zero-overhead GC monitoring for Python
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
gcmonprocess, 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
austinwith-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:
- The hook spawns the
gcmonCLI as a separate process - The external process reads the target process memory directly
- Results are written to a temporary JSON file
- 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, andwindows-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
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_sizetop-level counter Processeslifetime 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 collectedall 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 oncegcmonis installed; pass--hook=gcmonto 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 generationgc_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:
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
- Open your
.pftracefile in Perfetto UI - Press
Ctrl+Space(orCmd+Spaceon Mac) to open the SQL query panel - Enter your SQL query and press
Run
Understanding the Schema
gcmon traces use the standard Perfetto schema:
slicetable: 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
countertable: Contains counter values (live object count, collected objects, etc.)track_id: Reference to the counter trackts: Timestamp (nanoseconds)value: Counter value
counter_tracktable: Contains counter track metadataid: Track IDname: Track name (e.g., "G0 collected", "heap_size")
process_track/thread_track: Contains process/thread informationid: Track IDpid/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
1e6for milliseconds,1e9for seconds - Use
EXTRACT_ARG: Access slice annotations (e.g.,EXTRACT_ARG(arg_set_id, 'heap_size')) - Filter by name: Use
LIKEpatterns 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-gfor 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ca411e12901371e48f5ef6239963b0e33ebc8f84a102ace3997fbe3835f01df
|
|
| MD5 |
41d266d7a7dac4e3e6200a7bcca1389b
|
|
| BLAKE2b-256 |
7f39578f8d4a650713c208f0a1b403f34a7bc0addb91459d2b7402d1c8943eef
|
Provenance
The following attestation bundles were made for gcmon-0.3.1.tar.gz:
Publisher:
release.yml on sergey-miryanov/gcmon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gcmon-0.3.1.tar.gz -
Subject digest:
4ca411e12901371e48f5ef6239963b0e33ebc8f84a102ace3997fbe3835f01df - Sigstore transparency entry: 2010065710
- Sigstore integration time:
-
Permalink:
sergey-miryanov/gcmon@0f2fa41c513f2b7a194e720f89295c7e1caca026 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/sergey-miryanov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f2fa41c513f2b7a194e720f89295c7e1caca026 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
657e8e969e052ce24450644d20a2042d819c7884791e8ea7a69d95d541eb77f6
|
|
| MD5 |
94172688bee9cb137f3bc831001e1668
|
|
| BLAKE2b-256 |
445418b207c8b629320ad77ab91575c2d3fd0e56c19090cb0dd8e9bcc616b877
|
Provenance
The following attestation bundles were made for gcmon-0.3.1-py3-none-any.whl:
Publisher:
release.yml on sergey-miryanov/gcmon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gcmon-0.3.1-py3-none-any.whl -
Subject digest:
657e8e969e052ce24450644d20a2042d819c7884791e8ea7a69d95d541eb77f6 - Sigstore transparency entry: 2010065853
- Sigstore integration time:
-
Permalink:
sergey-miryanov/gcmon@0f2fa41c513f2b7a194e720f89295c7e1caca026 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/sergey-miryanov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f2fa41c513f2b7a194e720f89295c7e1caca026 -
Trigger Event:
push
-
Statement type: