Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created June 17, 2019 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/af392ab12ee4c5d81404e3a4d7bb28fa to your computer and use it in GitHub Desktop.
Save ryantm/af392ab12ee4c5d81404e3a4d7bb28fa to your computer and use it in GitHub Desktop.
/nix/store/5ysgi5j2zphl6llhxsf7kivsb37hc7xw-lttng-tools-2.10.7
├── bin
│   ├── lttng
│   ├── lttng-crash
│   ├── lttng-relayd
│   └── lttng-sessiond
├── include
│   └── lttng
│   ├── action
│   │   ├── action.h
│   │   └── notify.h
│   ├── channel.h
│   ├── condition
│   │   ├── buffer-usage.h
│   │   ├── condition.h
│   │   └── evaluation.h
│   ├── constant.h
│   ├── domain.h
│   ├── endpoint.h
│   ├── event.h
│   ├── handle.h
│   ├── health.h
│   ├── load.h
│   ├── lttng-error.h
│   ├── lttng.h
│   ├── notification
│   │   ├── channel.h
│   │   └── notification.h
│   ├── save.h
│   ├── session.h
│   ├── snapshot.h
│   ├── trigger
│   │   └── trigger.h
│   └── version.h.tmpl
├── lib
│   ├── liblttng-ctl.la
│   ├── liblttng-ctl.so -> liblttng-ctl.so.0.0.0
│   ├── liblttng-ctl.so.0 -> liblttng-ctl.so.0.0.0
│   ├── liblttng-ctl.so.0.0.0
│   ├── lttng
│   │   └── libexec
│   │   └── lttng-consumerd
│   └── pkgconfig
│   └── lttng-ctl.pc
└── share
├── doc
│   └── lttng-tools
│   ├── ChangeLog
│   ├── LICENSE
│   ├── live-reading-howto.txt
│   ├── live-reading-protocol.txt
│   ├── python-howto.txt
│   ├── quickstart.txt
│   ├── README.md
│   ├── snapshot-howto.txt
│   ├── streaming-howto.txt
│   └── valgrind-howto.txt
├── man
│   ├── man1
│   │   ├── lttng.1.gz
│   │   ├── lttng-add-context.1.gz
│   │   ├── lttng-crash.1.gz
│   │   ├── lttng-create.1.gz
│   │   ├── lttng-destroy.1.gz
│   │   ├── lttng-disable-channel.1.gz
│   │   ├── lttng-disable-event.1.gz
│   │   ├── lttng-enable-channel.1.gz
│   │   ├── lttng-enable-event.1.gz
│   │   ├── lttng-help.1.gz
│   │   ├── lttng-list.1.gz
│   │   ├── lttng-load.1.gz
│   │   ├── lttng-metadata.1.gz
│   │   ├── lttng-regenerate.1.gz
│   │   ├── lttng-save.1.gz
│   │   ├── lttng-set-session.1.gz
│   │   ├── lttng-snapshot.1.gz
│   │   ├── lttng-start.1.gz
│   │   ├── lttng-status.1.gz
│   │   ├── lttng-stop.1.gz
│   │   ├── lttng-track.1.gz
│   │   ├── lttng-untrack.1.gz
│   │   ├── lttng-version.1.gz
│   │   └── lttng-view.1.gz
│   ├── man3
│   │   └── lttng-health-check.3.gz
│   └── man8
│   ├── lttng-relayd.8.gz
│   └── lttng-sessiond.8.gz
└── xml
└── lttng
└── session.xsd
20 directories, 70 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment