Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Service Error: A timeout was reached (30000 milliseconds) while waiting for the Grafana Agent service to connect. #529

Open
jammiemil opened this issue Aug 24, 2022 · 7 comments
Labels
bug Something isn't working

Comments

@jammiemil
Copy link

Similar to windows_exporter (And a bunch of other Go applications on windows) Grafana Agent can fail to start as a service on windows following a windows update or other high CPU Event during Service startup.

I wrote a fairly detailed analysis on the issue here that explains the cause but in an attempt to be brief this comes down to the way go initialises packages vs the time in which windows expects a response from an application starting as a service within 30s or 60s depending on your version of windows as per this diagram:

image

A way to work around this can be to delay the start of the service (Default 60s or 120s depending on your version of windows) but there are still some situations where the resource contention does not clear up in time and the service fails to start with the following recorded in the event log:

The Grafana Agent service failed to start due to the following error: 
The service did not respond to the start or control request in a timely fashion.
A timeout was reached (30000 milliseconds) while waiting for the Grafana Agent service to connect.

Ive submitted a PR against windows_exporter to move the Service initiation code out of main and into its own package so that the window service can be started as early in the startup as possible rather than in main() and i intend to do the same against grafana agent.

@jammiemil
Copy link
Author

Some supporting traces that show the startup time of the binary, for context Service initiation is done in main() so this MUST be reached within 30s to allow for a successfull startup:

VM with minimal load as well as minimal CPU ~15s

Click me
init internal/bytealg @0 ms, 0 ms clock, 0 bytes, 0 allocs
init runtime @0 ms, 0 ms clock, 0 bytes, 0 allocs
init errors @43 ms, 0 ms clock, 0 bytes, 0 allocs
init sync @43 ms, 0 ms clock, 16 bytes, 1 allocs
init internal/syscall/windows/sysdll @43 ms, 0 ms clock, 48 bytes, 1 allocs
init internal/oserror @43 ms, 0 ms clock, 80 bytes, 5 allocs
init syscall @43 ms, 0 ms clock, 8912 bytes, 174 allocs
init internal/syscall/windows/registry @43 ms, 0 ms clock, 416 bytes, 10 allocs
init time @43 ms, 0 ms clock, 14792 bytes, 11 allocs
init context @43 ms, 0 ms clock, 128 bytes, 4 allocs
init math @43 ms, 0 ms clock, 0 bytes, 0 allocs
init strconv @43 ms, 0 ms clock, 32 bytes, 2 allocs
init unicode @43 ms, 0 ms clock, 23944 bytes, 27 allocs
init reflect @53 ms, 0 ms clock, 0 bytes, 0 allocs
init io @53 ms, 0 ms clock, 144 bytes, 9 allocs
init path @53 ms, 0 ms clock, 16 bytes, 1 allocs
init io/fs @53 ms, 0 ms clock, 16 bytes, 1 allocs
init internal/syscall/windows @53 ms, 0 ms clock, 1616 bytes, 36 allocs
init internal/poll @53 ms, 0.50 ms clock, 344 bytes, 12 allocs
init os @53 ms, 16 ms clock, 3192 bytes, 29 allocs
init fmt @70 ms, 0 ms clock, 32 bytes, 2 allocs
init vendor/golang.org/x/net/dns/dnsmessage @70 ms, 0 ms clock, 1616 bytes, 27 allocs
init internal/intern @70 ms, 0 ms clock, 392 bytes, 7 allocs
init net/netip @70 ms, 0 ms clock, 48 bytes, 2 allocs
init net @70 ms, 0 ms clock, 1568 bytes, 27 allocs
init bytes @70 ms, 0 ms clock, 48 bytes, 3 allocs
init crypto @70 ms, 0 ms clock, 160 bytes, 1 allocs
init encoding/binary @70 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/cipher @70 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/aes @70 ms, 0 ms clock, 16 bytes, 1 allocs
init math/rand @70 ms, 0 ms clock, 5440 bytes, 3 allocs
init math/big @70 ms, 0 ms clock, 32 bytes, 2 allocs
init crypto/elliptic/internal/fiat @70 ms, 0 ms clock, 320 bytes, 6 allocs
init crypto/elliptic/internal/nistec @70 ms, 0 ms clock, 712 bytes, 15 allocs
init crypto/rand @70 ms, 0 ms clock, 48 bytes, 2 allocs
init crypto/sha512 @70 ms, 0 ms clock, 0 bytes, 0 allocs
init encoding/asn1 @70 ms, 0 ms clock, 224 bytes, 7 allocs
init vendor/golang.org/x/crypto/cryptobyte @70 ms, 0 ms clock, 48 bytes, 2 allocs
init crypto/ecdsa @70 ms, 0 ms clock, 48 bytes, 3 allocs
init crypto/ed25519/internal/edwards25519 @70 ms, 0 ms clock, 496 bytes, 5 allocs
init crypto/rsa @70 ms, 0 ms clock, 664 bytes, 18 allocs
init crypto/sha1 @70 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/sha256 @70 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/sys/cpu @70 ms, 0 ms clock, 1568 bytes, 5 allocs
init vendor/golang.org/x/crypto/chacha20poly1305 @70 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/base64 @70 ms, 0 ms clock, 1408 bytes, 4 allocs
init crypto/dsa @70 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/hex @70 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/x509/pkix @70 ms, 0 ms clock, 624 bytes, 2 allocs
init crypto/md5 @70 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/x509 @70 ms, 0 ms clock, 5504 bytes, 251 allocs
init vendor/golang.org/x/crypto/curve25519 @70 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/tls @70 ms, 0 ms clock, 2048 bytes, 16 allocs
init log @70 ms, 0 ms clock, 80 bytes, 1 allocs
init bufio @70 ms, 0 ms clock, 176 bytes, 11 allocs
init mime @70 ms, 0 ms clock, 1232 bytes, 4 allocs
init path/filepath @70 ms, 0 ms clock, 16 bytes, 1 allocs
init mime/multipart @70 ms, 0 ms clock, 192 bytes, 4 allocs
init compress/flate @70 ms, 0 ms clock, 4240 bytes, 7 allocs
init hash/crc32 @70 ms, 0 ms clock, 1024 bytes, 1 allocs
init compress/gzip @70 ms, 0 ms clock, 32 bytes, 2 allocs
init io/ioutil @70 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/text/transform @70 ms, 0 ms clock, 80 bytes, 5 allocs
init vendor/golang.org/x/text/unicode/bidi @70 ms, 0 ms clock, 272 bytes, 2 allocs
init vendor/golang.org/x/text/secure/bidirule @70 ms, 0 ms clock, 16 bytes, 1 allocs
init vendor/golang.org/x/text/unicode/norm @70 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/net/idna @70 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/net/http/httpguts @70 ms, 0 ms clock, 688 bytes, 2 allocs
init vendor/golang.org/x/net/http2/hpack @70 ms, 0 ms clock, 21880 bytes, 30 allocs
init net/http/internal @70 ms, 0 ms clock, 16 bytes, 1 allocs
init vendor/golang.org/x/net/http/httpproxy @70 ms, 0 ms clock, 336 bytes, 2 allocs
init net/http @70 ms, 0 ms clock, 10856 bytes, 121 allocs
init os/signal @70 ms, 0 ms clock, 0 bytes, 0 allocs
init regexp/syntax @70 ms, 0 ms clock, 7648 bytes, 9 allocs
init regexp @70 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/gorilla/mux @70 ms, 0 ms clock, 48 bytes, 3 allocs
init flag @70 ms, 0 ms clock, 160 bytes, 5 allocs
init encoding/json @70 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/gogo/protobuf/proto @70 ms, 0 ms clock, 2576 bytes, 29 allocs
init github.com/golang/snappy @70 ms, 0 ms clock, 9296 bytes, 8 allocs
init github.com/prometheus/common/model @70 ms, 0 ms clock, 25176 bytes, 232 allocs
init google.golang.org/protobuf/internal/detrand @70 ms, 0 ms clock, 4208 bytes, 28 allocs
init google.golang.org/protobuf/internal/errors @70 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/protobuf/encoding/protowire @70 ms, 0 ms clock, 632 bytes, 15 allocs
init google.golang.org/protobuf/reflect/protoreflect @70 ms, 0 ms clock, 0 bytes, 0 allocs
init go/token @70 ms, 0 ms clock, 1568 bytes, 4 allocs
init google.golang.org/protobuf/internal/encoding/text @70 ms, 0 ms clock, 3336 bytes, 34 allocs
init google.golang.org/protobuf/reflect/protoregistry @70 ms, 0 ms clock, 104 bytes, 4 allocs
init google.golang.org/protobuf/proto @70 ms, 0 ms clock, 288 bytes, 6 allocs
init google.golang.org/protobuf/internal/descfmt @70 ms, 0 ms clock, 1152 bytes, 10 allocs
init google.golang.org/protobuf/internal/filedesc @70 ms, 0 ms clock, 696 bytes, 13 allocs
init google.golang.org/protobuf/internal/encoding/tag @70 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/internal/impl @70 ms, 0 ms clock, 280 bytes, 7 allocs
init google.golang.org/protobuf/internal/filetype @70 ms, 0 ms clock, 1168 bytes, 4 allocs
init google.golang.org/protobuf/types/descriptorpb @70 ms, 0 ms clock, 44064 bytes, 60 allocs
init github.com/golang/protobuf/proto @70 ms, 0 ms clock, 96 bytes, 6 allocs
init google.golang.org/protobuf/types/known/timestamppb @70 ms, 0 ms clock, 1120 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/timestamp @70 ms, 0 ms clock, 544 bytes, 4 allocs
init github.com/prometheus/client_model/go @70 ms, 0 ms clock, 119328 bytes, 209 allocs
init expvar @70 ms, 0 ms clock, 912 bytes, 15 allocs
init golang.org/x/sys/windows @70 ms, 0 ms clock, 21616 bytes, 453 allocs
init github.com/matttproud/golang_protobuf_extensions/pbutil @70 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus/common/expfmt @70 ms, 0 ms clock, 288 bytes, 4 allocs
init github.com/prometheus/client_golang/prometheus @70 ms, 20 ms clock, 74296 bytes, 645 allocs
init github.com/modern-go/reflect2 @90 ms, 0 ms clock, 6352 bytes, 125 allocs
init github.com/modern-go/concurrent @90 ms, 0 ms clock, 336 bytes, 7 allocs
init github.com/json-iterator/go @90 ms, 0.50 ms clock, 21456 bytes, 278 allocs
init github.com/grafana/regexp/syntax @91 ms, 0 ms clock, 7648 bytes, 9 allocs
init github.com/grafana/regexp @91 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-logfmt/logfmt @91 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/go-kit/log @91 ms, 0 ms clock, 13688 bytes, 109 allocs
init text/template/parse @91 ms, 0 ms clock, 464 bytes, 2 allocs
init text/template @91 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/prometheus/common/version @91 ms, 0 ms clock, 0 bytes, 0 allocs
init gopkg.in/yaml%2ev2 @91 ms, 0 ms clock, 27552 bytes, 266 allocs
init github.com/sirupsen/logrus @91 ms, 0 ms clock, 312 bytes, 5 allocs
init github.com/weaveworks/common/logging @91 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/types/known/emptypb @91 ms, 0 ms clock, 1152 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/empty @91 ms, 0 ms clock, 560 bytes, 4 allocs
init google.golang.org/grpc/grpclog @91 ms, 0 ms clock, 1448 bytes, 20 allocs
init google.golang.org/grpc/connectivity @91 ms, 0 ms clock, 224 bytes, 2 allocs
init google.golang.org/grpc/internal/credentials @91 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/credentials @91 ms, 0 ms clock, 864 bytes, 4 allocs
init google.golang.org/grpc/resolver @91 ms, 0 ms clock, 48 bytes, 1 allocs
init google.golang.org/grpc/balancer @91 ms, 0 ms clock, 96 bytes, 4 allocs
init google.golang.org/grpc/internal/channelz @91 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/balancer/base @91 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/codes @91 ms, 0 ms clock, 752 bytes, 2 allocs
init google.golang.org/grpc/internal/grpcrand @91 ms, 0 ms clock, 5424 bytes, 2 allocs
init google.golang.org/grpc/internal/backoff @91 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/internal/serviceconfig @91 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/text/transform @91 ms, 0 ms clock, 80 bytes, 5 allocs
init golang.org/x/text/unicode/bidi @91 ms, 0 ms clock, 272 bytes, 2 allocs
init golang.org/x/text/secure/bidirule @91 ms, 0 ms clock, 16 bytes, 1 allocs
init golang.org/x/text/unicode/norm @91 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/net/idna @91 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/net/http/httpguts @91 ms, 0 ms clock, 848 bytes, 3 allocs
init golang.org/x/net/http2/hpack @91 ms, 0 ms clock, 21384 bytes, 29 allocs
init golang.org/x/net/http2 @91 ms, 0 ms clock, 4400 bytes, 65 allocs
init google.golang.org/protobuf/types/known/anypb @91 ms, 0 ms clock, 1088 bytes, 5 allocs
init google.golang.org/genproto/googleapis/rpc/status @91 ms, 0 ms clock, 1704 bytes, 9 allocs
init github.com/golang/protobuf/ptypes/any @91 ms, 0 ms clock, 1296 bytes, 5 allocs
init google.golang.org/protobuf/types/known/durationpb @91 ms, 0 ms clock, 1216 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/duration @91 ms, 0 ms clock, 528 bytes, 3 allocs
init google.golang.org/grpc/internal/syscall @91 ms, 0 ms clock, 0 bytes, 0 allocs
init net/http/httputil @91 ms, 0 ms clock, 288 bytes, 6 allocs
init google.golang.org/grpc/internal/transport @91 ms, 0 ms clock, 832 bytes, 14 allocs
init google.golang.org/grpc/balancer/roundrobin @91 ms, 0 ms clock, 352 bytes, 3 allocs
init google.golang.org/grpc/internal/envconfig @91 ms, 0 ms clock, 4080 bytes, 30 allocs
init google.golang.org/grpc/internal/resolver/dns @91 ms, 0 ms clock, 336 bytes, 4 allocs
init google.golang.org/grpc/internal/resolver/passthrough @91 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/internal/resolver/unix @91 ms, 0 ms clock, 32 bytes, 2 allocs
init google.golang.org/grpc/encoding @91 ms, 0 ms clock, 96 bytes, 2 allocs
init google.golang.org/grpc/encoding/proto @91 ms, 0 ms clock, 288 bytes, 1 allocs
init html @91 ms, 0 ms clock, 224 bytes, 2 allocs
init html/template @91 ms, 0 ms clock, 10296 bytes, 29 allocs
init golang.org/x/net/trace @91 ms, 0 ms clock, 16864 bytes, 8 allocs
init google.golang.org/grpc/binarylog/grpc_binarylog_v1 @91 ms, 0 ms clock, 46808 bytes, 31 allocs
init google.golang.org/grpc/internal/binarylog @91 ms, 0 ms clock, 26072 bytes, 281 allocs
init google.golang.org/grpc @91 ms, 0 ms clock, 19280 bytes, 412 allocs
init internal/profile @91 ms, 0 ms clock, 98032 bytes, 754 allocs
init runtime/pprof @91 ms, 0 ms clock, 32 bytes, 2 allocs
init net/http/pprof @91 ms, 0 ms clock, 864 bytes, 5 allocs
init github.com/opentracing/opentracing-go @91 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/opentracing/opentracing-go/ext @91 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/opentracing-contrib/go-grpc @91 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/client_golang/prometheus/promhttp @91 ms, 0 ms clock, 304 bytes, 2 allocs
init golang.org/x/crypto/bcrypt @91 ms, 0 ms clock, 384 bytes, 3 allocs
init github.com/mwitkow/go-conntrack @91 ms, 9.9 ms clock, 4496 bytes, 123 allocs
init golang.org/x/oauth2 @101 ms, 0.50 ms clock, 96 bytes, 3 allocs
init github.com/prometheus/exporter-toolkit/web @101 ms, 0 ms clock, 1168 bytes, 11 allocs
init golang.org/x/net/context @101 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/gogo/protobuf/types @101 ms, 0 ms clock, 13616 bytes, 87 allocs
init github.com/gogo/googleapis/google/rpc @101 ms, 0 ms clock, 7912 bytes, 22 allocs
init github.com/weaveworks/common/httpgrpc @101 ms, 0 ms clock, 6448 bytes, 9 allocs
init net/http/internal/testcert @101 ms, 0 ms clock, 3584 bytes, 2 allocs
init net/http/httptest @101 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/sercand/kuberesolver @101 ms, 7.5 ms clock, 1776 bytes, 39 allocs
init compress/zlib @109 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go/thrift @109 ms, 0 ms clock, 2080 bytes, 35 allocs
init database/sql/driver @109 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go/utils @109 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go @109 ms, 0 ms clock, 336 bytes, 6 allocs
init github.com/uber/jaeger-client-go/internal/throttler/remote @109 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/weaveworks/common/tracing @109 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/weaveworks/common/middleware @109 ms, 0 ms clock, 7760 bytes, 41 allocs
init github.com/weaveworks/common/server @109 ms, 0 ms clock, 85832 bytes, 44 allocs
init github.com/grafana/dskit/tenant @109 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/grafana/loki/pkg/util/log @109 ms, 0.18 ms clock, 616 bytes, 13 allocs
init google.golang.org/grpc/health/grpc_health_v1 @109 ms, 0 ms clock, 3728 bytes, 16 allocs
init github.com/grafana/dskit/grpcutil @109 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/davecgh/go-spew/spew @109 ms, 0 ms clock, 19160 bytes, 133 allocs
init github.com/stretchr/objx @109 ms, 0 ms clock, 4808 bytes, 48 allocs
init gopkg.in/yaml%2ev3 @109 ms, 0 ms clock, 25128 bytes, 276 allocs
init github.com/stretchr/testify/assert @109 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/mattn/go-isatty @109 ms, 0 ms clock, 648 bytes, 13 allocs
init github.com/mattn/go-colorable @109 ms, 0 ms clock, 10904 bytes, 17 allocs
init github.com/fatih/color @109 ms, 0 ms clock, 600 bytes, 9 allocs
init github.com/hashicorp/go-hclog @109 ms, 0.50 ms clock, 1736 bytes, 24 allocs
init github.com/armon/go-metrics @110 ms, 0 ms clock, 592 bytes, 5 allocs
init github.com/hashicorp/consul/api @110 ms, 0 ms clock, 360 bytes, 17 allocs
init github.com/grafana/dskit/kv/consul @110 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/gogo/protobuf/protoc-gen-gogo/descriptor @110 ms, 0 ms clock, 4864 bytes, 27 allocs
init github.com/gogo/protobuf/gogoproto @110 ms, 0 ms clock, 3696 bytes, 19 allocs
init go.etcd.io/etcd/api/v3/authpb @110 ms, 0 ms clock, 92288 bytes, 97 allocs
init go.etcd.io/etcd/api/v3/membershippb @110 ms, 0 ms clock, 92456 bytes, 107 allocs
init go.etcd.io/etcd/api/v3/mvccpb @110 ms, 0 ms clock, 87376 bytes, 69 allocs
init google.golang.org/genproto/googleapis/api/annotations @110 ms, 0 ms clock, 23512 bytes, 109 allocs
init go.etcd.io/etcd/api/v3/etcdserverpb @110 ms, 0 ms clock, 662120 bytes, 1444 allocs
init go.etcd.io/etcd/api/v3/v3rpc/rpctypes @110 ms, 0 ms clock, 18176 bytes, 238 allocs
init go.uber.org/zap/internal/bufferpool @110 ms, 0 ms clock, 64 bytes, 2 allocs
init go.uber.org/zap/zapcore @110 ms, 0 ms clock, 1008 bytes, 37 allocs
init go.uber.org/zap @110 ms, 0 ms clock, 744 bytes, 9 allocs
init github.com/coreos/go-semver/semver @110 ms, 0 ms clock, 5056 bytes, 73 allocs
init go.etcd.io/etcd/api/v3/version @110 ms, 0 ms clock, 192 bytes, 5 allocs
init go.etcd.io/etcd/client/pkg/v3/logutil @110 ms, 0 ms clock, 16 bytes, 2 allocs
init go.uber.org/zap/zapgrpc @110 ms, 0 ms clock, 144 bytes, 2 allocs
init go.etcd.io/etcd/client/v3 @110 ms, 0 ms clock, 424 bytes, 9 allocs
init github.com/coreos/pkg/capnslog @110 ms, 0 ms clock, 4744 bytes, 9 allocs
init github.com/coreos/etcd/pkg/fileutil @110 ms, 0 ms clock, 392 bytes, 7 allocs
init github.com/coreos/etcd/pkg/tlsutil @110 ms, 0 ms clock, 688 bytes, 2 allocs
init go.etcd.io/etcd/pkg/transport @110 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/dskit/crypto/tls @110 ms, 0 ms clock, 608 bytes, 6 allocs
init github.com/grafana/dskit/flagext @110 ms, 10 ms clock, 568 bytes, 12 allocs
init os/exec @120 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/go-sockaddr @120 ms, 0.50 ms clock, 22792 bytes, 164 allocs
init encoding/base32 @121 ms, 0 ms clock, 640 bytes, 2 allocs
init github.com/miekg/dns @121 ms, 0 ms clock, 17688 bytes, 55 allocs
init encoding/gob @121 ms, 0 ms clock, 42552 bytes, 608 allocs
init net/rpc @121 ms, 0.55 ms clock, 8904 bytes, 138 allocs
init github.com/hashicorp/go-msgpack/codec @121 ms, 0 ms clock, 104 bytes, 3 allocs
init github.com/google/btree @121 ms, 0 ms clock, 384 bytes, 2 allocs
init compress/lzw @121 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hashicorp/memberlist @121 ms, 0.50 ms clock, 464 bytes, 12 allocs
init github.com/prometheus/client_golang/prometheus/push @122 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/armon/go-metrics/prometheus @122 ms, 0 ms clock, 792 bytes, 11 allocs
init github.com/grafana/dskit/kv/memberlist @122 ms, 0.18 ms clock, 47432 bytes, 633 allocs
init github.com/grafana/dskit/ring @122 ms, 0.51 ms clock, 17968 bytes, 296 allocs
init github.com/grafana/loki/pkg/util @122 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/dustin/go-humanize @122 ms, 0 ms clock, 13992 bytes, 111 allocs
init github.com/grafana/loki/pkg/logqlmodel/stats @122 ms, 0 ms clock, 392 bytes, 5 allocs
init github.com/grafana/loki/pkg/logproto @122 ms, 0 ms clock, 23752 bytes, 31 allocs
init github.com/prometheus/prometheus/tsdb/chunks @129 ms, 0 ms clock, 336 bytes, 5 allocs
init testing @129 ms, 0 ms clock, 1224 bytes, 7 allocs
init github.com/prometheus/client_golang/prometheus/testutil/promlint @129 ms, 0 ms clock, 2488 bytes, 16 allocs
init go.uber.org/goleak @129 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/storage @129 ms, 0 ms clock, 288 bytes, 10 allocs
init github.com/prometheus/prometheus/util/strutil @129 ms, 0 ms clock, 888 bytes, 13 allocs
init github.com/prometheus/prometheus/promql/parser @129 ms, 0 ms clock, 22624 bytes, 150 allocs
init github.com/julienschmidt/httprouter @129 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/alecthomas/units @129 ms, 0 ms clock, 832 bytes, 26 allocs
init github.com/aws/aws-sdk-go/internal/ini @129 ms, 0 ms clock, 2304 bytes, 22 allocs
init github.com/aws/aws-sdk-go/aws/credentials @129 ms, 0 ms clock, 512 bytes, 7 allocs
init github.com/aws/aws-sdk-go/aws/endpoints @129 ms, 25 ms clock, 1525160 bytes, 8030 allocs
init github.com/aws/aws-sdk-go/aws @155 ms, 0 ms clock, 128 bytes, 2 allocs
init github.com/jmespath/go-jmespath @155 ms, 0 ms clock, 1584 bytes, 6 allocs
init github.com/aws/aws-sdk-go/aws/awsutil @155 ms, 0 ms clock, 3432 bytes, 31 allocs
init github.com/aws/aws-sdk-go/aws/request @155 ms, 0 ms clock, 976 bytes, 9 allocs
init github.com/aws/aws-sdk-go/internal/sdkrand @155 ms, 0 ms clock, 5448 bytes, 3 allocs
init github.com/aws/aws-sdk-go/private/protocol @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/private/protocol/rest @155 ms, 0 ms clock, 192 bytes, 5 allocs
init github.com/aws/aws-sdk-go/aws/signer/v4 @155 ms, 0 ms clock, 1536 bytes, 5 allocs
init encoding/xml @155 ms, 0 ms clock, 19464 bytes, 8 allocs
init github.com/aws/aws-sdk-go/service/sts @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/private/protocol/json/jsonutil @155 ms, 0 ms clock, 96 bytes, 4 allocs
init github.com/aws/aws-sdk-go/service/sso @155 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/aws/aws-sdk-go/aws/credentials/ssocreds @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/aws/corehandlers @155 ms, 0 ms clock, 2192 bytes, 31 allocs
init github.com/aws/aws-sdk-go/aws/session @155 ms, 0 ms clock, 320 bytes, 5 allocs
init github.com/prometheus/prometheus/discovery @155 ms, 0 ms clock, 3168 bytes, 83 allocs
init github.com/prometheus/prometheus/model/relabel @155 ms, 0 ms clock, 11792 bytes, 143 allocs
init github.com/prometheus/prometheus/config @155 ms, 0 ms clock, 5408 bytes, 72 allocs
init github.com/prometheus/prometheus/model/textparse @155 ms, 0 ms clock, 288 bytes, 4 allocs
init go.opentelemetry.io/otel/baggage @155 ms, 0 ms clock, 19440 bytes, 226 allocs
init go.opentelemetry.io/otel/attribute @155 ms, 0 ms clock, 64 bytes, 1 allocs
init go.opentelemetry.io/otel/codes @155 ms, 0 ms clock, 448 bytes, 4 allocs
init go.opentelemetry.io/otel/trace @155 ms, 0 ms clock, 965400 bytes, 4791 allocs
init go.opentelemetry.io/otel/propagation @155 ms, 0 ms clock, 26248 bytes, 221 allocs
init go.opentelemetry.io/otel/internal/global @155 ms, 0 ms clock, 400 bytes, 8 allocs
init go.opentelemetry.io/otel @155 ms, 0 ms clock, 136 bytes, 4 allocs
init github.com/edsrzf/mmap-go @155 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/oklog/ulid @155 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/prometheus/prometheus/tsdb/encoding @155 ms, 0 ms clock, 608 bytes, 6 allocs
init github.com/prometheus/prometheus/tsdb/index @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb/tombstones @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb/record @155 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/prometheus/prometheus/tsdb/wal @155 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb @155 ms, 0 ms clock, 2176 bytes, 23 allocs
init github.com/prometheus/prometheus/promql @155 ms, 0 ms clock, 31256 bytes, 246 allocs
init github.com/prometheus/prometheus/template @155 ms, 27 ms clock, 2032 bytes, 25 allocs
init github.com/prometheus/prometheus/model/intern @182 ms, 0.52 ms clock, 1440 bytes, 31 allocs
init github.com/prometheus/prometheus/scrape @183 ms, 0 ms clock, 16464 bytes, 310 allocs
init go.opentelemetry.io/otel/metric @183 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/otel/internal/metric/registry @183 ms, 0 ms clock, 96 bytes, 2 allocs
init go.opentelemetry.io/otel/internal/metric/global @183 ms, 0 ms clock, 112 bytes, 4 allocs
init go.opentelemetry.io/otel/semconv/v1%2e7%2e0 @183 ms, 0 ms clock, 528 bytes, 7 allocs
init go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp @183 ms, 0 ms clock, 1064 bytes, 14 allocs
init github.com/prometheus/prometheus/prompb @183 ms, 0 ms clock, 2096 bytes, 28 allocs
init github.com/prometheus/prometheus/util/logging @183 ms, 0 ms clock, 32 bytes, 1 allocs
init github.com/prometheus/prometheus/storage/remote @183 ms, 0.16 ms clock, 15232 bytes, 93 allocs
init github.com/prometheus/prometheus/util/httputil @183 ms, 0 ms clock, 336 bytes, 2 allocs
init github.com/prometheus/prometheus/web/api/v1 @183 ms, 0 ms clock, 112 bytes, 4 allocs
init github.com/grafana/loki/pkg/util/build @183 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/c2h5oh/datasize @183 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/csv @183 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/grafana/loki/clients/pkg/promtail/client @183 ms, 0 ms clock, 576 bytes, 11 allocs
init github.com/eapache/go-resiliency/breaker @183 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/rcrowley/go-metrics @183 ms, 0 ms clock, 688 bytes, 10 allocs
init github.com/eapache/go-xerial-snappy @183 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/pierrec/lz4 @190 ms, 0 ms clock, 320 bytes, 12 allocs
init golang.org/x/net/internal/socks @190 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jcmturner/gofork/encoding/asn1 @190 ms, 0 ms clock, 224 bytes, 7 allocs
init github.com/jcmturner/gokrb5/v8/iana/etypeID @190 ms, 0 ms clock, 1456 bytes, 2 allocs
init golang.org/x/crypto/md4 @190 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jcmturner/gokrb5/v8/iana/errorcode @190 ms, 0 ms clock, 3144 bytes, 3 allocs
init github.com/klauspost/compress/fse @190 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/klauspost/compress/huff0 @190 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/klauspost/compress/internal/snapref @190 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/klauspost/compress/zstd @190 ms, 0 ms clock, 288 bytes, 18 allocs
init github.com/Shopify/sarama @190 ms, 0 ms clock, 3064 bytes, 58 allocs
init github.com/aws/aws-sdk-go/service/ec2 @190 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/discovery/refresh @190 ms, 0.84 ms clock, 1664 bytes, 39 allocs
init github.com/aws/aws-sdk-go/service/lightsail @191 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/prometheus/prometheus/discovery/aws @191 ms, 0 ms clock, 1320 bytes, 21 allocs
init golang.org/x/crypto/pkcs12 @192 ms, 0 ms clock, 96 bytes, 5 allocs
init net/http/cookiejar @192 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/Azure/go-autorest/autorest/date @192 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/Azure/go-autorest/logger @192 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/golang-jwt/jwt/v4 @192 ms, 0 ms clock, 2376 bytes, 40 allocs
init github.com/Azure/go-autorest/autorest/adal @192 ms, 0 ms clock, 800 bytes, 18 allocs
init github.com/Azure/go-autorest/autorest @192 ms, 0 ms clock, 112 bytes, 5 allocs
init github.com/Azure/go-autorest/autorest/azure @192 ms, 0 ms clock, 2816 bytes, 6 allocs
init github.com/prometheus/prometheus/discovery/azure @192 ms, 0 ms clock, 448 bytes, 10 allocs
init github.com/prometheus/prometheus/discovery/consul @192 ms, 0.43 ms clock, 146136 bytes, 139 allocs
init github.com/google/go-querystring/query @192 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/digitalocean/godo/metrics @192 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/digitalocean/godo @192 ms, 0 ms clock, 296 bytes, 4 allocs
init github.com/prometheus/prometheus/discovery/digitalocean @192 ms, 0 ms clock, 768 bytes, 10 allocs
init github.com/prometheus/prometheus/discovery/dns @192 ms, 0 ms clock, 1648 bytes, 35 allocs
init github.com/fsnotify/fsnotify @192 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus/prometheus/discovery/file @192 ms, 7.5 ms clock, 87000 bytes, 173 allocs
init cloud.google.com/go/compute/metadata @200 ms, 0 ms clock, 480 bytes, 4 allocs
init golang.org/x/oauth2/google/internal/externalaccount @200 ms, 0 ms clock, 83008 bytes, 811 allocs
init google.golang.org/api/internal/third_party/uritemplates @200 ms, 0 ms clock, 7808 bytes, 109 allocs
init google.golang.org/genproto/googleapis/rpc/code @200 ms, 0 ms clock, 6320 bytes, 15 allocs
init github.com/googleapis/gax-go/v2/apierror/internal/proto @200 ms, 0 ms clock, 1688 bytes, 7 allocs
init google.golang.org/genproto/googleapis/rpc/errdetails @200 ms, 0 ms clock, 29104 bytes, 10 allocs
init google.golang.org/protobuf/internal/encoding/json @200 ms, 0 ms clock, 19976 bytes, 131 allocs
init google.golang.org/protobuf/encoding/protojson @200 ms, 0 ms clock, 312 bytes, 5 allocs
init google.golang.org/api/internal/gensupport @200 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opencensus.io/internal @200 ms, 0 ms clock, 40 bytes, 2 allocs
init go.opencensus.io/trace/tracestate @200 ms, 0 ms clock, 520048 bytes, 2408 allocs
init go.opencensus.io/trace @200 ms, 0 ms clock, 192 bytes, 4 allocs
init go.opencensus.io/resource @200 ms, 0 ms clock, 275496 bytes, 1586 allocs
init go.opencensus.io/tag @200 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opencensus.io/stats @200 ms, 0 ms clock, 48 bytes, 1 allocs
init go.opencensus.io/stats/view @200 ms, 0 ms clock, 17496 bytes, 17 allocs
init go.opencensus.io/plugin/ochttp @200 ms, 0 ms clock, 2696 bytes, 32 allocs
init github.com/prometheus/prometheus/discovery/gce @200 ms, 0 ms clock, 3184 bytes, 12 allocs
init k8s.io/klog/v2 @200 ms, 0 ms clock, 0 bytes, 0 allocs
init k8s.io/apimachinery/pkg/util/runtime @200 ms, 0 ms clock, 64 bytes, 2 allocs
init gopkg.in/inf%2ev0 @200 ms, 0 ms clock, 9312 bytes, 229 allocs
init k8s.io/apimachinery/pkg/api/resource @200 ms, 0 ms clock, 3816 bytes, 54 allocs
init k8s.io/apimachinery/pkg/runtime/schema @200 ms, 0 ms clock, 0 bytes, 0 allocs
init k8s.io/apimachinery/pkg/fields @200 ms, 0 ms clock, 160 bytes, 2 allocs
init k8s.io/apimachinery/pkg/util/errors @200 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/google/go-cmp/cmp/internal/diff @200 ms, 0 ms clock, 5376 bytes, 1 allocs
init github.com/google/go-cmp/cmp/internal/function @200 ms, 0 ms clock, 35624 bytes, 39 allocs
init github.com/google/go-cmp/cmp/internal/value @200 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/google/go-cmp/cmp @200 ms, 0 ms clock, 178360 bytes, 150 allocs
init k8s.io/apimachinery/pkg/util/validation @200 ms, 0 ms clock, 46792 bytes, 568 allocs
init k8s.io/apimachinery/pkg/labels @200 ms, 0 ms clock, 688 bytes, 3 allocs
init github.com/google/gofuzz @200 ms, 0 ms clock, 1056 bytes, 4 allocs
init k8s.io/apimachinery/pkg/util/intstr @200 ms, 0 ms clock, 152 bytes, 6 allocs
init sigs.k8s.io/json/internal/golang/encoding/json @200 ms, 0 ms clock, 32 bytes, 2 allocs
init sigs.k8s.io/structured-merge-diff/v4/value @200 ms, 0 ms clock, 1144 bytes, 6 allocs
init k8s.io/apimachinery/pkg/util/naming @200 ms, 0 ms clock, 8552 bytes, 48 allocs
init internal/lazyregexp @200 ms, 0 ms clock, 0 bytes, 0 allocs
init go/doc @200 ms, 0 ms clock, 2368 bytes, 19 allocs
init go/parser @200 ms, 0 ms clock, 768 bytes, 7 allocs
init k8s.io/apimachinery/pkg/runtime @200 ms, 0 ms clock, 3632 bytes, 14 allocs
init k8s.io/apimachinery/pkg/util/net @200 ms, 0 ms clock, 3016 bytes, 44 allocs
init k8s.io/apimachinery/pkg/apis/meta/v1 @200 ms, 0 ms clock, 30072 bytes, 289 allocs
init k8s.io/api/core/v1 @200 ms, 0 ms clock, 128704 bytes, 440 allocs
init k8s.io/apimachinery/pkg/util/wait @200 ms, 0 ms clock, 112 bytes, 2 allocs
init k8s.io/apimachinery/pkg/api/meta @200 ms, 0 ms clock, 49504 bytes, 12 allocs
init k8s.io/apimachinery/pkg/api/errors @200 ms, 0 ms clock, 624 bytes, 2 allocs
init k8s.io/apimachinery/pkg/version @200 ms, 0 ms clock, 8856 bytes, 103 allocs
init k8s.io/client-go/tools/clientcmd/api @200 ms, 0 ms clock, 72 bytes, 6 allocs
init k8s.io/client-go/transport @200 ms, 0 ms clock, 256 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication @200 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/runtime/serializer/streaming @200 ms, 0 ms clock, 80 bytes, 2 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1 @200 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1 @200 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1beta1 @200 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/plugin/pkg/client/auth/exec @200 ms, 0 ms clock, 49712 bytes, 445 allocs
init k8s.io/client-go/rest @200 ms, 0 ms clock, 192 bytes, 4 allocs
init k8s.io/apimachinery/pkg/apis/meta/v1beta1 @200 ms, 0 ms clock, 488 bytes, 8 allocs
init k8s.io/apimachinery/pkg/apis/meta/internalversion @200 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/tools/cache @200 ms, 0 ms clock, 416 bytes, 6 allocs
init k8s.io/api/discovery/v1beta1 @200 ms, 0 ms clock, 3680 bytes, 26 allocs
init k8s.io/api/networking/v1 @200 ms, 0 ms clock, 90448 bytes, 59 allocs
init k8s.io/api/networking/v1beta1 @200 ms, 0 ms clock, 4880 bytes, 36 allocs
init k8s.io/apimachinery/pkg/util/version @200 ms, 0 ms clock, 22280 bytes, 322 allocs
init github.com/googleapis/gnostic/extensions @200 ms, 0 ms clock, 2920 bytes, 9 allocs
init github.com/googleapis/gnostic/openapiv2 @200 ms, 0 ms clock, 42504 bytes, 86 allocs
init k8s.io/api/admissionregistration/v1 @200 ms, 0 ms clock, 4112 bytes, 28 allocs
init k8s.io/api/admissionregistration/v1beta1 @200 ms, 0 ms clock, 4112 bytes, 28 allocs
init k8s.io/api/apiserverinternal/v1alpha1 @200 ms, 0 ms clock, 2192 bytes, 20 allocs
init k8s.io/api/apps/v1 @200 ms, 0 ms clock, 11360 bytes, 66 allocs
init k8s.io/api/apps/v1beta1 @200 ms, 0 ms clock, 8720 bytes, 52 allocs
init k8s.io/api/apps/v1beta2 @200 ms, 0 ms clock, 12368 bytes, 72 allocs
init k8s.io/api/authentication/v1 @200 ms, 0 ms clock, 2864 bytes, 24 allocs
init k8s.io/api/authentication/v1beta1 @200 ms, 0 ms clock, 1520 bytes, 16 allocs
init k8s.io/api/authorization/v1 @200 ms, 0 ms clock, 4544 bytes, 34 allocs
init k8s.io/api/authorization/v1beta1 @200 ms, 0 ms clock, 4544 bytes, 34 allocs
init k8s.io/api/autoscaling/v1 @200 ms, 0 ms clock, 7232 bytes, 50 allocs
init k8s.io/api/autoscaling/v2 @200 ms, 0 ms clock, 8240 bytes, 56 allocs
init k8s.io/api/autoscaling/v2beta1 @200 ms, 0 ms clock, 6224 bytes, 44 allocs
init k8s.io/api/autoscaling/v2beta2 @200 ms, 0 ms clock, 8240 bytes, 56 allocs
init k8s.io/api/batch/v1 @200 ms, 0 ms clock, 4800 bytes, 31 allocs
init k8s.io/api/batch/v1beta1 @200 ms, 0 ms clock, 2192 bytes, 20 allocs
init k8s.io/api/certificates/v1 @200 ms, 0 ms clock, 2144 bytes, 18 allocs
init k8s.io/api/certificates/v1beta1 @200 ms, 0 ms clock, 2160 bytes, 17 allocs
init k8s.io/api/coordination/v1 @200 ms, 0 ms clock, 1184 bytes, 14 allocs
init k8s.io/api/coordination/v1beta1 @200 ms, 0 ms clock, 7352 bytes, 16 allocs
init k8s.io/api/discovery/v1 @200 ms, 0 ms clock, 2816 bytes, 22 allocs
init k8s.io/api/events/v1 @200 ms, 0 ms clock, 2048 bytes, 14 allocs
init k8s.io/api/events/v1beta1 @200 ms, 0 ms clock, 2048 bytes, 14 allocs
init k8s.io/api/extensions/v1beta1 @200 ms, 0 ms clock, 24176 bytes, 132 allocs
init k8s.io/api/flowcontrol/v1alpha1 @200 ms, 20 ms clock, 9296 bytes, 58 allocs
init k8s.io/api/flowcontrol/v1beta1 @221 ms, 0 ms clock, 171984 bytes, 56 allocs
init k8s.io/api/flowcontrol/v1beta2 @221 ms, 0 ms clock, 7568 bytes, 52 allocs
init k8s.io/api/node/v1 @221 ms, 0 ms clock, 1944 bytes, 19 allocs
init k8s.io/api/node/v1alpha1 @221 ms, 0 ms clock, 1856 bytes, 18 allocs
init k8s.io/api/node/v1beta1 @221 ms, 0 ms clock, 6408 bytes, 18 allocs
init k8s.io/api/policy/v1 @221 ms, 0 ms clock, 1856 bytes, 18 allocs
init k8s.io/api/policy/v1beta1 @221 ms, 0 ms clock, 7424 bytes, 46 allocs
init k8s.io/api/rbac/v1 @221 ms, 0 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/rbac/v1alpha1 @221 ms, 0 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/rbac/v1beta1 @221 ms, 0 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/scheduling/v1 @221 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/scheduling/v1alpha1 @221 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/scheduling/v1beta1 @221 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/storage/v1 @221 ms, 0 ms clock, 6176 bytes, 42 allocs
init k8s.io/api/storage/v1alpha1 @221 ms, 0 ms clock, 2864 bytes, 24 allocs
init k8s.io/api/storage/v1beta1 @221 ms, 0 ms clock, 6848 bytes, 46 allocs
init k8s.io/client-go/kubernetes/scheme @221 ms, 27 ms clock, 661120 bytes, 5100 allocs
init sigs.k8s.io/structured-merge-diff/v4/fieldpath @248 ms, 0 ms clock, 1040 bytes, 2 allocs
init sigs.k8s.io/structured-merge-diff/v4/typed @248 ms, 0 ms clock, 94480 bytes, 1794 allocs
init k8s.io/kube-openapi/pkg/schemaconv @248 ms, 0 ms clock, 32 bytes, 2 allocs
init k8s.io/client-go/tools/reference @248 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/imdario/mergo @248 ms, 0 ms clock, 96 bytes, 6 allocs
init k8s.io/client-go/tools/clientcmd/api/v1 @248 ms, 0 ms clock, 72 bytes, 4 allocs
init k8s.io/client-go/tools/clientcmd/api/latest @248 ms, 0 ms clock, 13912 bytes, 135 allocs
init github.com/spf13/pflag @248 ms, 0 ms clock, 272 bytes, 2 allocs
init k8s.io/client-go/tools/clientcmd @248 ms, 0 ms clock, 3720 bytes, 51 allocs
init github.com/prometheus/prometheus/discovery/kubernetes @248 ms, 9.3 ms clock, 21688 bytes, 427 allocs
init github.com/prometheus/prometheus/discovery/marathon @258 ms, 0 ms clock, 1584 bytes, 11 allocs
init github.com/docker/go-units @258 ms, 0 ms clock, 15944 bytes, 227 allocs
init github.com/docker/docker/api/types/network @258 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/opencontainers/go-digest @258 ms, 0 ms clock, 94176 bytes, 845 allocs
init github.com/opencontainers/image-spec/specs-go @258 ms, 0 ms clock, 0 bytes, 1 allocs
init github.com/docker/docker/api/types/swarm/runtime @258 ms, 0 ms clock, 104 bytes, 4 allocs
init github.com/Microsoft/go-winio @258 ms, 0 ms clock, 2232 bytes, 54 allocs
init github.com/docker/go-connections/sockets @258 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/distribution/digestset @258 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/distribution/reference @258 ms, 0 ms clock, 1340328 bytes, 11452 allocs
init github.com/containerd/containerd/errdefs @258 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/containerd/containerd/log @258 ms, 0 ms clock, 160 bytes, 2 allocs
init github.com/containerd/containerd/platforms @258 ms, 0 ms clock, 2728 bytes, 41 allocs
init github.com/docker/distribution/registry/api/errcode @258 ms, 0 ms clock, 2800 bytes, 10 allocs
init github.com/docker/go-connections/tlsconfig @258 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/docker/docker/client @258 ms, 0 ms clock, 7224 bytes, 66 allocs
init github.com/prometheus/prometheus/discovery/moby @258 ms, 0 ms clock, 1120 bytes, 20 allocs
init github.com/gophercloud/gophercloud/pagination @258 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/gophercloud/gophercloud/openstack/utils @258 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/prometheus/prometheus/discovery/openstack @258 ms, 0 ms clock, 3104 bytes, 12 allocs
init github.com/prometheus/prometheus/discovery/triton @258 ms, 0 ms clock, 576 bytes, 10 allocs
init github.com/go-zookeeper/zk @258 ms, 0 ms clock, 3440 bytes, 38 allocs
init github.com/prometheus/prometheus/util/treecache @258 ms, 8.8 ms clock, 1200 bytes, 26 allocs
init github.com/prometheus/prometheus/discovery/zookeeper @267 ms, 0 ms clock, 496 bytes, 18 allocs
init text/scanner @267 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/grafana/loki/clients/pkg/logentry/logql @267 ms, 0 ms clock, 464 bytes, 2 allocs
init github.com/grafana/loki/pkg/logqlmodel @267 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/google/uuid @267 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/mitchellh/reflectwalk @267 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/mitchellh/copystructure @267 ms, 0 ms clock, 344 bytes, 5 allocs
init github.com/Masterminds/goutils @267 ms, 0 ms clock, 5424 bytes, 2 allocs
init github.com/shopspring/decimal @267 ms, 0 ms clock, 1104 bytes, 54 allocs
init github.com/spf13/cast @267 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/Masterminds/semver/v3 @267 ms, 0.50 ms clock, 133760 bytes, 935 allocs
init github.com/Masterminds/sprig/v3 @267 ms, 0 ms clock, 41480 bytes, 55 allocs
init golang.org/x/crypto/sha3 @267 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/loki/clients/pkg/logentry/stages @267 ms, 0 ms clock, 20056 bytes, 6 allocs
init github.com/grafana/loki/clients/pkg/promtail/discovery/consulagent @267 ms, 0.41 ms clock, 149048 bytes, 139 allocs
init github.com/bmatcuk/doublestar @268 ms, 0 ms clock, 0 bytes, 0 allocs
init gopkg.in/fsnotify%2ev1 @268 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hpcloud/tail/util @268 ms, 0 ms clock, 80 bytes, 1 allocs
init gopkg.in/fsnotify/fsnotify%2ev1 @268 ms, 0 ms clock, 16 bytes, 1 allocs
init gopkg.in/tomb%2ev1 @268 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hpcloud/tail/watch @268 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/hpcloud/tail @268 ms, 0 ms clock, 192 bytes, 4 allocs
init time/tzdata @268 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/util @268 ms, 0 ms clock, 13304 bytes, 96 allocs
init github.com/google/pprof/profile @268 ms, 7.3 ms clock, 147216 bytes, 1175 allocs
init github.com/shurcooL/vfsgen @275 ms, 2.5 ms clock, 33784 bytes, 524 allocs
init github.com/grafana/loki/clients/pkg/promtail/server/ui @278 ms, 0.50 ms clock, 1757256 bytes, 164 allocs
init github.com/cloudflare/cloudflare-go @278 ms, 0 ms clock, 2992 bytes, 7 allocs
init github.com/buger/jsonparser @278 ms, 0 ms clock, 144 bytes, 9 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/cloudflare @278 ms, 0 ms clock, 10072 bytes, 39 allocs
init google.golang.org/genproto/googleapis/type/expr @278 ms, 15 ms clock, 1432 bytes, 12 allocs
init google.golang.org/genproto/googleapis/iam/v1 @294 ms, 0 ms clock, 12416 bytes, 35 allocs
init cloud.google.com/go/iam @294 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/types/known/fieldmaskpb @294 ms, 0 ms clock, 1440 bytes, 6 allocs
init google.golang.org/genproto/googleapis/pubsub/v1 @294 ms, 0 ms clock, 75040 bytes, 48 allocs
init google.golang.org/api/iterator @294 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opencensus.io/plugin/ocgrpc @294 ms, 0 ms clock, 2664 bytes, 33 allocs
init google.golang.org/grpc/credentials/alts/internal/proto/grpc_gcp @294 ms, 0 ms clock, 55736 bytes, 49 allocs
init google.golang.org/grpc/credentials/alts/internal/conn @294 ms, 0 ms clock, 80 bytes, 3 allocs
init google.golang.org/grpc/credentials/alts/internal/handshaker @294 ms, 0 ms clock, 752 bytes, 7 allocs
init google.golang.org/grpc/credentials/alts/internal/handshaker/service @294 ms, 0 ms clock, 48 bytes, 1 allocs
init google.golang.org/grpc/internal/googlecloud @294 ms, 0 ms clock, 464 bytes, 3 allocs
init google.golang.org/grpc/credentials/alts @294 ms, 0 ms clock, 32 bytes, 2 allocs
init google.golang.org/grpc/credentials/google @294 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/balancer/grpclb/grpc_lb_v1 @294 ms, 0 ms clock, 6432 bytes, 13 allocs
init google.golang.org/grpc/balancer/grpclb @294 ms, 0 ms clock, 48 bytes, 3 allocs
init cloud.google.com/go/internal/version @294 ms, 0 ms clock, 0 bytes, 1 allocs
init google.golang.org/api/support/bundler @294 ms, 0 ms clock, 48 bytes, 3 allocs
init google.golang.org/genproto/protobuf/field_mask @294 ms, 0 ms clock, 0 bytes, 0 allocs
init cloud.google.com/go/pubsub @294 ms, 0 ms clock, 4664 bytes, 63 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/gelf @294 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/xdg-go/stringprep @294 ms, 0 ms clock, 295792 bytes, 2340 allocs
init go4.org/intern @294 ms, 0 ms clock, 320 bytes, 3 allocs
init inet.af/netaddr @294 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/grafana/loki/pkg/logql/log/jsonexpr @294 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/loki/pkg/logql/log/pattern @294 ms, 0 ms clock, 288 bytes, 4 allocs
init github.com/grafana/loki/pkg/logql/log @294 ms, 0 ms clock, 24424 bytes, 19 allocs
init github.com/grafana/loki/pkg/logql/syntax @294 ms, 0 ms clock, 4464 bytes, 8 allocs
init github.com/grafana/loki/pkg/querier/astmapper @294 ms, 0 ms clock, 4328 bytes, 55 allocs
init github.com/grafana/loki/pkg/util/httpreq @294 ms, 0 ms clock, 968 bytes, 13 allocs
init github.com/grafana/loki/pkg/util/validation @294 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/loki/pkg/storage/chunk @294 ms, 0 ms clock, 336 bytes, 7 allocs
init github.com/bradfitz/gomemcache/memcache @294 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/sony/gobreaker @294 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/thanos-io/thanos/pkg/discovery/dns/miekgdns @294 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/facette/natsort @294 ms, 0 ms clock, 2472 bytes, 21 allocs
init github.com/go-redis/redis/v8/internal/rand @294 ms, 0 ms clock, 5448 bytes, 3 allocs
init github.com/go-redis/redis/v8/internal @294 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/go-redis/redis/v8/internal/pool @294 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-redis/redis/v8/internal/hscan @294 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/go-redis/redis/v8 @294 ms, 0 ms clock, 64 bytes, 3 allocs
init github.com/grafana/loki/pkg/storage/config @294 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/grafana/loki/pkg/storage/stores/series/index @294 ms, 18 ms clock, 3248 bytes, 73 allocs
init github.com/grafana/loki/pkg/storage/chunk/client @313 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/grafana/loki/pkg/logql @313 ms, 0 ms clock, 7744 bytes, 196 allocs
init github.com/grafana/loki/pkg/loghttp @313 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/grafana/loki/pkg/loghttp/push @313 ms, 7.4 ms clock, 2016 bytes, 59 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/stdin @320 ms, 0 ms clock, 944 bytes, 9 allocs
init github.com/influxdata/go-syslog/v3/common @320 ms, 0 ms clock, 2160 bytes, 11 allocs
init github.com/spf13/afero/mem @320 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/spf13/afero @320 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/influxdata/telegraf/plugins/inputs @320 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/windows/win_eventlog @320 ms, 0 ms clock, 640 bytes, 10 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/windows @320 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/logs @320 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/agentproto @320 ms, 0 ms clock, 104 bytes, 4 allocs
init github.com/grafana/agent/pkg/build @320 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/metrics/wal @320 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/grafana/agent/pkg/metrics/instance @320 ms, 0.46 ms clock, 1320 bytes, 36 allocs
init github.com/grafana/agent/pkg/metrics/instance/configstore @321 ms, 0 ms clock, 880 bytes, 23 allocs
init github.com/cortexproject/cortex/pkg/tenant @321 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/cortexproject/cortex/pkg/util/log @321 ms, 0 ms clock, 1320 bytes, 34 allocs
init google.golang.org/grpc/encoding/gzip @321 ms, 0 ms clock, 384 bytes, 3 allocs
init github.com/grafana/dskit/grpcencoding/snappy @321 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/grafana/agent/pkg/metrics/cluster/client @321 ms, 0 ms clock, 3480 bytes, 42 allocs
init github.com/prometheus/prometheus/discovery/eureka @321 ms, 0 ms clock, 472 bytes, 12 allocs
init github.com/prometheus/prometheus/discovery/hetzner @321 ms, 0 ms clock, 520 bytes, 12 allocs
init github.com/scaleway/scaleway-sdk-go/namegenerator @321 ms, 0 ms clock, 5424 bytes, 2 allocs
init github.com/scaleway/scaleway-sdk-go/logger @321 ms, 0 ms clock, 848 bytes, 17 allocs
init github.com/scaleway/scaleway-sdk-go/validation @321 ms, 0 ms clock, 36328 bytes, 397 allocs
init github.com/scaleway/scaleway-sdk-go/scw @321 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/prometheus/prometheus/discovery/scaleway @321 ms, 0 ms clock, 592 bytes, 10 allocs
init github.com/grafana/agent/pkg/metrics/cluster @321 ms, 59 ms clock, 69320 bytes, 268 allocs
init github.com/grafana/agent/pkg/metrics @381 ms, 0.048 ms clock, 4680 bytes, 104 allocs
init golang.org/x/sys/windows/registry @381 ms, 0 ms clock, 496 bytes, 11 allocs
init github.com/github/smimesign/certstore @381 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/server @381 ms, 0 ms clock, 1056 bytes, 14 allocs
init go.opentelemetry.io/collector/config @381 ms, 0 ms clock, 104 bytes, 5 allocs
init github.com/mostynb/go-grpc-compression/snappy @381 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/mostynb/go-grpc-compression/zstd @381 ms, 0 ms clock, 9552 bytes, 28 allocs
init go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc @381 ms, 0 ms clock, 0 bytes, 0 allocs
init go.opentelemetry.io/collector/component/componenterror @381 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/common/v1 @382 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data @382 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/resource/v1 @382 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/logs/v1 @382 ms, 0 ms clock, 2632 bytes, 17 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/metrics/v1 @382 ms, 0 ms clock, 1048 bytes, 14 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/trace/v1 @382 ms, 0 ms clock, 1048 bytes, 14 allocs
init go.opentelemetry.io/collector/config/configauth @382 ms, 0 ms clock, 64 bytes, 4 allocs
init go.opentelemetry.io/collector/config/configtls @382 ms, 0 ms clock, 208 bytes, 2 allocs
init go.opentelemetry.io/collector/config/configgrpc @382 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/consumer/consumerhelper @382 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/external/obsreportconfig/obsmetrics @382 ms, 0 ms clock, 6624 bytes, 70 allocs
init github.com/gogo/protobuf/jsonpb @382 ms, 0 ms clock, 256 bytes, 2 allocs
init go.opencensus.io/metric @382 ms, 0 ms clock, 48 bytes, 3 allocs
init go.opentelemetry.io/collector/exporter/exporterhelper @382 ms, 0 ms clock, 2320 bytes, 47 allocs
init github.com/gogo/googleapis/google/api @382 ms, 0 ms clock, 624 bytes, 16 allocs
init github.com/jaegertracing/jaeger/model @382 ms, 0 ms clock, 4840 bytes, 17 allocs
init github.com/jaegertracing/jaeger/proto-gen/api_v2 @382 ms, 0 ms clock, 904 bytes, 22 allocs
init github.com/apache/thrift/lib/go/thrift @382 ms, 0 ms clock, 2016 bytes, 32 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger @382 ms, 0 ms clock, 400 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/jaegerexporter @382 ms, 0 ms clock, 120 bytes, 3 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/logs/v1 @382 ms, 0 ms clock, 504 bytes, 7 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/metrics/v1 @382 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/trace/v1 @382 ms, 0 ms clock, 752 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter @382 ms, 0 ms clock, 296 bytes, 11 allocs
init go.opentelemetry.io/collector/service/featuregate @382 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter @382 ms, 0 ms clock, 56 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/extension/oauth2clientauthextension @382 ms, 0 ms clock, 112 bytes, 5 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/processor/filtermatcher @382 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/processor/processorhelper @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanmetricsprocessor @382 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor/internal/idbatcher @382 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor @382 ms, 0 ms clock, 648 bytes, 18 allocs
init github.com/jaegertracing/jaeger/proto-gen/api_v2/metrics @382 ms, 0 ms clock, 1200 bytes, 20 allocs
init github.com/jaegertracing/jaeger/storage/spanstore @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/storage @382 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/jaegertracing/jaeger/pkg/clientcfg/clientcfghttp @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/processor @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin @382 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jaegertracing/jaeger/model/converter/thrift/zipkin @382 ms, 0 ms clock, 672 bytes, 4 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/handler @382 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/spf13/jwalterweatherman @382 ms, 0 ms clock, 1320 bytes, 22 allocs
init gopkg.in/ini%2ev1 @382 ms, 0 ms clock, 5096 bytes, 48 allocs
init github.com/hashicorp/hcl/hcl/strconv @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl/hcl/parser @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl/json/parser @382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl @382 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/pelletier/go-toml @382 ms, 0 ms clock, 288 bytes, 11 allocs
init github.com/spf13/viper @382 ms, 0 ms clock, 1488 bytes, 14 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver @382 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter/internal/awsmsk @382 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter @382 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/common/v1 @382 ms, 0 ms clock, 4504 bytes, 17 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/resource/v1 @382 ms, 0 ms clock, 1712 bytes, 8 allocs
init google.golang.org/protobuf/types/known/wrapperspb @382 ms, 0 ms clock, 5648 bytes, 5 allocs
init github.com/golang/protobuf/ptypes/wrappers @382 ms, 0 ms clock, 656 bytes, 4 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/trace/v1 @382 ms, 0 ms clock, 126064 bytes, 43 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/internal/zipkin @382 ms, 0 ms clock, 21368 bytes, 287 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/metrics/v1 @382 ms, 0 ms clock, 9792 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus @382 ms, 0 ms clock, 1152 bytes, 6 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/zipkinv1 @382 ms, 0 ms clock, 992 bytes, 11 allocs
init github.com/openzipkin/zipkin-go/model @382 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/openzipkin/zipkin-go/proto/zipkin_proto3 @382 ms, 0 ms clock, 4112 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/zipkinv2 @382 ms, 0 ms clock, 6552 bytes, 10 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver @382 ms, 0 ms clock, 400 bytes, 12 allocs
init github.com/golang/protobuf/protoc-gen-go/descriptor @382 ms, 0 ms clock, 528 bytes, 3 allocs
init github.com/golang/protobuf/jsonpb @382 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/grpc-ecosystem/grpc-gateway/internal @382 ms, 0 ms clock, 87448 bytes, 56 allocs
init google.golang.org/genproto/googleapis/api/httpbody @382 ms, 0 ms clock, 7256 bytes, 7 allocs
init github.com/grpc-ecosystem/grpc-gateway/runtime @382 ms, 0 ms clock, 5816 bytes, 55 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/metrics/v1 @382 ms, 16 ms clock, 1872 bytes, 13 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/trace/v1 @399 ms, 0 ms clock, 3040 bytes, 13 allocs
init github.com/soheilhy/cmux @399 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver/internal/ocmetrics @399 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver/internal/octrace @399 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver @399 ms, 0 ms clock, 56 bytes, 2 allocs
init go.opentelemetry.io/collector/config/configtest @399 ms, 0 ms clock, 2768 bytes, 42 allocs
init go.opentelemetry.io/collector/processor/batchprocessor @399 ms, 0 ms clock, 288 bytes, 8 allocs
init go.opentelemetry.io/collector/receiver/otlpreceiver @399 ms, 0 ms clock, 56 bytes, 2 allocs
init github.com/fatih/structs @399 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/google/go-jsonnet/ast @399 ms, 0 ms clock, 1200 bytes, 4 allocs
init github.com/google/go-jsonnet/internal/parser @399 ms, 0 ms clock, 968 bytes, 8 allocs
init github.com/google/go-jsonnet/internal/program @399 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/google/go-jsonnet @399 ms, 0 ms clock, 8824 bytes, 124 allocs
init github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1 @399 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme @399 ms, 0 ms clock, 43768 bytes, 328 allocs
init k8s.io/client-go/metadata @399 ms, 0 ms clock, 39104 bytes, 296 allocs
init sigs.k8s.io/controller-runtime/pkg/client/apiutil @399 ms, 0 ms clock, 501344 bytes, 2609 allocs
init sigs.k8s.io/controller-runtime/pkg/log @399 ms, 0 ms clock, 144 bytes, 2 allocs
init github.com/evanphx/json-patch @399 ms, 0 ms clock, 1776 bytes, 23 allocs
init k8s.io/apimachinery/pkg/util/mergepatch @399 ms, 0 ms clock, 112 bytes, 7 allocs
init k8s.io/client-go/dynamic @399 ms, 0 ms clock, 74320 bytes, 489 allocs
init k8s.io/apiextensions-apiserver/pkg/apis/apiextensions @399 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/api/equality @399 ms, 0 ms clock, 400 bytes, 2 allocs
init k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1 @399 ms, 0 ms clock, 224 bytes, 10 allocs
init github.com/grafana/agent/pkg/operator/apis/monitoring/v1alpha1 @399 ms, 0 ms clock, 3512 bytes, 14 allocs
init github.com/grafana/agent/pkg/operator/config @399 ms, 0 ms clock, 856 bytes, 12 allocs
init github.com/grafana/agent/pkg/traces/servicegraphprocessor @399 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/service/external/builder @399 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opencensus.io/metric/metricexport @399 ms, 0 ms clock, 216 bytes, 11 allocs
init github.com/prometheus/statsd_exporter/pkg/mapper/fsm @399 ms, 0 ms clock, 2840 bytes, 28 allocs
init github.com/prometheus/statsd_exporter/pkg/mapper @399 ms, 0 ms clock, 26608 bytes, 399 allocs
init github.com/jsternberg/zap-logfmt @399 ms, 0 ms clock, 64 bytes, 2 allocs
init github.com/drone/envsubst/v2/path @399 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/drone/envsubst/v2/parse @399 ms, 0 ms clock, 96 bytes, 6 allocs
init github.com/prometheus/prometheus/discovery/http @399 ms, 106 ms clock, 17296 bytes, 247 allocs
init github.com/grafana/agent/pkg/integrations @505 ms, 148 ms clock, 768 bytes, 21 allocs
init github.com/grafana/agent/pkg/integrations/v2 @654 ms, 0 ms clock, 256 bytes, 7 allocs
init github.com/hairyhenderson/go-fsimpl @654 ms, 0 ms clock, 336 bytes, 2 allocs
init golang.org/x/net/http/httpproxy @654 ms, 0 ms clock, 336 bytes, 2 allocs
init github.com/mattn/go-ieproxy @654 ms, 0 ms clock, 384 bytes, 8 allocs
init github.com/Azure/azure-pipeline-go/pipeline @654 ms, 162 ms clock, 5768 bytes, 49 allocs
init github.com/Azure/azure-storage-blob-go/azblob @817 ms, 0 ms clock, 504 bytes, 10 allocs
init golang.org/x/xerrors @817 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/internal/oc @817 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob @817 ms, 0 ms clock, 896 bytes, 22 allocs
init gocloud.dev/internal/escape @817 ms, 0 ms clock, 2256 bytes, 22 allocs
init gocloud.dev/blob/azureblob @817 ms, 0 ms clock, 384 bytes, 3 allocs
init google.golang.org/genproto/googleapis/type/date @817 ms, 0 ms clock, 1120 bytes, 6 allocs
init google.golang.org/genproto/googleapis/storage/v2 @817 ms, 0 ms clock, 46144 bytes, 34 allocs
init cloud.google.com/go/storage @817 ms, 18 ms clock, 20800 bytes, 187 allocs
init gocloud.dev/gcp @835 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/genproto/googleapis/iam/credentials/v1 @835 ms, 0 ms clock, 5696 bytes, 13 allocs
init cloud.google.com/go/iam/credentials/apiv1 @835 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob/gcsblob @835 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/aws/aws-sdk-go/private/protocol/eventstream @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/service/s3 @835 ms, 0 ms clock, 51616 bytes, 346 allocs
init github.com/aws/aws-sdk-go/service/s3/s3manager @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/internal/rand @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/internal/sdk @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/smithy-go/rand @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/smithy-go/time @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/aws/middleware @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/aws/retry @835 ms, 0 ms clock, 752 bytes, 4 allocs
init github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4 @835 ms, 0 ms clock, 1392 bytes, 4 allocs
init github.com/aws/smithy-go/encoding/httpbinding @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/service/sso/internal/endpoints @835 ms, 0 ms clock, 43712 bytes, 419 allocs
init github.com/aws/aws-sdk-go-v2/credentials/ssocreds @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints @835 ms, 0 ms clock, 52288 bytes, 425 allocs
init github.com/aws/aws-sdk-go-v2/credentials/stscreds @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/internal/ini @835 ms, 0 ms clock, 2304 bytes, 22 allocs
init github.com/aws/aws-sdk-go-v2/config @835 ms, 0 ms clock, 816 bytes, 10 allocs
init gocloud.dev/aws @835 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob/s3blob @835 ms, 0 ms clock, 8 bytes, 1 allocs
init github.com/hairyhenderson/go-fsimpl/blobfs @835 ms, 0 ms clock, 80 bytes, 2 allocs
init github.com/hairyhenderson/go-fsimpl/filefs @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/joho/godotenv @835 ms, 0 ms clock, 23560 bytes, 240 allocs
init golang.org/x/sys/cpu @835 ms, 0 ms clock, 1568 bytes, 5 allocs
init golang.org/x/crypto/blake2b @835 ms, 0 ms clock, 32 bytes, 2 allocs
init golang.org/x/crypto/curve25519 @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/Shopify/ejson/crypto @835 ms, 0 ms clock, 33128 bytes, 266 allocs
init github.com/dustin/gojson @835 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/Shopify/ejson/json @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hairyhenderson/gomplate/v3/conv @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hairyhenderson/toml/internal @835 ms, 0 ms clock, 7232 bytes, 15 allocs
init github.com/hairyhenderson/toml @835 ms, 0 ms clock, 1456 bytes, 9 allocs
init github.com/ugorji/go/codec @835 ms, 0 ms clock, 2928 bytes, 39 allocs
init github.com/docker/libkv/store @835 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/docker/libkv @835 ms, 0 ms clock, 72 bytes, 2 allocs
init go.etcd.io/bbolt @835 ms, 0 ms clock, 400 bytes, 20 allocs
init github.com/docker/libkv/store/boltdb @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/libkv/store/consul @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/aws/aws-sdk-go/service/kms @835 ms, 0 ms clock, 3568 bytes, 6 allocs
init github.com/hashicorp/go-retryablehttp @835 ms, 0 ms clock, 8128 bytes, 59 allocs
init github.com/hashicorp/go-secure-stdlib/parseutil @835 ms, 0 ms clock, 8904 bytes, 101 allocs
init github.com/hashicorp/vault/sdk/helper/consts @835 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/hashicorp/vault/sdk/physical @835 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/hashicorp/vault/sdk/physical/inmem @835 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/hashicorp/go-secure-stdlib/mlock @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-version @835 ms, 0 ms clock, 77048 bytes, 552 allocs
init github.com/hashicorp/go-plugin/internal/plugin @835 ms, 0 ms clock, 257328 bytes, 131 allocs
init google.golang.org/grpc/health @835 ms, 0 ms clock, 224 bytes, 2 allocs
init google.golang.org/grpc/reflection/grpc_reflection_v1alpha @835 ms, 0 ms clock, 5280 bytes, 11 allocs
init github.com/hashicorp/yamux @835 ms, 0 ms clock, 512 bytes, 26 allocs
init github.com/hashicorp/go-plugin @835 ms, 0 ms clock, 128 bytes, 6 allocs
init github.com/hashicorp/vault/sdk/version @835 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/crypto/cryptobyte @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/hashicorp/vault/sdk/logical @835 ms, 0 ms clock, 5768 bytes, 28 allocs
init gopkg.in/square/go-jose.v2/json @835 ms, 0 ms clock, 80 bytes, 5 allocs
init gopkg.in/square/go-jose%2ev2 @835 ms, 0 ms clock, 304 bytes, 8 allocs
init gopkg.in/square/go-jose.v2/jwt @835 ms, 0 ms clock, 176 bytes, 11 allocs
init archive/tar @835 ms, 0 ms clock, 736 bytes, 11 allocs
init github.com/hashicorp/vault/api @835 ms, 0 ms clock, 144 bytes, 9 allocs
init github.com/aws/aws-sdk-go/service/secretsmanager @835 ms, 0 ms clock, 672 bytes, 3 allocs
init github.com/aws/aws-sdk-go/service/ssm @835 ms, 0 ms clock, 16504 bytes, 12 allocs
init github.com/rs/zerolog/internal/json @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/rs/zerolog @835 ms, 0 ms clock, 112 bytes, 4 allocs
init github.com/go-git/go-billy/v5 @835 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/go-git/go-billy/v5/memfs @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing @835 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/go-git/go-git/v5/plumbing/format/index @835 ms, 0 ms clock, 96 bytes, 6 allocs
init github.com/go-git/go-git/v5/plumbing/storer @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/utils/ioutil @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/utils/merkletrie @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/ProtonMail/go-crypto/openpgp/aes/keywrap @835 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/ProtonMail/go-crypto/ocb @835 ms, 0 ms clock, 32 bytes, 1 allocs
init github.com/ProtonMail/go-crypto/openpgp/internal/algorithm @835 ms, 0 ms clock, 768 bytes, 8 allocs
init github.com/ProtonMail/go-crypto/brainpool @835 ms, 0 ms clock, 80 bytes, 4 allocs
init github.com/ProtonMail/go-crypto/openpgp/internal/ecc @835 ms, 0 ms clock, 20792 bytes, 427 allocs
init compress/bzip2 @835 ms, 0 ms clock, 0 bytes, 0 allocs
init image/color @835 ms, 0 ms clock, 88 bytes, 11 allocs
init image @835 ms, 0 ms clock, 80 bytes, 7 allocs
init image/jpeg @835 ms, 0 ms clock, 2216 bytes, 6 allocs
init github.com/ProtonMail/go-crypto/openpgp @835 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/go-git/gcfg/types @835 ms, 0 ms clock, 768 bytes, 7 allocs
init github.com/go-git/gcfg @835 ms, 0 ms clock, 1552 bytes, 16 allocs
init github.com/go-git/go-billy/v5/osfs @835 ms, 0 ms clock, 144 bytes, 3 allocs
init github.com/go-git/go-git/v5/internal/url @835 ms, 0 ms clock, 17696 bytes, 122 allocs
init github.com/go-git/go-git/v5/config @835 ms, 0 ms clock, 3400 bytes, 44 allocs
init github.com/go-git/go-git/v5/storage @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/format/diff @835 ms, 0 ms clock, 4552 bytes, 31 allocs
init github.com/sergi/go-diff/diffmatchpatch @835 ms, 0 ms clock, 7432 bytes, 79 allocs
init github.com/go-git/go-git/v5/plumbing/object @835 ms, 0 ms clock, 176 bytes, 10 allocs
init github.com/go-git/go-git/v5/plumbing/format/pktline @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp/capability @835 ms, 0 ms clock, 1168 bytes, 10 allocs
init github.com/go-git/go-git/v5/storage/memory @835 ms, 0 ms clock, 72 bytes, 4 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp @835 ms, 0 ms clock, 224 bytes, 10 allocs
init github.com/go-git/go-git/v5/plumbing/transport @835 ms, 0 ms clock, 368 bytes, 9 allocs
init github.com/go-git/go-git/v5/plumbing/format/idxfile @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/format/packfile @835 ms, 0 ms clock, 352 bytes, 13 allocs
init github.com/go-git/go-git/v5/plumbing/transport/internal/common @835 ms, 0 ms clock, 16 bytes, 1 allocs
init golang.org/x/sys/execabs @835 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-git/go-git/v5/plumbing/format/objfile @835 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/go-git/go-git/v5/storage/filesystem/dotgit @835 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/go-git/go-git/v5/plumbing/transport/server @835 ms, 0 ms clock, 112 bytes, 6 allocs
init github.com/go-git/go-git/v5/plumbing/transport/file @835 ms, 0 ms clock, 64 bytes, 3 allocs
init github.com/go-git/go-git/v5/plumbing/transport/git @835 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/transport/http @835 ms, 0 ms clock, 8 bytes, 1 allocs
init golang.org/x/crypto/ssh @835 ms, 0 ms clock, 12856 bytes, 82 allocs
init golang.org/x/crypto/ssh/agent @835 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/xanzy/ssh-agent @835 ms, 19 ms clock, 704 bytes, 23 allocs
init github.com/kevinburke/ssh_config @855 ms, 0 ms clock, 17552 bytes, 162 allocs
init github.com/go-git/go-git/v5/plumbing/transport/ssh @855 ms, 0 ms clock, 24 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/transport/client @855 ms, 0 ms clock, 1096 bytes, 6 allocs
init github.com/go-git/go-git/v5/utils/merkletrie/filesystem @855 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/go-git/go-git/v5 @855 ms, 0 ms clock, 632 bytes, 39 allocs
init k8s.io/client-go/third_party/forked/golang/template @855 ms, 0 ms clock, 4624 bytes, 11 allocs
init k8s.io/client-go/util/jsonpath @855 ms, 0 ms clock, 13976 bytes, 145 allocs
init github.com/hairyhenderson/gomplate/v3/data @855 ms, 138 ms clock, 772408 bytes, 11558 allocs
init github.com/hairyhenderson/gomplate/v3/crypto @993 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/hairyhenderson/gomplate/v3/file @993 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hairyhenderson/gomplate/v3/random @993 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-sockaddr/template @993 ms, 0 ms clock, 1920 bytes, 9 allocs
init github.com/gosimple/slug @993 ms, 0 ms clock, 13632 bytes, 74 allocs
init github.com/hairyhenderson/gomplate/v3/strings @993 ms, 0 ms clock, 22864 bytes, 33 allocs
init github.com/hairyhenderson/gomplate/v3 @993 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/config @993 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-resty/resty/v2 @993 ms, 0 ms clock, 17648 bytes, 109 allocs
init github.com/linode/linodego @993 ms, 0 ms clock, 53512 bytes, 811 allocs
init github.com/prometheus/prometheus/discovery/linode @993 ms, 0 ms clock, 432 bytes, 10 allocs
init github.com/prometheus/prometheus/discovery/puppetdb @993 ms, 0 ms clock, 18568 bytes, 236 allocs
init github.com/kolo/xmlrpc @993 ms, 0 ms clock, 4232 bytes, 36 allocs
init github.com/prometheus/prometheus/discovery/uyuni @993 ms, 0 ms clock, 496 bytes, 10 allocs
init net/mail @993 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/cncf/xds/go/udpa/annotations @993 ms, 0 ms clock, 8704 bytes, 57 allocs
init github.com/envoyproxy/protoc-gen-validate/validate @993 ms, 0 ms clock, 15752 bytes, 26 allocs
init github.com/cncf/xds/go/xds/annotations/v3 @993 ms, 0 ms clock, 10568 bytes, 55 allocs
init github.com/cncf/xds/go/xds/core/v3 @993 ms, 0 ms clock, 15680 bytes, 132 allocs
init github.com/envoyproxy/go-control-plane/envoy/annotations @993 ms, 0 ms clock, 2240 bytes, 19 allocs
init github.com/envoyproxy/go-control-plane/envoy/type/v3 @993 ms, 0 ms clock, 220816 bytes, 80 allocs
init google.golang.org/protobuf/types/known/structpb @993 ms, 0 ms clock, 4000 bytes, 15 allocs
init github.com/golang/protobuf/ptypes/struct @993 ms, 0 ms clock, 528 bytes, 3 allocs
init github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3 @993 ms, 0 ms clock, 27488 bytes, 239 allocs
init github.com/envoyproxy/go-control-plane/envoy/config/core/v3 @993 ms, 0 ms clock, 184040 bytes, 554 allocs
init github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3 @993 ms, 0 ms clock, 5640 bytes, 16 allocs
init github.com/prometheus/prometheus/discovery/xds @993 ms, 378 ms clock, 77792 bytes, 105 allocs
init github.com/grafana/agent/pkg/integrations/agent @1372 ms, 0 ms clock, 304 bytes, 2 allocs
init github.com/Lusitaniae/apache_exporter/collector @1372 ms, 0 ms clock, 624 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/apache_http @1372 ms, 0 ms clock, 80 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/cadvisor @1372 ms, 0 ms clock, 1808 bytes, 9 allocs
init github.com/go-kit/kit/log @1372 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/consul_exporter/pkg/exporter @1372 ms, 0 ms clock, 3608 bytes, 107 allocs
init github.com/grafana/agent/pkg/integrations/consul_exporter @1372 ms, 0 ms clock, 536 bytes, 5 allocs
init github.com/google/dnsmasq_exporter/collector @1372 ms, 0 ms clock, 2392 bytes, 55 allocs
init github.com/grafana/agent/pkg/integrations/dnsmasq_exporter @1372 ms, 0 ms clock, 440 bytes, 6 allocs
init github.com/grafana/agent/pkg/integrations/ebpf_exporter @1372 ms, 0 ms clock, 232 bytes, 4 allocs
init github.com/prometheus-community/elasticsearch_exporter/pkg/clusterinfo @1372 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/prometheus-community/elasticsearch_exporter/collector @1372 ms, 0 ms clock, 1120 bytes, 5 allocs
init github.com/grafana/agent/pkg/integrations/elasticsearch_exporter @1372 ms, 0 ms clock, 568 bytes, 5 allocs
init github.com/grafana/agent/pkg/integrations/github_exporter @1372 ms, 0 ms clock, 440 bytes, 4 allocs
init github.com/samuel/go-zookeeper/zk @1372 ms, 0 ms clock, 3248 bytes, 36 allocs
init github.com/krallistic/kazoo-go @1372 ms, 0 ms clock, 256 bytes, 16 allocs
init github.com/xdg/stringprep @1372 ms, 0 ms clock, 296256 bytes, 2342 allocs
init github.com/grafana/agent/pkg/integrations/kafka_exporter @1372 ms, 10 ms clock, 1608 bytes, 7 allocs
init github.com/grobie/gomemcache/memcache @1382 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/prometheus/memcached_exporter/pkg/exporter @1382 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/integrations/memcached_exporter @1382 ms, 0 ms clock, 232 bytes, 4 allocs
init go.mongodb.org/mongo-driver/bson/primitive @1382 ms, 0 ms clock, 10136 bytes, 108 allocs
init github.com/go-stack/stack @1382 ms, 0 ms clock, 248 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/bsonx/bsoncore @1382 ms, 0 ms clock, 112 bytes, 7 allocs
init go.mongodb.org/mongo-driver/bson/bsonrw @1382 ms, 0 ms clock, 1264 bytes, 27 allocs
init go.mongodb.org/mongo-driver/bson/bsoncodec @1382 ms, 0 ms clock, 600 bytes, 27 allocs
init go.mongodb.org/mongo-driver/bson @1382 ms, 0 ms clock, 21312 bytes, 172 allocs
init go.mongodb.org/mongo-driver/internal @1382 ms, 0 ms clock, 80 bytes, 5 allocs
init go.mongodb.org/mongo-driver/mongo/readpref @1382 ms, 0 ms clock, 32 bytes, 2 allocs
init go.mongodb.org/mongo-driver/mongo/writeconcern @1382 ms, 0 ms clock, 64 bytes, 4 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/uuid @1382 ms, 0 ms clock, 5440 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/session @1382 ms, 0 ms clock, 128 bytes, 8 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver @1382 ms, 0 ms clock, 144 bytes, 9 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/dns @1382 ms, 0 ms clock, 192 bytes, 2 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/connstring @1382 ms, 0 ms clock, 5440 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/operation @1382 ms, 0 ms clock, 16 bytes, 1 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/awsv4 @1382 ms, 0 ms clock, 208 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/auth @1382 ms, 0 ms clock, 392 bytes, 8 allocs
init golang.org/x/crypto/ocsp @1382 ms, 0 ms clock, 624 bytes, 6 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/ocsp @1382 ms, 0 ms clock, 64 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/topology @1382 ms, 0 ms clock, 26560 bytes, 176 allocs
init go.mongodb.org/mongo-driver/x/bsonx @1382 ms, 0 ms clock, 30072 bytes, 180 allocs
init go.mongodb.org/mongo-driver/mongo @1382 ms, 0 ms clock, 568 bytes, 20 allocs
init github.com/alecthomas/template/parse @1382 ms, 0 ms clock, 464 bytes, 2 allocs
init github.com/alecthomas/template @1382 ms, 0 ms clock, 4624 bytes, 11 allocs
init gopkg.in/alecthomas/kingpin%2ev2 @1382 ms, 0 ms clock, 7240 bytes, 96 allocs
init github.com/percona/exporter_shared @1382 ms, 329 ms clock, 6896 bytes, 74 allocs
init gopkg.in/mgo.v2/internal/json @1717 ms, 0 ms clock, 96 bytes, 6 allocs
init gopkg.in/mgo.v2/bson @1717 ms, 0 ms clock, 5520 bytes, 47 allocs
init github.com/go-ole/go-ole @1717 ms, 0 ms clock, 4304 bytes, 103 allocs
init github.com/StackExchange/wmi @1717 ms, 0 ms clock, 136 bytes, 4 allocs
init github.com/shirou/gopsutil/internal/common @1717 ms, 0 ms clock, 896 bytes, 20 allocs
init github.com/shirou/gopsutil/cpu @1717 ms, 0 ms clock, 107088 bytes, 20 allocs
init github.com/shirou/gopsutil/mem @1717 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/shirou/gopsutil/net @1717 ms, 0 ms clock, 2176 bytes, 19 allocs
init github.com/shirou/gopsutil/process @1717 ms, 43 ms clock, 1352 bytes, 35 allocs
init github.com/percona/percona-toolkit/src/go/mongolib/util @1761 ms, 0 ms clock, 688 bytes, 10 allocs
init github.com/percona/mongodb_exporter/exporter @1761 ms, 0 ms clock, 4888 bytes, 57 allocs
init github.com/grafana/agent/pkg/integrations/mongodb_exporter @1761 ms, 0 ms clock, 2680 bytes, 11 allocs
init database/sql @1761 ms, 0 ms clock, 160 bytes, 8 allocs
init github.com/go-sql-driver/mysql @1761 ms, 0 ms clock, 6584 bytes, 30 allocs
init github.com/satori/go%2euuid @1761 ms, 0 ms clock, 240 bytes, 5 allocs
init github.com/prometheus/mysqld_exporter/collector @1761 ms, 0 ms clock, 116256 bytes, 1890 allocs
init github.com/grafana/agent/pkg/integrations/mysqld_exporter @1761 ms, 0 ms clock, 664 bytes, 4 allocs
init github.com/prometheus/procfs @1761 ms, 0 ms clock, 75928 bytes, 680 allocs
init golang.org/x/net/internal/socket @1761 ms, 0 ms clock, 112 bytes, 3 allocs
init golang.org/x/net/ipv4 @1761 ms, 0 ms clock, 1040 bytes, 20 allocs
init github.com/beevik/ntp @1761 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-envparse @1761 ms, 0 ms clock, 360 bytes, 16 allocs
init github.com/soundcloud/go-runit/runit @1761 ms, 0 ms clock, 272 bytes, 3 allocs
init github.com/mattn/go-xmlrpc @1761 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/prometheus/node_exporter/collector @1761 ms, 0 ms clock, 15704 bytes, 222 allocs
init github.com/grafana/agent/pkg/integrations/node_exporter @1761 ms, 0 ms clock, 4600 bytes, 9 allocs
init github.com/lib/pq/oid @1761 ms, 0 ms clock, 6392 bytes, 4 allocs
init github.com/lib/pq/scram @1761 ms, 0 ms clock, 128 bytes, 2 allocs
init github.com/lib/pq @1761 ms, 0 ms clock, 28688 bytes, 150 allocs
init github.com/prometheus-community/postgres_exporter/exporter @1761 ms, 0 ms clock, 26816 bytes, 288 allocs
init github.com/grafana/agent/pkg/integrations/postgres_exporter @1761 ms, 0 ms clock, 1560 bytes, 5 allocs
init github.com/grafana/agent/pkg/integrations/process_exporter @1761 ms, 0 ms clock, 776 bytes, 6 allocs
init github.com/gomodule/redigo/redis @1761 ms, 0 ms clock, 4344 bytes, 42 allocs
init github.com/oliver006/redis_exporter/exporter @1761 ms, 0 ms clock, 1792 bytes, 26 allocs
init github.com/grafana/agent/pkg/integrations/redis_exporter @1761 ms, 0 ms clock, 4920 bytes, 8 allocs
init github.com/gosnmp/gosnmp @1761 ms, 0 ms clock, 336 bytes, 19 allocs
init github.com/prometheus/snmp_exporter/collector @1761 ms, 0 ms clock, 3376 bytes, 46 allocs
init github.com/grafana/agent/pkg/integrations/snmp_exporter @1761 ms, 0 ms clock, 608 bytes, 3 allocs
init github.com/prometheus/statsd_exporter/pkg/relay @1761 ms, 10 ms clock, 1360 bytes, 38 allocs
init github.com/grafana/agent/pkg/integrations/statsd_exporter @1771 ms, 0 ms clock, 472 bytes, 4 allocs
init github.com/prometheus-community/windows_exporter/log @1781 ms, 0 ms clock, 416 bytes, 5 allocs
init github.com/leoluk/perflib_exporter/perflib @1781 ms, 6551 ms clock, 37285888 bytes, 50137 allocs
init github.com/Microsoft/hcsshim/internal/interop @8332 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/Microsoft/hcsshim/internal/timeout @8332 ms, 0 ms clock, 3152 bytes, 24 allocs
init github.com/Microsoft/hcsshim/internal/vmcompute @8332 ms, 0 ms clock, 1296 bytes, 27 allocs
init github.com/containerd/cgroups/stats/v1 @8332 ms, 0 ms clock, 544 bytes, 10 allocs
init github.com/Microsoft/hcsshim/internal/hcs/schema2 @8332 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/Microsoft/go-winio/vhd @8332 ms, 0 ms clock, 288 bytes, 6 allocs
init github.com/Microsoft/go-winio/pkg/security @8332 ms, 0 ms clock, 192 bytes, 4 allocs
init github.com/Microsoft/hcsshim/computestorage @8332 ms, 0 ms clock, 528 bytes, 11 allocs
init github.com/Microsoft/hcsshim/internal/hcs @8332 ms, 0 ms clock, 480 bytes, 13 allocs
init github.com/Microsoft/hcsshim/internal/hns @8332 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/Microsoft/hcsshim/internal/winapi @8332 ms, 0 ms clock, 1584 bytes, 33 allocs
init github.com/Microsoft/hcsshim/internal/wclayer @8332 ms, 0 ms clock, 1376 bytes, 27 allocs
init github.com/Microsoft/hcsshim @8332 ms, 0 ms clock, 592 bytes, 6 allocs
init github.com/leoluk/perflib_exporter/collector @8332 ms, 0 ms clock, 1920 bytes, 14 allocs
init github.com/dimchansky/utfbom @8332 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus-community/windows_exporter/collector @8352 ms, 6552 ms clock, 1627872 bytes, 24110 allocs
init github.com/grafana/agent/pkg/integrations/windows_exporter @14904 ms, 0 ms clock, 14912 bytes, 132 allocs
init github.com/grafana/agent/pkg/integrations/v2/agent @14904 ms, 0 ms clock, 640 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/v2/apache_http @14904 ms, 0 ms clock, 160 bytes, 1 allocs
init github.com/go-sourcemap/sourcemap/internal/base64vlq @14904 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/integrations/v2/app_agent_receiver @14904 ms, 0 ms clock, 400 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/v2/eventhandler @14904 ms, 0 ms clock, 112 bytes, 1 allocs
init github.com/grafana/agent/pkg/integrations/v2/snmp_exporter @14904 ms, 0 ms clock, 624 bytes, 3 allocs
init main @14904 ms, 6.2 ms clock, 1848 bytes, 33 allocs

Same VM With high CPU Load at startup ~59s (This would trigger a service failure):

Click me
init internal/bytealg @0 ms, 0 ms clock, 0 bytes, 0 allocs
init runtime @1.0 ms, 0 ms clock, 0 bytes, 0 allocs
init errors @1229 ms, 0 ms clock, 0 bytes, 0 allocs
init sync @1229 ms, 0 ms clock, 16 bytes, 1 allocs
init internal/syscall/windows/sysdll @1229 ms, 0 ms clock, 48 bytes, 1 allocs
init internal/oserror @1229 ms, 0 ms clock, 80 bytes, 5 allocs
init syscall @1229 ms, 0 ms clock, 8912 bytes, 174 allocs
init internal/syscall/windows/registry @1229 ms, 0 ms clock, 416 bytes, 10 allocs
init time @1230 ms, 129 ms clock, 14792 bytes, 11 allocs
init context @1359 ms, 0 ms clock, 128 bytes, 4 allocs
init math @1359 ms, 0 ms clock, 0 bytes, 0 allocs
init strconv @1359 ms, 0 ms clock, 32 bytes, 2 allocs
init unicode @1359 ms, 0.99 ms clock, 24152 bytes, 28 allocs
init reflect @2621 ms, 0 ms clock, 0 bytes, 0 allocs
init io @2621 ms, 0 ms clock, 144 bytes, 9 allocs
init path @2621 ms, 0 ms clock, 16 bytes, 1 allocs
init io/fs @2622 ms, 0 ms clock, 16 bytes, 1 allocs
init internal/syscall/windows @2622 ms, 0 ms clock, 1616 bytes, 36 allocs
init internal/poll @2622 ms, 1125 ms clock, 344 bytes, 12 allocs
init os @3749 ms, 194 ms clock, 3192 bytes, 29 allocs
init fmt @3979 ms, 0 ms clock, 32 bytes, 2 allocs
init vendor/golang.org/x/net/dns/dnsmessage @3979 ms, 0 ms clock, 1616 bytes, 27 allocs
init internal/intern @3979 ms, 0 ms clock, 392 bytes, 7 allocs
init net/netip @3979 ms, 0 ms clock, 48 bytes, 2 allocs
init net @3995 ms, 0 ms clock, 1568 bytes, 27 allocs
init bytes @3995 ms, 0 ms clock, 48 bytes, 3 allocs
init crypto @3995 ms, 0 ms clock, 160 bytes, 1 allocs
init encoding/binary @3996 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/cipher @3996 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/aes @3996 ms, 0 ms clock, 16 bytes, 1 allocs
init math/rand @3996 ms, 0 ms clock, 5440 bytes, 3 allocs
init math/big @3996 ms, 0 ms clock, 32 bytes, 2 allocs
init crypto/elliptic/internal/fiat @3996 ms, 0 ms clock, 320 bytes, 6 allocs
init crypto/elliptic/internal/nistec @3996 ms, 0 ms clock, 712 bytes, 15 allocs
init crypto/rand @3996 ms, 0 ms clock, 48 bytes, 2 allocs
init crypto/sha512 @3996 ms, 0 ms clock, 0 bytes, 0 allocs
init encoding/asn1 @3996 ms, 0 ms clock, 224 bytes, 7 allocs
init vendor/golang.org/x/crypto/cryptobyte @3996 ms, 0 ms clock, 48 bytes, 2 allocs
init crypto/ecdsa @3996 ms, 0 ms clock, 48 bytes, 3 allocs
init crypto/ed25519/internal/edwards25519 @3996 ms, 0 ms clock, 496 bytes, 5 allocs
init crypto/rsa @3996 ms, 0 ms clock, 664 bytes, 18 allocs
init crypto/sha1 @3996 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/sha256 @3996 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/sys/cpu @3996 ms, 0 ms clock, 1568 bytes, 5 allocs
init vendor/golang.org/x/crypto/chacha20poly1305 @3996 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/base64 @3996 ms, 0 ms clock, 1408 bytes, 4 allocs
init crypto/dsa @3997 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/hex @3997 ms, 0 ms clock, 16 bytes, 1 allocs
init crypto/x509/pkix @3997 ms, 0 ms clock, 624 bytes, 2 allocs
init crypto/md5 @3997 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/x509 @3997 ms, 0 ms clock, 5504 bytes, 251 allocs
init vendor/golang.org/x/crypto/curve25519 @3997 ms, 0 ms clock, 0 bytes, 0 allocs
init crypto/tls @3997 ms, 0 ms clock, 1888 bytes, 15 allocs
init log @3997 ms, 0 ms clock, 80 bytes, 1 allocs
init bufio @3997 ms, 0 ms clock, 176 bytes, 11 allocs
init mime @3997 ms, 0 ms clock, 1232 bytes, 4 allocs
init path/filepath @3997 ms, 0 ms clock, 16 bytes, 1 allocs
init mime/multipart @3997 ms, 0 ms clock, 192 bytes, 4 allocs
init compress/flate @3997 ms, 0 ms clock, 4240 bytes, 7 allocs
init hash/crc32 @3997 ms, 0 ms clock, 1024 bytes, 1 allocs
init compress/gzip @3997 ms, 0 ms clock, 32 bytes, 2 allocs
init io/ioutil @3997 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/text/transform @3997 ms, 1.0 ms clock, 80 bytes, 5 allocs
init vendor/golang.org/x/text/unicode/bidi @3998 ms, 0 ms clock, 272 bytes, 2 allocs
init vendor/golang.org/x/text/secure/bidirule @3998 ms, 0 ms clock, 16 bytes, 1 allocs
init vendor/golang.org/x/text/unicode/norm @3998 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/net/idna @3998 ms, 0 ms clock, 0 bytes, 0 allocs
init vendor/golang.org/x/net/http/httpguts @3998 ms, 0 ms clock, 848 bytes, 3 allocs
init vendor/golang.org/x/net/http2/hpack @3998 ms, 0 ms clock, 21736 bytes, 30 allocs
init net/http/internal @3998 ms, 0 ms clock, 16 bytes, 1 allocs
init vendor/golang.org/x/net/http/httpproxy @3998 ms, 0 ms clock, 336 bytes, 2 allocs
init net/http @3998 ms, 0 ms clock, 10856 bytes, 121 allocs
init os/signal @3998 ms, 0 ms clock, 0 bytes, 0 allocs
init regexp/syntax @3998 ms, 0 ms clock, 7232 bytes, 8 allocs
init regexp @3998 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/gorilla/mux @3998 ms, 0 ms clock, 48 bytes, 3 allocs
init flag @3998 ms, 0 ms clock, 160 bytes, 5 allocs
init encoding/json @3998 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/gogo/protobuf/proto @3998 ms, 0 ms clock, 2576 bytes, 29 allocs
init github.com/golang/snappy @3998 ms, 1.0 ms clock, 9296 bytes, 8 allocs
init github.com/prometheus/common/model @3999 ms, 1.0 ms clock, 25176 bytes, 232 allocs
init google.golang.org/protobuf/internal/detrand @4000 ms, 0 ms clock, 4208 bytes, 28 allocs
init google.golang.org/protobuf/internal/errors @4001 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/protobuf/encoding/protowire @4001 ms, 0 ms clock, 632 bytes, 15 allocs
init google.golang.org/protobuf/reflect/protoreflect @4007 ms, 0 ms clock, 0 bytes, 0 allocs
init go/token @4007 ms, 0 ms clock, 1776 bytes, 5 allocs
init google.golang.org/protobuf/internal/encoding/text @4007 ms, 0 ms clock, 3336 bytes, 34 allocs
init google.golang.org/protobuf/reflect/protoregistry @4007 ms, 0 ms clock, 104 bytes, 4 allocs
init google.golang.org/protobuf/proto @4007 ms, 0 ms clock, 288 bytes, 6 allocs
init google.golang.org/protobuf/internal/descfmt @4007 ms, 0 ms clock, 1152 bytes, 10 allocs
init google.golang.org/protobuf/internal/filedesc @4007 ms, 0 ms clock, 696 bytes, 13 allocs
init google.golang.org/protobuf/internal/encoding/tag @4007 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/internal/impl @4007 ms, 0.78 ms clock, 280 bytes, 7 allocs
init google.golang.org/protobuf/internal/filetype @4008 ms, 0 ms clock, 1328 bytes, 5 allocs
init google.golang.org/protobuf/types/descriptorpb @4008 ms, 0 ms clock, 43488 bytes, 58 allocs
init github.com/golang/protobuf/proto @4008 ms, 0 ms clock, 96 bytes, 6 allocs
init google.golang.org/protobuf/types/known/timestamppb @4008 ms, 0 ms clock, 1120 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/timestamp @4008 ms, 0 ms clock, 544 bytes, 4 allocs
init github.com/prometheus/client_model/go @4008 ms, 0 ms clock, 119536 bytes, 210 allocs
init expvar @4008 ms, 0.99 ms clock, 912 bytes, 15 allocs
init golang.org/x/sys/windows @4009 ms, 0 ms clock, 21616 bytes, 453 allocs
init github.com/matttproud/golang_protobuf_extensions/pbutil @4009 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus/common/expfmt @4009 ms, 0 ms clock, 288 bytes, 4 allocs
init github.com/prometheus/client_golang/prometheus @4015 ms, 1110 ms clock, 75240 bytes, 651 allocs
init github.com/modern-go/reflect2 @5125 ms, 0 ms clock, 6560 bytes, 126 allocs
init github.com/modern-go/concurrent @5125 ms, 0 ms clock, 336 bytes, 7 allocs
init github.com/json-iterator/go @5125 ms, 0 ms clock, 21040 bytes, 276 allocs
init github.com/grafana/regexp/syntax @5125 ms, 0 ms clock, 6816 bytes, 7 allocs
init github.com/grafana/regexp @5125 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-logfmt/logfmt @5125 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/go-kit/log @5125 ms, 0.99 ms clock, 13688 bytes, 109 allocs
init text/template/parse @5126 ms, 0 ms clock, 464 bytes, 2 allocs
init text/template @5126 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/prometheus/common/version @5126 ms, 0 ms clock, 0 bytes, 0 allocs
init gopkg.in/yaml%2ev2 @5126 ms, 0 ms clock, 26720 bytes, 264 allocs
init github.com/sirupsen/logrus @5126 ms, 0 ms clock, 312 bytes, 5 allocs
init github.com/weaveworks/common/logging @5126 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/types/known/emptypb @5126 ms, 0 ms clock, 1440 bytes, 7 allocs
init github.com/golang/protobuf/ptypes/empty @5126 ms, 0 ms clock, 560 bytes, 4 allocs
init google.golang.org/grpc/grpclog @5126 ms, 0 ms clock, 1448 bytes, 20 allocs
init google.golang.org/grpc/connectivity @5126 ms, 0 ms clock, 224 bytes, 2 allocs
init google.golang.org/grpc/internal/credentials @5126 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/credentials @5126 ms, 0 ms clock, 704 bytes, 3 allocs
init google.golang.org/grpc/resolver @5126 ms, 0 ms clock, 48 bytes, 1 allocs
init google.golang.org/grpc/balancer @5126 ms, 0 ms clock, 96 bytes, 4 allocs
init google.golang.org/grpc/internal/channelz @5126 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/balancer/base @5126 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/codes @5126 ms, 0 ms clock, 752 bytes, 2 allocs
init google.golang.org/grpc/internal/grpcrand @5126 ms, 0 ms clock, 5424 bytes, 2 allocs
init google.golang.org/grpc/internal/backoff @5126 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/internal/serviceconfig @5126 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/text/transform @5126 ms, 0 ms clock, 80 bytes, 5 allocs
init golang.org/x/text/unicode/bidi @5126 ms, 0 ms clock, 272 bytes, 2 allocs
init golang.org/x/text/secure/bidirule @5126 ms, 0 ms clock, 16 bytes, 1 allocs
init golang.org/x/text/unicode/norm @5126 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/net/idna @5127 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/net/http/httpguts @5127 ms, 0 ms clock, 688 bytes, 2 allocs
init golang.org/x/net/http2/hpack @5127 ms, 0 ms clock, 21880 bytes, 30 allocs
init golang.org/x/net/http2 @5127 ms, 0 ms clock, 4400 bytes, 65 allocs
init google.golang.org/protobuf/types/known/anypb @5127 ms, 0 ms clock, 1088 bytes, 5 allocs
init google.golang.org/genproto/googleapis/rpc/status @5127 ms, 0 ms clock, 1416 bytes, 8 allocs
init github.com/golang/protobuf/ptypes/any @5135 ms, 0 ms clock, 1296 bytes, 5 allocs
init google.golang.org/protobuf/types/known/durationpb @5135 ms, 0 ms clock, 1216 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/duration @5135 ms, 0 ms clock, 528 bytes, 3 allocs
init google.golang.org/grpc/internal/syscall @5135 ms, 0 ms clock, 0 bytes, 0 allocs
init net/http/httputil @5135 ms, 0 ms clock, 288 bytes, 6 allocs
init google.golang.org/grpc/internal/transport @5135 ms, 0 ms clock, 832 bytes, 14 allocs
init google.golang.org/grpc/balancer/roundrobin @5135 ms, 0 ms clock, 352 bytes, 3 allocs
init google.golang.org/grpc/internal/envconfig @5135 ms, 0 ms clock, 4080 bytes, 30 allocs
init google.golang.org/grpc/internal/resolver/dns @5135 ms, 0 ms clock, 336 bytes, 4 allocs
init google.golang.org/grpc/internal/resolver/passthrough @5135 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/internal/resolver/unix @5135 ms, 0 ms clock, 32 bytes, 2 allocs
init google.golang.org/grpc/encoding @5135 ms, 0 ms clock, 96 bytes, 2 allocs
init google.golang.org/grpc/encoding/proto @5135 ms, 0 ms clock, 288 bytes, 1 allocs
init html @5135 ms, 0 ms clock, 224 bytes, 2 allocs
init html/template @5135 ms, 0 ms clock, 10296 bytes, 29 allocs
init golang.org/x/net/trace @5135 ms, 1.3 ms clock, 16864 bytes, 8 allocs
init google.golang.org/grpc/binarylog/grpc_binarylog_v1 @5137 ms, 0 ms clock, 46520 bytes, 30 allocs
init google.golang.org/grpc/internal/binarylog @5137 ms, 0.64 ms clock, 26072 bytes, 281 allocs
init google.golang.org/grpc @5137 ms, 7.2 ms clock, 19696 bytes, 414 allocs
init internal/profile @5145 ms, 0.73 ms clock, 98032 bytes, 754 allocs
init runtime/pprof @5145 ms, 0 ms clock, 32 bytes, 2 allocs
init net/http/pprof @5145 ms, 0 ms clock, 864 bytes, 5 allocs
init github.com/opentracing/opentracing-go @5145 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/opentracing/opentracing-go/ext @5145 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/opentracing-contrib/go-grpc @5145 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/client_golang/prometheus/promhttp @5145 ms, 0 ms clock, 304 bytes, 2 allocs
init golang.org/x/crypto/bcrypt @5145 ms, 0 ms clock, 384 bytes, 3 allocs
init github.com/mwitkow/go-conntrack @5145 ms, 879 ms clock, 4464 bytes, 121 allocs
init golang.org/x/oauth2 @6025 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/prometheus/exporter-toolkit/web @6025 ms, 0 ms clock, 1168 bytes, 11 allocs
init golang.org/x/net/context @6025 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/gogo/protobuf/types @6025 ms, 0 ms clock, 13904 bytes, 88 allocs
init github.com/gogo/googleapis/google/rpc @6025 ms, 0 ms clock, 7560 bytes, 21 allocs
init github.com/weaveworks/common/httpgrpc @6025 ms, 0 ms clock, 6448 bytes, 9 allocs
init net/http/internal/testcert @6025 ms, 0 ms clock, 3584 bytes, 2 allocs
init net/http/httptest @6025 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/sercand/kuberesolver @6025 ms, 80 ms clock, 1776 bytes, 39 allocs
init compress/zlib @6105 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go/thrift @6105 ms, 0 ms clock, 2080 bytes, 35 allocs
init database/sql/driver @6105 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go/utils @6105 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/uber/jaeger-client-go @6105 ms, 0 ms clock, 336 bytes, 6 allocs
init github.com/uber/jaeger-client-go/internal/throttler/remote @6105 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/weaveworks/common/tracing @6105 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/weaveworks/common/middleware @6105 ms, 0 ms clock, 8336 bytes, 43 allocs
init github.com/weaveworks/common/server @6105 ms, 0 ms clock, 85832 bytes, 44 allocs
init github.com/grafana/dskit/tenant @6105 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/grafana/loki/pkg/util/log @6107 ms, 154 ms clock, 616 bytes, 13 allocs
init google.golang.org/grpc/health/grpc_health_v1 @6261 ms, 0 ms clock, 3728 bytes, 16 allocs
init github.com/grafana/dskit/grpcutil @6261 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/davecgh/go-spew/spew @6261 ms, 0 ms clock, 19160 bytes, 133 allocs
init github.com/stretchr/objx @6261 ms, 0 ms clock, 4808 bytes, 48 allocs
init gopkg.in/yaml%2ev3 @6261 ms, 0 ms clock, 25960 bytes, 278 allocs
init github.com/stretchr/testify/assert @6261 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/mattn/go-isatty @6261 ms, 0 ms clock, 648 bytes, 13 allocs
init github.com/mattn/go-colorable @6261 ms, 0 ms clock, 10904 bytes, 17 allocs
init github.com/fatih/color @6261 ms, 0 ms clock, 600 bytes, 9 allocs
init github.com/hashicorp/go-hclog @6261 ms, 0 ms clock, 1736 bytes, 24 allocs
init github.com/armon/go-metrics @6261 ms, 0 ms clock, 592 bytes, 5 allocs
init github.com/hashicorp/consul/api @6261 ms, 0 ms clock, 360 bytes, 17 allocs
init github.com/grafana/dskit/kv/consul @6261 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/gogo/protobuf/protoc-gen-gogo/descriptor @6261 ms, 0 ms clock, 4864 bytes, 27 allocs
init github.com/gogo/protobuf/gogoproto @6261 ms, 0 ms clock, 3696 bytes, 19 allocs
init go.etcd.io/etcd/api/v3/authpb @6261 ms, 0 ms clock, 92208 bytes, 97 allocs
init go.etcd.io/etcd/api/v3/membershippb @6262 ms, 0 ms clock, 92376 bytes, 107 allocs
init go.etcd.io/etcd/api/v3/mvccpb @6262 ms, 0 ms clock, 87376 bytes, 69 allocs
init google.golang.org/genproto/googleapis/api/annotations @6262 ms, 0 ms clock, 23512 bytes, 109 allocs
init go.etcd.io/etcd/api/v3/etcdserverpb @6262 ms, 8.9 ms clock, 662952 bytes, 1448 allocs
init go.etcd.io/etcd/api/v3/v3rpc/rpctypes @6271 ms, 0 ms clock, 17888 bytes, 237 allocs
init go.uber.org/zap/internal/bufferpool @6271 ms, 0 ms clock, 64 bytes, 2 allocs
init go.uber.org/zap/zapcore @6271 ms, 0 ms clock, 1008 bytes, 37 allocs
init go.uber.org/zap @6271 ms, 0 ms clock, 744 bytes, 9 allocs
init github.com/coreos/go-semver/semver @6271 ms, 0 ms clock, 5056 bytes, 73 allocs
init go.etcd.io/etcd/api/v3/version @6271 ms, 0 ms clock, 192 bytes, 5 allocs
init go.etcd.io/etcd/client/pkg/v3/logutil @6271 ms, 0 ms clock, 16 bytes, 2 allocs
init go.uber.org/zap/zapgrpc @6272 ms, 0 ms clock, 144 bytes, 2 allocs
init go.etcd.io/etcd/client/v3 @6272 ms, 0 ms clock, 424 bytes, 9 allocs
init github.com/coreos/pkg/capnslog @6272 ms, 0 ms clock, 4744 bytes, 9 allocs
init github.com/coreos/etcd/pkg/fileutil @6272 ms, 0 ms clock, 392 bytes, 7 allocs
init github.com/coreos/etcd/pkg/tlsutil @6272 ms, 0 ms clock, 688 bytes, 2 allocs
init go.etcd.io/etcd/pkg/transport @6272 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/dskit/crypto/tls @6272 ms, 0 ms clock, 608 bytes, 6 allocs
init github.com/grafana/dskit/flagext @6272 ms, 123 ms clock, 568 bytes, 12 allocs
init os/exec @6396 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/go-sockaddr @6396 ms, 0 ms clock, 22792 bytes, 164 allocs
init encoding/base32 @6396 ms, 0 ms clock, 640 bytes, 2 allocs
init github.com/miekg/dns @6396 ms, 1.0 ms clock, 17688 bytes, 55 allocs
init encoding/gob @6406 ms, 0 ms clock, 43048 bytes, 611 allocs
init net/rpc @6406 ms, 6246 ms clock, 8904 bytes, 138 allocs
init github.com/hashicorp/go-msgpack/codec @12652 ms, 0 ms clock, 104 bytes, 3 allocs
init github.com/google/btree @12652 ms, 0 ms clock, 384 bytes, 2 allocs
init compress/lzw @12652 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hashicorp/memberlist @12652 ms, 0 ms clock, 464 bytes, 12 allocs
init github.com/prometheus/client_golang/prometheus/push @12658 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/armon/go-metrics/prometheus @12658 ms, 0 ms clock, 792 bytes, 11 allocs
init github.com/grafana/dskit/kv/memberlist @12658 ms, 2272 ms clock, 47432 bytes, 633 allocs
init github.com/grafana/dskit/ring @14931 ms, 79 ms clock, 18256 bytes, 297 allocs
init github.com/grafana/loki/pkg/util @15011 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/dustin/go-humanize @15011 ms, 0.20 ms clock, 13984 bytes, 111 allocs
init github.com/grafana/loki/pkg/logqlmodel/stats @15011 ms, 0 ms clock, 104 bytes, 4 allocs
init github.com/grafana/loki/pkg/logproto @15011 ms, 0 ms clock, 23752 bytes, 31 allocs
init github.com/prometheus/prometheus/tsdb/chunks @15011 ms, 0 ms clock, 336 bytes, 5 allocs
init testing @15011 ms, 0 ms clock, 1224 bytes, 7 allocs
init github.com/prometheus/client_golang/prometheus/testutil/promlint @15011 ms, 0 ms clock, 2488 bytes, 16 allocs
init go.uber.org/goleak @15011 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/storage @15011 ms, 0 ms clock, 288 bytes, 10 allocs
init github.com/prometheus/prometheus/util/strutil @15011 ms, 0 ms clock, 888 bytes, 13 allocs
init github.com/prometheus/prometheus/promql/parser @15011 ms, 19 ms clock, 23248 bytes, 153 allocs
init github.com/julienschmidt/httprouter @15030 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/alecthomas/units @15030 ms, 0 ms clock, 832 bytes, 26 allocs
init github.com/aws/aws-sdk-go/internal/ini @15030 ms, 0 ms clock, 2304 bytes, 22 allocs
init github.com/aws/aws-sdk-go/aws/credentials @15030 ms, 0 ms clock, 512 bytes, 7 allocs
init github.com/aws/aws-sdk-go/aws/endpoints @15030 ms, 74 ms clock, 1533128 bytes, 8051 allocs
init github.com/aws/aws-sdk-go/aws @15104 ms, 0 ms clock, 128 bytes, 2 allocs
init github.com/jmespath/go-jmespath @15104 ms, 0 ms clock, 1584 bytes, 6 allocs
init github.com/aws/aws-sdk-go/aws/awsutil @15104 ms, 0 ms clock, 3432 bytes, 31 allocs
init github.com/aws/aws-sdk-go/aws/request @15104 ms, 0 ms clock, 976 bytes, 9 allocs
init github.com/aws/aws-sdk-go/internal/sdkrand @15104 ms, 0 ms clock, 5448 bytes, 3 allocs
init github.com/aws/aws-sdk-go/private/protocol @15104 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/private/protocol/rest @15104 ms, 0 ms clock, 192 bytes, 5 allocs
init github.com/aws/aws-sdk-go/aws/signer/v4 @15104 ms, 0 ms clock, 1392 bytes, 4 allocs
init encoding/xml @15104 ms, 0 ms clock, 19464 bytes, 8 allocs
init github.com/aws/aws-sdk-go/service/sts @15104 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/private/protocol/json/jsonutil @15104 ms, 0 ms clock, 96 bytes, 4 allocs
init github.com/aws/aws-sdk-go/service/sso @15104 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/aws/aws-sdk-go/aws/credentials/ssocreds @15104 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/aws/corehandlers @15104 ms, 0 ms clock, 2192 bytes, 31 allocs
init github.com/aws/aws-sdk-go/aws/session @15104 ms, 0 ms clock, 320 bytes, 5 allocs
init github.com/prometheus/prometheus/discovery @15104 ms, 0 ms clock, 3168 bytes, 83 allocs
init github.com/prometheus/prometheus/model/relabel @15104 ms, 0.99 ms clock, 11792 bytes, 143 allocs
init github.com/prometheus/prometheus/config @15105 ms, 0 ms clock, 5408 bytes, 72 allocs
init github.com/prometheus/prometheus/model/textparse @15105 ms, 0 ms clock, 288 bytes, 4 allocs
init go.opentelemetry.io/otel/baggage @15106 ms, 0 ms clock, 19440 bytes, 226 allocs
init go.opentelemetry.io/otel/attribute @15106 ms, 0 ms clock, 64 bytes, 1 allocs
init go.opentelemetry.io/otel/codes @15106 ms, 0 ms clock, 448 bytes, 4 allocs
init go.opentelemetry.io/otel/trace @15106 ms, 1.0 ms clock, 965400 bytes, 4791 allocs
init go.opentelemetry.io/otel/propagation @15107 ms, 0 ms clock, 26248 bytes, 221 allocs
init go.opentelemetry.io/otel/internal/global @15107 ms, 0 ms clock, 400 bytes, 8 allocs
init go.opentelemetry.io/otel @15107 ms, 0 ms clock, 136 bytes, 4 allocs
init github.com/edsrzf/mmap-go @15107 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/oklog/ulid @15107 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/prometheus/prometheus/tsdb/encoding @15107 ms, 0 ms clock, 608 bytes, 6 allocs
init github.com/prometheus/prometheus/tsdb/index @15107 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb/tombstones @15107 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb/record @15107 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/prometheus/prometheus/tsdb/wal @15107 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/tsdb @15107 ms, 0 ms clock, 2176 bytes, 23 allocs
init github.com/prometheus/prometheus/promql @15107 ms, 0 ms clock, 31192 bytes, 246 allocs
init github.com/prometheus/prometheus/template @15107 ms, 74 ms clock, 2240 bytes, 26 allocs
init github.com/prometheus/prometheus/model/intern @15190 ms, 65 ms clock, 1344 bytes, 29 allocs
init github.com/prometheus/prometheus/scrape @15256 ms, 0 ms clock, 16768 bytes, 313 allocs
init go.opentelemetry.io/otel/metric @15256 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/otel/internal/metric/registry @15256 ms, 0 ms clock, 96 bytes, 2 allocs
init go.opentelemetry.io/otel/internal/metric/global @15256 ms, 0 ms clock, 112 bytes, 4 allocs
init go.opentelemetry.io/otel/semconv/v1%2e7%2e0 @15256 ms, 0.99 ms clock, 528 bytes, 7 allocs
init go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp @15257 ms, 0 ms clock, 1064 bytes, 14 allocs
init github.com/prometheus/prometheus/prompb @15257 ms, 0 ms clock, 2304 bytes, 29 allocs
init github.com/prometheus/prometheus/util/logging @15257 ms, 0 ms clock, 32 bytes, 1 allocs
init github.com/prometheus/prometheus/storage/remote @15257 ms, 9.0 ms clock, 15152 bytes, 92 allocs
init github.com/prometheus/prometheus/util/httputil @15266 ms, 1.0 ms clock, 336 bytes, 2 allocs
init github.com/prometheus/prometheus/web/api/v1 @15267 ms, 0 ms clock, 112 bytes, 4 allocs
init github.com/grafana/loki/pkg/util/build @15267 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/c2h5oh/datasize @15267 ms, 0 ms clock, 16 bytes, 1 allocs
init encoding/csv @15267 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/grafana/loki/clients/pkg/promtail/client @15267 ms, 0 ms clock, 576 bytes, 11 allocs
init github.com/eapache/go-resiliency/breaker @15267 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/rcrowley/go-metrics @15267 ms, 0 ms clock, 688 bytes, 10 allocs
init github.com/eapache/go-xerial-snappy @15267 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/pierrec/lz4 @15267 ms, 0 ms clock, 320 bytes, 12 allocs
init golang.org/x/net/internal/socks @15267 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jcmturner/gofork/encoding/asn1 @15267 ms, 0 ms clock, 224 bytes, 7 allocs
init github.com/jcmturner/gokrb5/v8/iana/etypeID @15267 ms, 0 ms clock, 1456 bytes, 2 allocs
init golang.org/x/crypto/md4 @15267 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jcmturner/gokrb5/v8/iana/errorcode @15267 ms, 0 ms clock, 3144 bytes, 3 allocs
init github.com/klauspost/compress/fse @15267 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/klauspost/compress/huff0 @15267 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/klauspost/compress/internal/snapref @15267 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/klauspost/compress/zstd @15267 ms, 0 ms clock, 288 bytes, 18 allocs
init github.com/Shopify/sarama @15267 ms, 0.95 ms clock, 3064 bytes, 58 allocs
init github.com/aws/aws-sdk-go/service/ec2 @15286 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/prometheus/discovery/refresh @15286 ms, 58 ms clock, 1872 bytes, 40 allocs
init github.com/aws/aws-sdk-go/service/lightsail @15345 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/prometheus/prometheus/discovery/aws @15345 ms, 1.0 ms clock, 1320 bytes, 21 allocs
init golang.org/x/crypto/pkcs12 @15346 ms, 0 ms clock, 96 bytes, 5 allocs
init net/http/cookiejar @15364 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/Azure/go-autorest/autorest/date @15364 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/Azure/go-autorest/logger @15364 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/golang-jwt/jwt/v4 @15364 ms, 0 ms clock, 2584 bytes, 41 allocs
init github.com/Azure/go-autorest/autorest/adal @15364 ms, 0 ms clock, 800 bytes, 18 allocs
init github.com/Azure/go-autorest/autorest @15364 ms, 0 ms clock, 112 bytes, 5 allocs
init github.com/Azure/go-autorest/autorest/azure @15364 ms, 0 ms clock, 2816 bytes, 6 allocs
init github.com/prometheus/prometheus/discovery/azure @15364 ms, 0 ms clock, 448 bytes, 10 allocs
init github.com/prometheus/prometheus/discovery/consul @15373 ms, 1.0 ms clock, 145928 bytes, 138 allocs
init github.com/google/go-querystring/query @15374 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/digitalocean/godo/metrics @15374 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/digitalocean/godo @15375 ms, 0 ms clock, 296 bytes, 4 allocs
init github.com/prometheus/prometheus/discovery/digitalocean @15375 ms, 18 ms clock, 768 bytes, 10 allocs
init github.com/prometheus/prometheus/discovery/dns @15394 ms, 0.37 ms clock, 1440 bytes, 34 allocs
init github.com/fsnotify/fsnotify @15395 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus/prometheus/discovery/file @15418 ms, 16 ms clock, 87000 bytes, 173 allocs
init cloud.google.com/go/compute/metadata @15434 ms, 0 ms clock, 480 bytes, 4 allocs
init golang.org/x/oauth2/google/internal/externalaccount @15434 ms, 0.89 ms clock, 83008 bytes, 811 allocs
init google.golang.org/api/internal/third_party/uritemplates @15435 ms, 0 ms clock, 7808 bytes, 109 allocs
init google.golang.org/genproto/googleapis/rpc/code @15435 ms, 0 ms clock, 6320 bytes, 15 allocs
init github.com/googleapis/gax-go/v2/apierror/internal/proto @15435 ms, 0 ms clock, 1688 bytes, 7 allocs
init google.golang.org/genproto/googleapis/rpc/errdetails @15435 ms, 0 ms clock, 28528 bytes, 8 allocs
init google.golang.org/protobuf/internal/encoding/json @15435 ms, 0 ms clock, 19976 bytes, 131 allocs
init google.golang.org/protobuf/encoding/protojson @15435 ms, 0 ms clock, 312 bytes, 5 allocs
init google.golang.org/api/internal/gensupport @15435 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opencensus.io/internal @15435 ms, 0 ms clock, 40 bytes, 2 allocs
init go.opencensus.io/trace/tracestate @15435 ms, 10 ms clock, 520048 bytes, 2408 allocs
init go.opencensus.io/trace @15446 ms, 0.93 ms clock, 192 bytes, 4 allocs
init go.opencensus.io/resource @15447 ms, 7.0 ms clock, 275496 bytes, 1586 allocs
init go.opencensus.io/tag @15454 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opencensus.io/stats @15454 ms, 0 ms clock, 48 bytes, 1 allocs
init go.opencensus.io/stats/view @15454 ms, 0 ms clock, 17496 bytes, 17 allocs
init go.opencensus.io/plugin/ochttp @15454 ms, 1.0 ms clock, 2696 bytes, 32 allocs
init github.com/prometheus/prometheus/discovery/gce @15455 ms, 0 ms clock, 3184 bytes, 12 allocs
init k8s.io/klog/v2 @15455 ms, 0 ms clock, 0 bytes, 0 allocs
init k8s.io/apimachinery/pkg/util/runtime @15455 ms, 0 ms clock, 64 bytes, 2 allocs
init gopkg.in/inf%2ev0 @15455 ms, 0.99 ms clock, 9312 bytes, 229 allocs
init k8s.io/apimachinery/pkg/api/resource @15456 ms, 0 ms clock, 3952 bytes, 56 allocs
init k8s.io/apimachinery/pkg/runtime/schema @15456 ms, 0 ms clock, 0 bytes, 0 allocs
init k8s.io/apimachinery/pkg/fields @15456 ms, 0 ms clock, 160 bytes, 2 allocs
init k8s.io/apimachinery/pkg/util/errors @15456 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/google/go-cmp/cmp/internal/diff @15456 ms, 0 ms clock, 5376 bytes, 1 allocs
init github.com/google/go-cmp/cmp/internal/function @15456 ms, 0 ms clock, 35624 bytes, 39 allocs
init github.com/google/go-cmp/cmp/internal/value @15456 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/google/go-cmp/cmp @15456 ms, 18 ms clock, 178360 bytes, 150 allocs
init k8s.io/apimachinery/pkg/util/validation @15474 ms, 6.9 ms clock, 46792 bytes, 568 allocs
init k8s.io/apimachinery/pkg/labels @15481 ms, 0 ms clock, 688 bytes, 3 allocs
init github.com/google/gofuzz @15481 ms, 0 ms clock, 1200 bytes, 5 allocs
init k8s.io/apimachinery/pkg/util/intstr @15481 ms, 0 ms clock, 152 bytes, 6 allocs
init sigs.k8s.io/json/internal/golang/encoding/json @15481 ms, 0 ms clock, 32 bytes, 2 allocs
init sigs.k8s.io/structured-merge-diff/v4/value @15481 ms, 0 ms clock, 1144 bytes, 6 allocs
init k8s.io/apimachinery/pkg/util/naming @15481 ms, 0 ms clock, 8552 bytes, 48 allocs
init internal/lazyregexp @15481 ms, 0 ms clock, 0 bytes, 0 allocs
init go/doc @15481 ms, 0 ms clock, 2208 bytes, 18 allocs
init go/parser @15481 ms, 0 ms clock, 768 bytes, 7 allocs
init k8s.io/apimachinery/pkg/runtime @15481 ms, 0 ms clock, 3632 bytes, 14 allocs
init k8s.io/apimachinery/pkg/util/net @15481 ms, 0 ms clock, 3016 bytes, 44 allocs
init k8s.io/apimachinery/pkg/apis/meta/v1 @15481 ms, 1.0 ms clock, 27592 bytes, 281 allocs
init k8s.io/api/core/v1 @15482 ms, 1.0 ms clock, 132448 bytes, 453 allocs
init k8s.io/apimachinery/pkg/util/wait @15483 ms, 0 ms clock, 112 bytes, 2 allocs
init k8s.io/apimachinery/pkg/api/meta @15483 ms, 0 ms clock, 49504 bytes, 12 allocs
init k8s.io/apimachinery/pkg/api/errors @15483 ms, 0 ms clock, 624 bytes, 2 allocs
init k8s.io/apimachinery/pkg/version @15483 ms, 0 ms clock, 8856 bytes, 103 allocs
init k8s.io/client-go/tools/clientcmd/api @15484 ms, 0 ms clock, 72 bytes, 6 allocs
init k8s.io/client-go/transport @15484 ms, 0 ms clock, 256 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication @15484 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/runtime/serializer/streaming @15484 ms, 0 ms clock, 80 bytes, 2 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1 @15484 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1 @15484 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/pkg/apis/clientauthentication/v1beta1 @15484 ms, 0 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/plugin/pkg/client/auth/exec @15484 ms, 7.6 ms clock, 52192 bytes, 451 allocs
init k8s.io/client-go/rest @15492 ms, 0 ms clock, 192 bytes, 4 allocs
init k8s.io/apimachinery/pkg/apis/meta/v1beta1 @15492 ms, 0 ms clock, 488 bytes, 8 allocs
init k8s.io/apimachinery/pkg/apis/meta/internalversion @15492 ms, 0.39 ms clock, 40 bytes, 3 allocs
init k8s.io/client-go/tools/cache @15492 ms, 0 ms clock, 416 bytes, 6 allocs
init k8s.io/api/discovery/v1beta1 @15492 ms, 0 ms clock, 3104 bytes, 24 allocs
init k8s.io/api/networking/v1 @15492 ms, 0 ms clock, 90160 bytes, 58 allocs
init k8s.io/api/networking/v1beta1 @15493 ms, 0 ms clock, 4880 bytes, 36 allocs
init k8s.io/apimachinery/pkg/util/version @15493 ms, 0 ms clock, 22280 bytes, 322 allocs
init github.com/googleapis/gnostic/extensions @15493 ms, 0 ms clock, 3080 bytes, 11 allocs
init github.com/googleapis/gnostic/openapiv2 @15493 ms, 0 ms clock, 42504 bytes, 86 allocs
init k8s.io/api/admissionregistration/v1 @15500 ms, 0 ms clock, 4112 bytes, 28 allocs
init k8s.io/api/admissionregistration/v1beta1 @15500 ms, 0 ms clock, 4112 bytes, 28 allocs
init k8s.io/api/apiserverinternal/v1alpha1 @15500 ms, 0 ms clock, 2192 bytes, 20 allocs
init k8s.io/api/apps/v1 @15500 ms, 0 ms clock, 11360 bytes, 66 allocs
init k8s.io/api/apps/v1beta1 @15500 ms, 0.81 ms clock, 8720 bytes, 52 allocs
init k8s.io/api/apps/v1beta2 @15501 ms, 0 ms clock, 12720 bytes, 73 allocs
init k8s.io/api/authentication/v1 @15501 ms, 0 ms clock, 2864 bytes, 24 allocs
init k8s.io/api/authentication/v1beta1 @15501 ms, 0 ms clock, 1520 bytes, 16 allocs
init k8s.io/api/authorization/v1 @15501 ms, 0 ms clock, 4544 bytes, 34 allocs
init k8s.io/api/authorization/v1beta1 @15501 ms, 0 ms clock, 4544 bytes, 34 allocs
init k8s.io/api/autoscaling/v1 @15501 ms, 0 ms clock, 7232 bytes, 50 allocs
init k8s.io/api/autoscaling/v2 @15501 ms, 1.0 ms clock, 8240 bytes, 56 allocs
init k8s.io/api/autoscaling/v2beta1 @15502 ms, 0 ms clock, 6224 bytes, 44 allocs
init k8s.io/api/autoscaling/v2beta2 @15509 ms, 0 ms clock, 8240 bytes, 56 allocs
init k8s.io/api/batch/v1 @15509 ms, 0.27 ms clock, 4448 bytes, 30 allocs
init k8s.io/api/batch/v1beta1 @15509 ms, 0 ms clock, 2544 bytes, 21 allocs
init k8s.io/api/certificates/v1 @15509 ms, 0 ms clock, 2144 bytes, 18 allocs
init k8s.io/api/certificates/v1beta1 @15509 ms, 0 ms clock, 1808 bytes, 16 allocs
init k8s.io/api/coordination/v1 @15509 ms, 0 ms clock, 1536 bytes, 15 allocs
init k8s.io/api/coordination/v1beta1 @15509 ms, 0 ms clock, 7352 bytes, 16 allocs
init k8s.io/api/discovery/v1 @15509 ms, 0 ms clock, 2816 bytes, 22 allocs
init k8s.io/api/events/v1 @15509 ms, 0 ms clock, 2048 bytes, 14 allocs
init k8s.io/api/events/v1beta1 @15509 ms, 1.0 ms clock, 2048 bytes, 14 allocs
init k8s.io/api/extensions/v1beta1 @15510 ms, 0 ms clock, 22448 bytes, 126 allocs
init k8s.io/api/flowcontrol/v1alpha1 @15510 ms, 0 ms clock, 8144 bytes, 54 allocs
init k8s.io/api/flowcontrol/v1beta1 @15510 ms, 0 ms clock, 171984 bytes, 56 allocs
init k8s.io/api/flowcontrol/v1beta2 @15510 ms, 0 ms clock, 7568 bytes, 52 allocs
init k8s.io/api/node/v1 @15510 ms, 0 ms clock, 1808 bytes, 17 allocs
init k8s.io/api/node/v1alpha1 @15510 ms, 7.3 ms clock, 2144 bytes, 19 allocs
init k8s.io/api/node/v1beta1 @15518 ms, 0 ms clock, 6408 bytes, 18 allocs
init k8s.io/api/policy/v1 @15518 ms, 0 ms clock, 1856 bytes, 18 allocs
init k8s.io/api/policy/v1beta1 @15518 ms, 0 ms clock, 7712 bytes, 47 allocs
init k8s.io/api/rbac/v1 @15518 ms, 0 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/rbac/v1alpha1 @15518 ms, 0.60 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/rbac/v1beta1 @15518 ms, 0 ms clock, 4208 bytes, 32 allocs
init k8s.io/api/scheduling/v1 @15518 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/scheduling/v1alpha1 @15518 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/scheduling/v1beta1 @15518 ms, 0 ms clock, 848 bytes, 12 allocs
init k8s.io/api/storage/v1 @15518 ms, 0 ms clock, 6176 bytes, 42 allocs
init k8s.io/api/storage/v1alpha1 @15518 ms, 0 ms clock, 2864 bytes, 24 allocs
init k8s.io/api/storage/v1beta1 @15518 ms, 0 ms clock, 6848 bytes, 46 allocs
init k8s.io/client-go/kubernetes/scheme @15518 ms, 20 ms clock, 662448 bytes, 5108 allocs
init sigs.k8s.io/structured-merge-diff/v4/fieldpath @15538 ms, 0 ms clock, 1040 bytes, 2 allocs
init sigs.k8s.io/structured-merge-diff/v4/typed @15538 ms, 0.98 ms clock, 94480 bytes, 1794 allocs
init k8s.io/kube-openapi/pkg/schemaconv @15539 ms, 0 ms clock, 32 bytes, 2 allocs
init k8s.io/client-go/tools/reference @15540 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/imdario/mergo @15540 ms, 0 ms clock, 96 bytes, 6 allocs
init k8s.io/client-go/tools/clientcmd/api/v1 @15540 ms, 1.1 ms clock, 72 bytes, 4 allocs
init k8s.io/client-go/tools/clientcmd/api/latest @15541 ms, 0 ms clock, 13704 bytes, 134 allocs
init github.com/spf13/pflag @15547 ms, 0 ms clock, 272 bytes, 2 allocs
init k8s.io/client-go/tools/clientcmd @15547 ms, 0 ms clock, 3720 bytes, 51 allocs
init github.com/prometheus/prometheus/discovery/kubernetes @15547 ms, 94 ms clock, 22104 bytes, 429 allocs
init github.com/prometheus/prometheus/discovery/marathon @15641 ms, 0 ms clock, 1296 bytes, 10 allocs
init github.com/docker/go-units @15641 ms, 13 ms clock, 15944 bytes, 227 allocs
init github.com/docker/docker/api/types/network @15655 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/opencontainers/go-digest @15671 ms, 0.99 ms clock, 94176 bytes, 845 allocs
init github.com/opencontainers/image-spec/specs-go @15680 ms, 0 ms clock, 0 bytes, 1 allocs
init github.com/docker/docker/api/types/swarm/runtime @15680 ms, 0 ms clock, 104 bytes, 4 allocs
init github.com/Microsoft/go-winio @15680 ms, 0 ms clock, 2232 bytes, 54 allocs
init github.com/docker/go-connections/sockets @15680 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/distribution/digestset @15680 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/distribution/reference @15680 ms, 2.8 ms clock, 1340328 bytes, 11452 allocs
init github.com/containerd/containerd/errdefs @15683 ms, 6.4 ms clock, 112 bytes, 7 allocs
init github.com/containerd/containerd/log @15690 ms, 0 ms clock, 160 bytes, 2 allocs
init github.com/containerd/containerd/platforms @15690 ms, 0 ms clock, 2728 bytes, 41 allocs
init github.com/docker/distribution/registry/api/errcode @15690 ms, 0 ms clock, 2800 bytes, 10 allocs
init github.com/docker/go-connections/tlsconfig @15690 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/docker/docker/client @15690 ms, 0 ms clock, 7224 bytes, 66 allocs
init github.com/prometheus/prometheus/discovery/moby @15690 ms, 0 ms clock, 832 bytes, 19 allocs
init github.com/gophercloud/gophercloud/pagination @15690 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/gophercloud/gophercloud/openstack/utils @15690 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/prometheus/prometheus/discovery/openstack @15690 ms, 0 ms clock, 2816 bytes, 11 allocs
init github.com/prometheus/prometheus/discovery/triton @15690 ms, 0 ms clock, 368 bytes, 9 allocs
init github.com/go-zookeeper/zk @15690 ms, 0 ms clock, 3440 bytes, 38 allocs
init github.com/prometheus/prometheus/util/treecache @15690 ms, 25 ms clock, 1200 bytes, 26 allocs
init github.com/prometheus/prometheus/discovery/zookeeper @15716 ms, 0 ms clock, 496 bytes, 18 allocs
init text/scanner @15716 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/grafana/loki/clients/pkg/logentry/logql @15716 ms, 0 ms clock, 464 bytes, 2 allocs
init github.com/grafana/loki/pkg/logqlmodel @15716 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/google/uuid @15716 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/mitchellh/reflectwalk @15716 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/mitchellh/copystructure @15716 ms, 0 ms clock, 344 bytes, 5 allocs
init github.com/Masterminds/goutils @15716 ms, 0 ms clock, 5424 bytes, 2 allocs
init github.com/shopspring/decimal @15716 ms, 0 ms clock, 1104 bytes, 54 allocs
init github.com/spf13/cast @15716 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/Masterminds/semver/v3 @15716 ms, 0.51 ms clock, 133760 bytes, 935 allocs
init github.com/Masterminds/sprig/v3 @15716 ms, 8.0 ms clock, 41480 bytes, 55 allocs
init golang.org/x/crypto/sha3 @15724 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/loki/clients/pkg/logentry/stages @15724 ms, 0 ms clock, 20056 bytes, 6 allocs
init github.com/grafana/loki/clients/pkg/promtail/discovery/consulagent @15724 ms, 0 ms clock, 149048 bytes, 139 allocs
init github.com/bmatcuk/doublestar @15725 ms, 0 ms clock, 0 bytes, 0 allocs
init gopkg.in/fsnotify%2ev1 @15725 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hpcloud/tail/util @15725 ms, 0 ms clock, 80 bytes, 1 allocs
init gopkg.in/fsnotify/fsnotify%2ev1 @15725 ms, 0 ms clock, 16 bytes, 1 allocs
init gopkg.in/tomb%2ev1 @15752 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hpcloud/tail/watch @15752 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/hpcloud/tail @15752 ms, 0 ms clock, 192 bytes, 4 allocs
init time/tzdata @15752 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/util @15752 ms, 8.0 ms clock, 13304 bytes, 96 allocs
init github.com/google/pprof/profile @15760 ms, 1.9 ms clock, 147216 bytes, 1175 allocs
init github.com/shurcooL/vfsgen @15762 ms, 151 ms clock, 34072 bytes, 525 allocs
init github.com/grafana/loki/clients/pkg/promtail/server/ui @15913 ms, 74 ms clock, 1757544 bytes, 165 allocs
init github.com/cloudflare/cloudflare-go @15987 ms, 0 ms clock, 2704 bytes, 6 allocs
init github.com/buger/jsonparser @15987 ms, 0 ms clock, 144 bytes, 9 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/cloudflare @15988 ms, 0 ms clock, 10072 bytes, 39 allocs
init google.golang.org/genproto/googleapis/type/expr @15988 ms, 0 ms clock, 1128 bytes, 7 allocs
init google.golang.org/genproto/googleapis/iam/v1 @15988 ms, 0 ms clock, 8992 bytes, 32 allocs
init cloud.google.com/go/iam @15988 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/protobuf/types/known/fieldmaskpb @15996 ms, 0 ms clock, 1088 bytes, 5 allocs
init google.golang.org/genproto/googleapis/pubsub/v1 @15996 ms, 0.62 ms clock, 41760 bytes, 42 allocs
init google.golang.org/api/iterator @15996 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opencensus.io/plugin/ocgrpc @15996 ms, 0 ms clock, 2456 bytes, 32 allocs
init google.golang.org/grpc/credentials/alts/internal/proto/grpc_gcp @15996 ms, 0 ms clock, 54872 bytes, 46 allocs
init google.golang.org/grpc/credentials/alts/internal/conn @15996 ms, 0 ms clock, 80 bytes, 3 allocs
init google.golang.org/grpc/credentials/alts/internal/handshaker @15996 ms, 0 ms clock, 752 bytes, 7 allocs
init google.golang.org/grpc/credentials/alts/internal/handshaker/service @15996 ms, 0 ms clock, 48 bytes, 1 allocs
init google.golang.org/grpc/internal/googlecloud @15996 ms, 0 ms clock, 464 bytes, 3 allocs
init google.golang.org/grpc/credentials/alts @15996 ms, 0 ms clock, 32 bytes, 2 allocs
init google.golang.org/grpc/credentials/google @15996 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/grpc/balancer/grpclb/grpc_lb_v1 @15996 ms, 0 ms clock, 5856 bytes, 11 allocs
init google.golang.org/grpc/balancer/grpclb @15996 ms, 0 ms clock, 48 bytes, 3 allocs
init cloud.google.com/go/internal/version @15996 ms, 0 ms clock, 0 bytes, 1 allocs
init google.golang.org/api/support/bundler @15996 ms, 0 ms clock, 48 bytes, 3 allocs
init google.golang.org/genproto/protobuf/field_mask @15996 ms, 0 ms clock, 0 bytes, 0 allocs
init cloud.google.com/go/pubsub @15996 ms, 0 ms clock, 4872 bytes, 64 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/gelf @15996 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/xdg-go/stringprep @15996 ms, 0.99 ms clock, 293872 bytes, 2332 allocs
init go4.org/intern @15997 ms, 0 ms clock, 320 bytes, 3 allocs
init inet.af/netaddr @15997 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/grafana/loki/pkg/logql/log/jsonexpr @15997 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/loki/pkg/logql/log/pattern @15997 ms, 0 ms clock, 288 bytes, 4 allocs
init github.com/grafana/loki/pkg/logql/log @15997 ms, 0 ms clock, 24704 bytes, 20 allocs
init github.com/grafana/loki/pkg/logql/syntax @15997 ms, 0 ms clock, 4048 bytes, 6 allocs
init github.com/grafana/loki/pkg/querier/astmapper @16005 ms, 0.28 ms clock, 4328 bytes, 55 allocs
init github.com/grafana/loki/pkg/util/httpreq @16005 ms, 0 ms clock, 968 bytes, 13 allocs
init github.com/grafana/loki/pkg/util/validation @16005 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/loki/pkg/storage/chunk @16005 ms, 0 ms clock, 336 bytes, 7 allocs
init github.com/bradfitz/gomemcache/memcache @16005 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/sony/gobreaker @16005 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/thanos-io/thanos/pkg/discovery/dns/miekgdns @16005 ms, 0 ms clock, 304 bytes, 3 allocs
init github.com/facette/natsort @16005 ms, 16 ms clock, 2472 bytes, 21 allocs
init github.com/go-redis/redis/v8/internal/rand @16021 ms, 0 ms clock, 5448 bytes, 3 allocs
init github.com/go-redis/redis/v8/internal @16021 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/go-redis/redis/v8/internal/pool @16021 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-redis/redis/v8/internal/hscan @16021 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/go-redis/redis/v8 @16021 ms, 0 ms clock, 64 bytes, 3 allocs
init github.com/grafana/loki/pkg/storage/config @16021 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/grafana/loki/pkg/storage/stores/series/index @16021 ms, 147 ms clock, 3248 bytes, 73 allocs
init github.com/grafana/loki/pkg/storage/chunk/client @16170 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/grafana/loki/pkg/logql @16170 ms, 58 ms clock, 7776 bytes, 198 allocs
init github.com/grafana/loki/pkg/loghttp @16229 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/grafana/loki/pkg/loghttp/push @16229 ms, 98 ms clock, 2016 bytes, 59 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/stdin @16327 ms, 0 ms clock, 944 bytes, 9 allocs
init github.com/influxdata/go-syslog/v3/common @16327 ms, 0 ms clock, 2320 bytes, 12 allocs
init github.com/spf13/afero/mem @16327 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/spf13/afero @16327 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/influxdata/telegraf/plugins/inputs @16327 ms, 0 ms clock, 48 bytes, 1 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/windows/win_eventlog @16327 ms, 0 ms clock, 640 bytes, 10 allocs
init github.com/grafana/loki/clients/pkg/promtail/targets/windows @16327 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/logs @16327 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/agentproto @16327 ms, 0 ms clock, 104 bytes, 4 allocs
init github.com/grafana/agent/pkg/build @16327 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/metrics/wal @16328 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/grafana/agent/pkg/metrics/instance @16328 ms, 204 ms clock, 1320 bytes, 36 allocs
init github.com/grafana/agent/pkg/metrics/instance/configstore @16532 ms, 30 ms clock, 880 bytes, 23 allocs
init github.com/cortexproject/cortex/pkg/tenant @16562 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/cortexproject/cortex/pkg/util/log @16562 ms, 97 ms clock, 1288 bytes, 32 allocs
init google.golang.org/grpc/encoding/gzip @16660 ms, 0 ms clock, 384 bytes, 3 allocs
init github.com/grafana/dskit/grpcencoding/snappy @16660 ms, 0 ms clock, 80 bytes, 1 allocs
init github.com/grafana/agent/pkg/metrics/cluster/client @16660 ms, 0 ms clock, 3480 bytes, 42 allocs
init github.com/prometheus/prometheus/discovery/eureka @16660 ms, 0 ms clock, 472 bytes, 12 allocs
init github.com/prometheus/prometheus/discovery/hetzner @16660 ms, 0 ms clock, 520 bytes, 12 allocs
init github.com/scaleway/scaleway-sdk-go/namegenerator @16660 ms, 0 ms clock, 5424 bytes, 2 allocs
init github.com/scaleway/scaleway-sdk-go/logger @16668 ms, 0 ms clock, 848 bytes, 17 allocs
init github.com/scaleway/scaleway-sdk-go/validation @16668 ms, 0 ms clock, 36328 bytes, 397 allocs
init github.com/scaleway/scaleway-sdk-go/scw @16668 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/prometheus/prometheus/discovery/scaleway @16668 ms, 0 ms clock, 592 bytes, 10 allocs
init github.com/grafana/agent/pkg/metrics/cluster @16668 ms, 466 ms clock, 69112 bytes, 267 allocs
init github.com/grafana/agent/pkg/metrics @17135 ms, 0.92 ms clock, 4664 bytes, 103 allocs
init golang.org/x/sys/windows/registry @17136 ms, 0 ms clock, 496 bytes, 11 allocs
init github.com/github/smimesign/certstore @17136 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/server @17136 ms, 0 ms clock, 1056 bytes, 14 allocs
init go.opentelemetry.io/collector/config @17136 ms, 0 ms clock, 104 bytes, 5 allocs
init github.com/mostynb/go-grpc-compression/snappy @17144 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/mostynb/go-grpc-compression/zstd @17144 ms, 0 ms clock, 9552 bytes, 28 allocs
init go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc @17144 ms, 0 ms clock, 0 bytes, 0 allocs
init go.opentelemetry.io/collector/component/componenterror @17144 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/common/v1 @17144 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data @17144 ms, 0 ms clock, 32 bytes, 2 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/resource/v1 @17144 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/logs/v1 @17144 ms, 0 ms clock, 2280 bytes, 15 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/metrics/v1 @17144 ms, 0 ms clock, 1048 bytes, 14 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/trace/v1 @17144 ms, 0 ms clock, 1256 bytes, 15 allocs
init go.opentelemetry.io/collector/config/configauth @17144 ms, 0 ms clock, 64 bytes, 4 allocs
init go.opentelemetry.io/collector/config/configtls @17145 ms, 0 ms clock, 208 bytes, 2 allocs
init go.opentelemetry.io/collector/config/configgrpc @17145 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/consumer/consumerhelper @17145 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/external/obsreportconfig/obsmetrics @17145 ms, 0 ms clock, 6416 bytes, 69 allocs
init github.com/gogo/protobuf/jsonpb @17145 ms, 0 ms clock, 256 bytes, 2 allocs
init go.opencensus.io/metric @17145 ms, 0 ms clock, 48 bytes, 3 allocs
init go.opentelemetry.io/collector/exporter/exporterhelper @17145 ms, 0 ms clock, 2320 bytes, 47 allocs
init github.com/gogo/googleapis/google/api @17145 ms, 0 ms clock, 624 bytes, 16 allocs
init github.com/jaegertracing/jaeger/model @17145 ms, 0 ms clock, 4632 bytes, 16 allocs
init github.com/jaegertracing/jaeger/proto-gen/api_v2 @17145 ms, 0 ms clock, 904 bytes, 22 allocs
init github.com/apache/thrift/lib/go/thrift @17145 ms, 37 ms clock, 2016 bytes, 32 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger @17182 ms, 0 ms clock, 400 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/jaegerexporter @17182 ms, 0 ms clock, 120 bytes, 3 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/logs/v1 @17182 ms, 0 ms clock, 152 bytes, 6 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/metrics/v1 @17182 ms, 0 ms clock, 504 bytes, 7 allocs
init go.opentelemetry.io/collector/model/internal/data/protogen/collector/trace/v1 @17182 ms, 0 ms clock, 752 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter @17182 ms, 0 ms clock, 296 bytes, 11 allocs
init go.opentelemetry.io/collector/service/featuregate @17182 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter @17182 ms, 0 ms clock, 56 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/extension/oauth2clientauthextension @17182 ms, 0 ms clock, 112 bytes, 5 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/processor/filtermatcher @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/processor/processorhelper @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanmetricsprocessor @17182 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor/internal/idbatcher @17182 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor @17182 ms, 0 ms clock, 648 bytes, 18 allocs
init github.com/jaegertracing/jaeger/proto-gen/api_v2/metrics @17182 ms, 0 ms clock, 1552 bytes, 21 allocs
init github.com/jaegertracing/jaeger/storage/spanstore @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/storage @17182 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/jaegertracing/jaeger/pkg/clientcfg/clientcfghttp @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/processor @17182 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin @17182 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/jaegertracing/jaeger/model/converter/thrift/zipkin @17183 ms, 0 ms clock, 672 bytes, 4 allocs
init github.com/jaegertracing/jaeger/cmd/collector/app/handler @17183 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/spf13/jwalterweatherman @17183 ms, 0 ms clock, 1320 bytes, 22 allocs
init gopkg.in/ini%2ev1 @17183 ms, 0 ms clock, 5096 bytes, 48 allocs
init github.com/hashicorp/hcl/hcl/strconv @17183 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl/hcl/parser @17183 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl/json/parser @17183 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/hashicorp/hcl @17183 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/pelletier/go-toml @17183 ms, 0 ms clock, 288 bytes, 11 allocs
init github.com/spf13/viper @17183 ms, 0 ms clock, 1488 bytes, 14 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver @17183 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter/internal/awsmsk @17183 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter @17183 ms, 0 ms clock, 40 bytes, 2 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/common/v1 @17183 ms, 0 ms clock, 4648 bytes, 19 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/resource/v1 @17183 ms, 0 ms clock, 1712 bytes, 8 allocs
init google.golang.org/protobuf/types/known/wrapperspb @17183 ms, 0 ms clock, 5936 bytes, 6 allocs
init github.com/golang/protobuf/ptypes/wrappers @17183 ms, 0 ms clock, 656 bytes, 4 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/trace/v1 @17183 ms, 0 ms clock, 58480 bytes, 43 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/internal/zipkin @17183 ms, 0 ms clock, 21368 bytes, 287 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/metrics/v1 @17183 ms, 0 ms clock, 9792 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus @17183 ms, 0 ms clock, 1152 bytes, 6 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/zipkinv1 @17183 ms, 0 ms clock, 1168 bytes, 12 allocs
init github.com/openzipkin/zipkin-go/model @17184 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/openzipkin/zipkin-go/proto/zipkin_proto3 @17184 ms, 0 ms clock, 4112 bytes, 16 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin/zipkinv2 @17184 ms, 0 ms clock, 6840 bytes, 12 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver @17184 ms, 0 ms clock, 400 bytes, 12 allocs
init github.com/golang/protobuf/protoc-gen-go/descriptor @17184 ms, 0 ms clock, 528 bytes, 3 allocs
init github.com/golang/protobuf/jsonpb @17184 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/grpc-ecosystem/grpc-gateway/internal @17190 ms, 0 ms clock, 87448 bytes, 56 allocs
init google.golang.org/genproto/googleapis/api/httpbody @17190 ms, 0 ms clock, 244824 bytes, 9 allocs
init github.com/grpc-ecosystem/grpc-gateway/runtime @17190 ms, 0.51 ms clock, 5816 bytes, 55 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/metrics/v1 @17191 ms, 0 ms clock, 1872 bytes, 13 allocs
init github.com/census-instrumentation/opencensus-proto/gen-go/agent/trace/v1 @17191 ms, 0 ms clock, 3040 bytes, 13 allocs
init github.com/soheilhy/cmux @17191 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver/internal/ocmetrics @17191 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver/internal/octrace @17191 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver @17191 ms, 0 ms clock, 56 bytes, 2 allocs
init go.opentelemetry.io/collector/config/configtest @17191 ms, 0 ms clock, 2768 bytes, 42 allocs
init go.opentelemetry.io/collector/processor/batchprocessor @17191 ms, 0 ms clock, 288 bytes, 8 allocs
init go.opentelemetry.io/collector/receiver/otlpreceiver @17191 ms, 0 ms clock, 56 bytes, 2 allocs
init github.com/fatih/structs @17191 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/google/go-jsonnet/ast @17191 ms, 0 ms clock, 1200 bytes, 4 allocs
init github.com/google/go-jsonnet/internal/parser @17191 ms, 0 ms clock, 768 bytes, 4 allocs
init github.com/google/go-jsonnet/internal/program @17191 ms, 0 ms clock, 256 bytes, 2 allocs
init github.com/google/go-jsonnet @17191 ms, 0 ms clock, 8824 bytes, 124 allocs
init github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1 @17191 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme @17191 ms, 0 ms clock, 44344 bytes, 329 allocs
init k8s.io/client-go/metadata @17191 ms, 0 ms clock, 39808 bytes, 298 allocs
init sigs.k8s.io/controller-runtime/pkg/client/apiutil @17191 ms, 10 ms clock, 506528 bytes, 2618 allocs
init sigs.k8s.io/controller-runtime/pkg/log @17202 ms, 0 ms clock, 144 bytes, 2 allocs
init github.com/evanphx/json-patch @17202 ms, 1.0 ms clock, 1776 bytes, 23 allocs
init k8s.io/apimachinery/pkg/util/mergepatch @17203 ms, 0 ms clock, 112 bytes, 7 allocs
init k8s.io/client-go/dynamic @17203 ms, 0 ms clock, 71504 bytes, 481 allocs
init k8s.io/apiextensions-apiserver/pkg/apis/apiextensions @17203 ms, 0 ms clock, 24 bytes, 2 allocs
init k8s.io/apimachinery/pkg/api/equality @17203 ms, 0 ms clock, 400 bytes, 2 allocs
init k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1 @17203 ms, 0 ms clock, 224 bytes, 10 allocs
init github.com/grafana/agent/pkg/operator/apis/monitoring/v1alpha1 @17203 ms, 0 ms clock, 3512 bytes, 14 allocs
init github.com/grafana/agent/pkg/operator/config @17203 ms, 0 ms clock, 856 bytes, 12 allocs
init github.com/grafana/agent/pkg/traces/servicegraphprocessor @17203 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opentelemetry.io/collector/service/external/builder @17203 ms, 0 ms clock, 16 bytes, 1 allocs
init go.opencensus.io/metric/metricexport @17203 ms, 0 ms clock, 216 bytes, 11 allocs
init github.com/prometheus/statsd_exporter/pkg/mapper/fsm @17203 ms, 0 ms clock, 2840 bytes, 28 allocs
init github.com/prometheus/statsd_exporter/pkg/mapper @17203 ms, 0 ms clock, 26608 bytes, 399 allocs
init github.com/jsternberg/zap-logfmt @17203 ms, 0 ms clock, 64 bytes, 2 allocs
init github.com/drone/envsubst/v2/path @17203 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/drone/envsubst/v2/parse @17203 ms, 0 ms clock, 96 bytes, 6 allocs
init github.com/prometheus/prometheus/discovery/http @17203 ms, 18 ms clock, 17296 bytes, 247 allocs
init github.com/grafana/agent/pkg/integrations @17221 ms, 0 ms clock, 768 bytes, 21 allocs
init github.com/grafana/agent/pkg/integrations/v2 @17221 ms, 0 ms clock, 256 bytes, 7 allocs
init github.com/hairyhenderson/go-fsimpl @17221 ms, 0 ms clock, 336 bytes, 2 allocs
init golang.org/x/net/http/httpproxy @17221 ms, 0 ms clock, 336 bytes, 2 allocs
init github.com/mattn/go-ieproxy @17228 ms, 0 ms clock, 384 bytes, 8 allocs
init github.com/Azure/azure-pipeline-go/pipeline @17228 ms, 174 ms clock, 5768 bytes, 49 allocs
init github.com/Azure/azure-storage-blob-go/azblob @17402 ms, 0 ms clock, 504 bytes, 10 allocs
init golang.org/x/xerrors @17402 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/internal/oc @17402 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob @17402 ms, 0 ms clock, 896 bytes, 22 allocs
init gocloud.dev/internal/escape @17402 ms, 0 ms clock, 2256 bytes, 22 allocs
init gocloud.dev/blob/azureblob @17402 ms, 0 ms clock, 384 bytes, 3 allocs
init google.golang.org/genproto/googleapis/type/date @17402 ms, 0 ms clock, 1120 bytes, 6 allocs
init google.golang.org/genproto/googleapis/storage/v2 @17402 ms, 19 ms clock, 46144 bytes, 34 allocs
init cloud.google.com/go/storage @17421 ms, 0 ms clock, 20800 bytes, 187 allocs
init gocloud.dev/gcp @17421 ms, 0 ms clock, 0 bytes, 0 allocs
init google.golang.org/genproto/googleapis/iam/credentials/v1 @17423 ms, 0 ms clock, 5696 bytes, 13 allocs
init cloud.google.com/go/iam/credentials/apiv1 @17423 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob/gcsblob @17423 ms, 0 ms clock, 96 bytes, 3 allocs
init github.com/aws/aws-sdk-go/private/protocol/eventstream @17423 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go/service/s3 @17423 ms, 0 ms clock, 51616 bytes, 346 allocs
init github.com/aws/aws-sdk-go/service/s3/s3manager @17423 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/internal/rand @17423 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/internal/sdk @17423 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/smithy-go/rand @17423 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/smithy-go/time @17423 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/aws/aws-sdk-go-v2/aws/middleware @17423 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/aws/retry @17423 ms, 0.92 ms clock, 752 bytes, 4 allocs
init github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4 @17424 ms, 0 ms clock, 1536 bytes, 5 allocs
init github.com/aws/smithy-go/encoding/httpbinding @17424 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/service/sso/internal/endpoints @17424 ms, 0 ms clock, 43712 bytes, 419 allocs
init github.com/aws/aws-sdk-go-v2/credentials/ssocreds @17424 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints @17424 ms, 0 ms clock, 52288 bytes, 425 allocs
init github.com/aws/aws-sdk-go-v2/credentials/stscreds @17424 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/aws/aws-sdk-go-v2/internal/ini @17424 ms, 0 ms clock, 2304 bytes, 22 allocs
init github.com/aws/aws-sdk-go-v2/config @17424 ms, 0 ms clock, 816 bytes, 10 allocs
init gocloud.dev/aws @17424 ms, 0 ms clock, 0 bytes, 0 allocs
init gocloud.dev/blob/s3blob @17424 ms, 0 ms clock, 8 bytes, 1 allocs
init github.com/hairyhenderson/go-fsimpl/blobfs @17433 ms, 0 ms clock, 80 bytes, 2 allocs
init github.com/hairyhenderson/go-fsimpl/filefs @17433 ms, 0.99 ms clock, 48 bytes, 2 allocs
init github.com/joho/godotenv @17434 ms, 0 ms clock, 23560 bytes, 240 allocs
init golang.org/x/sys/cpu @17434 ms, 0 ms clock, 1568 bytes, 5 allocs
init golang.org/x/crypto/blake2b @17441 ms, 0 ms clock, 32 bytes, 2 allocs
init golang.org/x/crypto/curve25519 @17441 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/Shopify/ejson/crypto @17441 ms, 0 ms clock, 33128 bytes, 266 allocs
init github.com/dustin/gojson @17441 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/Shopify/ejson/json @17441 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/hairyhenderson/gomplate/v3/conv @17441 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hairyhenderson/toml/internal @17441 ms, 0.82 ms clock, 7232 bytes, 15 allocs
init github.com/hairyhenderson/toml @17441 ms, 0 ms clock, 1456 bytes, 9 allocs
init github.com/ugorji/go/codec @17441 ms, 0 ms clock, 3088 bytes, 40 allocs
init github.com/docker/libkv/store @17441 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/docker/libkv @17441 ms, 0 ms clock, 72 bytes, 2 allocs
init go.etcd.io/bbolt @17441 ms, 0 ms clock, 400 bytes, 20 allocs
init github.com/docker/libkv/store/boltdb @17441 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/docker/libkv/store/consul @17441 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/aws/aws-sdk-go/service/kms @17441 ms, 1.0 ms clock, 3776 bytes, 7 allocs
init github.com/hashicorp/go-retryablehttp @17448 ms, 0 ms clock, 8128 bytes, 59 allocs
init github.com/hashicorp/go-secure-stdlib/parseutil @17448 ms, 0 ms clock, 8904 bytes, 101 allocs
init github.com/hashicorp/vault/sdk/helper/consts @17448 ms, 0 ms clock, 80 bytes, 5 allocs
init github.com/hashicorp/vault/sdk/physical @17448 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/hashicorp/vault/sdk/physical/inmem @17448 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/hashicorp/go-secure-stdlib/mlock @17448 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-version @17449 ms, 0 ms clock, 76904 bytes, 548 allocs
init github.com/hashicorp/go-plugin/internal/plugin @17449 ms, 0 ms clock, 257536 bytes, 132 allocs
init google.golang.org/grpc/health @17449 ms, 0 ms clock, 16 bytes, 1 allocs
init google.golang.org/grpc/reflection/grpc_reflection_v1alpha @17457 ms, 0 ms clock, 5280 bytes, 11 allocs
init github.com/hashicorp/yamux @17457 ms, 0 ms clock, 512 bytes, 26 allocs
init github.com/hashicorp/go-plugin @17458 ms, 0 ms clock, 128 bytes, 6 allocs
init github.com/hashicorp/vault/sdk/version @17458 ms, 0 ms clock, 0 bytes, 0 allocs
init golang.org/x/crypto/cryptobyte @17458 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/hashicorp/vault/sdk/logical @17458 ms, 0 ms clock, 5768 bytes, 28 allocs
init gopkg.in/square/go-jose.v2/json @17458 ms, 0 ms clock, 80 bytes, 5 allocs
init gopkg.in/square/go-jose%2ev2 @17458 ms, 0 ms clock, 304 bytes, 8 allocs
init gopkg.in/square/go-jose.v2/jwt @17458 ms, 0 ms clock, 176 bytes, 11 allocs
init archive/tar @17465 ms, 0 ms clock, 736 bytes, 11 allocs
init github.com/hashicorp/vault/api @17465 ms, 0 ms clock, 144 bytes, 9 allocs
init github.com/aws/aws-sdk-go/service/secretsmanager @17465 ms, 0 ms clock, 672 bytes, 3 allocs
init github.com/aws/aws-sdk-go/service/ssm @17465 ms, 0 ms clock, 15880 bytes, 9 allocs
init github.com/rs/zerolog/internal/json @17465 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/rs/zerolog @17465 ms, 0 ms clock, 112 bytes, 4 allocs
init github.com/go-git/go-billy/v5 @17465 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/go-git/go-billy/v5/memfs @17465 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing @17465 ms, 0 ms clock, 48 bytes, 3 allocs
init github.com/go-git/go-git/v5/plumbing/format/index @17465 ms, 0 ms clock, 96 bytes, 6 allocs
init github.com/go-git/go-git/v5/plumbing/storer @17465 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/utils/ioutil @17465 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/utils/merkletrie @17465 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/ProtonMail/go-crypto/openpgp/aes/keywrap @17466 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/ProtonMail/go-crypto/ocb @17466 ms, 0 ms clock, 32 bytes, 1 allocs
init github.com/ProtonMail/go-crypto/openpgp/internal/algorithm @17466 ms, 0 ms clock, 768 bytes, 8 allocs
init github.com/ProtonMail/go-crypto/brainpool @17466 ms, 0 ms clock, 80 bytes, 4 allocs
init github.com/ProtonMail/go-crypto/openpgp/internal/ecc @17466 ms, 0 ms clock, 20792 bytes, 427 allocs
init compress/bzip2 @17466 ms, 0 ms clock, 0 bytes, 0 allocs
init image/color @17466 ms, 0 ms clock, 88 bytes, 11 allocs
init image @17474 ms, 0 ms clock, 80 bytes, 7 allocs
init image/jpeg @17474 ms, 0 ms clock, 2216 bytes, 6 allocs
init github.com/ProtonMail/go-crypto/openpgp @17474 ms, 0 ms clock, 48 bytes, 2 allocs
init github.com/go-git/gcfg/types @17474 ms, 0 ms clock, 768 bytes, 7 allocs
init github.com/go-git/gcfg @17474 ms, 0 ms clock, 1552 bytes, 16 allocs
init github.com/go-git/go-billy/v5/osfs @17474 ms, 0 ms clock, 144 bytes, 3 allocs
init github.com/go-git/go-git/v5/internal/url @17474 ms, 0 ms clock, 17696 bytes, 122 allocs
init github.com/go-git/go-git/v5/config @17474 ms, 0.75 ms clock, 3400 bytes, 44 allocs
init github.com/go-git/go-git/v5/storage @17474 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/format/diff @17474 ms, 0 ms clock, 4264 bytes, 30 allocs
init github.com/sergi/go-diff/diffmatchpatch @17474 ms, 0 ms clock, 7432 bytes, 79 allocs
init github.com/go-git/go-git/v5/plumbing/object @17474 ms, 0 ms clock, 176 bytes, 10 allocs
init github.com/go-git/go-git/v5/plumbing/format/pktline @17474 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband @17474 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp/capability @17474 ms, 0 ms clock, 1328 bytes, 11 allocs
init github.com/go-git/go-git/v5/storage/memory @17474 ms, 0 ms clock, 72 bytes, 4 allocs
init github.com/go-git/go-git/v5/plumbing/protocol/packp @17474 ms, 0 ms clock, 224 bytes, 10 allocs
init github.com/go-git/go-git/v5/plumbing/transport @17474 ms, 0 ms clock, 368 bytes, 9 allocs
init github.com/go-git/go-git/v5/plumbing/format/idxfile @17474 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/format/packfile @17474 ms, 0 ms clock, 352 bytes, 13 allocs
init github.com/go-git/go-git/v5/plumbing/transport/internal/common @17474 ms, 0 ms clock, 16 bytes, 1 allocs
init golang.org/x/sys/execabs @17474 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-git/go-git/v5/plumbing/format/objfile @17474 ms, 0 ms clock, 64 bytes, 4 allocs
init github.com/go-git/go-git/v5/storage/filesystem/dotgit @17474 ms, 0 ms clock, 128 bytes, 8 allocs
init github.com/go-git/go-git/v5/plumbing/transport/server @17474 ms, 0 ms clock, 112 bytes, 6 allocs
init github.com/go-git/go-git/v5/plumbing/transport/file @17474 ms, 0 ms clock, 64 bytes, 3 allocs
init github.com/go-git/go-git/v5/plumbing/transport/git @17474 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/go-git/go-git/v5/plumbing/transport/http @17474 ms, 0 ms clock, 8 bytes, 1 allocs
init golang.org/x/crypto/ssh @17474 ms, 0 ms clock, 13016 bytes, 83 allocs
init golang.org/x/crypto/ssh/agent @17474 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/xanzy/ssh-agent @17475 ms, 97 ms clock, 704 bytes, 23 allocs
init github.com/kevinburke/ssh_config @17578 ms, 0 ms clock, 17264 bytes, 161 allocs
init github.com/go-git/go-git/v5/plumbing/transport/ssh @17578 ms, 1.0 ms clock, 24 bytes, 2 allocs
init github.com/go-git/go-git/v5/plumbing/transport/client @17579 ms, 0 ms clock, 1096 bytes, 6 allocs
init github.com/go-git/go-git/v5/utils/merkletrie/filesystem @17579 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/go-git/go-git/v5 @17579 ms, 0 ms clock, 632 bytes, 39 allocs
init k8s.io/client-go/third_party/forked/golang/template @17579 ms, 7.6 ms clock, 4976 bytes, 12 allocs
init k8s.io/client-go/util/jsonpath @17587 ms, 0 ms clock, 13976 bytes, 145 allocs
init github.com/hairyhenderson/gomplate/v3/data @17587 ms, 347 ms clock, 769728 bytes, 11555 allocs
init github.com/hairyhenderson/gomplate/v3/crypto @17940 ms, 0 ms clock, 192 bytes, 2 allocs
init github.com/hairyhenderson/gomplate/v3/file @17940 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hairyhenderson/gomplate/v3/random @17940 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-sockaddr/template @17940 ms, 0 ms clock, 1920 bytes, 9 allocs
init github.com/gosimple/slug @17941 ms, 0 ms clock, 13456 bytes, 73 allocs
init github.com/hairyhenderson/gomplate/v3/strings @17941 ms, 0 ms clock, 22864 bytes, 33 allocs
init github.com/hairyhenderson/gomplate/v3 @17941 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/config @17941 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/go-resty/resty/v2 @17942 ms, 0 ms clock, 17648 bytes, 109 allocs
init github.com/linode/linodego @17942 ms, 0 ms clock, 53512 bytes, 811 allocs
init github.com/prometheus/prometheus/discovery/linode @17961 ms, 0 ms clock, 640 bytes, 11 allocs
init github.com/prometheus/prometheus/discovery/puppetdb @17961 ms, 0 ms clock, 18856 bytes, 237 allocs
init github.com/kolo/xmlrpc @17961 ms, 0 ms clock, 4232 bytes, 36 allocs
init github.com/prometheus/prometheus/discovery/uyuni @17961 ms, 1.0 ms clock, 496 bytes, 10 allocs
init net/mail @17962 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/cncf/xds/go/udpa/annotations @17968 ms, 0.27 ms clock, 8704 bytes, 57 allocs
init github.com/envoyproxy/protoc-gen-validate/validate @17968 ms, 0 ms clock, 15752 bytes, 26 allocs
init github.com/cncf/xds/go/xds/annotations/v3 @17968 ms, 0 ms clock, 10568 bytes, 55 allocs
init github.com/cncf/xds/go/xds/core/v3 @17968 ms, 0 ms clock, 15680 bytes, 132 allocs
init github.com/envoyproxy/go-control-plane/envoy/annotations @17968 ms, 0 ms clock, 2416 bytes, 20 allocs
init github.com/envoyproxy/go-control-plane/envoy/type/v3 @17968 ms, 0 ms clock, 24496 bytes, 79 allocs
init google.golang.org/protobuf/types/known/structpb @17968 ms, 0 ms clock, 3712 bytes, 14 allocs
init github.com/golang/protobuf/ptypes/struct @17968 ms, 0 ms clock, 528 bytes, 3 allocs
init github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3 @17968 ms, 1.2 ms clock, 28480 bytes, 242 allocs
init github.com/envoyproxy/go-control-plane/envoy/config/core/v3 @17969 ms, 6.7 ms clock, 184040 bytes, 554 allocs
init github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3 @17976 ms, 0 ms clock, 5640 bytes, 16 allocs
init github.com/prometheus/prometheus/discovery/xds @17976 ms, 38 ms clock, 77232 bytes, 104 allocs
init github.com/grafana/agent/pkg/integrations/agent @18014 ms, 0 ms clock, 304 bytes, 2 allocs
init github.com/Lusitaniae/apache_exporter/collector @18014 ms, 0 ms clock, 624 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/apache_http @18014 ms, 0 ms clock, 80 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/cadvisor @18014 ms, 0 ms clock, 1808 bytes, 9 allocs
init github.com/go-kit/kit/log @18014 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/prometheus/consul_exporter/pkg/exporter @18021 ms, 0 ms clock, 3608 bytes, 107 allocs
init github.com/grafana/agent/pkg/integrations/consul_exporter @18041 ms, 0 ms clock, 536 bytes, 5 allocs
init github.com/google/dnsmasq_exporter/collector @18041 ms, 0 ms clock, 2392 bytes, 55 allocs
init github.com/grafana/agent/pkg/integrations/dnsmasq_exporter @18048 ms, 0 ms clock, 440 bytes, 6 allocs
init github.com/grafana/agent/pkg/integrations/ebpf_exporter @18054 ms, 9.7 ms clock, 232 bytes, 4 allocs
init github.com/prometheus-community/elasticsearch_exporter/pkg/clusterinfo @18064 ms, 0 ms clock, 32 bytes, 2 allocs
init github.com/prometheus-community/elasticsearch_exporter/collector @18064 ms, 0 ms clock, 1120 bytes, 5 allocs
init github.com/grafana/agent/pkg/integrations/elasticsearch_exporter @18064 ms, 0 ms clock, 568 bytes, 5 allocs
init github.com/grafana/agent/pkg/integrations/github_exporter @18064 ms, 0 ms clock, 440 bytes, 4 allocs
init github.com/samuel/go-zookeeper/zk @18064 ms, 0 ms clock, 3600 bytes, 38 allocs
init github.com/krallistic/kazoo-go @18064 ms, 0 ms clock, 256 bytes, 16 allocs
init github.com/xdg/stringprep @18064 ms, 1.0 ms clock, 296016 bytes, 2341 allocs
init github.com/grafana/agent/pkg/integrations/kafka_exporter @18065 ms, 0 ms clock, 1608 bytes, 7 allocs
init github.com/grobie/gomemcache/memcache @18065 ms, 0 ms clock, 112 bytes, 7 allocs
init github.com/prometheus/memcached_exporter/pkg/exporter @18065 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/grafana/agent/pkg/integrations/memcached_exporter @18065 ms, 0 ms clock, 232 bytes, 4 allocs
init go.mongodb.org/mongo-driver/bson/primitive @18065 ms, 0 ms clock, 10136 bytes, 108 allocs
init github.com/go-stack/stack @18065 ms, 0 ms clock, 248 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/bsonx/bsoncore @18065 ms, 0 ms clock, 112 bytes, 7 allocs
init go.mongodb.org/mongo-driver/bson/bsonrw @18065 ms, 0 ms clock, 1264 bytes, 27 allocs
init go.mongodb.org/mongo-driver/bson/bsoncodec @18066 ms, 0 ms clock, 600 bytes, 27 allocs
init go.mongodb.org/mongo-driver/bson @18072 ms, 0.50 ms clock, 20816 bytes, 170 allocs
init go.mongodb.org/mongo-driver/internal @18073 ms, 0 ms clock, 80 bytes, 5 allocs
init go.mongodb.org/mongo-driver/mongo/readpref @18073 ms, 0 ms clock, 32 bytes, 2 allocs
init go.mongodb.org/mongo-driver/mongo/writeconcern @18073 ms, 0 ms clock, 64 bytes, 4 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/uuid @18073 ms, 0 ms clock, 5440 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/session @18073 ms, 0 ms clock, 128 bytes, 8 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver @18073 ms, 0 ms clock, 144 bytes, 9 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/dns @18073 ms, 0 ms clock, 192 bytes, 2 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/connstring @18073 ms, 0 ms clock, 5440 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/operation @18073 ms, 0 ms clock, 16 bytes, 1 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/awsv4 @18073 ms, 0 ms clock, 208 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/auth @18073 ms, 0 ms clock, 392 bytes, 8 allocs
init golang.org/x/crypto/ocsp @18073 ms, 0 ms clock, 624 bytes, 6 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/ocsp @18073 ms, 0 ms clock, 64 bytes, 3 allocs
init go.mongodb.org/mongo-driver/x/mongo/driver/topology @18073 ms, 0 ms clock, 26528 bytes, 176 allocs
init go.mongodb.org/mongo-driver/x/bsonx @18074 ms, 0 ms clock, 30696 bytes, 182 allocs
init go.mongodb.org/mongo-driver/mongo @18074 ms, 0 ms clock, 568 bytes, 20 allocs
init github.com/alecthomas/template/parse @18074 ms, 0 ms clock, 464 bytes, 2 allocs
init github.com/alecthomas/template @18074 ms, 0 ms clock, 4976 bytes, 12 allocs
init gopkg.in/alecthomas/kingpin%2ev2 @18074 ms, 0 ms clock, 7240 bytes, 96 allocs
init github.com/percona/exporter_shared @18074 ms, 116 ms clock, 6896 bytes, 74 allocs
init gopkg.in/mgo.v2/internal/json @18191 ms, 0 ms clock, 96 bytes, 6 allocs
init gopkg.in/mgo.v2/bson @18191 ms, 0 ms clock, 5520 bytes, 47 allocs
init github.com/go-ole/go-ole @18191 ms, 0 ms clock, 4304 bytes, 103 allocs
init github.com/StackExchange/wmi @18191 ms, 0 ms clock, 136 bytes, 4 allocs
init github.com/shirou/gopsutil/internal/common @18191 ms, 6.9 ms clock, 896 bytes, 20 allocs
init github.com/shirou/gopsutil/cpu @18198 ms, 0 ms clock, 107088 bytes, 20 allocs
init github.com/shirou/gopsutil/mem @18198 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/shirou/gopsutil/net @18198 ms, 0 ms clock, 2176 bytes, 19 allocs
init github.com/shirou/gopsutil/process @18198 ms, 0.74 ms clock, 1352 bytes, 35 allocs
init github.com/percona/percona-toolkit/src/go/mongolib/util @18198 ms, 0 ms clock, 688 bytes, 10 allocs
init github.com/percona/mongodb_exporter/exporter @18198 ms, 0 ms clock, 4888 bytes, 57 allocs
init github.com/grafana/agent/pkg/integrations/mongodb_exporter @18198 ms, 0 ms clock, 2680 bytes, 11 allocs
init database/sql @18198 ms, 0 ms clock, 160 bytes, 8 allocs
init github.com/go-sql-driver/mysql @18198 ms, 0.50 ms clock, 6584 bytes, 30 allocs
init github.com/satori/go%2euuid @18199 ms, 0 ms clock, 240 bytes, 5 allocs
init github.com/prometheus/mysqld_exporter/collector @18199 ms, 8.0 ms clock, 116080 bytes, 1889 allocs
init github.com/grafana/agent/pkg/integrations/mysqld_exporter @18207 ms, 0 ms clock, 664 bytes, 4 allocs
init github.com/prometheus/procfs @18207 ms, 1.1 ms clock, 75928 bytes, 680 allocs
init golang.org/x/net/internal/socket @18208 ms, 0 ms clock, 112 bytes, 3 allocs
init golang.org/x/net/ipv4 @18208 ms, 0 ms clock, 1040 bytes, 20 allocs
init github.com/beevik/ntp @18208 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/hashicorp/go-envparse @18208 ms, 0 ms clock, 360 bytes, 16 allocs
init github.com/soundcloud/go-runit/runit @18208 ms, 0 ms clock, 272 bytes, 3 allocs
init github.com/mattn/go-xmlrpc @18208 ms, 0 ms clock, 208 bytes, 2 allocs
init github.com/prometheus/node_exporter/collector @18208 ms, 0 ms clock, 15704 bytes, 222 allocs
init github.com/grafana/agent/pkg/integrations/node_exporter @18208 ms, 0 ms clock, 4440 bytes, 8 allocs
init github.com/lib/pq/oid @18209 ms, 0 ms clock, 6216 bytes, 3 allocs
init github.com/lib/pq/scram @18209 ms, 0 ms clock, 128 bytes, 2 allocs
init github.com/lib/pq @18209 ms, 0 ms clock, 28688 bytes, 150 allocs
init github.com/prometheus-community/postgres_exporter/exporter @18209 ms, 0 ms clock, 25856 bytes, 286 allocs
init github.com/grafana/agent/pkg/integrations/postgres_exporter @18209 ms, 0 ms clock, 2056 bytes, 7 allocs
init github.com/grafana/agent/pkg/integrations/process_exporter @18209 ms, 0 ms clock, 280 bytes, 4 allocs
init github.com/gomodule/redigo/redis @18209 ms, 0 ms clock, 4040 bytes, 41 allocs
init github.com/oliver006/redis_exporter/exporter @18209 ms, 0 ms clock, 1792 bytes, 26 allocs
init github.com/grafana/agent/pkg/integrations/redis_exporter @18216 ms, 0 ms clock, 4920 bytes, 8 allocs
init github.com/gosnmp/gosnmp @18216 ms, 0 ms clock, 336 bytes, 19 allocs
init github.com/prometheus/snmp_exporter/collector @18216 ms, 0 ms clock, 3376 bytes, 46 allocs
init github.com/grafana/agent/pkg/integrations/snmp_exporter @18216 ms, 0 ms clock, 608 bytes, 3 allocs
init github.com/prometheus/statsd_exporter/pkg/relay @18216 ms, 0.42 ms clock, 1392 bytes, 39 allocs
init github.com/grafana/agent/pkg/integrations/statsd_exporter @18217 ms, 0 ms clock, 472 bytes, 4 allocs
init github.com/prometheus-community/windows_exporter/log @18217 ms, 0 ms clock, 416 bytes, 5 allocs
init github.com/leoluk/perflib_exporter/perflib @18217 ms, 4456 ms clock, 37283616 bytes, 50124 allocs
init github.com/Microsoft/hcsshim/internal/interop @22673 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/Microsoft/hcsshim/internal/timeout @22673 ms, 0 ms clock, 3152 bytes, 24 allocs
init github.com/Microsoft/hcsshim/internal/vmcompute @22673 ms, 0 ms clock, 1296 bytes, 27 allocs
init github.com/containerd/cgroups/stats/v1 @22673 ms, 0 ms clock, 544 bytes, 10 allocs
init github.com/Microsoft/hcsshim/internal/hcs/schema2 @22673 ms, 0 ms clock, 224 bytes, 2 allocs
init github.com/Microsoft/go-winio/vhd @22673 ms, 0 ms clock, 288 bytes, 6 allocs
init github.com/Microsoft/go-winio/pkg/security @22673 ms, 0 ms clock, 192 bytes, 4 allocs
init github.com/Microsoft/hcsshim/computestorage @22673 ms, 0 ms clock, 528 bytes, 11 allocs
init github.com/Microsoft/hcsshim/internal/hcs @22680 ms, 0 ms clock, 480 bytes, 13 allocs
init github.com/Microsoft/hcsshim/internal/hns @22680 ms, 0 ms clock, 96 bytes, 2 allocs
init github.com/Microsoft/hcsshim/internal/winapi @22681 ms, 0 ms clock, 1584 bytes, 33 allocs
init github.com/Microsoft/hcsshim/internal/wclayer @22681 ms, 0 ms clock, 1376 bytes, 27 allocs
init github.com/Microsoft/hcsshim @22681 ms, 0 ms clock, 592 bytes, 6 allocs
init github.com/leoluk/perflib_exporter/collector @22681 ms, 0 ms clock, 1920 bytes, 14 allocs
init github.com/dimchansky/utfbom @22681 ms, 0 ms clock, 16 bytes, 1 allocs
init github.com/prometheus-community/windows_exporter/collector @22681 ms, 36264 ms clock, 1625408 bytes, 24096 allocs
init github.com/grafana/agent/pkg/integrations/windows_exporter @58946 ms, 0 ms clock, 15280 bytes, 134 allocs
init github.com/grafana/agent/pkg/integrations/v2/agent @58947 ms, 0 ms clock, 640 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/v2/apache_http @58947 ms, 0 ms clock, 448 bytes, 2 allocs
init github.com/go-sourcemap/sourcemap/internal/base64vlq @58947 ms, 0 ms clock, 0 bytes, 0 allocs
init github.com/grafana/agent/pkg/integrations/v2/app_agent_receiver @58947 ms, 0 ms clock, 400 bytes, 2 allocs
init github.com/grafana/agent/pkg/integrations/v2/eventhandler @58947 ms, 0 ms clock, 112 bytes, 1 allocs
init github.com/grafana/agent/pkg/integrations/v2/snmp_exporter @58947 ms, 0 ms clock, 336 bytes, 2 allocs
init main @58947 ms, 40 ms clock, 1848 bytes, 33 allocs

@mattdurham
Copy link
Collaborator

Thanks for the PR! Will take a look at this today.

@github-actions
Copy link
Contributor

This issue has been automatically marked as stale because it has not had any activity in the past 30 days.
The next time this stale check runs, the stale label will be removed if there is new activity. The issue will be closed in 7 days if there is no new activity.
Thank you for your contributions!

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Oct 1, 2022
@rfratto rfratto reopened this Oct 1, 2022
@rfratto
Copy link
Member

rfratto commented Oct 1, 2022

Reopening since there's a PR to fix this.

@HollisTech
Copy link

This is really annoying. On small windows vms the failure is pretty consistent. Anyway, as the fix is still not released, one can set the service to restart itself after failure, and delay that restart by arbitrary amounts of time, and that will eventually work.

@mateuszdrab
Copy link

I'm also affected by this, the service takes long to start while processing the WAL journal and it eventually starts after a few attempts. Unfortunately, even with automatic restart with unlimited retries - I still find the service stopped sometimes.
Additionally, at random, I will sometimes be unable to control the service any more and have the error below, even tough the agent is running:
image

@rfratto rfratto added the bug Something isn't working label Apr 9, 2024
@rfratto
Copy link
Member

rfratto commented Apr 11, 2024

Hi there 👋

On April 9, 2024, Grafana Labs announced Grafana Alloy, the spirital successor to Grafana Agent and the final form of Grafana Agent flow mode. As a result, Grafana Agent has been deprecated and will only be receiving bug and security fixes until its end-of-life around November 1, 2025.

To make things easier for maintainers, we're in the process of migrating all issues tagged variant/flow to the Grafana Alloy repository to have a single home for tracking issues. This issue is likely something we'll want to address in both Grafana Alloy and Grafana Agent, so just because it's being moved doesn't mean we won't address the issue in Grafana Agent :)

@rfratto rfratto transferred this issue from grafana/agent Apr 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
No open projects
Development

No branches or pull requests

5 participants