Skip to content

Commit

Permalink
Update registry for stream.* to dataset.* change
Browse files Browse the repository at this point in the history
Now the dataset intsead of the stream fields are added and validated.

Updating also the base package. This will have to be pushed to the package-storage.

Part of elastic#491
  • Loading branch information
ruflin committed Jun 3, 2020
1 parent 1b2782f commit ef63582
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Breaking changes

* Change stream.* fields to dataset.* fields. [#](https://github.com/elastic/package-registry/pull/)

### Bugfixes

### Added
Expand Down
18 changes: 9 additions & 9 deletions dev/generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ var (
const (
packageDirName = "package"
streamFields = `
- name: stream.type
- name: dataset.type
type: constant_keyword
description: >
Stream type
- name: stream.dataset
Dataset type. This can be logs or metrics.
- name: dataset.name
type: constant_keyword
description: >
Stream dataset.
- name: stream.namespace
Dataset name.
- name: dataset.namespace
type: constant_keyword
description: >
Stream namespace.
Dataset namespace.
- name: "@timestamp"
type: date
description: >
Expand Down Expand Up @@ -301,9 +301,9 @@ func validateRequiredFields(datasetPath string) error {
}

// Verify required keys
err = requireField(allFields, "stream.type", "constant_keyword", err)
err = requireField(allFields, "stream.dataset", "constant_keyword", err)
err = requireField(allFields, "stream.namespace", "constant_keyword", err)
err = requireField(allFields, "dataset.type", "constant_keyword", err)
err = requireField(allFields, "dataset.name", "constant_keyword", err)
err = requireField(allFields, "dataset.namespace", "constant_keyword", err)
err = requireField(allFields, "@timestamp", "date", err)
return err
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"@timestamp": {
"type": "date"
},
"stream": {
"dataset": {
"properties": {
"type": {
"type": "constant_keyword",
"value": "events"
},
"dataset": {
"name": {
"type": "constant_keyword"
},
"namespace": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"@timestamp": {
"type": "date"
},
"stream": {
"dataset": {
"properties": {
"type": {
"type": "constant_keyword",
"value": "logs"
},
"dataset": {
"name": {
"type": "constant_keyword"
},
"namespace": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"@timestamp": {
"type": "date"
},
"stream": {
"dataset": {
"properties": {
"type": {
"type": "constant_keyword",
"value": "metrics"
},
"dataset": {
"name": {
"type": "constant_keyword"
},
"namespace": {
Expand Down

0 comments on commit ef63582

Please sign in to comment.