vector/kubernetes/mod.rs
1#![allow(missing_docs)]
2//! This module contains helpers Kubernetes helpers as well as a
3//! `custom_reflector` which delays the removal of metadata allowing
4//! us to enrich events even after the resource is deleted from the
5//! Kubernetes cluster.
6//!
7
8#![cfg(feature = "kubernetes")]
9
10pub mod meta_cache;
11pub mod pod_manager_logic;
12pub mod reflector;
13
14pub use reflector::custom_reflector;