Skip to content

Commit 1a5f056

Browse files
authored
chore: update refs for repo rename to ecs-logging-nodejs (#49)
Refs: #48
1 parent 92cb702 commit 1a5f056

19 files changed

+47
-47
lines changed

.ci/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
pipeline {
66
agent { label 'linux && immutable' }
77
environment {
8-
REPO = 'ecs-logging-js'
8+
REPO = 'ecs-logging-nodejs'
99
BASE_DIR = "src/go.elastic.co/apm/${env.REPO}"
1010
NOTIFY_TO = credentials('notify-to')
1111
JOB_GCS_BUCKET = credentials('gcs-bucket')

.ci/jobs/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
discover-pr-forks-trust: permission
2626
discover-pr-origin: merge-current
2727
discover-tags: true
28-
repo: ecs-logging-js
28+
repo: ecs-logging-nodejs
2929
repo-owner: elastic
3030
credentials-id: 2a9602aa-ab9f-4e52-baf3-b71ca88469c7-UserAndToken
3131
ssh-checkout:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
- job:
3-
name: apm-agent-nodejs/ecs-logging-js-mbp
4-
display-name: ecs-logging-js
3+
name: apm-agent-nodejs/ecs-logging-nodejs-mbp
4+
display-name: ecs-logging-nodejs
55
description: Centralized logging for Node.js applications with the Elastic stack

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to the ecs-logging-js libraries
1+
# Contributing to the ecs-logging-nodejs libraries
22

3-
The ecs-logging-js libraries are open source and we love to receive contributions
3+
The ecs-logging-nodejs libraries are open source and we love to receive contributions
44
from our community — you!
55

66
There are many ways to contribute,

NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ecs-logging-js
1+
ecs-logging-nodejs
22
Copyright 2019-2021 Elasticsearch B.V.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<img align="right" width="auto" height="auto" src="https://www.elastic.co/static-res/images/elastic-logo-200.png">
22

3-
# ecs-logging-js
3+
# ecs-logging-nodejs
44

5-
[![Build Status](https://apm-ci.elastic.co/buildStatus/icon?job=apm-agent-nodejs%2Fecs-logging-js-mbp%2Fmaster)](https://apm-ci.elastic.co/job/apm-agent-nodejs/job/ecs-logging-js-mbp/job/master/) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
5+
[![Build Status](https://apm-ci.elastic.co/buildStatus/icon?job=apm-agent-nodejs%2Fecs-logging-nodejs-mbp%2Fmaster)](https://apm-ci.elastic.co/job/apm-agent-nodejs/job/ecs-logging-nodejs-mbp/job/master/) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
66

77
This set of libraries allows you to transform your application logs to structured logs that comply with the [Elastic Common Schema (ECS)](https://www.elastic.co/guide/en/ecs/current/ecs-reference.html).
88
In combination with [filebeat](https://www.elastic.co/products/beats/filebeat) you can send your logs directly to Elasticsearch and leverage [Kibana's Logs UI](https://www.elastic.co/guide/en/infrastructure/guide/current/logs-ui-overview.html) to inspect all logs in one single place.
@@ -18,9 +18,9 @@ backwards-incompatible changes might be introduced in releases during the
1818

1919
### Supported logging frameworks
2020

21-
- [Pino](https://getpino.io/#/) via [@elastic/ecs-pino-format](https://github.com/elastic/ecs-logging-js/tree/master/loggers/pino)
22-
- [Winston](https://github.com/winstonjs/winston) via [@elastic/ecs-winston-format](https://github.com/elastic/ecs-logging-js/tree/master/loggers/winston)
23-
- [Morgan](https://github.com/expressjs/morgan) via [@elastic/ecs-morgan-format](https://github.com/elastic/ecs-logging-js/tree/master/loggers/morgan)
21+
- [Pino](https://getpino.io/#/) via [@elastic/ecs-pino-format](./loggers/pino)
22+
- [Winston](https://github.com/winstonjs/winston) via [@elastic/ecs-winston-format](./loggers/winston)
23+
- [Morgan](https://github.com/expressjs/morgan) via [@elastic/ecs-morgan-format](./loggers/morgan)
2424

2525
### References
2626

helpers/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Add `formatError` for adding [ECS Error fields](https://www.elastic.co/guide/en/ecs/current/ecs-error.html)
66
for a given `Error` object.
7-
([#42](https://github.com/elastic/ecs-logging-js/pull/42))
7+
([#42](https://github.com/elastic/ecs-logging-nodejs/pull/42))
88

99
## v0.5.0
1010

@@ -23,15 +23,15 @@
2323

2424
- Change `stringify()` to serialize "log.level" as a top-level dotted field
2525
per <https://github.com/elastic/ecs-logging/pull/33>.
26-
([#27](https://github.com/elastic/ecs-logging-js/pull/27))
26+
([#27](https://github.com/elastic/ecs-logging-nodejs/pull/27))
2727

2828
## v0.2.1
2929

30-
- Fix `url.full` field - [#16](https://github.com/elastic/ecs-logging-js/pull/16)
30+
- Fix `url.full` field - [#16](https://github.com/elastic/ecs-logging-nodejs/pull/16)
3131

3232
## v0.2.0
3333

34-
- Export ECS version - [#12](https://github.com/elastic/ecs-logging-js/pull/12)
34+
- Export ECS version - [#12](https://github.com/elastic/ecs-logging-nodejs/pull/12)
3535

3636
## v0.1.0
3737

helpers/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# @elastic/ecs-helpers
44

5-
[![Build Status](https://apm-ci.elastic.co/buildStatus/icon?job=apm-agent-nodejs%2Fecs-logging-js-mbp%2Fmaster)](https://apm-ci.elastic.co/job/apm-agent-nodejs/job/ecs-logging-js-mbp/job/master/) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
5+
[![Build Status](https://apm-ci.elastic.co/buildStatus/icon?job=apm-agent-nodejs%2Fecs-logging-nodejs-mbp%2Fmaster)](https://apm-ci.elastic.co/job/apm-agent-nodejs/job/ecs-logging-nodejs-mbp/job/master/) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
66

77
A set of helpers for the ECS logging libraries.
88
You should not directly used this package, but the ECS logging libraries instead.
@@ -42,7 +42,7 @@ console.log(stringify(ecs))
4242

4343
Note: This uses [fast-json-stringify](https://github.com/fastify/fast-json-stringify)
4444
for serialization. By design this chooses speed over supporting serialization
45-
of objects with circular references. This generally means that ecs-logging-js
45+
of objects with circular references. This generally means that ecs-logging-nodejs
4646
libraries will throw a "Converting circular structure to JSON" exception if an
4747
attempt is made to log an object with circular references.
4848

helpers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
],
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/elastic/ecs-logging-js.git"
11+
"url": "git+https://github.com/elastic/ecs-logging-nodejs.git"
1212
},
1313
"author": "Tomas Della Vedova",
1414
"license": "Apache-2.0",
1515
"bugs": {
16-
"url": "https://github.com/elastic/ecs-logging-js/issues"
16+
"url": "https://github.com/elastic/ecs-logging-nodejs/issues"
1717
},
18-
"homepage": "https://github.com/elastic/ecs-logging-js/blob/master/helpers/README.md",
18+
"homepage": "https://github.com/elastic/ecs-logging-nodejs/blob/master/helpers/README.md",
1919
"scripts": {
2020
"test": "standard && tap --timeout ${TAP_TIMEOUT:-10} test.js"
2121
},

loggers/morgan/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
- Set "service.name" and "event.dataset" log fields if Elastic APM is started.
66
This helps to filter for different log streams in the same pod and the
77
latter is required for log anomaly detection.
8-
([#41](https://github.com/elastic/ecs-logging-js/issues/41))
8+
([#41](https://github.com/elastic/ecs-logging-nodejs/issues/41))
99

1010
- Add support for [ECS tracing fields](https://www.elastic.co/guide/en/ecs/current/ecs-tracing.html).
1111
If it is detected that [Elastic APM](https://www.npmjs.com/package/elastic-apm-node)
1212
is in use and there is an active trace, then tracing fields will be added to
1313
log records. This enables linking between traces and log records in Kibana.
14-
([#35](https://github.com/elastic/ecs-logging-js/issues/35))
14+
([#35](https://github.com/elastic/ecs-logging-nodejs/issues/35))
1515

1616
- Fix passing of a format *name*, e.g. `app.use(morgan(ecsFormat('tiny')))`.
1717

1818
## v0.3.0
1919

2020
- Serialize "log.level" as a top-level dotted field per
2121
https://github.com/elastic/ecs-logging/pull/33.
22-
[#23](https://github.com/elastic/ecs-logging-js/pull/23)
22+
[#23](https://github.com/elastic/ecs-logging-nodejs/pull/23)
2323

2424
## v0.2.0
2525

26-
- Use the version number provided by ecs-helpers - [#13](https://github.com/elastic/ecs-logging-js/pull/13)
26+
- Use the version number provided by ecs-helpers - [#13](https://github.com/elastic/ecs-logging-nodejs/pull/13)
2727

2828
## v0.1.0
2929

0 commit comments

Comments
 (0)