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

Remove formatting of duration.us to ms. #1717

Merged
merged 2 commits into from
Jan 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apm Server
Copyright 2014-2018 Elasticsearch BV
Copyright 2014-2019 Elasticsearch BV

This product includes software developed by The Apache Software
Foundation (http://www.apache.org/).
Expand Down
8 changes: 4 additions & 4 deletions _meta/kibana/6/dashboard/apm-dashboards.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"schema": "metric",
"params": {
"field": "transaction.duration.us",
"customLabel": "Avg. Trans. Time"
"customLabel": "Avg. Trans. Time (us)"
}
},
{
Expand All @@ -42,7 +42,7 @@
"percents": [
95
],
"customLabel": "Trans. Time"
"customLabel": "Trans. Time (us)"
}
},
{
Expand Down Expand Up @@ -737,7 +737,7 @@
"enabled": true,
"id": "1",
"params": {
"customLabel": "Avg. Resp Time (ms)",
"customLabel": "Avg. Trans. Time (us)",
"field": "transaction.duration.us"
},
"schema": "metric",
Expand All @@ -747,7 +747,7 @@
"enabled": true,
"id": "3",
"params": {
"customLabel": "Resp Time (ms)",
"customLabel": "Trans. Time (us)",
"field": "transaction.duration.us",
"percents": [
95
Expand Down
5 changes: 3 additions & 2 deletions changelogs/head.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
[float]
==== Added

-- Update Go version to 1.11.4 {pull}1700[1700].
-- Update Elastic APM Go agent to v1.1.1 {pull}1711[1711].
- Update Go version to 1.11.4 {pull}1700[1700].
- Update Elastic APM Go agent to v1.1.1 {pull}1711[1711].
- Remove formatting of `duration.us` to milliseconds in index pattern pull{1717}[1717].

https://github.com/elastic/apm-server/compare/v7.0.0-alpha2...master[View commits]
4 changes: 0 additions & 4 deletions docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -823,8 +823,6 @@ Offset relative to the transaction's timestamp identifying the start of the span
--
type: long

format: duration

Duration of the span, in microseconds.


Expand Down Expand Up @@ -895,8 +893,6 @@ None
--
type: long

format: duration

Total duration of this transaction, in microseconds.


Expand Down
2 changes: 1 addition & 1 deletion include/fields.go

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions model/span/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@
count: 1
description: >
Duration of the span, in microseconds.
format: duration
input_format: microseconds
output_format: asMilliseconds
output_precision: 0

- name: sync
type: boolean
Expand Down
4 changes: 0 additions & 4 deletions model/transaction/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@
type: long
description: >
Total duration of this transaction, in microseconds.
format: duration
input_format: microseconds
output_format: asMilliseconds
output_precision: 0

- name: result
type: keyword
Expand Down