diff options
author | van Hauser <vh@thc.org> | 2021-12-09 14:39:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 14:39:00 +0100 |
commit | caf67efab14c5255fdd0ac7fb59dfaa64e6f36f4 (patch) | |
tree | c2c609fbbf9851f55813bae1842b33ac3a0c7a6c /docs/rpc_statsd.md | |
parent | db360332c4cf92c3b90d8dfab9292763e677aebf (diff) | |
parent | 3b287b7b0c669bae5961f7c8ebc1c5dd1a2842f7 (diff) | |
download | afl++-caf67efab14c5255fdd0ac7fb59dfaa64e6f36f4.tar.gz |
Merge pull request #1200 from AFLplusplus/rename
Rename
Diffstat (limited to 'docs/rpc_statsd.md')
-rw-r--r-- | docs/rpc_statsd.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/rpc_statsd.md b/docs/rpc_statsd.md index 003b9c79..d8f0fb67 100644 --- a/docs/rpc_statsd.md +++ b/docs/rpc_statsd.md @@ -26,7 +26,7 @@ StatsD allows you to receive and aggregate metrics from a wide range of applications and retransmit them to a backend of your choice. From AFL++, StatsD can receive the following metrics: -- cur_path +- cur_item - cycle_done - cycles_wo_finds - edges_found @@ -34,18 +34,18 @@ From AFL++, StatsD can receive the following metrics: - execs_per_sec - havoc_expansion - max_depth -- paths_favored -- paths_found -- paths_imported -- paths_total +- corpus_favored +- corpus_found +- corpus_imported +- corpus_count - pending_favs - pending_total - slowest_exec_ms - total_crashes -- unique_crashes -- unique_hangs +- saved_crashes +- saved_hangs - var_byte_count -- variable_paths +- corpus_variable Depending on your StatsD server, you will be able to monitor, trigger alerts, or perform actions based on these metrics (for example: alert on slow exec/s for a |