Skip to content

Commit

Permalink
rename store.hg. counters to store.sapling.
Browse files Browse the repository at this point in the history
Summary: These dynamic counters name are prefix with store.hg. Let's rename them to store.sapling. to be consistent with other ODS counters.

Reviewed By: kmancini

Differential Revision: D57748496

fbshipit-source-id: 84b151b97d9cf94b3c20bbb71f994a588cc352e1
  • Loading branch information
kavehahmadi60 authored and facebook-github-bot committed Jun 1, 2024
1 parent 132a986 commit 3ca2d02
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions eden/common/telemetry/RequestMetricsScope.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ class RequestMetricsScope {
static folly::StringPiece stringOfRequestMetric(RequestMetric metric);

/**
* stages of requests that are tracked, these represent where an request is in
* the process (for example an request could be queued or live)
* stages of requests that are tracked, these represent where any request is
* in the process (for example any request could be queued or live)
*/
enum RequestStage {
// represents any request that has been requested but not yet completed
// (request in this stage could be in the queue, live, or in the case of
// hg store imports fetching from cache
// sapling store imports fetching from cache
PENDING,
// represents request that are currently being executed (in the case of
// hg imports, only those fetching data, this does not include those reading
// from cache)
// sapling imports, only those fetching data, this does not include those
// reading from cache)
LIVE,
};

Expand Down

0 comments on commit 3ca2d02

Please sign in to comment.