diff options
| author | Shulhan <ms@kilabit.info> | 2023-04-01 15:34:34 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-07-27 00:40:14 +0700 |
| commit | a91993b95c88cf489e2503b6c8c03cbd7e67e207 (patch) | |
| tree | 7b7679cbaf3e5d7226ead6a9f1678a0c28dc69fc /go.mod | |
| parent | 631dd476ac3fd7d7c8045b6e6ca59b63955bca67 (diff) | |
| download | rescached-dev-telemetry.tar.xz | |
[wip] cmd/rescached: add telemetry using questdbdev-telemetry
The telemetry collect the Go runtime/metrics and forward it to questdb
instance in localhost.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -6,14 +6,17 @@ module github.com/shuLhan/rescached-go/v4 go 1.19 require ( - git.sr.ht/~shulhan/ciigo v0.9.3 - github.com/shuLhan/share v0.45.0 + git.sr.ht/~shulhan/ciigo v0.10.0 + github.com/shuLhan/share v0.46.0 ) require ( git.sr.ht/~shulhan/asciidoctor-go v0.4.1 // indirect - golang.org/x/net v0.7.0 // indirect - golang.org/x/sys v0.5.0 // indirect + github.com/yuin/goldmark v1.5.4 // indirect + github.com/yuin/goldmark-meta v1.1.0 // indirect + golang.org/x/net v0.12.0 // indirect + golang.org/x/sys v0.10.0 // indirect + gopkg.in/yaml.v2 v2.3.0 // indirect ) -//replace github.com/shuLhan/share => ../share +replace github.com/shuLhan/share => ../share |
