Skip to content

Commit 4bbf7c2

Browse files
authored
Preparing release 1.7.0 (jaegertracing#1060)
* Preparing release 1.7 Signed-off-by: Pavol Loffay <ploffay@redhat.com>
1 parent 9e79f1f commit 4bbf7c2

File tree

4 files changed

+27
-10
lines changed

4 files changed

+27
-10
lines changed

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
Changes by Version
22
==================
33

4-
TBD (pending)
4+
1.7.0 (2018-09-19)
55
------------------
66

77
#### UI Changes
88

9+
- Compare two traces ([#228](https://github.com/jaegertracing/jaeger-ui/pull/228), [@tiffon](https://github.com/tiffon))
10+
- Make tags clickable ([#223](https://github.com/jaegertracing/jaeger-ui/pull/223), [@divdavem](https://github.com/divdavem))
11+
- Directed graph as React component ([#222](https://github.com/jaegertracing/jaeger-ui/pull/222divdavemdivdavem), [@tiffon](https://github.com/tiffon))
12+
- Timeline Expand and Collapse Features ([#221](https://github.com/jaegertracing/jaeger-ui/issues/221), [@davit-y](https://github.com/davit-y))
13+
- Integrate Google Analytics into Search Page ([#220](https://github.com/jaegertracing/jaeger-ui/issues/220), [@davit-y](https://github.com/davit-y))
14+
15+
#### Backend Changes
16+
17+
##### Breaking changes
18+
19+
- `jaeger-standalone` binary has been renamed to `jaeger-all-in-one`. This change also includes package rename from `standalone` to `all-in-one` ([#1062](https://github.com/jaegertracing/jaeger/pull/1062), [@pavolloffay](https://github.com/pavolloffay))
20+
921
##### New Features
1022

11-
- Timeline Expand and Collapse Features ([#221](https://github.com/jaegertracing/jaeger-ui/issues/221))
12-
- Integrate Google Analytics into Search Page ([#220](https://github.com/jaegertracing/jaeger-ui/issues/220))
23+
- (Experimental) Allow storing tags as object fields in Elasticsearch for better Kibana support(([#1018](https://github.com/jaegertracing/jaeger/pull/1018), [@pavolloffay](https://github.com/pavolloffay))
24+
- Enable tracing of Cassandra queries ([#1038](https://github.com/jaegertracing/jaeger/pull/1038), [@yurishkuro](https://github.com/yurishkuro))
25+
- Make Elasticsearch index configurable ([#1009](https://github.com/jaegertracing/jaeger/pull/1009), [@pavolloffay](https://github.com/pavoloffay))
26+
- Add flags to allow changing ports for HotROD services ([#951](https://github.com/jaegertracing/jaeger/pull/951), [@cboornaz17](https://github.com/cboornaz17))
27+
- (Experimental) Kafka ingester ([#952](https://github.com/jaegertracing/jaeger/pull/952), [#942](https://github.com/jaegertracing/jaeger/pull/942), [#944](https://github.com/jaegertracing/jaeger/pull/944), [#940](https://github.com/jaegertracing/jaeger/pull/940), [@davit-y](https://github.com/davit-y) and [@vprithvi](https://github.com/vprithvi)))
28+
- Use tags in agent metrics ([#950](https://github.com/jaegertracing/jaeger/pull/950), [@eundoosong](https://github.com/eundoosong))
29+
- Add support for Cassandra reconnect interval ([#934](https://github.com/jaegertracing/jaeger/pull/934), [@nyanshak](https://github.com/nyanshak))
1330

1431
1.6.0 (2018-07-10)
1532
------------------

cmd/ingester/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func main() {
4747

4848
v := viper.New()
4949
command := &cobra.Command{
50-
Use: "jaeger-ingester",
50+
Use: "(experimental) jaeger-ingester",
5151
Short: "Jaeger ingester consumes from Kafka and writes to storage",
5252
Long: `Jaeger ingester consumes spans from a particular Kafka topic and writes them to all configured storage types.`,
5353
RunE: func(cmd *cobra.Command, args []string) error {

plugin/storage/es/options.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,15 @@ func addFlags(flagSet *flag.FlagSet, nsConfig *namespaceConfig) {
154154
flagSet.Bool(
155155
nsConfig.namespace+suffixTagsAsFieldsAll,
156156
nsConfig.AllTagsAsFields,
157-
"Store all span and process tags as object fields. If true "+suffixTagsFile+" is ignored. Binary tags are always stored as nested objects.")
157+
"(experimental) Store all span and process tags as object fields. If true "+suffixTagsFile+" is ignored. Binary tags are always stored as nested objects.")
158158
flagSet.String(
159159
nsConfig.namespace+suffixTagsFile,
160160
nsConfig.TagsFilePath,
161-
"Optional path to a file containing tag keys which will be stored as object fields. Each key should be on a separate line.")
161+
"(experimental) Optional path to a file containing tag keys which will be stored as object fields. Each key should be on a separate line.")
162162
flagSet.String(
163163
nsConfig.namespace+suffixTagDeDotChar,
164164
nsConfig.TagDotReplacement,
165-
"The character used to replace dots (\".\") in tag keys stored as object fields.")
165+
"(experimental) The character used to replace dots (\".\") in tag keys stored as object fields.")
166166
}
167167

168168
// InitFromViper initializes Options with properties from viper

plugin/storage/kafka/options.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ func (opt *Options) AddFlags(flagSet *flag.FlagSet) {
5050
flagSet.String(
5151
configPrefix+suffixBrokers,
5252
defaultBroker,
53-
"The comma-separated list of kafka brokers. i.e. '127.0.0.1:9092,0.0.0:1234'")
53+
"(experimental) The comma-separated list of kafka brokers. i.e. '127.0.0.1:9092,0.0.0:1234'")
5454
flagSet.String(
5555
configPrefix+suffixTopic,
5656
defaultTopic,
57-
"The name of the kafka topic")
57+
"(experimental) The name of the kafka topic")
5858
flagSet.String(
5959
configPrefix+suffixEncoding,
6060
defaultEncoding,
61-
fmt.Sprintf(`Encoding of spans ("%s" or "%s") sent to kafka.`, encodingProto, encodingJSON),
61+
fmt.Sprintf(`(experimental) Encoding of spans ("%s" or "%s") sent to kafka.`, encodingProto, encodingJSON),
6262
)
6363
}
6464

0 commit comments

Comments
 (0)