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 4f5b7ff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
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 4f5b7ff

Please sign in to comment.