Skip to content

Commit e76e908

Browse files
kamil-certatsebix
authored andcommitted
Implementing IEP008 - contituency field
The change has been proposed and discussed over a year ago
1 parent f712bc6 commit e76e908

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
4141
```
4242
- added `severity` field to help with triaging received events (PR#2575 by Kamil Mańkowski).
4343
To allow saving the field in PostgreSQL database in existing installations, the following schema update is necessary: `ALTER TABLE events ADD severity varchar(10);`.
44+
- Implementing [IEP008](https://github.com/certtools/ieps/tree/main/008) introducing the `constituency` field for easier identification in
45+
multi-constituency setups. (PR#2573 by Kamil Mańkowski)
46+
To use in current PostgreSQL installations, a schema update may be
47+
necessary: `ALTER TABLE events ADD "constituency" text;`.
4448

4549
### Bots
4650
#### Collectors

intelmq/etc/harmonization.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,10 @@
388388
"tlp": {
389389
"description": "Traffic Light Protocol level of the event.",
390390
"type": "TLP"
391+
},
392+
"constituency": {
393+
"description": "Internal identifier for multi-constituency setup",
394+
"type": "String"
391395
}
392396
},
393397
"report": {

0 commit comments

Comments
 (0)