aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/fuse/swarmfs_util.go
Commit message (Collapse)AuthorAgeFilesLines
* swarm: initial instrumentation (#15969)Anton Evangelatov2018-02-231-7/+0
| | | | | | | | | | | | | | | | | | * swarm: initial instrumentation with go-metrics * swarm: initialise metrics collection and add ResettingTimer to HTTP requests * swarm: update metrics flags names. remove redundant Timer. * swarm: rename method for periodically updating gauges * swarm: finalise metrics after feedback * swarm/network: always init kad metrics containers * swarm/network: off-by-one index in metrics containers * swarm, metrics: resolved conflicts
* swarm/fuse: simplify externalUnmountFelix Lange2017-06-211-29/+13
| | | | | | The code looked for /usr/bin/diskutil on darwin, but it's actually located in /usr/sbin. Fix that by not specifying the absolute path. Also remove weird timeout construction and extra whitespace.
* swarm/api: FUSE read-write support (#13872)Zahoor Mohamed2017-04-121-0/+144
- Moved fuse related code in a new package, swarm/fuse - Added write support - Create new files - Delete existing files - Append to files (with limitations) - More test coverage