-
Notifications
You must be signed in to change notification settings - Fork 0
/
journalctl.py
215 lines (178 loc) · 4.59 KB
/
journalctl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# (c) 2020-2023, Bodo Schulz <[email protected]>
# Apache-2.0 (see LICENSE or https://opensource.org/license/apache-2-0)
# SPDX-License-Identifier: Apache-2.0
from __future__ import absolute_import, division, print_function
from ansible.module_utils.basic import AnsibleModule
DOCUMENTATION = """
module: journalctl
author:
- Bodo 'bodsch' Schulz (@bodsch)
short_description: Query the systemd journal with a very limited number of possible parameters.
version_added: 1.1.0
description:
- Query the systemd journal with a very limited number of possible parameters.
- In certain cases there are errors that are not clearly traceable but are logged in the journal.
- This module is intended to be a tool for error analysis.
options:
identifier:
description:
- Show entries with the specified syslog identifier
type: str
required: false
unit:
description:
- Show logs from the specified unit
type: str
required: false
lines:
description:
- Number of journal entries to show
type: int
required: false
reverse:
description:
- Show the newest entries first
type: bool
required: false
arguments:
description:
- A list of custom attributes
type: list
required: false
"""
EXAMPLES = """
- name: chrony entries from journalctl
bodsch.systemd.journalctl:
identifier: chrony
lines: 50
register: journalctl
when:
- ansible_service_mgr == 'systemd'
- name: journalctl entries from this module
bodsch.systemd.journalctl:
identifier: ansible-journalctl
lines: 250
register: journalctl
when:
- ansible_service_mgr == 'systemd'
"""
RETURN = """
rc:
description:
- Return Value
type: int
cmd:
description:
- journalctl with the called parameters
type: string
stdout:
description:
- The output as a list on stdout
type: list
stderr:
description:
- The output as a list on stderr
type: list
"""
class JournalCtl(object):
"""
"""
module = None
def __init__(self, module):
"""
"""
self.module = module
self._journalctl = module.get_bin_path("journalctl", True)
self.unit = module.params.get("unit")
self.identifier = module.params.get("identifier")
self.lines = module.params.get("lines")
self.reverse = module.params.get("reverse")
self.arguments = module.params.get("arguments")
def run(self):
"""
"""
result = dict(
rc=1,
failed=True,
changed=False,
)
result = self.journalctl_lines()
return result
def journalctl_lines(self):
"""
journalctl --help
journalctl [OPTIONS...] [MATCHES...]
Query the journal.
"""
args = []
args.append(self._journalctl)
if self.unit:
args.append("--unit")
args.append(self.unit)
if self.identifier:
args.append("--identifier")
args.append(self.identifier)
if self.lines:
args.append("--lines")
args.append(str(self.lines))
if self.reverse:
args.append("--reverse")
if len(self.arguments) > 0:
for arg in self.arguments:
args.append(arg)
rc, out, err = self._exec(args)
return dict(
rc=rc,
cmd=" ".join(args),
stdout=out,
stderr=err,
)
def _exec(self, args):
"""
"""
rc, out, err = self.module.run_command(args, check_rc=False)
if rc != 0:
self.module.log(msg=f" rc : '{rc}'")
self.module.log(msg=f" out: '{out}'")
self.module.log(msg=f" err: '{err}'")
return rc, out, err
def main():
"""
"""
args = dict(
identifier=dict(
required=False,
type="str"
),
unit=dict(
required=False,
type="str"
),
lines=dict(
required=False,
type="int"
),
reverse=dict(
required=False,
default=False,
type="bool"
),
arguments=dict(
required=False,
default=[],
type=list
),
)
module = AnsibleModule(
argument_spec=args,
supports_check_mode=False,
)
k = JournalCtl(module)
result = k.run()
# module.log(msg=f"= result: {result}")
module.exit_json(**result)
# import module snippets
if __name__ == "__main__":
main()