<div dir="ltr">the simplest way is to use busctl as <div><br></div><div><div>aleivag@algx:~$ busctl call org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager GetUnitByPID u 28729</div><div>o "/org/freedesktop/systemd1/unit/nginx_2eservice"</div></div><div><br></div><div>from that you are a  awk away of what you want. if you want to get clever you can always do:</div><div><br></div><div><div>aleivag@algx:~$ busctl call org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager GetUnitByPID u 28729 | awk '{print $2}' | xargs -i busctl get-property org.freedesktop.systemd1 {} org.freedesktop.systemd1.Unit Id                               </div><div>s "nginx.service"</div></div><div><br></div><div>But depending on what you want, if you are not bound to use a shell, you can try using sd-bus.h in you code.</div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><br>Alvaro Leiva<br></div></div></div>
<br><div class="gmail_quote">On Wed, Dec 20, 2017 at 9:48 PM, Kevin Hsu <span dir="ltr"><<a href="mailto:hsukvn@gmail.com" target="_blank">hsukvn@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi folks,<div><br></div><div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px">I am looking for a good way to backtrace systemd service by a process id. The "systemctl status <pid>" command is available to do the magic. It will show a full status of the service that creates the<br>pid. But this command gives too many details. The only thing I need is the service unit name. Is there any simple way instead of parsing results from "systemctl status" ?<br><br>For example like<br><br>> systemctl service-get 5566<br>> nginx.service<br><br><br></blockquote>Thanks,<br>Kevin Hsu</div></div>
<br>______________________________<wbr>_________________<br>
systemd-devel mailing list<br>
<a href="mailto:systemd-devel@lists.freedesktop.org">systemd-devel@lists.<wbr>freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/systemd-devel" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/systemd-devel</a><br>
<br></blockquote></div><br></div>