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 8, 2020
1 parent 7832fa6 commit 0207a99
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 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
6 changes: 3 additions & 3 deletions dev/generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,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 0207a99

Please sign in to comment.