prysm-pulse/tools/replay-http/BUILD.bazel
Raul Jordan c1280867ed
Add Tracing Request Sink to E2E (#9341)
* add tracing request sink

* fix struct order

* add in base64 encode and gzip

* add encoding and gzip

* tracing sink and replay tool

* post

* replay

* include latest sink and replay tool

* capture the gzout file instead

* rem time sleep

* handle err

* better handling

* add documentation

* changes

* working sync

* working

* added more logging
2021-08-11 15:38:00 +00:00

17 lines
467 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary")
load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/prysmaticlabs/prysm/tools/replay-http",
visibility = ["//visibility:private"],
deps = ["@com_github_sirupsen_logrus//:go_default_library"],
)
go_binary(
name = "replay-http",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)