# What this PR does - Adds migration to merge static labels to integration labels. On creating new static label in UI saves it as integration label. - Removes "inheritable" option for integration labels. All integration labels will be inheritable. This PR should be merged together with frontend changes. ## Which issue(s) this PR closes Related to https://github.com/grafana/oncall-private/issues/2973 <!-- *Note*: If you want the issue to be auto-closed once the PR is merged, change "Related to" to "Closes" in the line above. If you have more than one GitHub issue that this PR closes, be sure to preface each issue link with a [closing keyword](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests#linking-a-pull-request-to-an-issue). This ensures that the issue(s) are auto-closed once the PR has been merged. --> ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes.
59 lines
2.4 KiB
Python
59 lines
2.4 KiB
Python
# Generated by Django 4.2.15 on 2024-11-12 09:33
|
|
import logging
|
|
|
|
from django.db import migrations
|
|
import django_migration_linter as linter
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def migrate_static_labels(apps, schema_editor):
|
|
AlertReceiveChannelAssociatedLabel = apps.get_model("labels", "AlertReceiveChannelAssociatedLabel")
|
|
AlertReceiveChannel = apps.get_model("alerts", "AlertReceiveChannel")
|
|
|
|
logging.info("Start migrating alert group static labels to integration labels")
|
|
|
|
labels_associations_to_create = []
|
|
alert_receive_channels_to_update = []
|
|
|
|
alert_receive_channels = AlertReceiveChannel.objects.filter(alert_group_labels_custom__isnull=False)
|
|
logging.info(f"Found {alert_receive_channels.count()} integrations with custom alert groups labels")
|
|
for alert_receive_channel in alert_receive_channels:
|
|
update_labels = False
|
|
labels = alert_receive_channel.alert_group_labels_custom[:]
|
|
for label in labels:
|
|
if label[1] is not None:
|
|
labels_associations_to_create.append(
|
|
AlertReceiveChannelAssociatedLabel(
|
|
key_id=label[0],
|
|
value_id=label[1],
|
|
organization=alert_receive_channel.organization,
|
|
alert_receive_channel=alert_receive_channel
|
|
)
|
|
)
|
|
alert_receive_channel.alert_group_labels_custom.remove(label)
|
|
update_labels = True
|
|
if update_labels:
|
|
alert_receive_channels_to_update.append(alert_receive_channel)
|
|
|
|
AlertReceiveChannelAssociatedLabel.objects.bulk_create(
|
|
labels_associations_to_create, ignore_conflicts=True, batch_size=5000
|
|
)
|
|
logging.info("Bulk created label associations")
|
|
AlertReceiveChannel.objects.bulk_update(alert_receive_channels_to_update, fields=["alert_group_labels_custom"], batch_size=5000)
|
|
logging.info("Bulk updated integrations")
|
|
logging.info("Finished migrating static labels to integration labels")
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('alerts', '0070_remove_resolutionnoteslackmessage__slack_channel_id_db'),
|
|
('labels', '0005_labelkeycache_prescribed_labelvaluecache_prescribed'),
|
|
]
|
|
|
|
operations = [
|
|
# migrate static alert group labels to integration labels
|
|
linter.IgnoreMigration(),
|
|
migrations.RunPython(migrate_static_labels, migrations.RunPython.noop),
|
|
]
|