An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 1.5% on proxy.golang.org
Top 0.4% dependent packages on proxy.golang.org
Top 0.5% dependent repos on proxy.golang.org
Top 4.1% forks on proxy.golang.org
Top 0.2% docker downloads on proxy.golang.org

proxy.golang.org : github.com/spacemonkeygo/monkit/v3

Package monkit is a flexible code instrumenting and data collection library. I'm going to try and sell you as fast as I can on this library. Example usage We've got tools that capture distribution information (including quantiles) about int64, float64, and bool types. We have tools that capture data about events (we've got meters for deltas, rates, etc). We have rich tools for capturing information about tasks and functions, and literally anything that can generate a name and a number. Almost just as importantly, the amount of boilerplate and code you have to write to get these features is very minimal. Data that's hard to measure probably won't get measured. This data can be collected and sent to Graphite (http://graphite.wikidot.com/) or any other time-series database. Here's a selection of live stats from one of our storage nodes: This library generates call graphs of your live process for you. These call graphs aren't created through sampling. They're full pictures of all of the interesting functions you've annotated, along with quantile information about their successes, failures, how often they panic, return an error (if so instrumented), how many are currently running, etc. The data can be returned in dot format, in json, in text, and can be about just the functions that are currently executing, or all the functions the monitoring system has ever seen. Here's another example of one of our production nodes: https://raw.githubusercontent.com/spacemonkeygo/monkit/master/images/callgraph2.png This library generates trace graphs of your live process for you directly, without requiring standing up some tracing system such as Zipkin (though you can do that too). Inspired by Google's Dapper (http://research.google.com/pubs/pub36356.html) and Twitter's Zipkin (http://zipkin.io), we have process-internal trace graphs, triggerable by a number of different methods. You get this trace information for free whenever you use Go contexts (https://blog.golang.org/context) and function monitoring. The output formats are svg and json. Additionally, the library supports trace observation plugins, and we've written a plugin that sends this data to Zipkin (http://github.com/spacemonkeygo/monkit-zipkin). https://raw.githubusercontent.com/spacemonkeygo/monkit/master/images/trace.png Before our crazy Go rewrite of everything (https://www.spacemonkey.com/blog/posts/go-space-monkey) (and before we had even seen Google's Dapper paper), we were a Python shop, and all of our "interesting" functions were decorated with a helper that collected timing information and sent it to Graphite. When we transliterated to Go, we wanted to preserve that functionality, so the first version of our monitoring package was born. Over time it started to get janky, especially as we found Zipkin and started adding tracing functionality to it. We rewrote all of our Go code to use Google contexts, and then realized we could get call graph information. We decided a refactor and then an all-out rethinking of our monitoring package was best, and so now we have this library. Sometimes you really want callstack contextual information without having to pass arguments through everything on the call stack. In other languages, many people implement this with thread-local storage. Example: let's say you have written a big system that responds to user requests. All of your libraries log using your log library. During initial development everything is easy to debug, since there's low user load, but now you've scaled and there's OVER TEN USERS and it's kind of hard to tell what log lines were caused by what. Wouldn't it be nice to add request ids to all of the log lines kicked off by that request? Then you could grep for all log lines caused by a specific request id. Geez, it would suck to have to pass all contextual debugging information through all of your callsites. Google solved this problem by always passing a context.Context interface through from call to call. A Context is basically just a mapping of arbitrary keys to arbitrary values that users can add new values for. This way if you decide to add a request context, you can add it to your Context and then all callsites that decend from that place will have the new data in their contexts. It is admittedly very verbose to add contexts to every function call. Painfully so. I hope to write more about it in the future, but Google also wrote up their thoughts about it (https://blog.golang.org/context), which you can go read. For now, just swallow your disgust and let's keep moving. Let's make a super simple Varnish (https://www.varnish-cache.org/) clone. Open up gedit! (Okay just kidding, open whatever text editor you want.) For this motivating program, we won't even add the caching, though there's comments for where to add it if you'd like. For now, let's just make a barebones system that will proxy HTTP requests. We'll call it VLite, but maybe we should call it VReallyLite. Run and build this and open localhost:8080 in your browser. If you use the default proxy target, it should inform you that the world hasn't been destroyed yet. The first thing you'll want to do is add the small amount of boilerplate to make the instrumentation we're going to add to your process observable later. Import the basic monkit packages: and then register environmental statistics and kick off a goroutine in your main method to serve debug requests: Rebuild, and then check out localhost:9000/stats (or localhost:9000/stats/json, if you prefer) in your browser! Remember what I said about Google's contexts (https://blog.golang.org/context)? It might seem a bit overkill for such a small project, but it's time to add them. To help out here, I've created a library that constructs contexts for you for incoming HTTP requests. Nothing that's about to happen requires my webhelp library (https://godoc.org/github.com/jtolds/webhelp), but here is the code now refactored to receive and pass contexts through our two per-request calls. You can create a new context for a request however you want. One reason to use something like webhelp is that the cancelation feature of Contexts is hooked up to the HTTP request getting canceled. Let's start to get statistics about how many requests we receive! First, this package (main) will need to get a monitoring Scope. Add this global definition right after all your imports, much like you'd create a logger with many logging libraries: Now, make the error return value of HandleHTTP named (so, (err error)), and add this defer line as the very first instruction of HandleHTTP: Let's also add the same line (albeit modified for the lack of error) to Proxy, replacing &err with nil: You should now have something like: We'll unpack what's going on here, but for now: For this new funcs dataset, if you want a graph, you can download a dot graph at localhost:9000/funcs/dot and json information from localhost:9000/funcs/json. You should see something like: with a similar report for the Proxy method, or a graph like: https://raw.githubusercontent.com/spacemonkeygo/monkit/master/images/handlehttp.png This data reports the overall callgraph of execution for known traces, along with how many of each function are currently running, the most running concurrently (the highwater), how many were successful along with quantile timing information, how many errors there were (with quantile timing information if applicable), and how many panics there were. Since the Proxy method isn't capturing a returned err value, and since HandleHTTP always returns nil, this example won't ever have failures. If you're wondering about the success count being higher than you expected, keep in mind your browser probably requested a favicon.ico. Cool, eh? How it works is an interesting line of code - there's three function calls. If you look at the Go spec, all of the function calls will run at the time the function starts except for the very last one. The first function call, mon.Task(), creates or looks up a wrapper around a Func. You could get this yourself by requesting mon.Func() inside of the appropriate function or mon.FuncNamed(). Both mon.Task() and mon.Func() are inspecting runtime.Caller to determine the name of the function. Because this is a heavy operation, you can actually store the result of mon.Task() and reuse it somehow else if you prefer, so instead of you could instead use which is more performant every time after the first time. runtime.Caller only gets called once. Careful! Don't use the same myFuncMon in different functions unless you want to screw up your statistics! The second function call starts all the various stop watches and bookkeeping to keep track of the function. It also mutates the context pointer it's given to extend the context with information about what current span (in Zipkin parlance) is active. Notably, you *can* pass nil for the context if you really don't want a context. You just lose callgraph information. The last function call stops all the stop watches ad makes a note of any observed errors or panics (it repanics after observing them). Turns out, we don't even need to change our program anymore to get rich tracing information! Open your browser and go to localhost:9000/trace/svg?regex=HandleHTTP. It won't load, and in fact, it's waiting for you to open another tab and refresh localhost:8080 again. Once you retrigger the actual application behavior, the trace regex will capture a trace starting on the first function that matches the supplied regex, and return an svg. Go back to your first tab, and you should see a relatively uninteresting but super promising svg. Let's make the trace more interesting. Add a to your HandleHTTP method, rebuild, and restart. Load localhost:8080, then start a new request to your trace URL, then reload localhost:8080 again. Flip back to your trace, and you should see that the Proxy method only takes a portion of the time of HandleHTTP! https://cdn.rawgit.com/spacemonkeygo/monkit/master/images/trace.svg There's multiple ways to select a trace. You can select by regex using the preselect method (default), which first evaluates the regex on all known functions for sanity checking. Sometimes, however, the function you want to trace may not yet be known to monkit, in which case you'll want to turn preselection off. You may have a bad regex, or you may be in this case if you get the error "Bad Request: regex preselect matches 0 functions." Another way to select a trace is by providing a trace id, which we'll get to next! Make sure to check out what the addition of the time.Sleep call did to the other reports. It's easy to write plugins for monkit! Check out our first one that exports data to Zipkin (http://zipkin.io/)'s Scribe API: https://github.com/spacemonkeygo/monkit-zipkin We plan to have more (for HTrace, OpenTracing, etc, etc), soon!

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/spacemonkeygo/monkit/v3
License: Apache-2.0
Latest release: 5 months ago
First release: over 5 years ago
Namespace: github.com/spacemonkeygo/monkit
Dependent packages: 147
Dependent repositories: 195
Stars: 471 on GitHub
Forks: 32 on GitHub
Docker dependents: 552
Docker downloads: 202,073,476
See more repository details: repos.ecosyste.ms
Last synced: 2 days ago

Top 9.2% on proxy.golang.org
github.phpd.cn/rclone/rclone v1.67.0
53 versions - Latest release: 11 months ago
Top 6.8% on proxy.golang.org
github.com/vadimartynov/seaweedfs v1.0.1
SeaweedFS is a fast distributed storage system for blobs, objects, files, and data lake, for bill...
2 versions - Latest release: 12 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/storj/uplink-c v1.9.0
Uplink C library
25 versions - Latest release: about 1 year ago - 23 stars on GitHub
Top 7.5% on proxy.golang.org
github.com/hffariel/rclone v1.166.2
55 versions - Latest release: about 1 year ago
Top 9.2% on proxy.golang.org
github.com/apecloud/datasafed v0.2.0
datasafed is a companion tool to KubeBlocks' DataProtection module, which can operate various kin...
6 versions - Latest release: about 1 year ago - 2 stars on GitHub
Top 2.9% on proxy.golang.org
storj.io/common v0.0.0-20240125130725-f767a2131673
Storj common packages
100 versions - Latest release: over 1 year ago - 151 dependent packages - 195 dependent repositories - 26 stars on GitHub
Top 10.0% on proxy.golang.org
storj.io/storj/testsuite/storjscan v0.0.0-20240124173421-5dc2bc45a65c
Ongoing Storj v3 development. Decentralized cloud object storage that is affordable, easy to use,...
52 versions - Latest release: over 1 year ago - 2,801 stars on GitHub
Top 9.1% on proxy.golang.org
github.skymusic.top/rclone/rclone v1.65.2
51 versions - Latest release: over 1 year ago
Top 9.1% on proxy.golang.org
github.imxd.top/rclone/rclone v1.65.2
51 versions - Latest release: over 1 year ago
Top 5.0% on proxy.golang.org
storj.io/private v0.0.0-20240119213621-fd26556e3eb9
Deprecated: Use storj.io/common/private instead.
39 versions - Latest release: over 1 year ago - 34 dependent packages - 27 dependent repositories - 8 stars on GitHub
Top 9.9% on proxy.golang.org
github.com/pbtrung/duplicacy v0.0.0-20240117052701-8b5b19a29ec2
10 versions - Latest release: over 1 year ago
Top 8.2% on proxy.golang.org
github.com/icewhaletech/casaos-localstorage v0.4.5
Local Storage service provides local storage and disk management functionalities to CasaOS
49 versions - Latest release: over 1 year ago - 7 stars on GitHub
Top 6.8% on proxy.golang.org
github.com/IceWhaleTech/CasaOS-LocalStorage v0.4.5
Local Storage service provides local storage and disk management functionalities to CasaOS
48 versions - Latest release: over 1 year ago - 7 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/lordmathis/gitecho v0.9.0
GitEcho: Backup your git repositories to remote cloud storage
9 versions - Latest release: over 1 year ago - 0 stars on GitHub
Top 9.9% on proxy.golang.org
github.com/elek/storagenode-checksum v0.0.0-20240112154708-b46d5cf1a93f
5 versions - Latest release: over 1 year ago
storj.io/eventkit/tools v0.0.0-20240109111738-48bd26010a51
a go library for reporting multidimensional events over UDP
2 versions - Latest release: over 1 year ago - 2 stars on GitHub
Top 10.0% on proxy.golang.org
github.com/amwolff/swiss v0.0.0-20240104190536-64f912b16775
1 version - Latest release: over 1 year ago - 0 stars on GitHub
Top 10.0% on proxy.golang.org
github.com/KamelTechnology/KamelBox v0.0.0-20240104142240-bec2cf3b7cfb
3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/nielash/rclone-genfilters v1.66.0-beta.7589.89a401f0d.genfilters-v1
an interactive, automatic filter generator for rclone.
2 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/rkonfj/rclone v1.66.1
5 versions - Latest release: over 1 year ago
storj.io/eventkit/eventkitd v0.0.0-20231220102213-691135f67347
a go library for reporting multidimensional events over UDP
1 version - Latest release: over 1 year ago - 2 stars on GitHub
storj.io/eventkit/eventkitd-bigquery v0.0.0-20231220102213-691135f67347
a go library for reporting multidimensional events over UDP
3 versions - Latest release: over 1 year ago - 2 stars on GitHub
Top 4.6% on proxy.golang.org
storj.io/storj/testsuite/ui v0.0.0-20231215202848-870e9c6ffc3b
Ongoing Storj v3 development. Decentralized cloud object storage that is affordable, easy to use,...
597 versions - Latest release: over 1 year ago - 2,672 stars on GitHub
github.com/jtolio/eventkit/eventkitd-bigquery v0.0.0-20231213113114-534c5b7a9af9
a go library for reporting multidimensional events over UDP
3 versions - Latest release: over 1 year ago - 2 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/jtolio/eventkit/eventkitd v0.0.0-20231213113114-534c5b7a9af9
a go library for reporting multidimensional events over UDP
5 versions - Latest release: over 1 year ago - 2 dependent packages - 1 dependent repositories - 2 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/33fdfffgdfh4626hjjgfdj/gitpush.jadepool.cloud v1.6.1
21 versions - Latest release: over 1 year ago - 0 stars on GitHub
Top 3.3% on proxy.golang.org
github.com/dutchcoders/transfer.sh v1.6.1
Easy and fast file sharing from the command-line.
21 versions - Latest release: over 1 year ago - 1 dependent repositories - 13,782 stars on GitHub
github.com/levarga/rclone v1.65.0
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
49 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/dataswap/go-metadata v0.0.0-20231123081531-9a321de7ef95
Implement mapping information collection between source data and target car files during the Dag ...
3 versions - Latest release: over 1 year ago - 1 dependent repositories - 0 stars on GitHub
Top 9.7% on proxy.golang.org
storj.io/drpc/internal/backcompat/oldservice v0.0.0-20231109154940-82c7b5f7a552
oldservice runs the old version of the backwards compatibility check.
1 version - Latest release: over 1 year ago - 1,398 stars on GitHub
github.com/fastone-open/go-storage v0.0.0-20230823095004-0dabf1de6557
Package storage intends to provide a unified storage layer for Golang. - Production ready: high ...
1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/Infowatch/seaweedfs v1.56.0
4 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/infowatch/seaweedfs v1.56.0
SeaweedFS is a fast distributed storage system for blobs, objects, files, and data lake, for bill...
4 versions - Latest release: almost 2 years ago - 0 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/crowdware/shift-go v1.3.9
Business layer of the Android app of Shift.
2 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/dceldran/rclone v1.63.1
Sync files and directories to and from local and remote object stores Nick Craig-Wood <nick@crai...
91 versions - Latest release: almost 2 years ago - 0 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/neurosis69/rclone v1.63.1
45 versions - Latest release: almost 2 years ago
github.com/zalatis/rclone v1.63.1
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
45 versions - Latest release: almost 2 years ago - 0 stars on GitHub
Top 6.6% on proxy.golang.org
storj.io/monkit-jaeger v0.0.0-20230707083646-f15e6e8b7e8c
Package jaeger provides a monkit plugin for sending traces to Jaeger Agent. Your main method get...
2 versions - Latest release: almost 2 years ago - 33 dependent packages - 26 dependent repositories - 2 stars on GitHub
storj.io/ipfs-user-mapping-proxy v0.0.0-20230621134356-4491fc486cd1
3 versions - Latest release: almost 2 years ago - 2 stars on GitHub
github.com/dlamarmorgan/monkit/v4 v4.0.0-20230525141335-62d2285ba236
A flexible process data collection, metrics, monitoring, instrumentation, and tracing client libr...
8 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/elek/storj-largefile-storage v0.0.0-20230523131043-2cfde8c7c534
2 versions - Latest release: almost 2 years ago - 0 stars on GitHub
Top 5.4% on proxy.golang.org
github.com/l3v11/gclone v1.62.2-purple
Sync files and directories to and from local and remote object stores Nick Craig-Wood <nick@crai...
10 versions - Latest release: about 2 years ago - 109 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/sanrinconr/storj-images v0.0.0-20230423050712-4848e18e749f
Send images to storj and expose a front to see all
3 versions - Latest release: about 2 years ago - 0 stars on GitHub
Top 7.1% on proxy.golang.org
storj.io/ipfs-go-ds-storj v0.6.0
Storj datastore for IPFS
7 versions - Latest release: about 2 years ago - 15 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/kaloyan-raev/ipfs-go-ds-storj v0.6.0
7 versions - Latest release: about 2 years ago
Top 6.9% on proxy.golang.org
github.com/storj/ipfs-go-ds-storj v0.6.0
Storj datastore for IPFS
7 versions - Latest release: about 2 years ago - 11 stars on GitHub
Top 9.6% on proxy.golang.org
github.com/easyselfhost/backpack v0.0.0-20230416174409-4c48183d6f0b
Backs up your directories periodically with special handling like snapshoting sqlite file
1 version - Latest release: about 2 years ago - 2 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/gridai/rclone-symlinks-fork v0.0.0-20230403152359-d685ac870a24
Sync files and directories to and from local and remote object stores Nick Craig-Wood <nick@crai...
1 version - Latest release: about 2 years ago
Top 8.3% on proxy.golang.org
github.com/stationapi/station-image-bucket v0.0.0-20230324205659-bed8720e70d0
1 version - Latest release: about 2 years ago
Top 9.7% on proxy.golang.org
github.com/wthorp/storj-walk v0.0.0-20230209195406-ad7d09fa65ab
1 version - Latest release: over 2 years ago
Top 8.2% on proxy.golang.org
github.com/elek/storj-badger-storage v0.0.0-20230205082807-b3e3566d3769
2 versions - Latest release: over 2 years ago - 1 dependent package - 0 stars on GitHub
Top 8.2% on proxy.golang.org
gitea.s1.thoxy.xyz/thoxy/gclone v1.61.1-mod2.7
26 versions - Latest release: over 2 years ago
Top 8.2% on proxy.golang.org
gitea.s1.thoxy.xyz/thoxy/gclone-mod v1.61.1-mod2.7
26 versions - Latest release: over 2 years ago
Top 7.7% on proxy.golang.org
github.com/ricoberger/rcloneui v0.4.2
Terminal UI for rclone
6 versions - Latest release: over 2 years ago - 11 stars on GitHub
Top 9.3% on proxy.golang.org
github.com/ii64/obs-access-signer v0.0.5
5 versions - Latest release: over 2 years ago
Top 8.6% on proxy.golang.org
github.com/Ignalina/thund v0.1.43
GO based DAG processor.
43 versions - Latest release: over 2 years ago - 1 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/ignalina/Thund v0.1.43
GO based DAG processor.
43 versions - Latest release: over 2 years ago - 1 stars on GitHub
github.com/ignalina/thund v0.1.43
GO based DAG processor.
43 versions - Latest release: over 2 years ago - 1 dependent package - 1 dependent repositories - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/proorc/rclone v1.60.2
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
39 versions - Latest release: over 2 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/prOOrc/rclone v1.60.2
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
39 versions - Latest release: over 2 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/hzhangxyz/rclone v0.0.0-20221206094608-d9073e896665 💰
Sync files and directories to and from local and remote object stores Nick Craig-Wood <nick@crai...
1 version - Latest release: over 2 years ago - 0 stars on GitHub
Top 9.6% on proxy.golang.org
github.com/jinfwhuang/ds-toolkit v0.0.0-20221021184916-f7cd2645d796
1 version - Latest release: over 2 years ago - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/jonasmuehlmann/bntp.go v0.8.1
CLI and library for my personal all-in-one productivity system including components like bookmark...
9 versions - Latest release: over 2 years ago - 15 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/JonasMuehlmann/productivity.go v0.8.1
CLI and library for my personal all-in-one productivity system including components like bookmark...
9 versions - Latest release: over 2 years ago - 15 stars on GitHub
Top 6.2% on proxy.golang.org
github.com/JonasMuehlmann/bntp.go v0.8.1
CLI and library for my personal all-in-one productivity system including components like bookmark...
9 versions - Latest release: over 2 years ago - 2 dependent packages - 15 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/fritzkeyzer/go-fkv/storj v0.0.0-20220904175146-e203d275d0cf
Package fkv provides a simple key-value storage interface.
2 versions - Latest release: over 2 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/mjpitz/terraform-provider-storj v0.0.1
A Terraform provider for the Storj ecosystem.
1 version - Latest release: over 2 years ago - 3 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/fritzkeyzer/go-appfs v1.0.1
Package appfs provides a universal file-system interface with multiple storage options
3 versions - Latest release: almost 3 years ago - 0 stars on
Top 8.2% on proxy.golang.org
github.com/go-fritz/appfs v1.0.2
Package appfs provides a universal file-system interface with multiple storage options
2 versions - Latest release: almost 3 years ago
Top 8.2% on proxy.golang.org
github.com/alanpeng/uit_oss_sync v1.0.1
1 version - Latest release: almost 3 years ago
Top 8.2% on proxy.golang.org
storj.io/storj/testsuite v0.0.0-20220617182804-4e81a608384c
Ongoing Storj v3 development. Decentralized cloud object storage that is affordable, easy to use,...
21 versions - Latest release: almost 3 years ago - 2,672 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/rhobro/utils.go v1.10.2
43 versions - Latest release: almost 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/elek/docker-storj-driver v0.0.0-20220513101418-e85c352e43e8
1 version - Latest release: about 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
storj.io/s3link v0.0.0-20220429122855-7232e3351e19
An experiment in using the Storj Network via the AWS SDK for Go
1 version - Latest release: about 3 years ago - 0 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/itsToggle/rclone_RD v1.58.1 removed
38 versions - Latest release: about 3 years ago
Top 8.2% on proxy.golang.org
github.com/MilkGames/rclone v1.58.1
33 versions - Latest release: about 3 years ago
Top 8.2% on proxy.golang.org
github.com/milkgames/rclone v1.58.1
33 versions - Latest release: about 3 years ago
Top 8.2% on proxy.golang.org
github.com/itstoggle/rclone_rd v1.58.1 💰
RClone Fork that implements RealDebrid
47 versions - Latest release: about 3 years ago - 53 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/nguyentruongtho/rclone v1.58.1 💰
Sync files and directories to and from local and remote object stores Nick Craig-Wood <nick@crai...
33 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 6.6% on proxy.golang.org
github.com/olaristv/olaris-server v0.4.0
This is a mirror please use GL
9 versions - Latest release: about 3 years ago - 29 stars on GitHub
Top 8.2% on proxy.golang.org
gitlab.com/bytesized/bytesized-streaming v0.4.0
9 versions - Latest release: about 3 years ago - 213 stars on GitLab.com
Top 5.3% on proxy.golang.org
gitlab.com/olaris/olaris-server v0.4.0
9 versions - Latest release: about 3 years ago - 212 stars on GitLab.com
Top 8.2% on proxy.golang.org
github.com/Lesmiscore/rclone v1.58.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
32 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/zzniwei/rclone v1.58.0
13 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/lesmiscore/rclone v1.58.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
32 versions - Latest release: about 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/ashento-documentation/rclone v1.58.0 💰
32 versions - Latest release: about 3 years ago - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/altfreq07/rclone v1.57.0
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/nspcc-dev/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 1 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/application-research/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 3 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/imWildCat/rclone v1.57.0
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/imwildcat/rclone v1.57.0
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/mirrors-tk/rclone v1.57.0
31 versions - Latest release: over 3 years ago
Top 8.2% on proxy.golang.org
github.com/pasnox/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/phuonghuynh/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
33 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/JiaY-shi/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 3 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/jiay-shi/rclone v1.57.0 💰
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
31 versions - Latest release: over 3 years ago - 3 stars on GitHub
Top 6.7% on proxy.golang.org
github.com/zeebo/admission/v3 v3.0.3
package admission is a fast way to ingest/send metrics.
4 versions - Latest release: over 3 years ago - 36 dependent packages - 161 dependent repositories - 1 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/elek/storj v1.41.2
Ongoing Storj v3 development. Decentralized cloud object storage that is affordable, easy to use,...
392 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/DEvmIb/rclone v1.56.2
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
30 versions - Latest release: over 3 years ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/devmib/rclone v1.56.2
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Was...
30 versions - Latest release: over 3 years ago - 0 stars on GitHub
Past Dependents
Include Past Dependents

Check this option to include packages that no longer depend on this package in their latest version but previously did.