text
stringlengths
55
456k
metadata
dict
# Languages supported by Perforator Perforator supports different kinds of programming languages and language runtimes. This page describes the current status of language support. There are different tiers of support for different languages and runtimes: - Tier 0: C++. This is our primary focus. Perforator has some a...
{ "source": "yandex/perforator", "title": "docs/en/reference/language-support/overview.md", "url": "https://github.com/yandex/perforator/blob/main/docs/en/reference/language-support/overview.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
JSON writer with no external dependencies, producing output where HTML special characters are always escaped. Use it like this: #include <library/cpp/json/writer/json.h> ... NJsonWriter::TBuf json; json.BeginList() .WriteString("<script>") .EndList(); Cout << json.Str(); // output...
{ "source": "yandex/perforator", "title": "library/cpp/json/writer/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/json/writer/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for large da...
Эта библиотека содержит две раплизации InitContext для TLogBackendCreator. TLogBackendCreatorInitContextYConf работает с YandexConfig (library/cpp/yconf). TLogBackendCreatorInitContextConfig работает с NConfig::TConfig (library/cpp/config).
{ "source": "yandex/perforator", "title": "library/cpp/logger/init_context/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/logger/init_context/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool desig...
----------- YourBenchmarkName --------------- samples: 403 iterations: 100576 iterations hr: 101K run time: 5.016924443 per iteration: 119265.0829 (119K) cycles samples – сколько раз была вызвана функция с бенчмарком iterations – сколько всего итераций было сделано. при каждом вызове функции бенч...
{ "source": "yandex/perforator", "title": "library/cpp/testing/benchmark/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/testing/benchmark/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed ...
# Gtest support in Arcadia Gtest wrapper that reports results exactly how Arcadia CI wants it. How to use: - use `GTEST` in your `ya.make`; - include `gtest.h` from this library. Don't include `<gtest/gtest.h>` and `<gmock/gmock.h>` directly because then you'll not get our extensions, including pretty printers for u...
{ "source": "yandex/perforator", "title": "library/cpp/testing/gtest/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/testing/gtest/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for larg...
# Extensions for Gtest and Gmock Extensions that enable better support of util types in gtest and gmock: pretty printers, matchers, some convenience macros. If you're using `GTEST`, include `library/cpp/testing/gtest/gtest.h` and it will automatically enable these extensions. This is the preferred way to include gtes...
{ "source": "yandex/perforator", "title": "library/cpp/testing/gtest_extensions/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/testing/gtest_extensions/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# Glue for `GTEST` macro Provides `main` function. This library is automatically linked into any test binary that uses `GTEST`. This way, you don't have to implement `main` yourself every time you write a test target.
{ "source": "yandex/perforator", "title": "library/cpp/testing/gtest_main/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/testing/gtest_main/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
# Hook for google benchmark and gtest Y_TEST_HOOK_BEFORE_INIT - вызывается перед инициализацией соответствующего фреймворка Y_TEST_HOOK_BEFORE_RUN - вызывается перед запуском тестов Y_TEST_HOOK_AFTER_RUN - вызывается всегда после завершения выполнения тестов, если этап инициализации был успешн...
{ "source": "yandex/perforator", "title": "library/cpp/testing/hook/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/testing/hook/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for large ...
See: https://docs.yandex-team.ru/arcadia-cpp/cookbook/concurrency
{ "source": "yandex/perforator", "title": "library/cpp/threading/future/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/threading/future/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed fo...
# [library/cpp/yt/string] ## Structure This library provides ways of printing data structures as well as some helpers methods to work with strings. ### `TStringBuilder` [library/cpp/yt/string/string_builder.h] String formatter with dynamic buffer which supports strings, chars and arbitrary Format expressions (see b...
{ "source": "yandex/perforator", "title": "library/cpp/yt/string/readme.md", "url": "https://github.com/yandex/perforator/blob/main/library/cpp/yt/string/readme.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for large data c...
# xerrors Drop-in replacement для `errors` и `golang.org/x/xerrors`, а так же функционально для `github.com/pkg/errors`. ### Локальный запуск тестов со стандартным тулчейном Так как тесты используют фреймы стэка, необходимо тримить абсолютные пути записываемые в бинарник теста. Для этого необходимо использовать аргум...
{ "source": "yandex/perforator", "title": "library/go/core/xerrors/README.md", "url": "https://github.com/yandex/perforator/blob/main/library/go/core/xerrors/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for large da...
Official Helm chart. See https://perforator.tech/docs/en/guides/helm-chart for details.
{ "source": "yandex/perforator", "title": "perforator/deploy/kubernetes/helm/README.md", "url": "https://github.com/yandex/perforator/blob/main/perforator/deploy/kubernetes/helm/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
<!-- IMPORTANT: read this when updating release notes. Here is the format used: ``` # Version/Unreleased Fixes: + Description (PR or commit[1]) Enhancements: + Description (PR or commit) Internal changes: + Description (PR or commit) ``` 1: If you are sending patch to GitHub, specify PR. Otherwise (if you are ...
{ "source": "yandex/perforator", "title": "perforator/deploy/kubernetes/helm/releases.md", "url": "https://github.com/yandex/perforator/blob/main/perforator/deploy/kubernetes/helm/releases.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# Changelog ## [0.3.0](https://github.com/googleapis/google-cloud-go/compare/auth/v0.2.2...auth/v0.3.0) (2024-04-23) ### Features * **auth/httptransport:** Add ability to customize transport ([#10023](https://github.com/googleapis/google-cloud-go/issues/10023)) ([72c7f6b](https://github.com/googleapis/google-cloud-...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/auth/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/auth/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# auth This module is currently EXPERIMENTAL and under active development. It is not yet intended to be used.
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/auth/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/auth/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool desig...
# Changes ## [1.1.7](https://github.com/googleapis/google-cloud-go/compare/iam/v1.1.6...iam/v1.1.7) (2024-03-14) ### Bug Fixes * **iam:** Update protobuf dep to v1.33.0 ([30b038d](https://github.com/googleapis/google-cloud-go/commit/30b038d8cac0b8cd5dd4761c87f3f298760dd33a)) ## [1.1.6](https://github.com/googleap...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/iam/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/iam/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool desig...
# IAM API [![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/iam.svg)](https://pkg.go.dev/cloud.google.com/go/iam) Go Client Library for IAM API. ## Install ```bash go get cloud.google.com/go/iam ``` ## Stability The stability of this module is indicated by SemVer. However, a `v1+` module may have bre...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/iam/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/iam/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
# Internal This directory contains internal code for cloud.google.com/go packages. ## .repo-metadata-full.json `.repo-metadata-full.json` contains metadata about the packages in this repo. It is generated by `internal/gapicgen/generator`. It's processed by external tools to build lists of all of the packages. Don't...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/internal/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/internal/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# Changes ## [0.5.6](https://github.com/googleapis/google-cloud-go/compare/longrunning/v0.5.5...longrunning/v0.5.6) (2024-03-14) ### Bug Fixes * **longrunning:** Update protobuf dep to v1.33.0 ([30b038d](https://github.com/googleapis/google-cloud-go/commit/30b038d8cac0b8cd5dd4761c87f3f298760dd33a)) ## [0.5.5](http...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/longrunning/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/longrunning/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous prof...
# longrunning [![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/longrunning.svg)](https://pkg.go.dev/cloud.google.com/go/longrunning) A helper library for working with long running operations. ## Install ```bash go get cloud.google.com/go/longrunning ``` ## Go Version Support See the [Go Versions Supp...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/longrunning/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/longrunning/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# Changes ## [1.60.0](https://github.com/googleapis/google-cloud-go/compare/spanner/v1.59.0...spanner/v1.60.0) (2024-03-19) ### Features * **spanner:** Allow attempt direct path xds via env var ([e4b663c](https://github.com/googleapis/google-cloud-go/commit/e4b663cdcb6e010c5a8ac791e5624407aaa191b3)) ## [1.59.0](ht...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/spanner/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/spanner/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
## Cloud Spanner [![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/spanner.svg)](https://pkg.go.dev/cloud.google.com/go/spanner) - [About Cloud Spanner](https://cloud.google.com/spanner/) - [API documentation](https://cloud.google.com/spanner/docs) - [Go client documentation](https://pkg.go.dev/cloud.googl...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/spanner/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/spanner/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
# Changes ## [1.40.0](https://github.com/googleapis/google-cloud-go/compare/storage/v1.39.1...storage/v1.40.0) (2024-03-29) ### Features * **storage:** Implement io.WriterTo in Reader ([#9659](https://github.com/googleapis/google-cloud-go/issues/9659)) ([8264a96](https://github.com/googleapis/google-cloud-go/commi...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/storage/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/storage/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
## Cloud Storage [![Go Reference](https://pkg.go.dev/badge/cloud.google.com/go/storage.svg)](https://pkg.go.dev/cloud.google.com/go/storage) - [About Cloud Storage](https://cloud.google.com/storage/) - [API documentation](https://cloud.google.com/storage/docs) - [Go client documentation](https://cloud.google.com/go/do...
{ "source": "yandex/perforator", "title": "vendor/cloud.google.com/go/storage/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/cloud.google.com/go/storage/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
# Contributing notes ## Local setup The easiest way to run tests is to use Docker Compose: ``` docker-compose up make ```
{ "source": "yandex/perforator", "title": "vendor/github.com/ClickHouse/clickhouse-go/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/ClickHouse/clickhouse-go/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wi...
# ClickHouse [![Build Status](https://travis-ci.org/ClickHouse/clickhouse-go.svg?branch=master)](https://travis-ci.org/ClickHouse/clickhouse-go) [![Go Report Card](https://goreportcard.com/badge/github.com/ClickHouse/clickhouse-go)](https://goreportcard.com/report/github.com/ClickHouse/clickhouse-go) [![codecov](https:...
{ "source": "yandex/perforator", "title": "vendor/github.com/ClickHouse/clickhouse-go/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/ClickHouse/clickhouse-go/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuou...
[![Build Status](https://travis-ci.org/DATA-DOG/go-sqlmock.svg)](https://travis-ci.org/DATA-DOG/go-sqlmock) [![GoDoc](https://godoc.org/github.com/DATA-DOG/go-sqlmock?status.svg)](https://godoc.org/github.com/DATA-DOG/go-sqlmock) [![Go Report Card](https://goreportcard.com/badge/github.com/DATA-DOG/go-sqlmock)](https:/...
{ "source": "yandex/perforator", "title": "vendor/github.com/DATA-DOG/go-sqlmock/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/DATA-DOG/go-sqlmock/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profilin...
# xxhash [![GoDoc](https://godoc.org/github.com/OneOfOne/xxhash?status.svg)](https://godoc.org/github.com/OneOfOne/xxhash) [![Build Status](https://travis-ci.org/OneOfOne/xxhash.svg?branch=master)](https://travis-ci.org/OneOfOne/xxhash) [![Coverage](https://gocover.io/_badge/github.com/OneOfOne/xxhash)](https://gocover...
{ "source": "yandex/perforator", "title": "vendor/github.com/OneOfOne/xxhash/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/OneOfOne/xxhash/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
This package is a brotli compressor and decompressor implemented in Go. It was translated from the reference implementation (https://github.com/google/brotli) with the `c2go` tool at https://github.com/andybalholm/c2go. I have been working on new compression algorithms (not translated from C) in the matchfinder packag...
{ "source": "yandex/perforator", "title": "vendor/github.com/andybalholm/brotli/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/andybalholm/brotli/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender...
{ "source": "yandex/perforator", "title": "vendor/github.com/cilium/ebpf/CODE_OF_CONDUCT.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/cilium/ebpf/CODE_OF_CONDUCT.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# Contributing to ebpf-go Want to contribute to ebpf-go? There are a few things you need to know. We wrote a [contribution guide](https://ebpf-go.dev/contributing/) to help you get started.
{ "source": "yandex/perforator", "title": "vendor/github.com/cilium/ebpf/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/cilium/ebpf/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# eBPF [![PkgGoDev](https://pkg.go.dev/badge/github.com/cilium/ebpf)](https://pkg.go.dev/github.com/cilium/ebpf) ![HoneyGopher](docs/ebpf/ebpf-go.png) ebpf-go is a pure Go library that provides utilities for loading, compiling, and debugging eBPF programs. It has minimal external dependencies and is intended to be u...
{ "source": "yandex/perforator", "title": "vendor/github.com/cilium/ebpf/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/cilium/ebpf/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed ...
# log A Go package providing a common logging interface across containerd repositories and a way for clients to use and configure logging in containerd packages. This package is not intended to be used as a standalone logging package outside of the containerd ecosystem and is intended as an interface wrapper around a...
{ "source": "yandex/perforator", "title": "vendor/github.com/containerd/log/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/containerd/log/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# platforms A Go package for formatting, normalizing and matching container platforms. This package is based on the Open Containers Image Spec definition of a [platform](https://github.com/opencontainers/image-spec/blob/main/specs-go/v1/descriptor.go#L52). ## Platform Specifier While the OCI platform specifications...
{ "source": "yandex/perforator", "title": "vendor/github.com/containerd/platforms/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/containerd/platforms/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
### github.com/cpuguy83/dockercfg Go library to load docker CLI configs, auths, etc. with minimal deps. So far the only deps are on the stdlib. ### Usage See the [godoc](https://godoc.org/github.com/cpuguy83/dockercfg) for API details. I'm currently using this in [zapp](https://github.com/cpuguy83/zapp/blob/d25c43d4c...
{ "source": "yandex/perforator", "title": "vendor/github.com/cpuguy83/dockercfg/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/cpuguy83/dockercfg/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# Contributing to the reference library ## Community help If you need help, please ask in the [#distribution](https://cloud-native.slack.com/archives/C01GVR8SY4R) channel on CNCF community slack. [Click here for an invite to the CNCF community slack](https://slack.cncf.io/) ## Reporting security issues The maintain...
{ "source": "yandex/perforator", "title": "vendor/github.com/distribution/reference/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/distribution/reference/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide c...
# Distribution reference Go library to handle references to container images. <img src="/distribution-logo.svg" width="200px" /> [![Build Status](https://github.com/distribution/reference/actions/workflows/test.yml/badge.svg?branch=main&event=push)](https://github.com/distribution/reference/actions?query=workflow%3A...
{ "source": "yandex/perforator", "title": "vendor/github.com/distribution/reference/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/distribution/reference/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous pr...
# Contributing to go-units Want to hack on go-units? Awesome! Here are instructions to get you started. go-units is a part of the [Docker](https://www.docker.com) project, and follows the same rules and principles. If you're already familiar with the way Docker does things, you'll feel right at home. Otherwise, go r...
{ "source": "yandex/perforator", "title": "vendor/github.com/docker/go-units/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/docker/go-units/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous prof...
[![GoDoc](https://godoc.org/github.com/docker/go-units?status.svg)](https://godoc.org/github.com/docker/go-units) # Introduction go-units is a library to transform human friendly measurements into machine friendly values. ## Usage See the [docs in godoc](https://godoc.org/github.com/docker/go-units) for examples an...
{ "source": "yandex/perforator", "title": "vendor/github.com/docker/go-units/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/docker/go-units/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
## v1.11.0 - added WithNormalField handler ## v1.10.0 - added NoopVisitor and updated README with an example ## v1.9.2 - fix for scanning content of single-quote option values (#129) ## v1.9.1 - fix for issue #127 reserved keyword as suffix in type (#128) ## v1.9.0 - Fix & guard Parent value for options (#124)...
{ "source": "yandex/perforator", "title": "vendor/github.com/emicklei/proto/CHANGES.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/emicklei/proto/CHANGES.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
# proto [![Build Status](https://api.travis-ci.com/emicklei/proto.svg?branch=master)](https://travis-ci.com/github/emicklei/proto) [![Go Report Card](https://goreportcard.com/badge/github.com/emicklei/proto)](https://goreportcard.com/report/github.com/emicklei/proto) [![GoDoc](https://pkg.go.dev/badge/github.com/emick...
{ "source": "yandex/perforator", "title": "vendor/github.com/emicklei/proto/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/emicklei/proto/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# httpsnoop Package httpsnoop provides an easy way to capture http related metrics (i.e. response time, bytes written, and http status code) from your application's http.Handlers. Doing this requires non-trivial wrapping of the http.ResponseWriter interface, which is also exposed for users interested in a more low-le...
{ "source": "yandex/perforator", "title": "vendor/github.com/felixge/httpsnoop/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/felixge/httpsnoop/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# city [![](https://img.shields.io/badge/go-pkg-00ADD8)](https://pkg.go.dev/github.com/go-faster/city#section-documentation) [![](https://img.shields.io/codecov/c/github/go-faster/city?label=cover)](https://codecov.io/gh/go-faster/city) [![stable](https://img.shields.io/badge/-stable-brightgreen)](https://go-faster.org...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-faster/city/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-faster/city/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# errors [![Go Reference](https://img.shields.io/badge/go-pkg-00ADD8)](https://pkg.go.dev/github.com/go-faster/errors#section-documentation) [![codecov](https://img.shields.io/codecov/c/github/go-faster/errors?label=cover)](https://codecov.io/gh/go-faster/errors) Fork of [xerrors](https://pkg.go.dev/golang.org/x/xerro...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-faster/errors/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-faster/errors/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
# CHANGELOG ## v1.0.0-rc1 This is the first logged release. Major changes (including breaking changes) have occurred since earlier tags.
{ "source": "yandex/perforator", "title": "vendor/github.com/go-logr/logr/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-logr/logr/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
# Contributing Logr is open to pull-requests, provided they fit within the intended scope of the project. Specifically, this library aims to be VERY small and minimalist, with no external dependencies. ## Compatibility This project intends to follow [semantic versioning](http://semver.org) and is very strict about ...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-logr/logr/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-logr/logr/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# A minimal logging API for Go [![Go Reference](https://pkg.go.dev/badge/github.com/go-logr/logr.svg)](https://pkg.go.dev/github.com/go-logr/logr) [![Go Report Card](https://goreportcard.com/badge/github.com/go-logr/logr)](https://goreportcard.com/report/github.com/go-logr/logr) [![OpenSSF Scorecard](https://api.secur...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-logr/logr/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-logr/logr/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
# Minimal Go logging using logr and Go's standard library [![Go Reference](https://pkg.go.dev/badge/github.com/go-logr/stdr.svg)](https://pkg.go.dev/github.com/go-logr/stdr) This package implements the [logr interface](https://github.com/go-logr/logr) in terms of Go's standard log package(https://pkg.go.dev/log).
{ "source": "yandex/perforator", "title": "vendor/github.com/go-logr/stdr/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-logr/stdr/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
# qt: quicker Go tests `go get github.com/go-quicktest/qt` Package qt provides a collection of Go helpers for writing tests. It uses generics, so requires Go 1.18 at least. For a complete API reference, see the [package documentation](https://pkg.go.dev/github.com/go-quicktest/qt). Quicktest helpers can be easily i...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-quicktest/qt/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-quicktest/qt/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
## Version 1.7.1 (2023-04-25) Changes: - bump actions/checkout@v3 and actions/setup-go@v3 (#1375) - Add go1.20 and mariadb10.11 to the testing matrix (#1403) - Increase default maxAllowedPacket size. (#1411) Bugfixes: - Use SET syntax as specified in the MySQL documentation (#1402) ## Version 1.7 (2022-11...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-sql-driver/mysql/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-sql-driver/mysql/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous pr...
# Go-MySQL-Driver A MySQL-Driver for Go's [database/sql](https://golang.org/pkg/database/sql/) package ![Go-MySQL-Driver logo](https://raw.github.com/wiki/go-sql-driver/mysql/gomysql_m.png "Golang Gopher holding the MySQL Dolphin") --------------------------------------- * [Features](#features) * [Requirements](...
{ "source": "yandex/perforator", "title": "vendor/github.com/go-sql-driver/mysql/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/go-sql-driver/mysql/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profilin...
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### Added ### Changed ### Fixed ## [1.6.0] - 202...
{ "source": "yandex/perforator", "title": "vendor/github.com/gocql/gocql/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/gocql/gocql/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# Contributing to gocql **TL;DR** - this manifesto sets out the bare minimum requirements for submitting a patch to gocql. This guide outlines the process of landing patches in gocql and the general approach to maintaining the code base. ## Background The goal of the gocql project is to provide a stable and robust ...
{ "source": "yandex/perforator", "title": "vendor/github.com/gocql/gocql/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/gocql/gocql/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
gocql ===== [![Join the chat at https://gitter.im/gocql/gocql](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gocql/gocql?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ![go build](https://github.com/gocql/gocql/actions/workflows/main.yml/badge.svg) [![GoDoc](https://godoc.org...
{ "source": "yandex/perforator", "title": "vendor/github.com/gocql/gocql/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/gocql/gocql/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed ...
# UUID [![License](https://img.shields.io/github/license/gofrs/uuid.svg)](https://github.com/gofrs/uuid/blob/master/LICENSE) [![Build Status](https://travis-ci.org/gofrs/uuid.svg?branch=master)](https://travis-ci.org/gofrs/uuid) [![GoDoc](http://godoc.org/github.com/gofrs/uuid?status.svg)](http://godoc.org/github.com/...
{ "source": "yandex/perforator", "title": "vendor/github.com/gofrs/uuid/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/gofrs/uuid/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed fo...
# glog [![PkgGoDev](https://pkg.go.dev/badge/github.com/golang/glog)](https://pkg.go.dev/github.com/golang/glog) Leveled execution logs for Go. This is an efficient pure Go implementation of leveled logs in the manner of the open source C++ package [_glog_](https://github.com/google/glog). By binding methods to boo...
{ "source": "yandex/perforator", "title": "vendor/github.com/golang/glog/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/golang/glog/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed ...
# How to contribute # We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow. ## Contributor License Agreement ## Contributions to any Google project must be accompanied by a Contributor License Agreement. This is not a copyright **assignment**...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/gofuzz/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/gofuzz/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profilin...
gofuzz ====== gofuzz is a library for populating go objects with random values. [![GoDoc](https://godoc.org/github.com/google/gofuzz?status.svg)](https://godoc.org/github.com/google/gofuzz) [![Travis](https://travis-ci.org/google/gofuzz.svg?branch=master)](https://travis-ci.org/google/gofuzz) This is useful for test...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/gofuzz/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/gofuzz/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool desig...
# Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and express...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/s2a-go/CODE_OF_CONDUCT.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/s2a-go/CODE_OF_CONDUCT.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous pr...
# How to Contribute We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow. ## Contributor License Agreement Contributions to this project must be accompanied by a Contributor License Agreement (CLA). You (or your employer) retain the copyright to...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/s2a-go/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/s2a-go/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profilin...
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined b...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/s2a-go/LICENSE.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/s2a-go/LICENSE.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# Secure Session Agent Client Libraries The Secure Session Agent is a service that enables a workload to offload select operations from the mTLS handshake and protects a workload's private key material from exfiltration. Specifically, the workload asks the Secure Session Agent for the TLS configuration to use during t...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/s2a-go/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/s2a-go/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool desig...
# Changelog ## [1.6.0](https://github.com/google/uuid/compare/v1.5.0...v1.6.0) (2024-01-16) ### Features * add Max UUID constant ([#149](https://github.com/google/uuid/issues/149)) ([c58770e](https://github.com/google/uuid/commit/c58770eb495f55fe2ced6284f93c5158a62e53e3)) ### Bug Fixes * fix typo in version 7 uu...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/uuid/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/uuid/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool des...
# How to contribute We definitely welcome patches and contribution to this project! ### Tips Commits must be formatted according to the [Conventional Commits Specification](https://www.conventionalcommits.org). Always try to include a test case! If it is not possible or not necessary, please explain why in the pull...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/uuid/CONTRIBUTING.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/uuid/CONTRIBUTING.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# uuid The uuid package generates and inspects UUIDs based on [RFC 4122](https://datatracker.ietf.org/doc/html/rfc4122) and DCE 1.1: Authentication and Security Services. This package is based on the github.com/pborman/uuid package (previously named code.google.com/p/go-uuid). It differs from these earlier packages ...
{ "source": "yandex/perforator", "title": "vendor/github.com/google/uuid/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/google/uuid/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed ...
# Gorilla WebSocket [![GoDoc](https://godoc.org/github.com/gorilla/websocket?status.svg)](https://godoc.org/github.com/gorilla/websocket) [![CircleCI](https://circleci.com/gh/gorilla/websocket.svg?style=svg)](https://circleci.com/gh/gorilla/websocket) Gorilla WebSocket is a [Go](http://golang.org/) implementation of ...
{ "source": "yandex/perforator", "title": "vendor/github.com/gorilla/websocket/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/gorilla/websocket/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
go-hostpool =========== A Go package to intelligently and flexibly pool among multiple hosts from your Go application. Host selection can operate in round robin or epsilon greedy mode, and unresponsive hosts are avoided. Usage example: ```go hp := hostpool.NewEpsilonGreedy([]string{"a", "b"}, 0, &hostpool.LinearEpsil...
{ "source": "yandex/perforator", "title": "vendor/github.com/hailocab/go-hostpool/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/hailocab/go-hostpool/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# errwrap `errwrap` is a package for Go that formalizes the pattern of wrapping errors and checking if an error contains another error. There is a common pattern in Go of taking a returned `error` value and then wrapping it (such as with `fmt.Errorf`) before returning it. The problem with this pattern is that you com...
{ "source": "yandex/perforator", "title": "vendor/github.com/hashicorp/errwrap/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/hashicorp/errwrap/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling to...
# go-multierror [![CircleCI](https://img.shields.io/circleci/build/github/hashicorp/go-multierror/master)](https://circleci.com/gh/hashicorp/go-multierror) [![Go Reference](https://pkg.go.dev/badge/github.com/hashicorp/go-multierror.svg)](https://pkg.go.dev/github.com/hashicorp/go-multierror) ![GitHub go.mod Go versio...
{ "source": "yandex/perforator", "title": "vendor/github.com/hashicorp/go-multierror/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/hashicorp/go-multierror/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous ...
golang-lru ========== Please upgrade to github.com/hashicorp/golang-lru/v2 for all new code as v1 will not be updated anymore. The v2 version supports generics and is faster; old code can specify a specific tag, e.g. github.com/hashicorp/golang-lru/v1.0.2 for backwards compatibility.
{ "source": "yandex/perforator", "title": "vendor/github.com/hashicorp/golang-lru/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/hashicorp/golang-lru/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# github.com/ianlancetaylor/demangle A Go package that can be used to demangle C++ and Rust symbol names.
{ "source": "yandex/perforator", "title": "vendor/github.com/ianlancetaylor/demangle/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/ianlancetaylor/demangle/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous ...
# 1.14.0 (February 11, 2023) * Fix: each connection attempt to new node gets own timeout (Nathan Giardina) * Set SNI for SSL connections (Stas Kelvich) * Fix: CopyFrom I/O race (Tommy Reilly) * Minor dependency upgrades # 1.13.0 (August 6, 2022) * Add sslpassword support (Eric McCormack and yun.xu) * Add prefer-stan...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgconn/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgconn/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
[![](https://godoc.org/github.com/jackc/pgconn?status.svg)](https://godoc.org/github.com/jackc/pgconn) ![CI](https://github.com/jackc/pgconn/workflows/CI/badge.svg) --- This version is used with pgx `v4`. In pgx `v5` it is part of the https://github.com/jackc/pgx repository. --- # pgconn Package pgconn is a low-le...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgconn/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgconn/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
[![](https://godoc.org/github.com/jackc/pgerrcode?status.svg)](https://godoc.org/github.com/jackc/pgerrcode) # pgerrcode Package pgerrcode contains constants for PostgreSQL error codes. ## License MIT for this package's code and PostgreSQL License for the underlying data.
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgerrcode/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgerrcode/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
[![](https://godoc.org/github.com/jackc/pgio?status.svg)](https://godoc.org/github.com/jackc/pgio) [![Build Status](https://travis-ci.org/jackc/pgio.svg)](https://travis-ci.org/jackc/pgio) # pgio Package pgio is a low-level toolkit building messages in the PostgreSQL wire protocol. pgio provides functions for append...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgio/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgio/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed fo...
[![](https://godoc.org/github.com/jackc/pgpassfile?status.svg)](https://godoc.org/github.com/jackc/pgpassfile) [![Build Status](https://travis-ci.org/jackc/pgpassfile.svg)](https://travis-ci.org/jackc/pgpassfile) # pgpassfile Package pgpassfile is a parser PostgreSQL .pgpass files. Extracted and rewritten from origi...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgpassfile/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgpassfile/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
[![Go Reference](https://pkg.go.dev/badge/github.com/jackc/pgservicefile.svg)](https://pkg.go.dev/github.com/jackc/pgservicefile) [![Build Status](https://github.com/jackc/pgservicefile/actions/workflows/ci.yml/badge.svg)](https://github.com/jackc/pgservicefile/actions/workflows/ci.yml) # pgservicefile Package pgser...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgservicefile/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgservicefile/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profilin...
# 1.12.0 (August 6, 2022) * Add JSONArray (Jakob Ackermann) * Support Inet from fmt.Stringer and encoding.TextMarshaler (Ville Skyttä) * Support UUID from fmt.Stringer interface (Lasse Hyldahl Jensen) * Fix: shopspring-numeric extension does not panic on NaN * Numeric can be assigned to string * Fix: Do not send IPv4 ...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgtype/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgtype/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
[![](https://godoc.org/github.com/jackc/pgtype?status.svg)](https://godoc.org/github.com/jackc/pgtype) ![CI](https://github.com/jackc/pgtype/workflows/CI/badge.svg) # pgtype pgtype implements Go types for over 70 PostgreSQL types. pgtype is the type system underlying the https://github.com/jackc/pgx PostgreSQL driver...
{ "source": "yandex/perforator", "title": "vendor/github.com/jackc/pgtype/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jackc/pgtype/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
# httpmock [![Build Status](https://github.com/jarcoal/httpmock/workflows/Build/badge.svg?branch=v1)](https://github.com/jarcoal/httpmock/actions?query=workflow%3ABuild) [![Coverage Status](https://coveralls.io/repos/github/jarcoal/httpmock/badge.svg?branch=v1)](https://coveralls.io/github/jarcoal/httpmock?branch=v1) [...
{ "source": "yandex/perforator", "title": "vendor/github.com/jarcoal/httpmock/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jarcoal/httpmock/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
# go-jmespath - A JMESPath implementation in Go [![Build Status](https://img.shields.io/travis/jmespath/go-jmespath.svg)](https://travis-ci.org/jmespath/go-jmespath) go-jmespath is a GO implementation of JMESPath, which is a query language for JSON. It will take a JSON document and transform it into another JSON d...
{ "source": "yandex/perforator", "title": "vendor/github.com/jmespath/go-jmespath/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jmespath/go-jmespath/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# sqlx [![Build Status](https://travis-ci.org/jmoiron/sqlx.svg?branch=master)](https://travis-ci.org/jmoiron/sqlx) [![Coverage Status](https://coveralls.io/repos/github/jmoiron/sqlx/badge.svg?branch=master)](https://coveralls.io/github/jmoiron/sqlx?branch=master) [![Godoc](http://img.shields.io/badge/godoc-reference-b...
{ "source": "yandex/perforator", "title": "vendor/github.com/jmoiron/sqlx/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/jmoiron/sqlx/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...
[![Sourcegraph](https://sourcegraph.com/github.com/json-iterator/go/-/badge.svg)](https://sourcegraph.com/github.com/json-iterator/go?badge) [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/json-iterator/go) [![Build Status](https://travis-ci.org/json-ite...
{ "source": "yandex/perforator", "title": "vendor/github.com/json-iterator/go/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/json-iterator/go/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
# compress This package provides various compression algorithms. * [zstandard](https://github.com/klauspost/compress/tree/master/zstd#zstd) compression and decompression in pure Go. * [S2](https://github.com/klauspost/compress/tree/master/s2#s2-compression) is a high performance replacement for Snappy. * Optimi...
{ "source": "yandex/perforator", "title": "vendor/github.com/klauspost/compress/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/klauspost/compress/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
Copyright (c) 2011-2013, 'pq' Contributors Portions Copyright (C) 2011 Blake Mizerany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights t...
{ "source": "yandex/perforator", "title": "vendor/github.com/lib/pq/LICENSE.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/lib/pq/LICENSE.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for larg...
# pq - A pure Go postgres driver for Go's database/sql package [![GoDoc](https://godoc.org/github.com/lib/pq?status.svg)](https://pkg.go.dev/github.com/lib/pq?tab=doc) ## Install go get github.com/lib/pq ## Features * SSL * Handles bad connections for `database/sql` * Scan `time.Time` correctly (i.e. `timestamp[t...
{ "source": "yandex/perforator", "title": "vendor/github.com/lib/pq/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/lib/pq/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for large ...
## Changelog ### [1.8.7](https://github.com/magiconair/properties/tree/v1.8.7) - 08 Dec 2022 * [PR #65](https://github.com/magiconair/properties/pull/65): Speedup Merge Thanks to [@AdityaVallabh](https://github.com/AdityaVallabh) for the patch. * [PR #66](https://github.com/magiconair/properties/pull/66): use ...
{ "source": "yandex/perforator", "title": "vendor/github.com/magiconair/properties/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/magiconair/properties/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuou...
Copyright (c) 2013-2020, Frank Schroeder All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the fol...
{ "source": "yandex/perforator", "title": "vendor/github.com/magiconair/properties/LICENSE.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/magiconair/properties/LICENSE.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous pr...
[![](https://img.shields.io/github/tag/magiconair/properties.svg?style=flat-square&label=release)](https://github.com/magiconair/properties/releases) [![Travis CI Status](https://img.shields.io/travis/magiconair/properties.svg?branch=master&style=flat-square&label=travis)](https://travis-ci.org/magiconair/properties) [...
{ "source": "yandex/perforator", "title": "vendor/github.com/magiconair/properties/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/magiconair/properties/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous prof...
# go-isatty [![Godoc Reference](https://godoc.org/github.com/mattn/go-isatty?status.svg)](http://godoc.org/github.com/mattn/go-isatty) [![Codecov](https://codecov.io/gh/mattn/go-isatty/branch/master/graph/badge.svg)](https://codecov.io/gh/mattn/go-isatty) [![Coverage Status](https://coveralls.io/repos/github/mattn/go-...
{ "source": "yandex/perforator", "title": "vendor/github.com/mattn/go-isatty/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/mattn/go-isatty/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool d...
go-sqlite3 ========== [![Go Reference](https://pkg.go.dev/badge/github.com/mattn/go-sqlite3.svg)](https://pkg.go.dev/github.com/mattn/go-sqlite3) [![GitHub Actions](https://github.com/mattn/go-sqlite3/workflows/Go/badge.svg)](https://github.com/mattn/go-sqlite3/actions?query=workflow%3AGo) [![Financial Contributors on...
{ "source": "yandex/perforator", "title": "vendor/github.com/mattn/go-sqlite3/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/mattn/go-sqlite3/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool...
The MIT License (MIT) Copyright (c) 2014 Mitchell Hashimoto Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merg...
{ "source": "yandex/perforator", "title": "vendor/github.com/mitchellh/go-wordwrap/LICENSE.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/mitchellh/go-wordwrap/LICENSE.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous pr...
# go-wordwrap `go-wordwrap` (Golang package: `wordwrap`) is a package for Go that automatically wraps words into multiple lines. The primary use case for this is in formatting CLI output, but of course word wrapping is a generally useful thing to do. ## Installation and Usage Install using `go get github.com/mitchel...
{ "source": "yandex/perforator", "title": "vendor/github.com/mitchellh/go-wordwrap/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/mitchellh/go-wordwrap/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous prof...
debugcharts [![Build Status](https://travis-ci.org/mkevac/debugcharts.svg?branch=master)](https://travis-ci.org/mkevac/debugcharts) =========== Go memory debug charts. This package uses [Plotly](https://github.com/plotly/plotly.js) chart library. It is open source and free for use. Installation ------------ `go get ...
{ "source": "yandex/perforator", "title": "vendor/github.com/mkevac/debugcharts/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/mkevac/debugcharts/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# term - utilities for dealing with terminals ![Test](https://github.com/moby/term/workflows/Test/badge.svg) [![GoDoc](https://godoc.org/github.com/moby/term?status.svg)](https://godoc.org/github.com/moby/term) [![Go Report Card](https://goreportcard.com/badge/github.com/moby/term)](https://goreportcard.com/report/git...
{ "source": "yandex/perforator", "title": "vendor/github.com/moby/term/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/moby/term/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designed for ...
# concurrent [![Sourcegraph](https://sourcegraph.com/github.com/modern-go/concurrent/-/badge.svg)](https://sourcegraph.com/github.com/modern-go/concurrent?badge) [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/modern-go/concurrent) [![Build Status](https:...
{ "source": "yandex/perforator", "title": "vendor/github.com/modern-go/concurrent/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/modern-go/concurrent/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profil...
# reflect2 [![Sourcegraph](https://sourcegraph.com/github.com/modern-go/reflect2/-/badge.svg)](https://sourcegraph.com/github.com/modern-go/reflect2?badge) [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/modern-go/reflect2) [![Build Status](https://travis...
{ "source": "yandex/perforator", "title": "vendor/github.com/modern-go/reflect2/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/modern-go/reflect2/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
<a name="unreleased"></a> ## [Unreleased] <a name="v0.7.1"></a> ## [v0.7.1] - 2023-05-11 ### Add - Add describe functions ([#77](https://github.com/montanaflynn/stats/issues/77)) ### Update - Update .gitignore - Update README.md, LICENSE and DOCUMENTATION.md files - Update github action go workflow to run on push ...
{ "source": "yandex/perforator", "title": "vendor/github.com/montanaflynn/stats/CHANGELOG.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/montanaflynn/stats/CHANGELOG.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous prof...
# Stats - Golang Statistics Package [![][action-svg]][action-url] [![][codecov-svg]][codecov-url] [![][goreport-svg]][goreport-url] [![][godoc-svg]][godoc-url] [![][pkggodev-svg]][pkggodev-url] [![][license-svg]][license-url] A well tested and comprehensive Golang statistics library / package / module with no depende...
{ "source": "yandex/perforator", "title": "vendor/github.com/montanaflynn/stats/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/montanaflynn/stats/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling ...
# aec [![GoDoc](https://godoc.org/github.com/morikuni/aec?status.svg)](https://godoc.org/github.com/morikuni/aec) Go wrapper for ANSI escape code. ## Install ```bash go get github.com/morikuni/aec ``` ## Features ANSI escape codes depend on terminal environment. Some of these features may not work. Check supp...
{ "source": "yandex/perforator", "title": "vendor/github.com/morikuni/aec/README.md", "url": "https://github.com/yandex/perforator/blob/main/vendor/github.com/morikuni/aec/README.md", "date": "2025-01-29T14:20:43", "stars": 2926, "description": "Perforator is a cluster-wide continuous profiling tool designe...