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

Support collector tags, similar to agent tags #1854

Merged
merged 31 commits into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
46c32f3
Update CONTRIBUTING.md #1834 (#1843)
rneha725 Oct 9, 2019
2f31ecd
Collector tags. https://github.com/jaegertracing/jaeger/issues/1844
radekg Oct 9, 2019
5979d7e
Collector tags - tests
radekg Oct 11, 2019
4532ea3
Fix flaky ES span reader test due to date differences (#1847)
pavolloffay Oct 9, 2019
e37ebbe
Fix ordering of indexScanKeys after TraceID parsing, closes #1808 (#1…
burmanm Oct 9, 2019
2d69ce6
Propagate TraceNotFound error from grpc storage plugins #1741 (#1814)
chandresh-pancholi Oct 9, 2019
6664502
Automated fuzzing (#1787)
bookmoons Oct 10, 2019
ecb6b26
Use correct context on ES search methods (#1850)
rubenvp8510 Oct 10, 2019
a7f39d4
Add Fuzzit badge (#1852)
bookmoons Oct 10, 2019
4f17830
Separate community from CI badges (#1853)
yurishkuro Oct 10, 2019
e5d26fb
Use collector namespaced jaeger tags flag - take all-in-one into cons…
radekg Oct 14, 2019
8b3caf6
Enable logs from all-in-one integration test (#1857)
yurishkuro Oct 13, 2019
4d5dab4
Name the flag collector.tags, add agent --agent.tags, deprecate agent…
radekg Oct 14, 2019
aa39098
Fix all-in-one for jaeger.tags deprectaion expecting a logger
radekg Oct 14, 2019
2df44f9
Add an all-in-one setup context. Allows testing if running in all-in-…
radekg Oct 24, 2019
5c0a295
Add documentation how the current badger storage is modeled (#1859)
burmanm Oct 14, 2019
0893b2e
Update gopkg.in/yaml.v2 dependency to v2.2.4 (#1865)
objectiser Oct 15, 2019
1bcd99c
Add Truncate and ReadOnly options to Badger storage backend, closes #…
burmanm Oct 16, 2019
f182e99
Change the default value of the flag '--ingester.deadlockInterval' to…
jpkrohling Oct 19, 2019
02e431f
Use node 10 when building docker images (#1871)
pavolloffay Oct 22, 2019
4ba0823
Use Elasticsearch 6 in xdock (#1872)
pavolloffay Oct 23, 2019
a97f7b7
all-in-one setup context remove testing, add collector tags to span p…
radekg Oct 28, 2019
944bebe
format
radekg Oct 28, 2019
263df5d
Add rudimentary test for code coverage
radekg Oct 28, 2019
54c3a45
make fmt neeeds to be run after git add
radekg Oct 28, 2019
94c389e
fix failing test
radekg Oct 28, 2019
0fc7625
Merge branch 'master' into collector-tags
radekg Oct 28, 2019
45e3828
Merged with upstream/master
radekg Nov 17, 2019
2bf33de
Merge branch 'master' into collector-tags
radekg Nov 29, 2019
2cda551
Merge branch 'master' into collector-tags
jpkrohling Dec 2, 2019
5f07676
Merge branch 'master' into collector-tags
jpkrohling Dec 5, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go_import_path: github.com/jaegertracing/jaeger

dist: trusty

matrix:
jobs:
include:
- go: "1.12.1"
env:
Expand Down Expand Up @@ -36,6 +36,15 @@ matrix:
- go: "1.12.1"
env:
- HOTROD=true
- stage: Fuzz regression
dist: bionic
go: 1.12.x
script: ./scripts/travis/fuzzit.sh local-regression
- stage: Fuzz
if: branch = master AND type IN (push)
dist: bionic
go: 1.12.x
script: ./scripts/travis/fuzzit.sh fuzzing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes don't belong to this PR. Please sync with master


services:
- docker
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Changes by Version

##### Breaking Changes

* The default value for the Ingester's flag `ingester.deadlockInterval` has been changed to `0`. With the new default, the ingester won't `panic` if there are no messages for the last minute. To restore the previous behavior, set the flag's value to `1m`.

##### New Features

##### Bug fixes, Minor Improvements
Expand Down
5 changes: 4 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ We gratefully welcome improvements to documentation as well as to code.

## Getting Started

### Pre-requisites
* Install [Go](https://golang.org/doc/install) and setup GOPATH and add $GOPATH/bin in PATH

This library uses [dep](https://golang.github.io/dep) to manage dependencies.

To get started, make sure you clone the Git repository into the correct location `github.com/jaegertracing/jaeger` relative to `$GOPATH`:
To get started, make sure you clone the Git repository into the correct location `$GOPATH/github.com/jaegertracing/jaeger`:

```
mkdir -p $GOPATH/src/github.com/jaegertracing
Expand Down
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ required = [
name = "google.golang.org/grpc"
version = "^1.20.1"

[[constraint]]
name = "gopkg.in/yaml.v2"
version = "^2.2.4"

[[constraint]]
name = "github.com/olivere/elastic"
version = "^6.2.22"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ clean:
test: go-gen
bash -c "set -e; set -o pipefail; $(GOTEST) ./... | $(COLORIZE)"

.PHONY: integration-test
integration-test: go-gen
.PHONY: all-in-one-integration-test
all-in-one-integration-test: go-gen
$(GOTEST) -tags=integration ./cmd/all-in-one/...

.PHONY: storage-integration-test
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<img align="right" width="290" height="290" src="https://jaeger.readthedocs.io/en/latest/images/jaeger-vector.svg">

[![Build Status][ci-img]][ci] [![Coverage Status][cov-img]][cov] [![Gitter chat][gitter-img]][gitter] [![OpenTracing-1.0][ot-badge]](https://opentracing.io) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgitpro.ttaallkk.top%2Fjaegertracing%2Fjaeger.svg?type=shield)](https://app.fossa.io/projects/git%2Bgitpro.ttaallkk.top%2Fjaegertracing%2Fjaeger?ref=badge_shield) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1273/badge)](https://bestpractices.coreinfrastructure.org/projects/1273) [![Project+Community stats][community-badge]][community-stats]
[![Gitter chat][gitter-img]][gitter] [![OpenTracing-1.0][ot-badge]](https://opentracing.io) [![Project+Community stats][community-badge]][community-stats]

[![Build Status][ci-img]][ci] [![Coverage Status][cov-img]][cov] [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgitpro.ttaallkk.top%2Fjaegertracing%2Fjaeger.svg?type=shield)](https://app.fossa.io/projects/git%2Bgitpro.ttaallkk.top%2Fjaegertracing%2Fjaeger?ref=badge_shield) [![Fuzzit Status](https://app.fuzzit.dev/badge?org_id=jaeger)](https://app.fuzzit.dev/orgs/jaeger/dashboard) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1273/badge)](https://bestpractices.coreinfrastructure.org/projects/1273)

# Jaeger - a Distributed Tracing System

Expand Down
Loading