-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix_tar_step
- Loading branch information
Showing
92 changed files
with
2,218 additions
and
1,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -509,11 +509,11 @@ SOFTWARE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/beats/v7 | ||
Version: v7.0.0-alpha2.0.20210208210832-2363df416081 | ||
Version: v7.0.0-alpha2.0.20210210141635-5475407dcdb0 | ||
Licence type (autodetected): Elastic | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/beats/[email protected].20210208210832-2363df416081/LICENSE.txt: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/beats/[email protected].20210210141635-5475407dcdb0/LICENSE.txt: | ||
|
||
Source code in this repository is variously licensed under the Apache License | ||
Version 2.0, an Apache compatible license, or the Elastic License. Outside of | ||
|
@@ -15926,11 +15926,11 @@ Contents of probable licence file $GOMODCACHE/github.com/pquerna/cachecontrol@v0 | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/prometheus/procfs | ||
Version: v0.4.1 | ||
Version: v0.5.0 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/prometheus/procfs@v0.4.1/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/prometheus/procfs@v0.5.0/LICENSE: | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
apm-server: | ||
host: {{host}} | ||
secret_token: {{secret_token}} | ||
rum.enabled: {{enable_rum}} | ||
rum: | ||
enabled: {{enable_rum}} | ||
source_mapping.elasticsearch.api_key: {{sourcemap_api_key}} | ||
kibana: | ||
api_key: {{kibana_api_key}} |
19 changes: 19 additions & 0 deletions
19
apmpackage/apm/0.1.0/data_stream/sampled_traces/elasticsearch/ilm/default_policy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"policy": { | ||
"phases": { | ||
"hot": { | ||
"actions": { | ||
"rollover": { | ||
"max_age": "1h" | ||
} | ||
} | ||
}, | ||
"delete": { | ||
"min_age": "1h", | ||
"actions": { | ||
"delete": {} | ||
} | ||
} | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
apmpackage/apm/0.1.0/data_stream/sampled_traces/elasticsearch/ingest_pipeline/default.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"description": "Ingest pipeline for sampled trace documents", | ||
"processors": [ | ||
{ | ||
"set": { | ||
"field": "event.ingested", | ||
"value": "{{_ingest.timestamp}}" | ||
} | ||
} | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
apmpackage/apm/0.1.0/data_stream/sampled_traces/fields/base-fields.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- name: '@timestamp' | ||
type: date | ||
description: Event timestamp. | ||
- name: data_stream.type | ||
type: constant_keyword | ||
description: Data stream type. | ||
- name: data_stream.dataset | ||
type: constant_keyword | ||
description: Data stream dataset. | ||
- name: data_stream.namespace | ||
type: constant_keyword | ||
description: Data stream namespace. |
8 changes: 8 additions & 0 deletions
8
apmpackage/apm/0.1.0/data_stream/sampled_traces/fields/ecs.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- name: event.ingested | ||
type: date | ||
description: | | ||
Timestamp when an event arrived in the central data store. | ||
- name: trace.id | ||
type: keyword | ||
description: | | ||
The ID of the sampled trace. |
6 changes: 6 additions & 0 deletions
6
apmpackage/apm/0.1.0/data_stream/sampled_traces/fields/fields.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# When changing fields or ILM policy, make sure to update | ||
# x-pack/apm-server/sampling/pubsub/datastream.go. | ||
- name: observer.id | ||
type: keyword | ||
description: | | ||
The ID of the APM Server that indexed the sampled trace ID. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
title: APM tail-sampled traces | ||
type: traces | ||
dataset: sampled | ||
ilm_policy: traces-apm.sampled-default_policy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.