We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f53d45d commit 90782b1Copy full SHA for 90782b1
elementary/monitor/data_monitoring/report/slack_report_summary_message_builder.py
@@ -56,6 +56,12 @@ def _get_summary_filter_text(
56
selector_text = f"model: {filter.model}"
57
elif filter.owner:
58
selector_text = f"owner: {filter.owner}"
59
+ elif filter.invocation_id:
60
+ selector_text = f"invocation_id: {filter.invocation_id}"
61
+ elif filter.invocation_time:
62
+ selector_text = f"invocation_time: {filter.invocation_time}"
63
+ elif filter.last_invocation:
64
+ selector_text = "last_invocation"
65
days_back_text = (
66
f"timeframe: {days_back} day{'s' if days_back > 1 else ''} back"
67
)
0 commit comments