FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Observability Python Library - POC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Information Services
DevOps
Observability
Observability Python Library - POC
Merge requests
!14
fix: duplicate gunicorn logs and improved gunicorn log structure
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: duplicate gunicorn logs and improved gunicorn log structure
issue-7-fix-faas-logging
into
issue-7-fix-gunicorn
Overview
1
Commits
1
Pipelines
26
Changes
3
Merged
E. Kirk
requested to merge
issue-7-fix-faas-logging
into
issue-7-fix-gunicorn
9 months ago
Overview
1
Commits
1
Pipelines
26
Changes
3
Expand
0
0
Merge request reports
Compare
issue-7-fix-gunicorn
version 26
fa1fd8dd
9 months ago
version 25
b6afc91b
9 months ago
version 24
0e418348
9 months ago
version 23
f67c22d1
9 months ago
version 22
22157a5a
9 months ago
version 21
a32ba614
9 months ago
version 20
5bb1ae70
9 months ago
version 19
a451974c
9 months ago
version 18
aa506ec0
9 months ago
version 17
e7dc83fa
9 months ago
version 16
3420af61
9 months ago
version 15
18c793ad
9 months ago
version 14
017562a0
9 months ago
version 13
dd0765d7
9 months ago
version 12
9157d6c0
9 months ago
version 11
3953a243
9 months ago
version 10
94b47e54
9 months ago
version 9
7607d69c
9 months ago
version 8
9c4f2439
9 months ago
version 7
555a62b2
9 months ago
version 6
58e5f995
9 months ago
version 5
d8cbd2a4
9 months ago
version 4
66995c48
9 months ago
version 3
118becff
9 months ago
version 2
b910a88c
9 months ago
version 1
b910a88c
9 months ago
issue-7-fix-gunicorn (base)
and
latest version
latest version
cfaefa6e
1 commit,
9 months ago
version 26
fa1fd8dd
1 commit,
9 months ago
version 25
b6afc91b
2 commits,
9 months ago
version 24
0e418348
23 commits,
9 months ago
version 23
f67c22d1
22 commits,
9 months ago
version 22
22157a5a
21 commits,
9 months ago
version 21
a32ba614
20 commits,
9 months ago
version 20
5bb1ae70
19 commits,
9 months ago
version 19
a451974c
18 commits,
9 months ago
version 18
aa506ec0
17 commits,
9 months ago
version 17
e7dc83fa
16 commits,
9 months ago
version 16
3420af61
15 commits,
9 months ago
version 15
18c793ad
14 commits,
9 months ago
version 14
017562a0
13 commits,
9 months ago
version 13
dd0765d7
12 commits,
9 months ago
version 12
9157d6c0
11 commits,
9 months ago
version 11
3953a243
10 commits,
9 months ago
version 10
94b47e54
9 commits,
9 months ago
version 9
7607d69c
8 commits,
9 months ago
version 8
9c4f2439
7 commits,
9 months ago
version 7
555a62b2
6 commits,
9 months ago
version 6
58e5f995
5 commits,
9 months ago
version 5
d8cbd2a4
4 commits,
9 months ago
version 4
66995c48
3 commits,
9 months ago
version 3
118becff
2 commits,
9 months ago
version 2
b910a88c
1 commit,
9 months ago
version 1
b910a88c
2 commits,
9 months ago
3 files
+
119
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
ucam_observe/__init__.py
+
3
−
3
Options
@@ -2,9 +2,9 @@ import structlog
from
.logging_config
import
configure_logging
configure_logging
()
def
get_structlog_logger
(
*
args
,
**
kwargs
):
configure_logging
()
def
get_structlog_logger
(
name
):
"""
Get a logger with the specified name.
"""
return
structlog
.
get_logger
(
name
)
return
structlog
.
get_logger
(
*
args
,
**
kwargs
)
Loading