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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
41607661
Commit
41607661
authored
Jul 17, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement scaffold of authentication activity metrics
parent
7f0431dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
0 deletions
+92
-0
config/initializers/warden.rb
config/initializers/warden.rb
+12
-0
lib/gitlab/auth/activity.rb
lib/gitlab/auth/activity.rb
+69
-0
spec/lib/gitlab/auth/activity_spec.rb
spec/lib/gitlab/auth/activity_spec.rb
+11
-0
No files found.
config/initializers/warden.rb
View file @
41607661
...
...
@@ -5,17 +5,29 @@ Rails.application.configure do |config|
Warden
::
Manager
.
before_failure
(
scope: :user
)
do
|
env
,
opts
|
Gitlab
::
Auth
::
BlockedUserTracker
.
log_if_user_blocked
(
env
)
Gitlab
::
Auth
::
Activity
.
new
(
opts
).
user_authentication_failed!
end
Warden
::
Manager
.
after_authentication
(
scope: :user
)
do
|
user
,
auth
,
opts
|
ActiveSession
.
cleanup
(
user
)
Gitlab
::
Auth
::
Activity
.
new
(
opts
).
user_authenticated!
end
Warden
::
Manager
.
after_set_user
(
scope: :user
,
only: :fetch
)
do
|
user
,
auth
,
opts
|
ActiveSession
.
set
(
user
,
auth
.
request
)
Gitlab
::
Auth
::
Activity
.
new
(
opts
).
user_session_fetched!
end
Warden
::
Manager
.
after_set_user
(
scope: :user
,
only: :set_user
)
do
|
user
,
auth
,
opts
|
Gitlab
::
Auth
::
Activity
.
new
(
opts
).
user_set_manually!
end
Warden
::
Manager
.
before_logout
(
scope: :user
)
do
|
user
,
auth
,
opts
|
ActiveSession
.
destroy
(
user
||
auth
.
user
,
auth
.
request
.
session
.
id
)
Gitlab
::
Auth
::
Activity
.
new
(
opts
).
user_logout!
end
end
lib/gitlab/auth/activity.rb
0 → 100644
View file @
41607661
module
Gitlab
module
Auth
##
# Metrics and logging for user authentication activity.
#
class
Activity
extend
Gitlab
::
Utils
::
StrongMemoize
COUNTERS
=
{
user_authenticated:
'Counter of total successful authentication events'
,
user_unauthenticated:
'Counter of total authentication failures'
,
user_not_found:
'Counter of total failed log-ins when user is unknown'
,
user_password_invalid:
'Counter of failed log-ins with invalid password'
,
user_session_fetched:
'Counter of total sessions fetched'
,
user_session_override:
'Counter of manual log-ins and sessions overrides'
,
user_signed_out:
'Counter of total user sign out events'
}.
freeze
def
initialize
(
opts
)
@opts
=
opts
end
def
user_authentication_failed!
self
.
class
.
user_unauthenticated_counter
.
increment
case
@opts
[
:message
]
when
:not_found_in_database
self
.
class
.
user_not_found_counter
.
increment
when
:invalid
self
.
class
.
user_password_invalid_counter
.
increment
end
end
def
user_authenticated!
self
.
class
.
user_authenticated_counter
.
increment
end
def
user_session_fetched!
self
.
class
.
user_session_fetched_counter
.
increment
end
def
user_set_manually!
self
.
class
.
user_session_override_counter
.
increment
end
def
user_logout!
self
.
class
.
user_signed_out_counter
.
increment
end
class
StubCounter
def
initialize
(
metric
)
Rails
.
logger
.
warn
(
"METRIC
#{
metric
}
"
)
end
def
increment
end
end
COUNTERS
.
each_pair
do
|
metric
,
description
|
define_singleton_method
(
"
#{
metric
}
_counter"
)
do
strong_memoize
(
metric
)
do
StubCounter
.
new
(
metric
)
# Gitlab::Metrics.counter("gitlab_auth_#{metric}_total", description)
end
end
end
end
end
end
spec/lib/gitlab/auth/activity_spec.rb
0 → 100644
View file @
41607661
require
'spec_helper'
describe
Gitlab
::
Auth
::
Activity
do
describe
'counters'
do
it
'has all static counters defined'
do
described_class
::
COUNTERS
.
each_key
do
|
metric
|
expect
(
described_class
).
to
respond_to
(
"
#{
metric
}
_counter"
)
end
end
end
end
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