azure_data_cosmos_driver 0.2.0

Core implementation layer for Azure Cosmos DB - provides transport, routing, and protocol handling for cross-language SDK reuse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

//! System monitoring for CPU, memory, and Azure VM metadata.
//!
//! This module provides process-wide singletons for:
//! - CPU and memory usage monitoring with historical snapshots
//! - Azure VM metadata from the Instance Metadata Service (IMDS)

mod cpu_memory;
mod vm_metadata;

pub(crate) use cpu_memory::CpuMemoryMonitor;
pub(crate) use vm_metadata::VmMetadataService;