Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
dfc4d358
Commit
dfc4d358
authored
Jun 25, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
c7aa34a5
04f10a15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
db/migrate/20190513174947_enable_create_incident_issues_by_default.rb
...0190513174947_enable_create_incident_issues_by_default.rb
+19
-0
doc/user/project/integrations/prometheus.md
doc/user/project/integrations/prometheus.md
+1
-1
No files found.
db/migrate/20190513174947_enable_create_incident_issues_by_default.rb
0 → 100644
View file @
dfc4d358
# frozen_string_literal: true
class
EnableCreateIncidentIssuesByDefault
<
ActiveRecord
::
Migration
[
5.1
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
change_default_for
:create_issue
,
from:
false
,
to:
true
change_default_for
:send_email
,
from:
true
,
to:
false
end
private
def
change_default_for
(
column
,
from
:,
to
:)
change_column_default
:project_incident_management_settings
,
column
,
from:
from
,
to:
to
end
end
doc/user/project/integrations/prometheus.md
View file @
dfc4d358
...
...
@@ -160,7 +160,7 @@ receivers:
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ee/issues/4925) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.11.
Alerts can be used to trigger actions, like open an issue automatically. To configure the actions:
Alerts can be used to trigger actions, like open an issue automatically
(enabled by default since
`12.1`
)
. To configure the actions:
1.
Navigate to your project's
**Settings > Operations > Incidents**
.
1.
Enable the option to create issues.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment