Skip to content

Commit

Permalink
Merge pull request #1127 from snowplow/release/r126
Browse files Browse the repository at this point in the history
R126
  • Loading branch information
jbeemster authored Aug 26, 2021
2 parents 7b444ac + ffdd27d commit e6a81da
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 126 (2021-08-23)
------------------------
Add com.snowplowanalytics.monitoring.batch/alert/jsonschema/1-0-0 (#1124)

Release 125 (2021-07-14)
------------------------
Export Iglu Server Mirror apikey in Github actions (#1122)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ limitations under the License.
[cd]: https://github.com/snowplow/iglu-central/actions?query=workflow%3ACI
[cd-image]: https://github.com/snowplow/iglu-central/workflows/CI/badge.svg

[release-image]: http://img.shields.io/badge/release-125-orange.svg?style=flat
[release-image]: http://img.shields.io/badge/release-126-orange.svg?style=flat
[releases]: https://github.com/snowplow/iglu-central/releases

[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Webhook payload describing an alert coming from RDB Loader",
"self": {
"vendor": "com.snowplowanalytics.monitoring.batch",
"name": "alert",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"base": {
"description": "A folder that caused an alert",
"type": ["string", "null"],
"format": "uri",
"maxLength": 1024
},
"application": {
"type": "string",
"maxLength": 64,
"description": "Application's name and version"
},
"message": {
"description": "Free-form message describing the problem",
"maxLength": 4096,
"type": "string"
},
"severity": {
"description": "Severity level of the alarm",
"enum": ["INFO", "WARNING", "ERROR"]
},
"group": {
"description": "Arbitrary string representing an entity several alerts can be grouped by",
"type": ["string", "null"],
"maxLength": 1024
},
"tags": {
"description": "Set of key value pairs providing additional information",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": ["application", "message", "severity", "tags"],
"additionalProperties": false
}

0 comments on commit e6a81da

Please sign in to comment.