File tree Expand file tree Collapse file tree 5 files changed +13
-14
lines changed Expand file tree Collapse file tree 5 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1111 branches :
1212 - main
1313 paths-ignore :
14- - ' **.md'
15- - ' **.asciidoc'
14+ - ' **/** .md'
15+ - ' **/** .asciidoc'
1616 - ' docs/**'
1717 - ' examples/**'
1818
Original file line number Diff line number Diff line change 77 branches :
88 - main
99 paths-ignore :
10- - ' *.md'
11- - ' *.asciidoc'
10+ - ' **/* .md'
11+ - ' **/* .asciidoc'
1212 - ' docs/**'
1313 pull_request :
1414 branches :
1515 - main
1616 paths-ignore :
17- - ' *.md'
18- - ' *.asciidoc'
17+ - ' **/* .md'
18+ - ' **/* .asciidoc'
1919 - ' docs/**'
2020
2121jobs :
Original file line number Diff line number Diff line change 1616 branches :
1717 - main
1818 paths-ignore :
19- - ' *.md'
20- - ' *.asciidoc'
19+ - ' **/* .md'
20+ - ' **/* .asciidoc'
2121 - ' docs/**'
2222 - ' examples/**'
2323 pull_request :
2424 branches :
2525 - main
2626 paths-ignore :
27- - ' *.md'
28- - ' *.asciidoc'
27+ - ' **/* .md'
28+ - ' **/* .asciidoc'
2929 - ' docs/**'
3030 - ' examples/**'
3131
Original file line number Diff line number Diff line change 99// A small example showing Elastic APM tracing the 'redis' package.
1010//
1111// This assumes a Redis server running on localhost. You can use:
12- // npm run docker:start
13- // to start an Redis docker container (and other containers used for
14- // testing of this project). Then `npm run docker:stop` to stop them.
12+ // npm run docker:start redis
13+ // to start an Redis docker container. Then `npm run docker:stop` to stop it.
1514
1615const apm = require ( '../' ) . start ( { // elastic-apm-node
1716 serviceName : 'example-trace-redis4' ,
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ apm.addMetadataFilter(filter1)
161161apm . addMetadataFilter ( filter2 )
162162apm . addMetadataFilter ( filter3 )
163163
164- apm . flush ( )
164+ apm . flush ( ) . finally ( ( ) => { } )
165165apm . flush ( ( ) => { } )
166166
167167apm . destroy ( )
You can’t perform that action at this time.
0 commit comments