Back to bug 1710548

Who When What Removed Added
Vikhyat Umrao 2019-05-15 18:13:01 UTC Summary ceph container logging to respective daemon ceph container logging to respective daemon log file
Ashish Singh 2019-05-16 13:20:24 UTC CC assingh
Dimitri Savineau 2019-05-30 18:36:12 UTC CC dparkes
Bob Emerson 2019-05-30 23:07:40 UTC CC roemerso
Greg Farnum 2019-05-30 23:21:33 UTC CC gfarnum
Gaurav Sitlani 2019-05-31 02:26:27 UTC CC gsitlani
Prashant Dhange 2019-05-31 03:09:57 UTC CC pdhange
Manjunatha 2019-05-31 09:17:10 UTC CC mmanjuna
Matthias Muench 2019-06-03 09:14:11 UTC CC mmuench
Guillaume Abrioux 2019-06-26 13:41:25 UTC Link ID Github ceph/ceph-container/pull/1408 Github ceph/ceph-ansible/pull/4166
Guillaume Abrioux 2019-06-26 13:41:41 UTC Status NEW ASSIGNED
Guillaume Abrioux 2019-06-27 13:10:21 UTC Target Release 3.* 4.0
RHEL Program Management 2019-06-27 13:10:25 UTC Target Release 4.0 3.*
Vikhyat Umrao 2019-06-27 17:30:51 UTC Target Release 3.* 4.0
Greg Farnum 2019-06-27 17:47:23 UTC CC gfarnum
Ken Dreyer (Red Hat) 2019-07-16 17:47:09 UTC Status ASSIGNED MODIFIED
Fixed In Version ceph-ansible-4.0.0-0.1.rc10.el7cp
Giridhar Ramaraju 2019-08-05 13:11:06 UTC CC tserlin
Fixed In Version ceph-ansible-4.0.0-0.1.rc10.el7cp ceph-ansible-4.0.0-0.1.rc10.el8cp
CC ceph-qe-bugs
Flags needinfo?(ceph-qe-bugs)
QA Contact ceph-qe-bugs hgurav
Hemant G 2019-08-06 08:36:22 UTC QA Contact hgurav vashastr
Vasishta 2019-08-23 17:17:56 UTC Flags needinfo?(ceph-qe-bugs)
errata-xmlrpc 2019-08-23 17:40:15 UTC Status MODIFIED ON_QA
Vikhyat Umrao 2019-08-28 19:33:40 UTC Blocks 1746570
PnT Account Manager 2019-09-02 10:04:17 UTC CC sankarshan
Karun Josy 2019-10-09 04:03:07 UTC CC kjosy
Bara Ancincova 2019-12-10 09:34:24 UTC CC gabrioux
Blocks 1730176
Docs Contact bancinco
Doc Type If docs needed, set a value Bug Fix
Flags needinfo?(gabrioux)
Guillaume Abrioux 2019-12-12 10:20:58 UTC Doc Text Feature: ceph container log to respective daemon file

Reason: Need a different way of logging for containerized deployed ceph environments because limiting journalctl output is not possible when looking at log data via sosreport collection.

Result: Support team will be able simply enable/disable logging on the fly with for instance: `ceph config daemon mon.a log_to_file true`
Doc Type Bug Fix Enhancement
Flags needinfo?(gabrioux)
Vasishta 2020-01-02 05:32:31 UTC Flags needinfo?(gabrioux)
Bara Ancincova 2020-01-07 09:10:02 UTC Doc Text Feature: ceph container log to respective daemon file

Reason: Need a different way of logging for containerized deployed ceph environments because limiting journalctl output is not possible when looking at log data via sosreport collection.

Result: Support team will be able simply enable/disable logging on the fly with for instance: `ceph config daemon mon.a log_to_file true`
.Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph config daemon _daemon-name_ log_to_file true
----

For example, to enable logging for the `mon.a` Monitor:

----
ceph config daemon mon.a log_to_file true
----

This new feature makes debugging easier.
Flags needinfo?(gabrioux)
Guillaume Abrioux 2020-01-09 08:12:21 UTC Doc Text .Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph config daemon _daemon-name_ log_to_file true
----

For example, to enable logging for the `mon.a` Monitor:

----
ceph config daemon mon.a log_to_file true
----

This new feature makes debugging easier.
.Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph config set daemon _daemon-name_ log_to_file true
----

For example, to enable logging for the `mon.a` Monitor:

----
ceph config set daemon mon.a log_to_file true
----

This new feature makes debugging easier.
Flags needinfo?(gabrioux) needinfo?(gabrioux)
Bara Ancincova 2020-01-10 09:20:58 UTC Doc Text .Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph config set daemon _daemon-name_ log_to_file true
----

For example, to enable logging for the `mon.a` Monitor:

----
ceph config set daemon mon.a log_to_file true
----

This new feature makes debugging easier.
.Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph daemon config set daemon _daemon_._id_ log_to_file true
----

Where _daemon_ is the type of the daemon and _id_ is its ID. For example, to enable logging for the Monitor daemon with ID `mon0`:

----
ceph daemon config set daemon mon.mon0 log_to_file true
----

This new feature makes debugging easier.
Vasishta 2020-01-12 12:27:50 UTC Flags needinfo?(gabrioux)
Guillaume Abrioux 2020-01-14 16:01:25 UTC Flags needinfo?(gabrioux)
Erin Donnelly 2020-01-14 19:37:07 UTC CC edonnell
Doc Text .Ceph container can now write logs to a respective daemon file

Previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph daemon config set daemon _daemon_._id_ log_to_file true
----

Where _daemon_ is the type of the daemon and _id_ is its ID. For example, to enable logging for the Monitor daemon with ID `mon0`:

----
ceph daemon config set daemon mon.mon0 log_to_file true
----

This new feature makes debugging easier.
.Ceph container can now write logs to a respective daemon file

The previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph daemon config set daemon _daemon_._id_ log_to_file true
----

Where _daemon_ is the type of the daemon and _id_ is its ID. For example, to enable logging for the Monitor daemon with ID `mon0`:

----
ceph daemon config set daemon mon.mon0 log_to_file true
----

This new feature makes debugging easier.
jquinn 2020-01-15 15:29:16 UTC CC jquinn
Tejas 2020-01-16 06:07:00 UTC CC tchandra
Flags needinfo?(gabrioux)
Guillaume Abrioux 2020-01-16 08:39:09 UTC CC vashastr
Flags needinfo?(gabrioux) needinfo?(vashastr)
Vasishta 2020-01-17 06:24:44 UTC Flags needinfo?(vashastr)
Vasishta 2020-01-17 07:10:26 UTC Severity high medium
Vasishta 2020-01-20 11:55:10 UTC Status ON_QA ASSIGNED
Guillaume Abrioux 2020-01-20 22:13:05 UTC Link ID Github ceph/ceph-container/pull/1574
Guillaume Abrioux 2020-01-21 12:38:55 UTC Doc Text .Ceph container can now write logs to a respective daemon file

The previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph daemon config set daemon _daemon_._id_ log_to_file true
----

Where _daemon_ is the type of the daemon and _id_ is its ID. For example, to enable logging for the Monitor daemon with ID `mon0`:

----
ceph daemon config set daemon mon.mon0 log_to_file true
----

This new feature makes debugging easier.
.Ceph container can now write logs to a respective daemon file

The previous way of logging for containerized Ceph environments did not allow limiting the `journalctl` output when looking at log data by using the `sosreport` collection. With this release, logging can be enabled or disabled for a particular Ceph daemon with the following command:

[subs='quotes']
----
ceph config set _daemon_._id_ log_to_file true
----

Where _daemon_ is the type of the daemon and _id_ is its ID. For example, to enable logging for the Monitor daemon with ID `mon0`:

----
ceph config set mon.mon0 log_to_file true
----

This new feature makes debugging easier.
Guillaume Abrioux 2020-01-21 14:35:19 UTC Status ASSIGNED POST
Dimitri Savineau 2020-01-21 14:36:19 UTC CC dsavinea
Ken Dreyer (Red Hat) 2020-01-21 15:35:26 UTC Status POST MODIFIED
CC kdreyer
Fixed In Version ceph-ansible-4.0.0-0.1.rc10.el8cp ceph-ansible-4.0.0-0.1.rc10.el8cp rhceph:ceph-4.0-rhel-8-containers-candidate-95735-20200121151520
Ken Dreyer (Red Hat) 2020-01-21 15:44:50 UTC Status MODIFIED ON_QA
Ken Dreyer (Red Hat) 2020-01-21 17:25:13 UTC Fixed In Version ceph-ansible-4.0.0-0.1.rc10.el8cp rhceph:ceph-4.0-rhel-8-containers-candidate-95735-20200121151520 ceph-ansible-4.0.0-0.1.rc10.el8cp rhceph:ceph-4.0-rhel-8-containers-candidate-77859-20200121171255
Vasishta 2020-01-22 07:01:14 UTC Status ON_QA ASSIGNED
Guillaume Abrioux 2020-01-22 14:56:11 UTC Flags needinfo?(vashastr)
Vasishta 2020-01-22 16:04:26 UTC Flags needinfo?(vashastr)
Guillaume Abrioux 2020-01-22 16:23:37 UTC Status ASSIGNED ON_QA
Vasishta 2020-01-22 17:26:55 UTC Flags needinfo?(gabrioux)
Vasishta 2020-01-23 05:43:54 UTC Status ON_QA ASSIGNED
Guillaume Abrioux 2020-01-23 09:46:22 UTC Status ASSIGNED ON_QA
Flags needinfo?(gabrioux)
errata-xmlrpc 2020-01-31 11:27:46 UTC Status ON_QA RELEASE_PENDING
errata-xmlrpc 2020-01-31 12:46:15 UTC Status RELEASE_PENDING CLOSED
Resolution --- ERRATA
Last Closed 2020-01-31 12:46:15 UTC
errata-xmlrpc 2020-01-31 12:46:52 UTC Link ID Red Hat Product Errata RHBA-2020:0312

Back to bug 1710548