forked from tahoe-lafs/tahoe-lafs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove pickle-based stats output altogether
* update munin plugin to read JSON, not pickle * update docs
- Loading branch information
Showing
5 changed files
with
29 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[tahoe_storage_allocated] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json | ||
[tahoe_storage_consumed] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json | ||
[tahoe_runtime_load_avg] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json | ||
[tahoe_runtime_load_peak] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json | ||
[tahoe_storage_bytes_added] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json | ||
[tahoe_storage_bytes_freed] | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.pickle | ||
env.statsfile /home/robk/trees/tahoe/stats_gatherer/stats.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The "stats gatherer" (created with 'tahoe create-stats-gatherer') now updates | ||
a JSON file named "stats.json"; previously it used Pickle and "stats.pickle". | ||
The munin plugins in misc/operations_helpers/munin/ have been updated to | ||
match, and must be re-installed and re-configured if you use munin. |