├── .github └── workflows │ └── release.yml ├── .gitignore ├── Cargo.toml ├── README.md └── src ├── core ├── config.rs ├── constants.rs ├── error.rs ├── logger.rs └── mod.rs ├── monitoring ├── dbus.rs ├── filesystem.rs ├── mod.rs ├── process.rs └── scanner.rs ├── rspy.rs └── utils ├── format.rs └── mod.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/README.md -------------------------------------------------------------------------------- /src/core/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/core/config.rs -------------------------------------------------------------------------------- /src/core/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/core/constants.rs -------------------------------------------------------------------------------- /src/core/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/core/error.rs -------------------------------------------------------------------------------- /src/core/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/core/logger.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/core/mod.rs -------------------------------------------------------------------------------- /src/monitoring/dbus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/monitoring/dbus.rs -------------------------------------------------------------------------------- /src/monitoring/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/monitoring/filesystem.rs -------------------------------------------------------------------------------- /src/monitoring/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/monitoring/mod.rs -------------------------------------------------------------------------------- /src/monitoring/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/monitoring/process.rs -------------------------------------------------------------------------------- /src/monitoring/scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/monitoring/scanner.rs -------------------------------------------------------------------------------- /src/rspy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/rspy.rs -------------------------------------------------------------------------------- /src/utils/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozmer/rspy/HEAD/src/utils/format.rs -------------------------------------------------------------------------------- /src/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod format; 2 | --------------------------------------------------------------------------------