89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
export interface MetricWithDims<D> {
|
|
readonly namespace: string;
|
|
readonly metricName: string;
|
|
readonly statistic: string;
|
|
readonly dimensionsMap: D;
|
|
}
|
|
export declare class FSxMetrics {
|
|
static clientConnectionsSampleCount(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static cpuUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static dataReadBytesSum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static dataReadOperationsSum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static dataWriteBytesSum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static dataWriteOperationsSum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static diskThroughputBalanceAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static diskThroughputUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static fileServerDiskIopsBalanceAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static fileServerDiskIopsUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static fileServerDiskThroughputUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static freeDataStorageCapacitySum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static freeStorageCapacityAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static memoryUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static metadataOperationsSum(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
static networkThroughputUtilizationAverage(this: void, dimensions: {
|
|
FileSystemId: string;
|
|
}): MetricWithDims<{
|
|
FileSystemId: string;
|
|
}>;
|
|
}
|