Feature #6800
closedRename _CESNET key to _Mentat (or make it configurable)
100%
Description
Historically we save Mentat specific keys (abuse contacts, classes, enrichments, ...) within _CESNET namespace in Idea. That does not make sense for instances running in different organisations. We should thus rename the key (potentially to _Mentat), or even make the name configurable.
Related issues
Updated by Pavel Kácha about 4 years ago
- Related to Feature #6799: Implement filtering of keys on outgoing events added
Updated by Pavel Kácha about 4 years ago
- Related to Feature #4231: Implement and make use of cleanup mechanism for "_" namespaces from IDEA messages. added
Updated by Rajmund Hruška almost 4 years ago
- Status changed from New to In Progress
- To be discussed changed from No to Yes
Updated by Pavel Kácha almost 4 years ago
Will need (quite long) transition period, as we have Idea events, which are quite old (over year for CESNET networks).
Correct way would be to allow for "envelope" for Idea events, passing through the system, with metadata fields, however that would need quite a redesign. So we'll stay with current model, "injecting" our own fields into suitable place within Idea. Let's start with simply renaming to _Mentat, we might move some fields into more "standardized" positions later.
However it would be nice to also rename database fields, let's drop the "cesnet_" prefix in column names altogether to prevent another possible renames in the future.
As for transition/compatibility, the aim is to start adding fields into new (_Mentat prefixed) names in Enricher, Inspector and Storage, however consider both namespaces (_CESNET and _Mentat) when reading. That could be implemented in various ways (everywhere on use, translation in database layer, replacement by generated fields from metadata table, some combination thereof).
Updated by Rajmund Hruška almost 4 years ago
- Status changed from In Progress to Feedback
- Assignee changed from Rajmund Hruška to Pavel Kácha
I noticed that in pynspect, there are also _CESNET keys in the test files. Should those keys be renamed to _Mentat?
Updated by Rajmund Hruška almost 4 years ago
Also, in lib/mentat/stats/idea.py there is some work done with _CESNET (lines 99-103). In my previous commit, I just renamed the key but I am not sure whether it should be also compatible with the _CESNET or not.
Updated by Rajmund Hruška almost 4 years ago
- Status changed from Feedback to In Progress
- Assignee changed from Pavel Kácha to Rajmund Hruška
- To be discussed deleted (
Yes)
Updated by Pavel Kácha almost 4 years ago
Rajmund Hruska wrote in #note-7:
Also, in lib/mentat/stats/idea.py there is some work done with _CESNET (lines 99-103). In my previous commit, I just renamed the key but I am not sure whether it should be also compatible with the _CESNET or not.
From live video: I'm afraid it will have to be more clever - just adding new key would add two types of stats. Solutions (from the top of my head) to be considered:
- If LIST_AGGREGATIONS are considered linearly everywhere, solution might be just to add second line, like:
[ST_SKEY_ABUSES, '_CESNET.ResolvedAbuses', KEY_UNKNOWN], [ST_SKEY_ABUSES, '_Mentat.ResolvedAbuses', KEY_UNKNOWN],
- Or make middle term multiple and modify statistical logic:
[ST_SKEY_ABUSES, ('_CESNET.ResolvedAbuses', '_Mentat.ResolvedAbuses'), KEY_UNKNOWN],
- Or - of course - hardwire somehow.
Updated by Pavel Kácha almost 4 years ago
Rajmund Hruska wrote in #note-5:
I noticed that in pynspect, there are also _CESNET keys in the test files. Should those keys be renamed to _Mentat?
From live video: They are concerning only tests, only example Idea, and not probably really used anywhere. Would make sense to rename them or get rid of the altogether, but I'd do that after we're ready on our side.
Updated by Pavel Kácha almost 4 years ago
- database schema change
- Alembic migration
Updated by Rajmund Hruška almost 4 years ago
Pavel Kácha wrote in #note-10:
Rajmund Hruska wrote in #note-7:
Also, in lib/mentat/stats/idea.py there is some work done with _CESNET (lines 99-103). In my previous commit, I just renamed the key but I am not sure whether it should be also compatible with the _CESNET or not.
From live video: I'm afraid it will have to be more clever - just adding new key would add two types of stats. Solutions (from the top of my head) to be considered:
- If LIST_AGGREGATIONS are considered linearly everywhere, solution might be just to add second line, like:
[...]
- Or make middle term multiple and modify statistical logic:
[...]
- Or - of course - hardwire somehow.
I decided to make tuples - 38233d03
Updated by Rajmund Hruška almost 4 years ago
- Status changed from In Progress to Resolved
- Assignee changed from Rajmund Hruška to Pavel Kácha
- % Done changed from 50 to 100
Updated by Pavel Kácha almost 4 years ago
- Blocks Config #6949: Merge inspector configs into one added
Updated by Pavel Kácha almost 4 years ago
- Status changed from Resolved to In Review
Updated by Pavel Kácha almost 4 years ago
- Status changed from Closed to In Review
- Assignee changed from Pavel Kácha to Rajmund Hruška
Seems there is still something fishy (500 on event search on mentat-alt), reopening.
Updated by Rajmund Hruška over 3 years ago
The problem was that the database wasn't migrated. When I ran migration manually by alembic upgrade head
, the problem was resolved. Is database migration part of the build at alchemist? I can't find that quickly.
Updated by Rajmund Hruška over 3 years ago
During the meeting, we noticed that there are some indexes with the old name (they contain _cesnet). I updated the migration.
Updated by Pavel Kácha over 3 years ago
- Status changed from In Review to Closed
Updated by Rajmund Hruška over 3 years ago
I noticed that there are still old index names in 'Upgrading PostgreSQL from 12.x to 13.x' section in the documentation so I updated the names.
Updated by Pavel Kácha over 3 years ago
- Status changed from Closed to In Progress
Reopening to not forget it on 2.8 release.
Updated by Rajmund Hruška over 3 years ago
- Status changed from In Progress to Resolved
As it was discussed during the meeting on 2021-06-18, I added the note about upgrading to the latest version of Mentat prior to the sections "Upgrading PostgreSQL from 11.x to 12.x" and "Upgrading PostgreSQL from 12.x to 13.x".
Updated by Rajmund Hruška over 3 years ago
- Status changed from Resolved to In Review
Merged into devel.
Updated by Pavel Kácha over 3 years ago
- Status changed from In Review to Closed