Skip to content

Instantly share code, notes, and snippets.

@equelin
Last active December 10, 2022 05:40
Show Gist options
  • Save equelin/37486519972f8161c480f47ae5904390 to your computer and use it in GitHub Desktop.
Save equelin/37486519972f8161c480f47ae5904390 to your computer and use it in GitHub Desktop.

Unity Metrics

List all the metrics available on a Dell EMC Unity. Those metrics are available through the API.

How to interpret the path of a metric

2 possibilities:

  • When there is a * in the path, you can use the path as is in your request, the * will be automatically replaced with all the possibilities. For example, if you want to retrieve the amount of memory available on the SPs, you can use the path sp.*.memory.summary.freeBytes. The API will interpret it as if you were requesting the free memory for the SPA and the SPB. If you need this information only for one of the SPs, you can use the path sp.spa.memory.summary.freeBytes
  • When there is a + in the path, you can replace it with the relevant item before requesting the API. For example, if you want to retrieve the CPU utilization of the SPA, you have to modify the path kpi.sp.+.utilization like this kpi.sp.spa.utilization. If you don't replace it, the array will sum up the metrics.

Real-time vs Historical metrics vs KPI

There are three types of metrics:

  • Real-time metrics: metrics who are computed during the request,
  • Historical metrics: metrics stored in the internal database of the array.
  • KPI historical metrics: advanced metrics who have been already computed by the array. Those metrics are only available in the engineering mode.

Please look at the list of the metrics to verify if a particular metric is available as a real-time or historical metric.

List of the available metrics

Historical and Real-Time

[
    {
        "id":  1,
        "name":  "CPU Utilization",
        "path":  "kpi.sp.+.utilization",
        "type":  1,
        "description":  "Total amount of processing cycles, as a percentage, across all cores in the storage system SPs.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "%"
    },
    {
        "id":  4,
        "name":  "Cache Read Hit IOPS",
        "path":  "kpi.sp.+.readHitThroughput",
        "type":  1,
        "description":  "Read IO served by Cache.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  5,
        "name":  "Cache Read Miss IOPS",
        "path":  "kpi.sp.+.readMissThroughput",
        "type":  1,
        "description":  "Read IO not served by Cache.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  10,
        "name":  "Response Time",
        "path":  "kpi.lun.+.sp.+.responseTime",
        "type":  1,
        "description":  "Average time spent completing LUN I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  11,
        "name":  "Bandwidth",
        "path":  "kpi.lun.+.sp.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total amount of LUN I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12,
        "name":  "IOPS",
        "path":  "kpi.lun.+.sp.+.rw.+.throughput",
        "type":  1,
        "description":  "Total number of LUN I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  13,
        "name":  "I/O Size",
        "path":  "kpi.lun.+.sp.+.rw.+.ioSize",
        "type":  1,
        "description":  "Average size of LUN I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  14,
        "name":  "Queue Length",
        "path":  "kpi.lun.+.sp.+.queueLength",
        "type":  1,
        "description":  "Average number of LUN I/O requests in the system queue.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Count/s"
    },
    {
        "id":  15,
        "name":  "LUN Response Time",
        "path":  "kpi.lun.+.sp.+.lunResponseTime",
        "type":  1,
        "description":  "Average time spent completing LUN I/O requests, in microseconds, across all LUNs in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  16,
        "name":  "LUN Bandwidth",
        "path":  "kpi.lun.+.sp.+.rw.+.lunBandwidth",
        "type":  1,
        "description":  "Total amount of LUN I/O requests, in KB/s, across all LUNs in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  17,
        "name":  "LUN IOPS",
        "path":  "kpi.lun.+.sp.+.rw.+.lunThroughput",
        "type":  1,
        "description":  "Total number of LUN I/O requests, in I/O per second, across all LUNs in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  18,
        "name":  "LUN I/O Size",
        "path":  "kpi.lun.+.sp.+.rw.+.lunIOSize",
        "type":  1,
        "description":  "Average size of LUN I/O requests, in KB, across all LUNs in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  19,
        "name":  "LUN Queue Length",
        "path":  "kpi.lun.+.sp.+.lunQueueLength",
        "type":  1,
        "description":  "Average number of LUN I/O requests in the system queue across all LUNs in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Count/s"
    },
    {
        "id":  32,
        "name":  "Bandwidth",
        "path":  "kpi.iSCSI.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total amount of iSCSI I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  33,
        "name":  "Requests/Second",
        "path":  "kpi.iSCSI.+.rw.+.throughput",
        "type":  1,
        "description":  "Total number of iSCSI I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  34,
        "name":  "iSCSI Bandwidth",
        "path":  "kpi.iSCSI.+.sp.+.rw.+.iSCSIBandwidth",
        "type":  1,
        "description":  "Total amount of iSCSI I/O requests, in KB/s, across all storage ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  35,
        "name":  "iSCSI Requests/Second",
        "path":  "kpi.iSCSI.+.sp.+.rw.+.iSCSIThroughput",
        "type":  1,
        "description":  "Total number of iSCSI I/O requests, in requests per second, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  40,
        "name":  "Bandwidth",
        "path":  "kpi.filePort.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total bandwidth of all network activity across the port.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  41,
        "name":  "Packets",
        "path":  "kpi.filePort.+.rw.+.throughput",
        "type":  1,
        "description":  "Total packet rate of all network activity across the port.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Packets/s"
    },
    {
        "id":  42,
        "name":  "Ethernet Bandwidth",
        "path":  "kpi.filePort.+.sp.+.rw.+.ethernetBandwidth",
        "type":  1,
        "description":  "Total aggregate bandwidth of all network activity across all non-management Ethernet ports in the storage system..",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  43,
        "name":  "Ethernet Packets",
        "path":  "kpi.filePort.+.sp.+.rw.+.ethernetThroughput",
        "type":  1,
        "description":  "Total aggregate packet rate of all network activity across all non-management Ethernet ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Packets/s"
    },
    {
        "id":  44,
        "name":  "Bandwidth",
        "path":  "kpi.tenant.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total bandwidth of all tenants.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  50,
        "name":  "NFS Bandwidth",
        "path":  "kpi.sp.+.rw.+.nfsBandwidth",
        "type":  1,
        "description":  "Total amount of NFS I/O requests, in KB/s, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  51,
        "name":  "CIFS Bandwidth",
        "path":  "kpi.sp.+.rw.+.cifsBandwidth",
        "type":  1,
        "description":  "Total amount of CIFS I/O requests, in KB/s, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  52,
        "name":  "NFS IOPS",
        "path":  "kpi.sp.+.rw.+.nfsThroughput",
        "type":  1,
        "description":  "Total number of NFS I/O requests, in I/O per second, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  53,
        "name":  "CIFS IOPS",
        "path":  "kpi.sp.+.rw.+.cifsThroughput",
        "type":  1,
        "description":  "Total number of CIFS I/O requests, in I/O per second, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  54,
        "name":  "NFS I/O Size",
        "path":  "kpi.sp.+.rw.+.nfsIoSize",
        "type":  1,
        "description":  "Average size of NFS I/O requests, in KB, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  55,
        "name":  "CIFS I/O Size",
        "path":  "kpi.sp.+.rw.+.cifsIoSize",
        "type":  1,
        "description":  "Average size of CIFS I/O requests, in KB, across all ports in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  56,
        "name":  "NFS Response Time",
        "path":  "kpi.sp.+.rw.+.nfsResponseTime",
        "type":  1,
        "description":  "Average time spent completing NFS I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  57,
        "name":  "CIFS Response Time",
        "path":  "kpi.sp.+.rw.+.cifsResponseTime",
        "type":  1,
        "description":  "Average time spent completing CIFS I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  60,
        "name":  "IOPS",
        "path":  "kpi.fileSystem.+.rw.+.throughput",
        "type":  1,
        "description":  "Total number of file system I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  61,
        "name":  "Bandwidth",
        "path":  "kpi.fileSystem.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total amount of file system I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  62,
        "name":  "I/O Size",
        "path":  "kpi.fileSystem.+.rw.+.ioSize",
        "type":  1,
        "description":  "Average size of file system I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  63,
        "name":  "File System IOPS",
        "path":  "kpi.fileSystem.+.sp.+.rw.+.fsThroughput",
        "type":  1,
        "description":  "Total number of file system I/O requests, in I/O per second, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  64,
        "name":  "File System Bandwidth",
        "path":  "kpi.fileSystem.+.sp.+.rw.+.fsBandwidth",
        "type":  1,
        "description":  "Total amount of file system I/O requests, in KB/s, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  65,
        "name":  "File System I/O Size",
        "path":  "kpi.fileSystem.+.sp.+.rw.+.fsIOSize",
        "type":  1,
        "description":  "Average size of file system I/O requests, in KB, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  66,
        "name":  "IOPS",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.+.rw.+.throughput",
        "type":  1,
        "description":  "Total number of VVol Datastore I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  67,
        "name":  "Bandwidth",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total amount of VVol Datastore I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  68,
        "name":  "Response Time",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.+.responseTime",
        "type":  1,
        "description":  "Average time spent completing VVol Datastore I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  69,
        "name":  "VVol Datastore Response Time",
        "path":  "kpi.VVolDatastore.+.sp.+.VVolDatastoreResponseTime",
        "type":  1,
        "description":  "Average time spent completing VVol Datastore I/O requests, in microseconds, across all VVol Datastore in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "microseconds"
    },
    {
        "id":  70,
        "name":  "VVol Datastore Bandwidth",
        "path":  "kpi.VVolDatastore.+.sp.+.rw.+.VVolDatastoreBandwidth",
        "type":  1,
        "description":  "Total amount of VVol Datastore I/O requests, in KB/s, across all VVol Datastore in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  71,
        "name":  "VVol Datastore IOPS",
        "path":  "kpi.VVolDatastore.+.sp.+.rw.+.VVolDatastoreThroughput",
        "type":  1,
        "description":  "Total number of VVol Datastore I/O requests, in I/O per second, across all VVol Datastore in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  80,
        "name":  "Bandwidth",
        "path":  "kpi.lun.+.snapshot.+.sp.+.rw.+.bandwidth",
        "type":  1,
        "description":  "Total amount of SnapShot I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  81,
        "name":  "IOPS",
        "path":  "kpi.lun.+.snapshot.+.sp.+.rw.+.throughput",
        "type":  1,
        "description":  "Total number of SnapShot I/O requests.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  800,
        "name":  "File System IOPS",
        "path":  "kpi.fileSystem.+.rw.+.fsThroughput",
        "type":  1,
        "description":  "Total number of file system I/O requests, in I/O per second, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  801,
        "name":  "File System Bandwidth",
        "path":  "kpi.fileSystem.+.rw.+.fsBandwidth",
        "type":  1,
        "description":  "Total amount of file system I/O requests, in KB/s, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  802,
        "name":  "File System I/O Size",
        "path":  "kpi.fileSystem.+.rw.+.fsIOSize",
        "type":  1,
        "description":  "Average size of file system I/O requests, in KB, across all file systems in the storage system.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  1000,
        "name":  "CPU Utilization",
        "path":  "kpi.sp.+.utilization",
        "type":  1,
        "description":  "CPU Utilization",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1001,
        "name":  "NFS Response Time (Read)",
        "path":  "kpi.sp.+.nfsReadResponseTime",
        "type":  1,
        "description":  "Average time spent completing NFS read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1002,
        "name":  "NFS Response Time (Write)",
        "path":  "kpi.sp.+.nfsWriteResponseTime",
        "type":  1,
        "description":  "Average time spent completing NFS write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1003,
        "name":  "NFS Response Time (Total)",
        "path":  "kpi.sp.+.nfsResponseTime",
        "type":  1,
        "description":  "Average time spent completing NFS I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1004,
        "name":  "CIFS Response Time (Read)",
        "path":  "kpi.sp.+.cifsReadResponseTime",
        "type":  1,
        "description":  "Average time spent completing CIFS read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1005,
        "name":  "CIFS Response Time (Write)",
        "path":  "kpi.sp.+.cifsWriteResponseTime",
        "type":  1,
        "description":  "Average time spent completing CIFS write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1006,
        "name":  "CIFS Response Time (Total)",
        "path":  "kpi.sp.+.cifsResponseTime",
        "type":  1,
        "description":  "Average time spent completing CIFS I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1007,
        "name":  "Response Time",
        "path":  "kpi.lun.+.sp.+.responseTime",
        "type":  1,
        "description":  "Average time spent completing LUN I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1008,
        "name":  "Bandwidth (Read)",
        "path":  "kpi.lun.+.sp.+.readBandwidth",
        "type":  1,
        "description":  "Total amount of LUN read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1009,
        "name":  "Bandwidth (Write)",
        "path":  "kpi.lun.+.sp.+.writeBandwidth",
        "type":  1,
        "description":  "Total amount of LUN write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1010,
        "name":  "Bandwidth (Total)",
        "path":  "kpi.lun.+.sp.+.totalBandwidth",
        "type":  1,
        "description":  "Total amount of LUN I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1011,
        "name":  "IOPS (Read)",
        "path":  "kpi.lun.+.sp.+.readIOPS",
        "type":  1,
        "description":  "Total number of LUN read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1012,
        "name":  "IOPS (Write)",
        "path":  "kpi.lun.+.sp.+.writeIOPS",
        "type":  1,
        "description":  "Total number of LUN write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1013,
        "name":  "IOPS (Total)",
        "path":  "kpi.lun.+.sp.+.totalIOPS",
        "type":  1,
        "description":  "Total number of LUN I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1014,
        "name":  "I/O Size (Read)",
        "path":  "kpi.lun.+.sp.+.readIoSize",
        "type":  1,
        "description":  "Average size of LUN read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1015,
        "name":  "I/O Size (Write)",
        "path":  "kpi.lun.+.sp.+.writeIoSize",
        "type":  1,
        "description":  "Average size of LUN write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1016,
        "name":  "Queue Length",
        "path":  "kpi.lun.+.sp.+.queueLength",
        "type":  1,
        "description":  "Average number of LUN I/O requests in the system queue.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1017,
        "name":  "IOPS (Read)",
        "path":  "kpi.filesystem.+.readIOPS",
        "type":  1,
        "description":  "Total number of file system read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1018,
        "name":  "IOPS (Write)",
        "path":  "kpi.filesystem.+.writeIOPS",
        "type":  1,
        "description":  "Total number of file system write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1019,
        "name":  "Bandwidth (Read)",
        "path":  "kpi.filesystem.+.readBandwidth",
        "type":  1,
        "description":  "Total amount of file system read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1020,
        "name":  "Bandwidth (Write)",
        "path":  "kpi.filesystem.+.writeBandwidth",
        "type":  1,
        "description":  "Total amount of file system write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1021,
        "name":  "I/O Size (Read)",
        "path":  "kpi.filesystem.+.readIoSize",
        "type":  1,
        "description":  "Average size of file system read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1022,
        "name":  "I/O Size (Write)",
        "path":  "kpi.filesystem.+.writeIoSize",
        "type":  1,
        "description":  "Average size of file system write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1023,
        "name":  "Bandwidth (Read)",
        "path":  "kpi.iSCSI.+.readBandwidth",
        "type":  1,
        "description":  "Total amount of iSCSI read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1024,
        "name":  "Bandwidth (Write)",
        "path":  "kpi.iSCSI.+.writeBandwidth",
        "type":  1,
        "description":  "Total amount of iSCSI write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1025,
        "name":  "Requests/Second (Read)",
        "path":  "kpi.iSCSI.+.readIOPS",
        "type":  1,
        "description":  "Total number of iSCSI read I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1026,
        "name":  "Requests/Second (Write)",
        "path":  "kpi.iSCSI.+.writeIOPS",
        "type":  1,
        "description":  "Total number of iSCSI write I/O requests.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1027,
        "name":  "Bandwidth (Read)",
        "path":  "kpi.filePort.+.readBandwidth",
        "type":  1,
        "description":  "Bandwidth of read network activity across the port.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1028,
        "name":  "Bandwidth (Write)",
        "path":  "kpi.filePort.+.writeBandwidth",
        "type":  1,
        "description":  "Bandwidth of write network activity across the port.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1029,
        "name":  "Packets (Read)",
        "path":  "kpi.filePort.+.readIOPS",
        "type":  1,
        "description":  "Total packet rate of read network activity across the port.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1030,
        "name":  "Packets (Write)",
        "path":  "kpi.filePort.+.writeIOPS",
        "type":  1,
        "description":  "Total packet rate of write network activity across the port.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1031,
        "name":  "Bandwidth (Read)",
        "path":  "kpi.tenant.+.readBandwidth",
        "type":  1,
        "description":  "Bandwidth of read across tenants",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  1032,
        "name":  "Bandwidth (Write)",
        "path":  "kpi.tenant.+.writeBandwidth",
        "type":  1,
        "description":  "Bandwidth of write across tenants",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true
    },
    {
        "id":  10003,
        "name":  "Bundles In Flight",
        "path":  "sp.*.CMI.bundlesInFlight.*.bundles",
        "type":  3,
        "description":  "Bundles already in flight when a new bundle is formed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10005,
        "name":  "Fixed bundles compressed",
        "path":  "sp.*.CMI.compressedFixedBundles",
        "type":  3,
        "description":  "Total fixed bundles compressed into one dataphase",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10007,
        "name":  "Float bundles compressed",
        "path":  "sp.*.CMI.compressedFloatBundles",
        "type":  3,
        "description":  "Total float bundles compressed into one dataphase",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10009,
        "name":  "Control Header Full",
        "path":  "sp.*.CMI.controlHeaderFull",
        "type":  3,
        "description":  "Number of times the control header was full",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10011,
        "name":  "Partial Transfers",
        "path":  "sp.*.CMI.extraDataPhaseOnReceiveTransfers",
        "type":  3,
        "description":  "Number of partial transfers on receive",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10014,
        "name":  "Failures",
        "path":  "sp.*.CMI.gate.*.failures",
        "type":  3,
        "description":  "Number of bundles failed for this gate",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10016,
        "name":  "Transmissions",
        "path":  "sp.*.CMI.gate.*.transmissions",
        "type":  3,
        "description":  "Number of bundles transmitted for this gate",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10018,
        "name":  "Incoming Ack Response Time",
        "path":  "sp.*.CMI.incomingAckResponseTime",
        "type":  3,
        "description":  "Cumulative incoming ack response time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ms"
    },
    {
        "id":  10019,
        "name":  "Max Message per Bundle Limit",
        "path":  "sp.*.CMI.maxMessagesPerBundleLimit",
        "type":  3,
        "description":  "Number of times the max messages per bundle limit was reached",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10021,
        "name":  "Max Byte Messages",
        "path":  "sp.*.CMI.messagesExceededMax",
        "type":  3,
        "description":  "Number of messages that exceeded the maximum bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10024,
        "name":  "Messages in Bundle",
        "path":  "sp.*.CMI.messagesInBundle.*.messages",
        "type":  3,
        "description":  "Number of messages in each bundle",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10026,
        "name":  "Normal Ack Response Time",
        "path":  "sp.*.CMI.normalAckResponseTime",
        "type":  3,
        "description":  "Cumulative normal ack response time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ms"
    },
    {
        "id":  10027,
        "name":  "Out of Order Bundles Acked",
        "path":  "sp.*.CMI.outOfOrderAcks",
        "type":  3,
        "description":  "Number of bundles acked out of order",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10029,
        "name":  "Full RADs",
        "path":  "sp.*.CMI.radFull",
        "type":  3,
        "description":  "Number of times the Receiver Descriptor (RAD) List was full",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10031,
        "name":  "Slow Acks Re-sent",
        "path":  "sp.*.CMI.reSentSlowAcks",
        "type":  3,
        "description":  "Number of acks re-sent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10033,
        "name":  "Bytes Received",
        "path":  "sp.*.CMI.received",
        "type":  3,
        "description":  "Total client bytes received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10034,
        "name":  "Bundle Acks Received",
        "path":  "sp.*.CMI.receivedBundleAcks",
        "type":  3,
        "description":  "Number of bundle acks received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10036,
        "name":  "Bundles Received",
        "path":  "sp.*.CMI.receivedBundles",
        "type":  3,
        "description":  "Total bundles received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10038,
        "name":  "Duplicate Bundles Received",
        "path":  "sp.*.CMI.receivedDuplicateBundles",
        "type":  3,
        "description":  "Number of duplicate bundles received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10040,
        "name":  "Messages Received",
        "path":  "sp.*.CMI.receivedMessages",
        "type":  3,
        "description":  "Total client messages received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10042,
        "name":  "Out of Order Bundles Received",
        "path":  "sp.*.CMI.receivedOutOfOrderBundles",
        "type":  3,
        "description":  "Number of bundles received out of order",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10044,
        "name":  "Out of Window Bundles Received",
        "path":  "sp.*.CMI.receivedOutOfWindowBundles",
        "type":  3,
        "description":  "Number of bundles received out of window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10047,
        "name":  "Full SGLs",
        "path":  "sp.*.CMI.senderSGLFull",
        "type":  3,
        "description":  "Number of times the sender\u0027s scatter-gather list (SGL) was full",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10049,
        "name":  "Bytes Sent",
        "path":  "sp.*.CMI.sent",
        "type":  3,
        "description":  "Total client bytes sent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10050,
        "name":  "Bundles Sent",
        "path":  "sp.*.CMI.sentBundles",
        "type":  3,
        "description":  "Total bundles sent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10052,
        "name":  "Messages Sent",
        "path":  "sp.*.CMI.sentMessages",
        "type":  3,
        "description":  "Total client messages sent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10056,
        "name":  "Cumulative Message Response Time",
        "path":  "sp.*.CMI.virtualConduit.*.cumulativeMessageResponseTime",
        "type":  3,
        "description":  "Cumulative response time of messages sent from this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10058,
        "name":  "Cumulative Send-Ack Time",
        "path":  "sp.*.CMI.virtualConduit.*.cumulativeMessageSendAckTime",
        "type":  3,
        "description":  "Cumulative send-ack time of messages sent from this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10060,
        "name":  "Cumultive Wait To Send Time",
        "path":  "sp.*.CMI.virtualConduit.*.cumulativeMessageWaitToSendTime",
        "type":  3,
        "description":  "Cumulative wait-to-send time of messages sent from this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10062,
        "name":  "Flow Control Stops",
        "path":  "sp.*.CMI.virtualConduit.*.flowControlStops",
        "type":  3,
        "description":  "Number of times this VC was stopped by flow control",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10064,
        "name":  "Fixed Bytes Received",
        "path":  "sp.*.CMI.virtualConduit.*.receivedFixed",
        "type":  3,
        "description":  "Fixed bytes received by this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10066,
        "name":  "Float Bytes Received",
        "path":  "sp.*.CMI.virtualConduit.*.receivedFloat",
        "type":  3,
        "description":  "Float bytes received by this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10068,
        "name":  "Messages Received",
        "path":  "sp.*.CMI.virtualConduit.*.receivedMessages",
        "type":  3,
        "description":  "Number of messages received through this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10070,
        "name":  "Fixed Bytes Sent",
        "path":  "sp.*.CMI.virtualConduit.*.sentFixed",
        "type":  3,
        "description":  "Fixed bytes sent by this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10072,
        "name":  "Float Bytes Sent",
        "path":  "sp.*.CMI.virtualConduit.*.sentFloat",
        "type":  3,
        "description":  "Float bytes sent by this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10074,
        "name":  "Forced Credits Sent",
        "path":  "sp.*.CMI.virtualConduit.*.sentForcedCredits",
        "type":  3,
        "description":  "Number of times this VC forced a bundle to send a buffer credit",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10076,
        "name":  "Messages Sent",
        "path":  "sp.*.CMI.virtualConduit.*.sentMessages",
        "type":  3,
        "description":  "Number of messages sent through this VC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10080,
        "name":  "Blocks Back Filled",
        "path":  "sp.*.blockCache.flu.*.backFilledBlocks",
        "type":  3,
        "description":  "Number of Blocks backfilled (loaded for flushing)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10082,
        "name":  "Backfill Reads",
        "path":  "sp.*.blockCache.flu.*.backFilledReads",
        "type":  3,
        "description":  "Number of Reads sent to the back end as back fill requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  10084,
        "name":  "Client Prefetch requests",
        "path":  "sp.*.blockCache.flu.*.clientPrefetch",
        "type":  3,
        "description":  "Number of Client Prefetch requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10085,
        "name":  "Client Prefetch blocks requested",
        "path":  "sp.*.blockCache.flu.*.clientPrefetchBlocks",
        "type":  3,
        "description":  "Number of Client Prefetch blocks requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10088,
        "name":  "Client Prefetched Blocks Never Used",
        "path":  "sp.*.blockCache.flu.*.clientPrefetchedUnusedBlocks",
        "type":  3,
        "description":  "Number of Blocks Client Prefetched that are unused",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10090,
        "name":  "Data Disparate Read Miss",
        "path":  "sp.*.blockCache.flu.*.dataDisparateReadMiss",
        "type":  3,
        "description":  "Number of Data Disparate Copy and Rename read Miss",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10092,
        "name":  "Disparate Copy Rename Loaded Blocks",
        "path":  "sp.*.blockCache.flu.*.dataDwMissBlocks",
        "type":  3,
        "description":  "Number of Disparate Copy Rename Loaded blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10094,
        "name":  "Data Disparate MjRead Status Alert",
        "path":  "sp.*.blockCache.flu.*.dataDwReadAlert",
        "type":  3,
        "description":  "Number of Data Disparate MjRead Status Alert",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10095,
        "name":  "Data Disparate MjRead Status Alert Blocks",
        "path":  "sp.*.blockCache.flu.*.dataDwReadAlertBlocks",
        "type":  3,
        "description":  "Number of Blocks Data Disparate MjRead Status Alert",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10098,
        "name":  "Data Disparate MjRead Success",
        "path":  "sp.*.blockCache.flu.*.dataDwReadSuccess",
        "type":  3,
        "description":  "Number of Data Disparate MjRead Success",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10099,
        "name":  "Data Disparate MjRead Success Blocks",
        "path":  "sp.*.blockCache.flu.*.dataDwReadSuccessBlocks",
        "type":  3,
        "description":  "Number of Blocks Data Disparate MjRead Success",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10102,
        "name":  "Data Disparate MjRead Too Late",
        "path":  "sp.*.blockCache.flu.*.dataDwReadTooLate",
        "type":  3,
        "description":  "Number of Data Disparate MjRead Too Late",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10103,
        "name":  "Data Disparate MjRead Too Late Blocks",
        "path":  "sp.*.blockCache.flu.*.dataDwReadTooLateBlocks",
        "type":  3,
        "description":  "Number of Blocks Data Disparate MjRead Too Late",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10106,
        "name":  "Data Move Blocks Written",
        "path":  "sp.*.blockCache.flu.*.dataMoveBlockWritten",
        "type":  3,
        "description":  "Number of Data Move Blocks Written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10108,
        "name":  "Data Move Blocks Cloned",
        "path":  "sp.*.blockCache.flu.*.dataMoveClonedBlocks",
        "type":  3,
        "description":  "Number of Data Move Blocks Cloned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10110,
        "name":  "Data Move Blocks Copied",
        "path":  "sp.*.blockCache.flu.*.dataMoveCopiedBlocks",
        "type":  3,
        "description":  "Number of Data Move Blocks Copied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10112,
        "name":  "Data Move Hits",
        "path":  "sp.*.blockCache.flu.*.dataMoveHits",
        "type":  3,
        "description":  "Number of Data Move Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10114,
        "name":  "Data Move Misses",
        "path":  "sp.*.blockCache.flu.*.dataMoveMisses",
        "type":  3,
        "description":  "Number of Data Move Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10116,
        "name":  "Data Move Page Hits",
        "path":  "sp.*.blockCache.flu.*.dataMovePageHits",
        "type":  3,
        "description":  "Number of Data Move Page Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10118,
        "name":  "Data Move Page Misses",
        "path":  "sp.*.blockCache.flu.*.dataMovePageMisses",
        "type":  3,
        "description":  "Number of Data Move Page Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10120,
        "name":  "Data Move Pending",
        "path":  "sp.*.blockCache.flu.*.dataMovePendings",
        "type":  3,
        "description":  "Number of Data Move Pending",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Data Moves"
    },
    {
        "id":  10122,
        "name":  "Data Move Response Time",
        "path":  "sp.*.blockCache.flu.*.dataMoveTotalTime",
        "type":  3,
        "description":  "Cumulative Data Move Response Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10124,
        "name":  "Delayed Writes",
        "path":  "sp.*.blockCache.flu.*.delayedWrites",
        "type":  3,
        "description":  "Number of Delayed Writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Writes"
    },
    {
        "id":  10126,
        "name":  "Fast Writes",
        "path":  "sp.*.blockCache.flu.*.fastWrites",
        "type":  3,
        "description":  "Number of Fast Writes (write that does not have to wait for pages)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10128,
        "name":  "Blocked Flushes",
        "path":  "sp.*.blockCache.flu.*.flushBlocks",
        "type":  3,
        "description":  "Number of Blocks Flushed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10130,
        "name":  "Flush Requests",
        "path":  "sp.*.blockCache.flu.*.flushes",
        "type":  3,
        "description":  "Number of Flush Requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Flushes"
    },
    {
        "id":  10132,
        "name":  "Forced Flushes",
        "path":  "sp.*.blockCache.flu.*.forcedFlushes",
        "type":  3,
        "description":  "Number of Forced Flushes Requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Flushes"
    },
    {
        "id":  10135,
        "name":  "Read ReHit Histogram",
        "path":  "sp.*.blockCache.flu.*.histogram.*.readReHits",
        "type":  3,
        "description":  "Read ReHit Histogram - number of re-read page was hit",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10137,
        "name":  "Read Histogram",
        "path":  "sp.*.blockCache.flu.*.histogram.*.reads",
        "type":  3,
        "description":  "Read Histogram - number of read page was hit",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10139,
        "name":  "Write ReHit Histogram",
        "path":  "sp.*.blockCache.flu.*.histogram.*.writeReHits",
        "type":  3,
        "description":  "Write ReHit Histogram - number of re-write page was hit",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10141,
        "name":  "Write Histogram",
        "path":  "sp.*.blockCache.flu.*.histogram.*.writes",
        "type":  3,
        "description":  "Write Histogram - number of write page was hit",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10143,
        "name":  "Arrivals to Non Zero Queue",
        "path":  "sp.*.blockCache.flu.*.nonZeroQueueArrivals",
        "type":  3,
        "description":  "Arrivals to Non Zero Queue",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Arrivals"
    },
    {
        "id":  10145,
        "name":  "Page Disparate Write Loaded",
        "path":  "sp.*.blockCache.flu.*.pageDisparateMisses",
        "type":  3,
        "description":  "Number of Page Disparate Write Loaded",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10147,
        "name":  "Page Read Hits",
        "path":  "sp.*.blockCache.flu.*.pageReadHits",
        "type":  3,
        "description":  "Number of Page Read Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10149,
        "name":  "Page Read Misses",
        "path":  "sp.*.blockCache.flu.*.pageReadMisses",
        "type":  3,
        "description":  "Number of Page Read Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10151,
        "name":  "Page Write Hits",
        "path":  "sp.*.blockCache.flu.*.pageWriteHits",
        "type":  3,
        "description":  "Number of Page Write Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10153,
        "name":  "Page Write Misses",
        "path":  "sp.*.blockCache.flu.*.pageWriteMisses",
        "type":  3,
        "description":  "Number of Page Write Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10155,
        "name":  "Pending Reads",
        "path":  "sp.*.blockCache.flu.*.pendingReads",
        "type":  3,
        "description":  "Number of Pending Reads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10157,
        "name":  "Blocks Pinned",
        "path":  "sp.*.blockCache.flu.*.pinnedBlocks",
        "type":  3,
        "description":  "Number of Blocks Pinned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10159,
        "name":  "Blocks Prefetched",
        "path":  "sp.*.blockCache.flu.*.prefetchedTotalBlocks",
        "type":  3,
        "description":  "Total number of Blocks Prefetched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10161,
        "name":  "Prefetched Blocks Never Used",
        "path":  "sp.*.blockCache.flu.*.prefetchedUnusedBlocks",
        "type":  3,
        "description":  "Number of Blocks Prefetched that are unused",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10163,
        "name":  "Read Blocks",
        "path":  "sp.*.blockCache.flu.*.readBlocks",
        "type":  3,
        "description":  "Number of Read Blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10165,
        "name":  "Read_Hit_Only requests",
        "path":  "sp.*.blockCache.flu.*.readHitOnly",
        "type":  3,
        "description":  "Number of Read_Hit_Only requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10166,
        "name":  "Read_Hit_Only Alerted requests",
        "path":  "sp.*.blockCache.flu.*.readHitOnlyAlerted",
        "type":  3,
        "description":  "Number of Read_Hit_Only Alerted requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10168,
        "name":  "Read_Hit_Only Discard requests",
        "path":  "sp.*.blockCache.flu.*.readHitOnlyDiscard",
        "type":  3,
        "description":  "Number of Read_Hit_Only Discard requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10170,
        "name":  "Read_Hit_Only Miss requests",
        "path":  "sp.*.blockCache.flu.*.readHitOnlyMiss",
        "type":  3,
        "description":  "Number of Read_Hit_Only Miss requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10173,
        "name":  "Read_Hit_Only Success requests",
        "path":  "sp.*.blockCache.flu.*.readHitOnlySuccess",
        "type":  3,
        "description":  "Number of Read_Hit_Only Success requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10175,
        "name":  "Read Hits",
        "path":  "sp.*.blockCache.flu.*.readHits",
        "type":  3,
        "description":  "Number of Read Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10177,
        "name":  "Read Read Misses",
        "path":  "sp.*.blockCache.flu.*.readMisses",
        "type":  3,
        "description":  "Number of Read Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10179,
        "name":  "Read and Pin Commands",
        "path":  "sp.*.blockCache.flu.*.readPinCommands",
        "type":  5,
        "description":  "Number of Read and Pin Commands",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10180,
        "name":  "Read and Pin Hits",
        "path":  "sp.*.blockCache.flu.*.readPinHits",
        "type":  3,
        "description":  "Number of Read and Pin Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10182,
        "name":  "Read and Pin Misses",
        "path":  "sp.*.blockCache.flu.*.readPinMisses",
        "type":  3,
        "description":  "Number of Read and Pin Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10184,
        "name":  "Read and Pin Page Hits",
        "path":  "sp.*.blockCache.flu.*.readPinPageHits",
        "type":  3,
        "description":  "Number of Read and Pin Page Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10186,
        "name":  "Read and Pin Page Misses",
        "path":  "sp.*.blockCache.flu.*.readPinPageMisses",
        "type":  3,
        "description":  "Number of Read and Pin Page Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10188,
        "name":  "Read Read Hits",
        "path":  "sp.*.blockCache.flu.*.readReadHits",
        "type":  3,
        "description":  "Number of Read Read Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10190,
        "name":  "Read Response Time",
        "path":  "sp.*.blockCache.flu.*.readTotalTime",
        "type":  3,
        "description":  "Cumulative Read Response Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10192,
        "name":  "Read Write Hits",
        "path":  "sp.*.blockCache.flu.*.readWriteHits",
        "type":  3,
        "description":  "Number of Read Write Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10194,
        "name":  "Queue Length on Arrival",
        "path":  "sp.*.blockCache.flu.*.sumQueueLengthOnArrival",
        "type":  3,
        "description":  "Total of Queue Length on Arrival",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10196,
        "name":  "Throttled Writes",
        "path":  "sp.*.blockCache.flu.*.throttledWrites",
        "type":  3,
        "description":  "Number of Throttled Writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Writes"
    },
    {
        "id":  10198,
        "name":  "Write Blocks",
        "path":  "sp.*.blockCache.flu.*.writeBlocks",
        "type":  3,
        "description":  "Number of Write Blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10200,
        "name":  "Write Commit Time",
        "path":  "sp.*.blockCache.flu.*.writeCommitTotalTime",
        "type":  3,
        "description":  "Cumulative Write Commit Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10202,
        "name":  "Write Hits",
        "path":  "sp.*.blockCache.flu.*.writeHits",
        "type":  3,
        "description":  "Number of Write Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10204,
        "name":  "Write Misses",
        "path":  "sp.*.blockCache.flu.*.writeMisses",
        "type":  3,
        "description":  "Number of Write Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10206,
        "name":  "Write Partial Hits",
        "path":  "sp.*.blockCache.flu.*.writePartialHits",
        "type":  3,
        "description":  "Number of Writes that are Partial Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Partial"
    },
    {
        "id":  10208,
        "name":  "Write Thrus",
        "path":  "sp.*.blockCache.flu.*.writeThroughs",
        "type":  3,
        "description":  "Number of Write Throughs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10210,
        "name":  "Write Response Time",
        "path":  "sp.*.blockCache.flu.*.writeTotalTime",
        "type":  3,
        "description":  "Cumulative Write Response Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10212,
        "name":  "Write Transfer Time",
        "path":  "sp.*.blockCache.flu.*.writeXferTotalTime",
        "type":  3,
        "description":  "Cumulative Write Transfer Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10214,
        "name":  "Zero Fill Commands",
        "path":  "sp.*.blockCache.flu.*.zeroFillCommands",
        "type":  3,
        "description":  "Number of Zero Fill Commands",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Commands"
    },
    {
        "id":  10216,
        "name":  "Blocks Zeroed",
        "path":  "sp.*.blockCache.flu.*.zeroedBlocks",
        "type":  3,
        "description":  "Number of Blocks Zeroed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10220,
        "name":  "Clean Pages Queue Lenght",
        "path":  "sp.*.blockCache.global.replacementTrack.*.cleanQlength",
        "type":  5,
        "description":  "Number of Clean Pages On Track",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10221,
        "name":  "Cleaned Paged Queue Length",
        "path":  "sp.*.blockCache.global.replacementTrack.*.cleanedQlength",
        "type":  5,
        "description":  "Number of Pages Cleaned On Track",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10222,
        "name":  "Dirty Queue Length",
        "path":  "sp.*.blockCache.global.replacementTrack.*.dirtyQlength",
        "type":  5,
        "description":  "Number of Dirty Pages On Track",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10223,
        "name":  "Non Dirty Page Writes",
        "path":  "sp.*.blockCache.global.replacementTrack.*.nonDirtyWrites",
        "type":  5,
        "description":  "Number of Non Dirty Page Writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10224,
        "name":  "Oldest Age Referece in Track",
        "path":  "sp.*.blockCache.global.replacementTrack.*.oldestAgeEstimatePages",
        "type":  3,
        "description":  "Age of the oldest reference in the track",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10225,
        "name":  "Pages Replaced",
        "path":  "sp.*.blockCache.global.replacementTrack.*.pagesReplaced",
        "type":  5,
        "description":  "Number of Pages Replaced",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10226,
        "name":  "Precleaning Age Pages",
        "path":  "sp.*.blockCache.global.replacementTrack.*.preCleaningAgePages",
        "type":  3,
        "description":  "Precleaning Age Pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10227,
        "name":  "Previous Dirty Pages",
        "path":  "sp.*.blockCache.global.replacementTrack.*.previouslyDirty",
        "type":  5,
        "description":  "Number of writes to clean page which had been previously dirty",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10228,
        "name":  "Read Hits",
        "path":  "sp.*.blockCache.global.replacementTrack.*.readHits",
        "type":  3,
        "description":  "Number of Read Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10230,
        "name":  "Average Device Write Time",
        "path":  "sp.*.blockCache.global.replacementTrack.*.recentAvgAcrossDeviceWriteTime",
        "type":  3,
        "description":  "Average Device Write Time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSec"
    },
    {
        "id":  10231,
        "name":  "Write Hits",
        "path":  "sp.*.blockCache.global.replacementTrack.*.writeHits",
        "type":  3,
        "description":  "Number of Write Hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10234,
        "name":  "Block Cache Clean Pages",
        "path":  "sp.*.blockCache.global.summary.cleanPages",
        "type":  5,
        "description":  "Number of Clean Pages on SP, based on a logical 64 KB page size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10235,
        "name":  "Block Cache Data Move Hits",
        "path":  "sp.*.blockCache.global.summary.dataMoveHits",
        "type":  3,
        "description":  "Number of Data Move Hits on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10237,
        "name":  "Block Cache Data Move Misses",
        "path":  "sp.*.blockCache.global.summary.dataMoveMisses",
        "type":  3,
        "description":  "Number of Data Move Misses on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10239,
        "name":  "Block Cache Dirty Data",
        "path":  "sp.*.blockCache.global.summary.dirtyBytes",
        "type":  5,
        "description":  "Amount of Dirty Data (MB) on SP",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "MB"
    },
    {
        "id":  10240,
        "name":  "Block Cache Dirty Pages",
        "path":  "sp.*.blockCache.global.summary.dirtyPages",
        "type":  5,
        "description":  "Number of Dirty Pages on SP, based on a logical 64 KB page size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10241,
        "name":  "Block Cache DW DwCopy Blocks",
        "path":  "sp.*.blockCache.global.summary.dwCopyBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite DwCopy Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10243,
        "name":  "Block Cache DW DcaWrite Blocks",
        "path":  "sp.*.blockCache.global.summary.dwDcaBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite DcaWrite Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10245,
        "name":  "Block Cache DW DwDiscard Blocks",
        "path":  "sp.*.blockCache.global.summary.dwDiscardBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite DwDiscard Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10247,
        "name":  "Block Cache DW MjWrite Blocks",
        "path":  "sp.*.blockCache.global.summary.dwMjBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite MjWrite Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10249,
        "name":  "Block Cache DW MjRead Blocks",
        "path":  "sp.*.blockCache.global.summary.dwMjReadBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite MjRead Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10251,
        "name":  "Block Cache DW DwRename Blocks",
        "path":  "sp.*.blockCache.global.summary.dwRenameBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite DwRename Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10253,
        "name":  "Block Cache DisparateWrite Requests",
        "path":  "sp.*.blockCache.global.summary.dwRequests",
        "type":  3,
        "description":  "Number of DisparateWrite Requests on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10255,
        "name":  "Block Cache DW MwZero Blocks",
        "path":  "sp.*.blockCache.global.summary.dwZeroBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite DwZero Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10257,
        "name":  "Block Cache Blocks Flushed",
        "path":  "sp.*.blockCache.global.summary.flushedBlocks",
        "type":  3,
        "description":  "Number of Blocks Flushed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10259,
        "name":  "Block Cache Flush Counts",
        "path":  "sp.*.blockCache.global.summary.flushes",
        "type":  3,
        "description":  "Number of Flush Operations Performed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10261,
        "name":  "Block Cache Forced Flushes",
        "path":  "sp.*.blockCache.global.summary.forcedFlushes",
        "type":  3,
        "description":  "Number of Forced Flushes on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Flushes"
    },
    {
        "id":  10263,
        "name":  "Block Cache Free Pages",
        "path":  "sp.*.blockCache.global.summary.freePages",
        "type":  5,
        "description":  "Number of Free Pages on SP, based on a logical 64 KB page size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10264,
        "name":  "Block Cache DW Rename Copy Miss Blocks",
        "path":  "sp.*.blockCache.global.summary.mDwRenameCopyMissBlocks",
        "type":  3,
        "description":  "Number of DisparateWrite Miss Blocks on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10266,
        "name":  "Block Cache DW Rename Copy Miss Pages",
        "path":  "sp.*.blockCache.global.summary.mDwRenameCopyMissPages",
        "type":  3,
        "description":  "Number of DisparateWrite Miss Pages on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10268,
        "name":  "Block Cache Managed Pages",
        "path":  "sp.*.blockCache.global.summary.managedPages",
        "type":  5,
        "description":  "Number of Pages Managed on SP, based on a logical 64 KB page size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10269,
        "name":  "Block Cache Max Pages",
        "path":  "sp.*.blockCache.global.summary.maxPages",
        "type":  5,
        "description":  "Maximum Number of Pages on SP, based on a logical 64 KB page size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10270,
        "name":  "Block Cache DwRename Count",
        "path":  "sp.*.blockCache.global.summary.numDwRenames",
        "type":  3,
        "description":  "Number of DwRenames on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10271,
        "name":  "Block Cache Alerted DwRename Count",
        "path":  "sp.*.blockCache.global.summary.numDwRenamesAlerted",
        "type":  3,
        "description":  "Number of Alerted DwRenames on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10274,
        "name":  "Block Cache Peer Hint Reclaimed",
        "path":  "sp.*.blockCache.global.summary.peerHintsReclaimed",
        "type":  3,
        "description":  "Number of Peer Hints Reclaimed on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10276,
        "name":  "Block Cache Peer Hints",
        "path":  "sp.*.blockCache.global.summary.peerHintsUsed",
        "type":  3,
        "description":  "Number of Peer Hints on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10278,
        "name":  "Block Cache Read Hits",
        "path":  "sp.*.blockCache.global.summary.readHits",
        "type":  3,
        "description":  "Number of Read Hits on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10279,
        "name":  "Block Cache Read Hits",
        "path":  "sp.*.blockCache.global.summary.readHitsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of Read Hits on SP",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Hits/s"
    },
    {
        "id":  10280,
        "name":  "Block Cache Read Misses",
        "path":  "sp.*.blockCache.global.summary.readMisses",
        "type":  3,
        "description":  "Number of Read Misses on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10281,
        "name":  "Block Cache Read Misses",
        "path":  "sp.*.blockCache.global.summary.readMissesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of Read Misses on SP",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Misses/s"
    },
    {
        "id":  10282,
        "name":  "Block Cache Times Replacement Track 0",
        "path":  "sp.*.blockCache.global.summary.replacementTrack0Used",
        "type":  3,
        "description":  "Number of times replacement Track 0 was used to hold a Page",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10284,
        "name":  "Block Cache Times Replacement Track 1",
        "path":  "sp.*.blockCache.global.summary.replacementTrack1Used",
        "type":  3,
        "description":  "Number of times replacement Track 1 was used to hold a Page",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10286,
        "name":  "Block Cache Times Replacement Track 2",
        "path":  "sp.*.blockCache.global.summary.replacementTrack2Used",
        "type":  3,
        "description":  "Number of times replacement Track 2 was used to hold a Page",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10288,
        "name":  "Block Cache Times Replacement Track 3",
        "path":  "sp.*.blockCache.global.summary.replacementTrack3Used",
        "type":  3,
        "description":  "Number of times replacement Track 3 was used to hold a Page",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  10290,
        "name":  "Block Cache Request Count Waits",
        "path":  "sp.*.blockCache.global.summary.requestWaits",
        "type":  3,
        "description":  "Number of times a request waiting for resouces on SP in order to complete a request",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Waits"
    },
    {
        "id":  10292,
        "name":  "Block Cache Write Hits",
        "path":  "sp.*.blockCache.global.summary.writeHits",
        "type":  3,
        "description":  "Number of Write Hits on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10293,
        "name":  "Block Cache Write Hits",
        "path":  "sp.*.blockCache.global.summary.writeHitsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of Write Hits on SP",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Hits/s"
    },
    {
        "id":  10294,
        "name":  "Block Cache Write Misses",
        "path":  "sp.*.blockCache.global.summary.writeMisses",
        "type":  3,
        "description":  "Number of Write Misses on SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10295,
        "name":  "Block Cache Write Misses",
        "path":  "sp.*.blockCache.global.summary.writeMissesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of Write Misses on SP",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Misses/s"
    },
    {
        "id":  10299,
        "name":  "Buffer file",
        "path":  "sp.*.cepa.nas.*.pool.*.currentBufferPercent",
        "type":  5,
        "description":  "Percentage of buffer filling (when CEPP servers are offline)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Percent"
    },
    {
        "id":  10301,
        "name":  "Total Requests",
        "path":  "sp.*.cepa.nas.*.pool.*.event.*.totalRequests",
        "type":  3,
        "description":  "Total number of events sent of that type and defined in that event pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10305,
        "name":  "Max",
        "path":  "sp.*.cepa.nas.*.pool.*.server.*.maxTime",
        "type":  5,
        "description":  "Maximum time for this CEPA server to respond to an event",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10306,
        "name":  "Min",
        "path":  "sp.*.cepa.nas.*.pool.*.server.*.minTime",
        "type":  5,
        "description":  "Minimum time for this CEPA server to respond to an event",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10307,
        "name":  "Server requests",
        "path":  "sp.*.cepa.nas.*.pool.*.server.*.percentRequests",
        "type":  5,
        "description":  "Percentage of events sent to that CEPA server out of the total number of events sent from that event pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Percent"
    },
    {
        "id":  10308,
        "name":  "Total Requests",
        "path":  "sp.*.cepa.nas.*.pool.*.server.*.totalRequests",
        "type":  3,
        "description":  "Total number of events sent defined in that event pool and sent to that CEPA server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10310,
        "name":  "Total",
        "path":  "sp.*.cepa.nas.*.pool.*.server.*.totalTime",
        "type":  3,
        "description":  "Total amount of time for this CEPA server to respond to an event",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10312,
        "name":  "Total Missed",
        "path":  "sp.*.cepa.nas.*.pool.*.totalMissed",
        "type":  3,
        "description":  "Total number of unsent events (for any reason) from this NAS server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10314,
        "name":  "Total Requests",
        "path":  "sp.*.cepa.nas.*.pool.*.totalRequests",
        "type":  3,
        "description":  "Total number of events sent from this NAS server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10316,
        "name":  "Total Missed",
        "path":  "sp.*.cepa.nas.*.totalMissed",
        "type":  3,
        "description":  "Total number of unsent events (for any reason) from this NAS server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10318,
        "name":  "Total Requests",
        "path":  "sp.*.cepa.nas.*.totalRequests",
        "type":  3,
        "description":  "Total number of events sent from this NAS server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10320,
        "name":  "Total Missed",
        "path":  "sp.*.cepa.totalMissed",
        "type":  3,
        "description":  "Total number of unsent events (for any reason) for all NAS servers of this SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10322,
        "name":  "Total Requests",
        "path":  "sp.*.cepa.totalRequests",
        "type":  3,
        "description":  "Total number of events sent for all NAS servers of this SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Events"
    },
    {
        "id":  10328,
        "name":  "Transf V1 Hash",
        "path":  "sp.*.cifs.branchcache.basic.V1.hashTransferred",
        "type":  3,
        "description":  "Total size of smbhash transferred to CIFS clients (hash V1)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10330,
        "name":  "V1 Hits",
        "path":  "sp.*.cifs.branchcache.basic.V1.hit",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL hits (hash V1)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10332,
        "name":  "V1 Miss",
        "path":  "sp.*.cifs.branchcache.basic.V1.miss",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL misses (hash V1)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10335,
        "name":  "Transf V2 Hash",
        "path":  "sp.*.cifs.branchcache.basic.V2.hashTransferred",
        "type":  3,
        "description":  "Total size of smbhash transferred to CIFS clients (hash V2)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10337,
        "name":  "V2 Hits",
        "path":  "sp.*.cifs.branchcache.basic.V2.hit",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL hits (hash V2)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10339,
        "name":  "V2 Miss",
        "path":  "sp.*.cifs.branchcache.basic.V2.miss",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL misses (hash V2)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10341,
        "name":  "Filtered",
        "path":  "sp.*.cifs.branchcache.basic.filtered",
        "type":  3,
        "description":  "Number of filtered data files before hash generation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hash Files"
    },
    {
        "id":  10343,
        "name":  "Generated",
        "path":  "sp.*.cifs.branchcache.basic.hashCount",
        "type":  3,
        "description":  "Number of generated smbhash files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hash Files"
    },
    {
        "id":  10345,
        "name":  "Fail",
        "path":  "sp.*.cifs.branchcache.basic.hashError",
        "type":  3,
        "description":  "Number of smbhash generation failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hash Files"
    },
    {
        "id":  10347,
        "name":  "Hash Files",
        "path":  "sp.*.cifs.branchcache.basic.hashSize",
        "type":  3,
        "description":  "Total size of the generated smbhash files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10349,
        "name":  "Transf Hash",
        "path":  "sp.*.cifs.branchcache.basic.hashTransferred",
        "type":  3,
        "description":  "Total size of smbhash transferred to CIFS clients (any hash version)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10351,
        "name":  "Hits",
        "path":  "sp.*.cifs.branchcache.basic.hit",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL hits (any hash version)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10353,
        "name":  "Miss",
        "path":  "sp.*.cifs.branchcache.basic.miss",
        "type":  3,
        "description":  "Number of READ_HASH IOCTL misses (any hash version)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Req"
    },
    {
        "id":  10355,
        "name":  "Queued",
        "path":  "sp.*.cifs.branchcache.basic.taskQueued",
        "type":  5,
        "description":  "Number of queued tasks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Tasks"
    },
    {
        "id":  10356,
        "name":  "Running",
        "path":  "sp.*.cifs.branchcache.basic.taskRunning",
        "type":  5,
        "description":  "Number of running tasks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Tasks"
    },
    {
        "id":  10358,
        "name":  "Avg Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashSizeAvg",
        "type":  5,
        "description":  "Average size of generated smbhash files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10359,
        "name":  "Max Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashSizeMax",
        "type":  5,
        "description":  "Maximum size of generated smbhash files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10360,
        "name":  "Min Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashSizeMin",
        "type":  5,
        "description":  "Minimum size of generated smbhash files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10361,
        "name":  "Avg Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashTimeAvg",
        "type":  5,
        "description":  "Average laps of time to generate a smbhash file",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ms"
    },
    {
        "id":  10362,
        "name":  "Max Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashTimeMax",
        "type":  5,
        "description":  "Maximum laps of time to generate a smbhash file",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ms"
    },
    {
        "id":  10363,
        "name":  "Min Hash Files",
        "path":  "sp.*.cifs.branchcache.usage.hashTimeMin",
        "type":  5,
        "description":  "Minimum laps of time to generate a smbhash file",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ms"
    },
    {
        "id":  10364,
        "name":  "Max",
        "path":  "sp.*.cifs.branchcache.usage.maxUsedThread",
        "type":  5,
        "description":  "Max number of active threads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  10365,
        "name":  "Count",
        "path":  "sp.*.cifs.branchcache.usage.taskCount",
        "type":  5,
        "description":  "Total number of submitted tasks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Tasks"
    },
    {
        "id":  10366,
        "name":  "Rejected",
        "path":  "sp.*.cifs.branchcache.usage.taskQueueFull",
        "type":  5,
        "description":  "Number of rejected tasks due to a full queue",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Tasks"
    },
    {
        "id":  10368,
        "name":  "CIFS connections",
        "path":  "sp.*.cifs.clientOS.*.connections",
        "type":  3,
        "description":  "total number of connections from this OS",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10372,
        "name":  "Aborted",
        "path":  "sp.*.cifs.fssc.shadowCopy.aborted",
        "type":  5,
        "description":  "Number of aborted shadow copy",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10373,
        "name":  "Commit Failure",
        "path":  "sp.*.cifs.fssc.shadowCopy.commitFailure",
        "type":  5,
        "description":  "Number of shadow copy commit failure",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10374,
        "name":  "Commit Success",
        "path":  "sp.*.cifs.fssc.shadowCopy.commitSuccess",
        "type":  5,
        "description":  "Number of shadow copy committed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10375,
        "name":  "Created",
        "path":  "sp.*.cifs.fssc.shadowCopy.created",
        "type":  5,
        "description":  "Number of shadow copies",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10376,
        "name":  "Expose Failure",
        "path":  "sp.*.cifs.fssc.shadowCopy.exposeFailure",
        "type":  5,
        "description":  "Number of shadow copy exposure failure",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10377,
        "name":  "Expose Success",
        "path":  "sp.*.cifs.fssc.shadowCopy.exposeSuccess",
        "type":  5,
        "description":  "Number of shadow copy exposed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SC"
    },
    {
        "id":  10379,
        "name":  "Aborted",
        "path":  "sp.*.cifs.fssc.shadowCopySet.aborted",
        "type":  5,
        "description":  "Number of aborted shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10380,
        "name":  "Commit Failure",
        "path":  "sp.*.cifs.fssc.shadowCopySet.commitFailure",
        "type":  5,
        "description":  "Number of shadow copy sets commit failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10381,
        "name":  "Commit Success",
        "path":  "sp.*.cifs.fssc.shadowCopySet.commitSuccess",
        "type":  5,
        "description":  "Number of shadow copy sets committed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10382,
        "name":  "Created",
        "path":  "sp.*.cifs.fssc.shadowCopySet.created",
        "type":  5,
        "description":  "Number of shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10383,
        "name":  "Expose Failure",
        "path":  "sp.*.cifs.fssc.shadowCopySet.exposeFailure",
        "type":  5,
        "description":  "Number of shadow copy sets exposure failure",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10384,
        "name":  "Expose Success",
        "path":  "sp.*.cifs.fssc.shadowCopySet.exposeSuccess",
        "type":  5,
        "description":  "Number of shadow copy sets exposed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10385,
        "name":  "Permanent",
        "path":  "sp.*.cifs.fssc.shadowCopySet.permanent",
        "type":  5,
        "description":  "Number of permanant shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10386,
        "name":  "ReadOnly",
        "path":  "sp.*.cifs.fssc.shadowCopySet.readonly",
        "type":  5,
        "description":  "Number of read only shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10387,
        "name":  "Volatile",
        "path":  "sp.*.cifs.fssc.shadowCopySet.volatile",
        "type":  5,
        "description":  "Number of volatile shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10388,
        "name":  "Writable",
        "path":  "sp.*.cifs.fssc.shadowCopySet.writable",
        "type":  5,
        "description":  "Number of writable shadow copy sets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "SCS"
    },
    {
        "id":  10391,
        "name":  "CIFS Avg Read Size",
        "path":  "sp.*.cifs.global.basic.readAvgSize",
        "type":  5,
        "description":  "Average read size",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  10392,
        "name":  "CIFS Read",
        "path":  "sp.*.cifs.global.basic.readBytes",
        "type":  3,
        "description":  "Number of bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10393,
        "name":  "CIFS Read",
        "path":  "sp.*.cifs.global.basic.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  10394,
        "name":  "CIFS Read",
        "path":  "sp.*.cifs.global.basic.reads",
        "type":  3,
        "description":  "Number of read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10395,
        "name":  "CIFS Read",
        "path":  "sp.*.cifs.global.basic.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of read operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  10396,
        "name":  "CIFS Total",
        "path":  "sp.*.cifs.global.basic.totalCalls",
        "type":  3,
        "description":  "Total number of operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10397,
        "name":  "CIFS Total",
        "path":  "sp.*.cifs.global.basic.totalCallsRate",
        "type":  4,
        "description":  "Rate for raw metric: Total number of operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  10398,
        "name":  "CIFS Avg Write Size",
        "path":  "sp.*.cifs.global.basic.writeAvgSize",
        "type":  5,
        "description":  "Average write size",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  10399,
        "name":  "CIFS Write",
        "path":  "sp.*.cifs.global.basic.writeBytes",
        "type":  3,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10400,
        "name":  "CIFS Write",
        "path":  "sp.*.cifs.global.basic.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes written",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  10401,
        "name":  "CIFS Write",
        "path":  "sp.*.cifs.global.basic.writes",
        "type":  3,
        "description":  "Number of write operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10402,
        "name":  "CIFS Write",
        "path":  "sp.*.cifs.global.basic.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of write operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  10404,
        "name":  "CIFS Share",
        "path":  "sp.*.cifs.global.usage.currentConnections",
        "type":  5,
        "description":  "Number of active connections to shared folders",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10405,
        "name":  "CIFS Open",
        "path":  "sp.*.cifs.global.usage.currentOpenFiles",
        "type":  5,
        "description":  "Number of currently opened files",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Files"
    },
    {
        "id":  10412,
        "name":  "SMB1 Read",
        "path":  "sp.*.cifs.smb1.basic.readBytes",
        "type":  3,
        "description":  "Number of bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10414,
        "name":  "SMB1 Read",
        "path":  "sp.*.cifs.smb1.basic.reads",
        "type":  3,
        "description":  "Number of read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10416,
        "name":  "SMB1 Total",
        "path":  "sp.*.cifs.smb1.basic.totalCalls",
        "type":  3,
        "description":  "Total number of operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10419,
        "name":  "SMB1 Write",
        "path":  "sp.*.cifs.smb1.basic.writeBytes",
        "type":  3,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10421,
        "name":  "SMB1 Write",
        "path":  "sp.*.cifs.smb1.basic.writes",
        "type":  3,
        "description":  "Number of write operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10426,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb1.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10428,
        "name":  "Max",
        "path":  "sp.*.cifs.smb1.op.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10429,
        "name":  "Min",
        "path":  "sp.*.cifs.smb1.op.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10431,
        "name":  "Total",
        "path":  "sp.*.cifs.smb1.op.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10433,
        "name":  "Total SMB1",
        "path":  "sp.*.cifs.smb1.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all the SMB1 operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10437,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb1.trans2.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10439,
        "name":  "Max",
        "path":  "sp.*.cifs.smb1.trans2.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10440,
        "name":  "Min",
        "path":  "sp.*.cifs.smb1.trans2.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10441,
        "name":  "Total",
        "path":  "sp.*.cifs.smb1.trans2.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10443,
        "name":  "Total Trans2",
        "path":  "sp.*.cifs.smb1.trans2TotalCalls",
        "type":  8,
        "description":  "Total number of calls of all the Trans2 operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10447,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb1.transNT.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10449,
        "name":  "Max",
        "path":  "sp.*.cifs.smb1.transNT.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10450,
        "name":  "Min",
        "path":  "sp.*.cifs.smb1.transNT.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10451,
        "name":  "Total",
        "path":  "sp.*.cifs.smb1.transNT.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10453,
        "name":  "Total TransNT",
        "path":  "sp.*.cifs.smb1.transNTTotalCalls",
        "type":  8,
        "description":  "Total number of calls of all the TransNT operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10456,
        "name":  "SMB1 Share",
        "path":  "sp.*.cifs.smb1.usage.currentConnections",
        "type":  5,
        "description":  "Number of current SMB1 connections to shared folders",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10457,
        "name":  "SMB1 Open",
        "path":  "sp.*.cifs.smb1.usage.currentOpenFiles",
        "type":  5,
        "description":  "Number of currently SMB1 opened files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  10458,
        "name":  "SMB1 TCP",
        "path":  "sp.*.cifs.smb1.usage.currentTcpConnections",
        "type":  5,
        "description":  "Number of currently opened streams",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10459,
        "name":  "SMB1 Active",
        "path":  "sp.*.cifs.smb1.usage.currentThreads",
        "type":  5,
        "description":  "Number of SMB1 active threads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  10460,
        "name":  "SMB1",
        "path":  "sp.*.cifs.smb1.usage.currentUsers",
        "type":  5,
        "description":  "Number of SMB1 currently connected users",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Users"
    },
    {
        "id":  10464,
        "name":  "SMB2 Read",
        "path":  "sp.*.cifs.smb2.basic.readBytes",
        "type":  3,
        "description":  "Number of bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10466,
        "name":  "SMB2 Read",
        "path":  "sp.*.cifs.smb2.basic.reads",
        "type":  3,
        "description":  "Number of read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10468,
        "name":  "SMB2 Total",
        "path":  "sp.*.cifs.smb2.basic.totalCalls",
        "type":  3,
        "description":  "Total number of operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10471,
        "name":  "SMB2 Write",
        "path":  "sp.*.cifs.smb2.basic.writeBytes",
        "type":  3,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10473,
        "name":  "SMB2 Write",
        "path":  "sp.*.cifs.smb2.basic.writes",
        "type":  3,
        "description":  "Number of write operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10476,
        "name":  "Encrypted",
        "path":  "sp.*.cifs.smb2.encryption.calls",
        "type":  3,
        "description":  "Number of encrypted requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  10478,
        "name":  "Decrypted",
        "path":  "sp.*.cifs.smb2.encryption.decryptedBytes",
        "type":  3,
        "description":  "Number of decrypted bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10480,
        "name":  "Encrypted",
        "path":  "sp.*.cifs.smb2.encryption.encryptedBytes",
        "type":  3,
        "description":  "Number of encrypted bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10483,
        "name":  "Fails",
        "path":  "sp.*.cifs.smb2.feature.dhReconnectFailures",
        "type":  5,
        "description":  "Number of durable handle reconnections failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "DH Reconnect"
    },
    {
        "id":  10484,
        "name":  "Success",
        "path":  "sp.*.cifs.smb2.feature.dhReconnectSuccess",
        "type":  5,
        "description":  "Number of durable handle successful reconnections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "DH Reconnect"
    },
    {
        "id":  10485,
        "name":  "Reached",
        "path":  "sp.*.cifs.smb2.feature.maxAsynchronousCredits",
        "type":  5,
        "description":  "Number of time the maximum of asynchronous credit limit was reached",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Max Async Credits"
    },
    {
        "id":  10486,
        "name":  "Bound",
        "path":  "sp.*.cifs.smb2.feature.sessionBinding",
        "type":  5,
        "description":  "Number of SMB3 sessions successfully bound",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Sessions"
    },
    {
        "id":  10489,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb2.ioctl.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10491,
        "name":  "Max",
        "path":  "sp.*.cifs.smb2.ioctl.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10492,
        "name":  "Min",
        "path":  "sp.*.cifs.smb2.ioctl.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10493,
        "name":  "Total",
        "path":  "sp.*.cifs.smb2.ioctl.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10495,
        "name":  "Total Ioctl",
        "path":  "sp.*.cifs.smb2.ioctlTotalCalls",
        "type":  8,
        "description":  "Total number of calls of all the IOCTL operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10500,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb2.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10502,
        "name":  "Max",
        "path":  "sp.*.cifs.smb2.op.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10503,
        "name":  "Min",
        "path":  "sp.*.cifs.smb2.op.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10505,
        "name":  "Total",
        "path":  "sp.*.cifs.smb2.op.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10509,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb2.queryInfo.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10511,
        "name":  "Max",
        "path":  "sp.*.cifs.smb2.queryInfo.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10512,
        "name":  "Min",
        "path":  "sp.*.cifs.smb2.queryInfo.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10513,
        "name":  "Total",
        "path":  "sp.*.cifs.smb2.queryInfo.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10515,
        "name":  "Total queryInfo",
        "path":  "sp.*.cifs.smb2.queryInfoTotalCalls",
        "type":  8,
        "description":  "Total number of calls of all the queryInfo operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10519,
        "name":  "Op Calls",
        "path":  "sp.*.cifs.smb2.setInfo.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10521,
        "name":  "Max",
        "path":  "sp.*.cifs.smb2.setInfo.*.maxTime",
        "type":  5,
        "description":  "Maximum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10522,
        "name":  "Min",
        "path":  "sp.*.cifs.smb2.setInfo.*.minTime",
        "type":  5,
        "description":  "Minimum time microseconds per call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10523,
        "name":  "Total",
        "path":  "sp.*.cifs.smb2.setInfo.*.totalTime",
        "type":  3,
        "description":  "Total microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  10525,
        "name":  "Total setInfo",
        "path":  "sp.*.cifs.smb2.setInfoTotalCalls",
        "type":  8,
        "description":  "Total number of calls of all the setInfo operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10527,
        "name":  "Total SMB2",
        "path":  "sp.*.cifs.smb2.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all the SMB2 operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10530,
        "name":  "SMB2 Share",
        "path":  "sp.*.cifs.smb2.usage.currentConnections",
        "type":  5,
        "description":  "Number of current SMB2 connections to shared folders",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10531,
        "name":  "SMB2 Open",
        "path":  "sp.*.cifs.smb2.usage.currentOpenFiles",
        "type":  5,
        "description":  "Number of currently SMB2 opened files",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  10532,
        "name":  "SMB2 TCP",
        "path":  "sp.*.cifs.smb2.usage.currentTcpConnections",
        "type":  5,
        "description":  "Number of currently opened streams",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10533,
        "name":  "SMB2 Active",
        "path":  "sp.*.cifs.smb2.usage.currentThreads",
        "type":  5,
        "description":  "Number of SMB2 active threads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  10534,
        "name":  "SMB2",
        "path":  "sp.*.cifs.smb2.usage.currentUsers",
        "type":  5,
        "description":  "Number of SMB2 currently connected users",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Users"
    },
    {
        "id":  10537,
        "name":  "hhmmss",
        "path":  "sp.*.cpu.clock.hhmmss",
        "type":  6,
        "description":  "The GMT time in HH:MM:SS format",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Label"
    },
    {
        "id":  10538,
        "name":  "Ticks Per Microsecond",
        "path":  "sp.*.cpu.clock.ticksPerUsec",
        "type":  5,
        "description":  "The number of system clock ticks per microsecond",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10539,
        "name":  "Unix",
        "path":  "sp.*.cpu.clock.unix",
        "type":  5,
        "description":  "Time measured in seconds since the Unix Epoch (1/1/1970 00:00:00 GMT)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  10540,
        "name":  "Unix",
        "path":  "sp.*.cpu.clock.unixms",
        "type":  5,
        "description":  "Time measured in milliseconds since the Unix Epoch (1/1/1970 00:00:00 GMT)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Milliseconds"
    },
    {
        "id":  10542,
        "name":  "CPU busy time",
        "path":  "sp.*.cpu.core.*.busyTicks",
        "type":  3,
        "description":  "SP per core busy ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ticks"
    },
    {
        "id":  10543,
        "name":  "CPU idle time",
        "path":  "sp.*.cpu.core.*.idleTicks",
        "type":  3,
        "description":  "SP per core idle ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ticks"
    },
    {
        "id":  10546,
        "name":  "CPU I/O wait time",
        "path":  "sp.*.cpu.core.*.waitTicks",
        "type":  3,
        "description":  "SP per core I/O wait ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ticks"
    },
    {
        "id":  10548,
        "name":  "summary CPU busy time",
        "path":  "sp.*.cpu.summary.busyTicks",
        "type":  3,
        "description":  "SP CPU busy ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ticks"
    },
    {
        "id":  10549,
        "name":  "summary CPU context switches",
        "path":  "sp.*.cpu.summary.contextSwitches",
        "type":  3,
        "description":  "SP CPU number of context switches since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10550,
        "name":  "summary CPU idle time",
        "path":  "sp.*.cpu.summary.idleTicks",
        "type":  3,
        "description":  "SP CPU idle ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ticks"
    },
    {
        "id":  10551,
        "name":  "summary CPU interrupts",
        "path":  "sp.*.cpu.summary.interrupts",
        "type":  3,
        "description":  "SP CPU interrupts since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10552,
        "name":  "summary Running processes",
        "path":  "sp.*.cpu.summary.runningProcesses",
        "type":  5,
        "description":  "SP Number of running processes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10554,
        "name":  "summary CPU Util",
        "path":  "sp.*.cpu.summary.utilization",
        "type":  5,
        "description":  "SP CPU Utilization",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "%"
    },
    {
        "id":  10555,
        "name":  "summary CPU I/O wait time",
        "path":  "sp.*.cpu.summary.waitTicks",
        "type":  3,
        "description":  "SP CPU I/O wait ticks since last boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ticks"
    },
    {
        "id":  10556,
        "name":  "Uptime",
        "path":  "sp.*.cpu.uptime",
        "type":  5,
        "description":  "Time since boot up in seconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  10559,
        "name":  "AbortBulkRetreival",
        "path":  "sp.*.dhsm.api.abortBulkRetreival",
        "type":  3,
        "description":  "Count of AbortBulkRetreival operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10560,
        "name":  "Failed AbortBulkRetreival",
        "path":  "sp.*.dhsm.api.abortBulkRetreivalFail",
        "type":  3,
        "description":  "Count of AbortBulkRetreival operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10563,
        "name":  "CloneFile",
        "path":  "sp.*.dhsm.api.cloneFile",
        "type":  3,
        "description":  "Count of CloneFile operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10564,
        "name":  "Failed CloneFile",
        "path":  "sp.*.dhsm.api.cloneFileFail",
        "type":  3,
        "description":  "Count of CloneFile operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10567,
        "name":  "CloneQuery",
        "path":  "sp.*.dhsm.api.cloneQuery",
        "type":  3,
        "description":  "Count of CloneQuery operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10568,
        "name":  "Failed CloneQuery",
        "path":  "sp.*.dhsm.api.cloneQueryFail",
        "type":  3,
        "description":  "Count of CloneQuery operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10571,
        "name":  "GetApiAttrs",
        "path":  "sp.*.dhsm.api.getApiAttrs",
        "type":  3,
        "description":  "Count of GetApiAttrs operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10573,
        "name":  "GetAttrs",
        "path":  "sp.*.dhsm.api.getAttrs",
        "type":  3,
        "description":  "Count of GetAttrs operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10574,
        "name":  "Failed GetAttrs",
        "path":  "sp.*.dhsm.api.getAttrsFail",
        "type":  3,
        "description":  "Count of GetAttrs operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10577,
        "name":  "GetBulkAttrs",
        "path":  "sp.*.dhsm.api.getBulkAttrs",
        "type":  3,
        "description":  "Count of GetBulkAttrs operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10578,
        "name":  "Failed GetBulkAttrs",
        "path":  "sp.*.dhsm.api.getBulkAttrsFail",
        "type":  3,
        "description":  "Count of GetBulkAttrs operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10581,
        "name":  "GetConnectionList",
        "path":  "sp.*.dhsm.api.getConnectionList",
        "type":  3,
        "description":  "Count of GetConnectionList operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10582,
        "name":  "Failed GetConnectionList",
        "path":  "sp.*.dhsm.api.getConnectionListFail",
        "type":  3,
        "description":  "Count of GetConnectionList operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10585,
        "name":  "QueryBulkRetrieval",
        "path":  "sp.*.dhsm.api.queryBulkRetrieval",
        "type":  3,
        "description":  "Count of QueryBulkRetrieval operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10586,
        "name":  "Failed QueryBulkRetrieval",
        "path":  "sp.*.dhsm.api.queryBulkRetrievalFail",
        "type":  3,
        "description":  "Count of QueryBulkRetrieval operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10589,
        "name":  "SetOfflineAttrs",
        "path":  "sp.*.dhsm.api.setOfflineAttrs",
        "type":  3,
        "description":  "Count of SetOfflineAttrs operations processed successfully",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10590,
        "name":  "Failed SetOfflineAttrs",
        "path":  "sp.*.dhsm.api.setOfflineAttrsFail",
        "type":  3,
        "description":  "Count of SetOfflineAttrs operations that failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10593,
        "name":  "Failed Create",
        "path":  "sp.*.dhsm.createConnectionFail",
        "type":  3,
        "description":  "Count of connection create failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10595,
        "name":  "Current Count Of DHSM",
        "path":  "sp.*.dhsm.totalConnections",
        "type":  5,
        "description":  "Total count of current DHSM connections for all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  10596,
        "name":  "Migrated",
        "path":  "sp.*.dhsm.totalFilesMigrated",
        "type":  3,
        "description":  "Count of files that have been migrated to secondary storage",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  10598,
        "name":  "Recalled",
        "path":  "sp.*.dhsm.totalFilesRecalled",
        "type":  3,
        "description":  "Count of files that have been recalled from secondary storage",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  10601,
        "name":  "Block Size",
        "path":  "sp.*.fastCache.blockSize",
        "type":  3,
        "description":  "Block Size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "bytes"
    },
    {
        "id":  10606,
        "name":  "Blocks Written Through",
        "path":  "sp.*.fastCache.volume.*.blocksWrittenThrough",
        "type":  3,
        "description":  "Number of 512 byte blocks written through the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10610,
        "name":  "Clean Blocks Evicted",
        "path":  "sp.*.fastCache.volume.*.cleanBlocksEvicted",
        "type":  3,
        "description":  "Number of clean 512 byte blocks evicted from the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10614,
        "name":  "Clean elements evicted",
        "path":  "sp.*.fastCache.volume.*.cleanElementsEvicted",
        "type":  3,
        "description":  "Number of clean 64KB cache elements evicted from the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10616,
        "name":  "Device Blocks Cleaned",
        "path":  "sp.*.fastCache.volume.*.deviceBlocksCleaned",
        "type":  3,
        "description":  "Number of bocks cleaned by device cleaning for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10620,
        "name":  "Device cleans",
        "path":  "sp.*.fastCache.volume.*.deviceElementsCleaned",
        "type":  3,
        "description":  "Number of 64KB cache elements cleaned by device cleaning for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10622,
        "name":  "Local device flush lock collisions",
        "path":  "sp.*.fastCache.volume.*.deviceFlushLockCollisionsLocal",
        "type":  3,
        "description":  "Number of lock collisions for this volume on the local device flush lock",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10624,
        "name":  "Peer device flush lock collisions",
        "path":  "sp.*.fastCache.volume.*.deviceFlushLockCollisionsPeer",
        "type":  3,
        "description":  "Number of lock collisions for this volume on the peer device flush lock",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10626,
        "name":  "Directory updates",
        "path":  "sp.*.fastCache.volume.*.directoryUpdates",
        "type":  3,
        "description":  "Directory updates for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10628,
        "name":  "Dirty Blocks Evicted",
        "path":  "sp.*.fastCache.volume.*.dirtyBlocksEvicted",
        "type":  3,
        "description":  "Number of dirty 512 byte blocks evicted from the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10632,
        "name":  "Dirty Elements",
        "path":  "sp.*.fastCache.volume.*.dirtyElements",
        "type":  5,
        "description":  "Current number of dirty 64KB cache elements held by this volume.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10633,
        "name":  "Dirty elements evicted",
        "path":  "sp.*.fastCache.volume.*.dirtyElementsEvicted",
        "type":  3,
        "description":  "Number of dirty 64KB cache elements evicted from the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10635,
        "name":  "Dirty read",
        "path":  "sp.*.fastCache.volume.*.dirtyReadHits",
        "type":  3,
        "description":  "Dirty read hits for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10639,
        "name":  "Bypassed Reads",
        "path":  "sp.*.fastCache.volume.*.flashBypassedReads",
        "type":  3,
        "description":  "Number of cache hits that were redirected to HDDs by OAM for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10641,
        "name":  "Flash blocks read",
        "path":  "sp.*.fastCache.volume.*.flashReadBlocks",
        "type":  3,
        "description":  "Flash 512 byte blocks read from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10645,
        "name":  "Flash reads",
        "path":  "sp.*.fastCache.volume.*.flashReads",
        "type":  3,
        "description":  "Flash reads from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10647,
        "name":  "Flash blocks written",
        "path":  "sp.*.fastCache.volume.*.flashWriteBlocks",
        "type":  3,
        "description":  "Flash 512 byte blocks written to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10651,
        "name":  "Flash Writes",
        "path":  "sp.*.fastCache.volume.*.flashWrites",
        "type":  3,
        "description":  "Flash writes to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10653,
        "name":  "Forced Flushes",
        "path":  "sp.*.fastCache.volume.*.forceFlushed",
        "type":  3,
        "description":  "Number of 64KB cache elements flushed from the cache by forced flushing on this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10655,
        "name":  "HDD blocks read",
        "path":  "sp.*.fastCache.volume.*.hddReadBlocks",
        "type":  3,
        "description":  "HDD 512 byte blocks read from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10659,
        "name":  "HDD reads",
        "path":  "sp.*.fastCache.volume.*.hddReads",
        "type":  3,
        "description":  "HDD reads from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10661,
        "name":  "HDD blocks written",
        "path":  "sp.*.fastCache.volume.*.hddWriteBlocks",
        "type":  3,
        "description":  "HDD 512 byte blocks written to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10665,
        "name":  "Hdd Writes",
        "path":  "sp.*.fastCache.volume.*.hddWrites",
        "type":  3,
        "description":  "HDD writes to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10667,
        "name":  "Blocks idle cleaned",
        "path":  "sp.*.fastCache.volume.*.idleBlocksCleaned",
        "type":  3,
        "description":  "Number of 512 byte blocks cleaned by the idle cleaner for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10671,
        "name":  "Idle clean Failures",
        "path":  "sp.*.fastCache.volume.*.idleCleanFailed",
        "type":  3,
        "description":  "Number of failed idle cleans for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10673,
        "name":  "Idle cleans",
        "path":  "sp.*.fastCache.volume.*.idleElementsCleaned",
        "type":  3,
        "description":  "Number of 64KB cache elements cleaned by the idle cleaner for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10675,
        "name":  "Aborted Idle Flushes",
        "path":  "sp.*.fastCache.volume.*.idleFlushesAborted",
        "type":  3,
        "description":  "Number of idle flushes that were aborted for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10677,
        "name":  "Lock Collisions",
        "path":  "sp.*.fastCache.volume.*.lockCollisions",
        "type":  3,
        "description":  "Number of lock collisions for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10680,
        "name":  "Pvt Cleaned blocks",
        "path":  "sp.*.fastCache.volume.*.privateBlocksCleaned",
        "type":  3,
        "description":  "Number of 512 byte blocks cleaned for this volume, excluding dirty device evictions.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10682,
        "name":  "Pvt Cleaned Elements",
        "path":  "sp.*.fastCache.volume.*.privateElementsCleaned",
        "type":  3,
        "description":  "Number of 64KB cache elements cleaned for this volume, excluding dirty device evictions.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10684,
        "name":  "Promoted Blocks",
        "path":  "sp.*.fastCache.volume.*.promotedBlocks",
        "type":  3,
        "description":  "Total number of 512 byte blocks promoted by this volume since its creation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10686,
        "name":  "Promoted Elements",
        "path":  "sp.*.fastCache.volume.*.promotedElements",
        "type":  3,
        "description":  "Total number of 64KB cache elements promoted by this volume since its creation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10688,
        "name":  "Promoted Elements This SP",
        "path":  "sp.*.fastCache.volume.*.promotedElementsThisSP",
        "type":  5,
        "description":  "Total number of 64KB cache elements promoted by this volume since its creation, for this SP",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10689,
        "name":  "Aborted Promotions",
        "path":  "sp.*.fastCache.volume.*.promotesAborted",
        "type":  3,
        "description":  "Number of aborted promotions for this volume. Promotions can abort if a new incoming promotion overwrites an older promotion waiting in the queue.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10691,
        "name":  "Failed Promotions",
        "path":  "sp.*.fastCache.volume.*.promotesFailed",
        "type":  3,
        "description":  "Number of failed promotions for this volume. Promotions can fail if we complete a promote transaction without ever entering the promotion state machine",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10693,
        "name":  "Rejected Promotions",
        "path":  "sp.*.fastCache.volume.*.promotesRejected",
        "type":  3,
        "description":  "Number of rejected promotions for this volume. Promotions can be rejected if a promotion transaction is built, but we find that promotion for the cache as a whole has been disabled by the state machine.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10695,
        "name":  "Blocks read",
        "path":  "sp.*.fastCache.volume.*.readBlocks",
        "type":  3,
        "description":  "512-byte blocks read from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10700,
        "name":  "Read",
        "path":  "sp.*.fastCache.volume.*.readHits",
        "type":  3,
        "description":  "Read hits for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10702,
        "name":  "Read",
        "path":  "sp.*.fastCache.volume.*.readMisses",
        "type":  3,
        "description":  "Read misses for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10704,
        "name":  "Reads",
        "path":  "sp.*.fastCache.volume.*.reads",
        "type":  3,
        "description":  "Reads from this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10706,
        "name":  "Sync Operations",
        "path":  "sp.*.fastCache.volume.*.syncOps",
        "type":  3,
        "description":  "Number of completed sync operations for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10708,
        "name":  "Total Flushes",
        "path":  "sp.*.fastCache.volume.*.totalFlushed",
        "type":  5,
        "description":  "Number of 64KB cache elements flushed from the cache by idle flushing on this volume (this process occurs when the cache is destroyed)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10714,
        "name":  "Total Promotes Aborted",
        "path":  "sp.*.fastCache.volume.*.totalPromotesAborted",
        "type":  8,
        "description":  "Total incomplete or failed promotions for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "units"
    },
    {
        "id":  10722,
        "name":  "Valid Elements",
        "path":  "sp.*.fastCache.volume.*.validElements",
        "type":  5,
        "description":  "Total number of valid 64KB elements for this volume",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "units"
    },
    {
        "id":  10723,
        "name":  "Blocks written",
        "path":  "sp.*.fastCache.volume.*.writeBlocks",
        "type":  3,
        "description":  "512-byte blocks written to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10728,
        "name":  "Write",
        "path":  "sp.*.fastCache.volume.*.writeHits",
        "type":  3,
        "description":  "Write hits for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  10730,
        "name":  "Write",
        "path":  "sp.*.fastCache.volume.*.writeMisses",
        "type":  3,
        "description":  "Write misses for this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  10732,
        "name":  "Write-throughs",
        "path":  "sp.*.fastCache.volume.*.writeThroughs",
        "type":  3,
        "description":  "Number of IOs written through the cache for this volume.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10734,
        "name":  "Writes",
        "path":  "sp.*.fastCache.volume.*.writes",
        "type":  3,
        "description":  "Writes to this volume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10737,
        "name":  "Block Size",
        "path":  "sp.*.fibreChannel.blockSize",
        "type":  5,
        "description":  "Block Size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  10739,
        "name":  "Read",
        "path":  "sp.*.fibreChannel.fePort.*.readBlocks",
        "type":  3,
        "description":  "Blocks read from this FC port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10742,
        "name":  "Read",
        "path":  "sp.*.fibreChannel.fePort.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read from this FC Port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  10743,
        "name":  "Read",
        "path":  "sp.*.fibreChannel.fePort.*.reads",
        "type":  3,
        "description":  "Reads from this FC port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  10744,
        "name":  "Read",
        "path":  "sp.*.fibreChannel.fePort.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Reads from this FC port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  10749,
        "name":  "Written",
        "path":  "sp.*.fibreChannel.fePort.*.writeBlocks",
        "type":  3,
        "description":  "Blocks written to this FC port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  10752,
        "name":  "Written",
        "path":  "sp.*.fibreChannel.fePort.*.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes written to this FC Port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  10753,
        "name":  "Write",
        "path":  "sp.*.fibreChannel.fePort.*.writes",
        "type":  3,
        "description":  "Writes to this FC port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  10754,
        "name":  "Write",
        "path":  "sp.*.fibreChannel.fePort.*.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Writes to this FC port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  10757,
        "name":  "FS Deferred Delete",
        "path":  "sp.*.fs.asyncio.deletesDeferred",
        "type":  3,
        "description":  "Total deferred file deletes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10759,
        "name":  "FS Pending Delete",
        "path":  "sp.*.fs.asyncio.deletesPending",
        "type":  5,
        "description":  "Pending file deletes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10760,
        "name":  "FS Deferred Write",
        "path":  "sp.*.fs.asyncio.writesDeferred",
        "type":  3,
        "description":  "Total deferred data writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10762,
        "name":  "FS Pending Write",
        "path":  "sp.*.fs.asyncio.writesPending",
        "type":  5,
        "description":  "Pending data writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10763,
        "name":  "FS Saved Write",
        "path":  "sp.*.fs.asyncio.writesSaved",
        "type":  3,
        "description":  "Total saved data writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10766,
        "name":  "FS Deferred Delete",
        "path":  "sp.*.fs.bgfileop.abortAsyncDeletes",
        "type":  3,
        "description":  "Total stopped async file deletes since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10768,
        "name":  "FS Deferred Truncate",
        "path":  "sp.*.fs.bgfileop.abortAsyncTruncates",
        "type":  3,
        "description":  "Total stopped async file truncates since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10770,
        "name":  "FS Active Truncate/Delete",
        "path":  "sp.*.fs.bgfileop.activeAsyncOperations",
        "type":  5,
        "description":  "Active file truncates/deletes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10771,
        "name":  "FS Deferred Delete",
        "path":  "sp.*.fs.bgfileop.deferredDeletes",
        "type":  3,
        "description":  "Total new async file deletes since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10773,
        "name":  "FS Deferred Truncate",
        "path":  "sp.*.fs.bgfileop.deferredTruncates",
        "type":  3,
        "description":  "Total new async file truncates since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10775,
        "name":  "FS Deferred Delete",
        "path":  "sp.*.fs.bgfileop.doneAsyncDeletes",
        "type":  3,
        "description":  "Total completed async file deletes since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10777,
        "name":  "FS Deferred Truncate",
        "path":  "sp.*.fs.bgfileop.doneAsyncTruncates",
        "type":  3,
        "description":  "Total completed async file truncates since last stat reset",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10782,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.block.ufs.log.activeDescriptors",
        "type":  5,
        "description":  "Number of active descriptors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Descriptors"
    },
    {
        "id":  10783,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.block.ufs.log.activeHolds",
        "type":  5,
        "description":  "Number of active log holds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Log Holds"
    },
    {
        "id":  10784,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.block.ufs.log.activeSize",
        "type":  5,
        "description":  "Size of active log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Sectors"
    },
    {
        "id":  10785,
        "name":  "UFS Log Blocked",
        "path":  "sp.*.fs.block.ufs.log.blockedForFlush",
        "type":  3,
        "description":  "Number of times blocked for log flush",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10787,
        "name":  "UFS Log Written",
        "path":  "sp.*.fs.block.ufs.log.bytesWritten",
        "type":  3,
        "description":  "Number of bytes written to log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10789,
        "name":  "UFS Log Duplicate",
        "path":  "sp.*.fs.block.ufs.log.duplicateObjects",
        "type":  3,
        "description":  "Number of duplicate objects in log records",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  10791,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.block.ufs.log.peakActiveDescriptors",
        "type":  5,
        "description":  "Peak number of active descriptors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Descriptors"
    },
    {
        "id":  10792,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.block.ufs.log.peakActiveHolds",
        "type":  5,
        "description":  "Peak number of active log holds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Log Holds"
    },
    {
        "id":  10793,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.block.ufs.log.peakActiveSize",
        "type":  5,
        "description":  "Peak size of active log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Sectors"
    },
    {
        "id":  10794,
        "name":  "UFS Log Written",
        "path":  "sp.*.fs.block.ufs.log.recordsWritten",
        "type":  3,
        "description":  "Number of records written to log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Records"
    },
    {
        "id":  10797,
        "name":  "Delayed Write",
        "path":  "sp.*.fs.block.ufs.log.staging.delayedWrites",
        "type":  3,
        "description":  "Number of delayed staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10800,
        "name":  "Immediate Write",
        "path":  "sp.*.fs.block.ufs.log.staging.immediateWrites",
        "type":  3,
        "description":  "Number of immediate staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10802,
        "name":  "copy2sb contention",
        "path":  "sp.*.fs.block.ufs.log.staging.lockContention",
        "type":  5,
        "description":  "ufslog copy2sb contention",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10803,
        "name":  "copy2sb yield",
        "path":  "sp.*.fs.block.ufs.log.staging.lockYield",
        "type":  5,
        "description":  "copy2sb lock yield",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10804,
        "name":  "Saved Write",
        "path":  "sp.*.fs.block.ufs.log.staging.savedWrites",
        "type":  3,
        "description":  "Number of saved staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10806,
        "name":  "Total Write",
        "path":  "sp.*.fs.block.ufs.log.staging.totalWrites",
        "type":  3,
        "description":  "Number of staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10808,
        "name":  "wait for sb",
        "path":  "sp.*.fs.block.ufs.log.staging.waitForCleanSb",
        "type":  5,
        "description":  "wait for ufslog clean sb yield",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10810,
        "name":  "count",
        "path":  "sp.*.fs.block.ufs.log.transaction.*.count",
        "type":  3,
        "description":  "Number of transactions",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10814,
        "name":  "UFS64 CG spread preallocations finding a free preferred window",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocggotpref",
        "type":  3,
        "description":  "Number of CG spread preallocations finding a free preferred window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10816,
        "name":  "UFS64 CG spread preallocations hole filling",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocgholefill",
        "type":  3,
        "description":  "Number of CG spread preallocations hole filling",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10818,
        "name":  "UFS64 CG spread preallocations getting whole window immediately",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocginitialfill",
        "type":  3,
        "description":  "Number of CG spread preallocations getting whole window immediately",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10820,
        "name":  "UFS64 CG spread preallocations skipped",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocgskip",
        "type":  3,
        "description":  "Number of CG spread preallocations skipped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10822,
        "name":  "UFS64 CG spread preallocations spanned window",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocgspanwin",
        "type":  3,
        "description":  "Number of CG spread preallocations spanned window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10824,
        "name":  "UFS64 CG spread preallocations finding a free cursor window",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocgsucc",
        "type":  3,
        "description":  "Number of CG spread preallocations finding a free cursor window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10826,
        "name":  "UFS64 CG spread preallocation windows probed",
        "path":  "sp.*.fs.block.ufs64.CGBlk64.spallocgwindowsproved",
        "type":  3,
        "description":  "Number of CG spread preallocation windows probed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10829,
        "name":  "SpaceMaker AU Relocation",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.AUsRelocated",
        "type":  5,
        "description":  "Number of AUs relocated to free-up windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10830,
        "name":  "Number of times SpaceMaker processed slices/windows and stopped because free windows in the file system was found to be above high watermark. This could have happened because SpaceMaker created enough free windows OR free space was added to the file system OR blocks were released",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.AchievedHWM",
        "type":  5,
        "description":  "Number of times SpaceMaker processed windows to achieve free windows HWM",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10832,
        "name":  "SpaceMaker average evacuation rate in KB",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.AvgEvacuationRate",
        "type":  5,
        "description":  "Avg evacuation rate in KB",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "KB"
    },
    {
        "id":  10833,
        "name":  "SpaceMaker Average ratio uncompressed to compressed AUs in window ",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.AvgRatioUncompVsCompInWin",
        "type":  5,
        "description":  "Average ratio uncompressed to compressed AUs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10834,
        "name":  "SpaceMaker avg windows per request",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.AvgWindowsRequest",
        "type":  5,
        "description":  "Avg request windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10835,
        "name":  "SpaceMaker compressed Segments Relocated",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.CompSegmentsRelocated",
        "type":  5,
        "description":  "Number of compressed segments(VBMs) relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10836,
        "name":  "Number of times SpaceMaker did not start processing slices on a file system because FSR or slice relocation was in progress on the FS",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.ConflictsWithReorganization",
        "type":  5,
        "description":  "Number of times SpaceMaker did not start because FSR or relocate slice was running",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10837,
        "name":  "Number of times SpaceMaker used InPlaceCompaction for creating free space",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.EvacWinIPCCalls",
        "type":  5,
        "description":  "Number of times InPlaceCompaction requests were issued by Evacuate Windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10838,
        "name":  "SpaceMaker evacuate windows job processing time in Usec",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.EvacWinJobTimeInUsec",
        "type":  5,
        "description":  "Total evacuate windows job time in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10839,
        "name":  "SpaceMaker evacuate windows invocations",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.EvacuateWindowCalls",
        "type":  5,
        "description":  "Number of times evacuate windows requests were issued",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10840,
        "name":  "Total time in Usec consumed by all successful invocation of evacuate windows",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.EvacuationTimeInUsec",
        "type":  5,
        "description":  "Total time spent waiting for windows to be evacuated in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10841,
        "name":  "Number of times SpaceMaker did not start because there were already enough free windows in the file system",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.FreeWindowsAboveWaterMark",
        "type":  5,
        "description":  "Number of times SpaceMaker did not start because free windows were above watermark",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10842,
        "name":  "Number of freeable blocks released by compaction operation during EvacWin and EvacuateSlice",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.FreeablesReleasedByCompaction",
        "type":  5,
        "description":  "Number of freeable blocks released by Compaction",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10843,
        "name":  "Number of freeable blocks released by IPC operation",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.FreeablesReleasedByIPC",
        "type":  5,
        "description":  "Number of freeable blocks released by IPC",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10844,
        "name":  "SpaceMaker InPlaceCompaction time in Usec",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.IPCTimeInUsec",
        "type":  5,
        "description":  "Total time for InPlaceCompaction processing in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10845,
        "name":  "SpaceMaker max AUs relocated",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MaxAUsRelocated",
        "type":  5,
        "description":  "Max AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10846,
        "name":  "SpaceMaker max evacuation rate in MB",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MaxEvacuationRate",
        "type":  5,
        "description":  "Max evacuation rate in MB",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "MB"
    },
    {
        "id":  10847,
        "name":  "SpaceMaker evacuate window invocations with maximum number of windows supported by FSR",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MaxWindowEvacuations",
        "type":  5,
        "description":  "Number of times window evacuation happened with max window count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10848,
        "name":  "SpaceMaker max windows in a request",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MaxWindowsRequest",
        "type":  5,
        "description":  "Max request windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10849,
        "name":  "SpaceMaker min AUs relocated",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MinAUsRelocated",
        "type":  5,
        "description":  "Min AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10850,
        "name":  "SpaceMaker min evacuation rate in KB",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MinEvacuationRate",
        "type":  5,
        "description":  "Min evacuation rate",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "KB"
    },
    {
        "id":  10851,
        "name":  "SpaceMaker min windows in a request",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.MinWindowsRequest",
        "type":  5,
        "description":  "Min request windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10852,
        "name":  "Number of times SpaceMaker did not start processing slices on a file system because there were not enough free AUs to reach goal",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.NotEnoughFreeAUsToReachGoal",
        "type":  5,
        "description":  "Number of times SpaceMaker did not start because of not having enough free AUs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10853,
        "name":  "Total number of partial windows SpaceMaker evacuated without error",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.PartialWindowsEvacuated",
        "type":  5,
        "description":  "Total number of partial windows evacuated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10854,
        "name":  "SpaceMaker RBT time in Usec",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RBTTimeInUsec",
        "type":  5,
        "description":  "Total time consumed by RBT processing in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10855,
        "name":  "SpaceMaker RBT time in Usec for compressed AUs Relocation",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RBTTimeInUsecForCompAUs",
        "type":  5,
        "description":  "Total time consumed by RBT processing in Usec for compressed AUs Relocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10856,
        "name":  "SpaceMaker RBT usage",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RBTsUsed",
        "type":  5,
        "description":  "Number of RBTs used to evacuate windows",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10857,
        "name":  "SpaceMaker RBT usage for compressed AUs Relocation ",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RBTsUsedForCompAUs",
        "type":  5,
        "description":  "Number of RBTs used by evacuate windows for compressed AUs Relocation ",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10858,
        "name":  "SpaceMaker RBT task throttle down",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RbtThrottleDown",
        "type":  5,
        "description":  "Total times that RBT task is slow down",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10859,
        "name":  "SpaceMaker RBT task adjust Token",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RbtThrottleTotal",
        "type":  5,
        "description":  "Total times that RBT task adjust tokens",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10860,
        "name":  "SpaceMaker RBT task throttle up",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.RbtThrottleUp",
        "type":  5,
        "description":  "Total times that RBT task is speed up",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10861,
        "name":  "Number of times SpaceMaker successfully reached trickle window evacuation goal",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.ReachedTrickleGoal",
        "type":  5,
        "description":  "Number of times trickle window evacuation goal is reached",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10862,
        "name":  "Number of times SpaceMaker skipped a slice after none or some processing because window allocation cursors have moved into the slice while window cleaning was still in progress",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SkippedCursorConflicts",
        "type":  5,
        "description":  "Number of times SpaceMaker did not process a slice due to cursor conflicts",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10863,
        "name":  "Number of times SpaceMaker skipped a partial window because it was not partial beyond the specified partialWinThreshold.",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SkippedPartialWindows",
        "type":  5,
        "description":  "Number of times a partial window was skipped without evacuation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10864,
        "name":  "Number of times slices were examined closely but did not meet criteria for cleaning",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceExaminedAndSkip",
        "type":  5,
        "description":  "Slices examined and not processed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10865,
        "name":  "Number of times slices were skipped because SpaceMaker does not processslices which are fully allocated or completely empty.",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceFullOrEmptySkip",
        "type":  5,
        "description":  "Number of times a candidate slice was skipped because Slice is full or empty",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10866,
        "name":  "Number of times slices were skipped because they were not fragmentedenough to be a good candidate slice for efficient evacuation",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceNotFragmentedSkip",
        "type":  5,
        "description":  "Number of times a candidate slice was skipped because it was not fragmented",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10867,
        "name":  "Total time in Usec consumed to find candidate slices",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceProcessingTimeInUsec",
        "type":  5,
        "description":  "Time spent finding candidate slices in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10868,
        "name":  "Number of times slices were skipped because SpaceMaker does not process slices of that particular QoS",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceWrongQoSSkip",
        "type":  5,
        "description":  "Number of times a candidate slice was skipped because of unsupported QoS",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10869,
        "name":  "Number of times slices were skipped because SpaceMaker does not process slices that are hosted on that particular tier of storage",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SliceWrongTierSkip",
        "type":  5,
        "description":  "Number of times a candidate slice was skipped because of unsupported tier",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10870,
        "name":  "Total number of slices processed by SpaceMaker",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SlicesProcessed",
        "type":  5,
        "description":  "Total number of slices processed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10871,
        "name":  "Number of times SpaceMaker did not start processing slices on a FS because a previous run of SpaceMaker was already queued or running",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.SpaceMakerAlreadyRunning",
        "type":  5,
        "description":  "Number of times SpaceMaker did not start because previous run had not completed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10872,
        "name":  "Number of times SpaceMaker stopped processing slices because the file system got unmounted",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.StoppedOnUnmount",
        "type":  5,
        "description":  "Number of times SpaceMaker stopped because file system unmounted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10873,
        "name":  "Number of times SpaceMaker did not start processing slices on a FS because last successful or failed run on the file system was too recent",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.TimeGapBetweenRunsNotMet",
        "type":  5,
        "description":  "Number of times SpaceMaker did not start because there was not enough time gap between two runs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10874,
        "name":  "SpaceMaker total bytes relocated",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.TotalBytesRelocated",
        "type":  5,
        "description":  "Total bytes relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10875,
        "name":  "Total time in Usec consumed by all data slice iterators includingslice finding, processing and window evacuation",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.TotalProcessingTimeInUsec",
        "type":  5,
        "description":  "Total processing time in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10876,
        "name":  "SpaceMaker uncompressed AUs relocated",
        "path":  "sp.*.fs.block.ufs64.SpaceMaker.UncompAUsRelocated",
        "type":  5,
        "description":  "Uncompressed AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10879,
        "name":  "BMDC CPU Alloc",
        "path":  "sp.*.fs.block.ufs64.bmdcache.cpuAllocCount",
        "type":  3,
        "description":  "Number of times a BMD entry was reclaimed from the per CPU free list",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10881,
        "name":  "UFS64 Allocated BMD",
        "path":  "sp.*.fs.block.ufs64.bmdcache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated BMD entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10882,
        "name":  "BMDC Del",
        "path":  "sp.*.fs.block.ufs64.bmdcache.deleteCounts",
        "type":  3,
        "description":  "Total number of BMD cache entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10884,
        "name":  "BMDC Find Calls",
        "path":  "sp.*.fs.block.ufs64.bmdcache.findCalls",
        "type":  3,
        "description":  "Number of find calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10886,
        "name":  "BMDC Hash Ent Hit",
        "path":  "sp.*.fs.block.ufs64.bmdcache.hashEntHit",
        "type":  3,
        "description":  "Total number of cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10888,
        "name":  "BMDC Hash Ent Miss",
        "path":  "sp.*.fs.block.ufs64.bmdcache.hashEntMiss",
        "type":  3,
        "description":  "Total number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10890,
        "name":  "BMDC Hash Ent Searched",
        "path":  "sp.*.fs.block.ufs64.bmdcache.hashEntSearched",
        "type":  3,
        "description":  "Total number of hash entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10892,
        "name":  "BMDC Hash Table Size",
        "path":  "sp.*.fs.block.ufs64.bmdcache.hashTableSize",
        "type":  5,
        "description":  "Size of BMD cache in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  10894,
        "name":  "BMDC New",
        "path":  "sp.*.fs.block.ufs64.bmdcache.newCounts",
        "type":  3,
        "description":  "Total number of BMD cache entries newed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10897,
        "name":  "UFS64 CG Cache Checked",
        "path":  "sp.*.fs.block.ufs64.cgcache.entriesChecked",
        "type":  3,
        "description":  "Number of entries checked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10899,
        "name":  "UFS64 CG Cache Discarded",
        "path":  "sp.*.fs.block.ufs64.cgcache.entriesDiscarded",
        "type":  3,
        "description":  "Number of entries discarded",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10901,
        "name":  "UFS64 CG Cache Reclaimed",
        "path":  "sp.*.fs.block.ufs64.cgcache.entriesReclaimed",
        "type":  3,
        "description":  "Number of entries reclaimed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10903,
        "name":  "UFS64 CG Cache Find",
        "path":  "sp.*.fs.block.ufs64.cgcache.findRequests",
        "type":  3,
        "description":  "Number of CG Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  10906,
        "name":  "UFS64 CG Cache Hits",
        "path":  "sp.*.fs.block.ufs64.cgcache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10908,
        "name":  "UFS64 CG Cache Misses",
        "path":  "sp.*.fs.block.ufs64.cgcache.misses",
        "type":  3,
        "description":  "Number of misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10911,
        "name":  "UFS64 DirBlkCache Accesses",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.accesses",
        "type":  3,
        "description":  "Number of accesses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10914,
        "name":  "UFS64 DirBlkCache Entries",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.entries",
        "type":  5,
        "description":  "Number of dirty block cache entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10916,
        "name":  " UFS64 DirBlkCache Hits",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10918,
        "name":  "UFS64 DirBlkCache Late Hits",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.lateHits",
        "type":  3,
        "description":  "Number of late hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10920,
        "name":  "UFS64 DirBlkCache Scans",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.scans",
        "type":  3,
        "description":  "Number of scans",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10922,
        "name":  "UFS64 DirBlkCache Stale Hits",
        "path":  "sp.*.fs.block.ufs64.dirBlkCache.staleHits",
        "type":  3,
        "description":  "Number of stale hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10925,
        "name":  "UFS64 Directory Hash Size",
        "path":  "sp.*.fs.block.ufs64.dirHash.currentSize",
        "type":  5,
        "description":  "Current directory hash size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  10926,
        "name":  "UFS64 Directory Hash Searched",
        "path":  "sp.*.fs.block.ufs64.dirHash.entriesSearched",
        "type":  3,
        "description":  "Number of entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10928,
        "name":  "UFS64 Directory Hash Infos",
        "path":  "sp.*.fs.block.ufs64.dirHash.hashInfos",
        "type":  5,
        "description":  "Number of directory hash infos",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10929,
        "name":  "UFS64 Directory Hash Queues",
        "path":  "sp.*.fs.block.ufs64.dirHash.hashqs",
        "type":  5,
        "description":  "Number of directory hash queues",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10931,
        "name":  "EXTC Del",
        "path":  "sp.*.fs.block.ufs64.extentcache.deleteCounts",
        "type":  3,
        "description":  "Total number of extent cache entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10933,
        "name":  "EXTC Find Calls",
        "path":  "sp.*.fs.block.ufs64.extentcache.findCalls",
        "type":  3,
        "description":  "Total number of find calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10935,
        "name":  "EXTC Hash Ent Hit",
        "path":  "sp.*.fs.block.ufs64.extentcache.hashEntHit",
        "type":  3,
        "description":  "Total number of cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10937,
        "name":  "EXTC Hash Ent Miss",
        "path":  "sp.*.fs.block.ufs64.extentcache.hashEntMiss",
        "type":  3,
        "description":  "Total number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10939,
        "name":  "EXTC Hash Ent Searched",
        "path":  "sp.*.fs.block.ufs64.extentcache.hashEntSearched",
        "type":  3,
        "description":  "Total number of hash entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10941,
        "name":  "EXTC Hash Table Size",
        "path":  "sp.*.fs.block.ufs64.extentcache.hashTableSize",
        "type":  5,
        "description":  "Size of extent cache in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  10943,
        "name":  "EXTC New",
        "path":  "sp.*.fs.block.ufs64.extentcache.newCounts",
        "type":  3,
        "description":  "Total number of extent cache entries newed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10945,
        "name":  "EXTC Recycle",
        "path":  "sp.*.fs.block.ufs64.extentcache.recycleCounts",
        "type":  3,
        "description":  "Total number of extent cache entries recycled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  10948,
        "name":  "Node",
        "path":  "sp.*.fs.block.ufs64.findNode.*.allocations",
        "type":  3,
        "description":  "Number of node allocations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  10951,
        "name":  "Dead",
        "path":  "sp.*.fs.block.ufs64.findNode.*.deadNodes",
        "type":  3,
        "description":  "Number of nodes in dead state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  10953,
        "name":  "FindNode Retried Hash Table Search",
        "path":  "sp.*.fs.block.ufs64.findNode.*.hashSearchRetries",
        "type":  3,
        "description":  "Number of hash table search retries due to hash change",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10955,
        "name":  "FindNode Hash Table Search",
        "path":  "sp.*.fs.block.ufs64.findNode.*.hashSearches",
        "type":  3,
        "description":  "Number of hash table searches",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10957,
        "name":  "New",
        "path":  "sp.*.fs.block.ufs64.findNode.*.insertions",
        "type":  3,
        "description":  "Number of new nodes inserted in hash table",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  10959,
        "name":  "New Node",
        "path":  "sp.*.fs.block.ufs64.findNode.*.newNodeCalls",
        "type":  3,
        "description":  "Number of times findNode is called for new nodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  10961,
        "name":  "FindNode Searched",
        "path":  "sp.*.fs.block.ufs64.findNode.*.nodesSearched",
        "type":  3,
        "description":  "Number of hash table nodes searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  10963,
        "name":  "FindNode Failed",
        "path":  "sp.*.fs.block.ufs64.findNode.*.readsFailed",
        "type":  3,
        "description":  "Number of node read failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  10964,
        "name":  "Total FindNode",
        "path":  "sp.*.fs.block.ufs64.findNode.*.totalCalls",
        "type":  3,
        "description":  "Number of times findNode is called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  10966,
        "name":  "Valid",
        "path":  "sp.*.fs.block.ufs64.findNode.*.validNodes",
        "type":  3,
        "description":  "Number of nodes in valid state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  10969,
        "name":  "GIBC FS Sync Request",
        "path":  "sp.*.fs.block.ufs64.gibc.FSSyncRequests",
        "type":  3,
        "description":  "Number of times general sync request was made against FS due to per FS dirty list HWM",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10971,
        "name":  "GIBC Add Dirty",
        "path":  "sp.*.fs.block.ufs64.gibc.addDirty",
        "type":  3,
        "description":  "Number of times an entry was dirtied pending writing back to disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10973,
        "name":  "GIBC Dirty",
        "path":  "sp.*.fs.block.ufs64.gibc.dirtyEntries",
        "type":  5,
        "description":  "Number of dirty indirect block entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  10975,
        "name":  "GIBC Entered",
        "path":  "sp.*.fs.block.ufs64.gibc.enteredIntoCache",
        "type":  3,
        "description":  "Number of times a new buffer entry was put into the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10977,
        "name":  "GIBC Fail Load",
        "path":  "sp.*.fs.block.ufs64.gibc.failLoads",
        "type":  3,
        "description":  "Number of times IO failed to read buffer cache off disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10979,
        "name":  "GIBC Found In INIT",
        "path":  "sp.*.fs.block.ufs64.gibc.foundInInit",
        "type":  3,
        "description":  "Number of times entry found in init",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10981,
        "name":  "GIBC General Sync",
        "path":  "sp.*.fs.block.ufs64.gibc.generalSync",
        "type":  3,
        "description":  "Number of times entry was synced to disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10983,
        "name":  "GIBC General Sync Wait",
        "path":  "sp.*.fs.block.ufs64.gibc.generalSyncWait",
        "type":  3,
        "description":  "Number of times sync request had to wait because previous committed buffer was still being synced",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10985,
        "name":  "GIBC Global Sync Request",
        "path":  "sp.*.fs.block.ufs64.gibc.globalSyncRequests",
        "type":  3,
        "description":  "Number of times the global sync request was made due to global HWM",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10987,
        "name":  "GIBC Hash Table Size",
        "path":  "sp.*.fs.block.ufs64.gibc.hashTableSize",
        "type":  5,
        "description":  "Size of GIBC in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  10989,
        "name":  "GIBC In Place Sync",
        "path":  "sp.*.fs.block.ufs64.gibc.inPlaceSync",
        "type":  3,
        "description":  "Number of times entry was synced in place",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  10991,
        "name":  "GIBC Lookup",
        "path":  "sp.*.fs.block.ufs64.gibc.lookup",
        "type":  3,
        "description":  "Number of times find is called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10992,
        "name":  "GIBC LookUp Hit",
        "path":  "sp.*.fs.block.ufs64.gibc.lookupDescriptorHit",
        "type":  3,
        "description":  "Number of times find found the entry in the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10994,
        "name":  "GIBC LookUp Miss",
        "path":  "sp.*.fs.block.ufs64.gibc.lookupDescriptorMiss",
        "type":  3,
        "description":  "Number of times lookup failed to find entry in cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  10998,
        "name":  "GIBC Purged Entry",
        "path":  "sp.*.fs.block.ufs64.gibc.purgedEntries",
        "type":  3,
        "description":  "Number of times entry was purged from cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11000,
        "name":  "GIBC Reclaimed Entry",
        "path":  "sp.*.fs.block.ufs64.gibc.reclaimedEntries",
        "type":  3,
        "description":  "Number of times entry was reclaimed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11002,
        "name":  "GIBC Replace Dirty",
        "path":  "sp.*.fs.block.ufs64.gibc.replaceDirty",
        "type":  3,
        "description":  "Number of times dirty entry replaced existing dirty entry",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11004,
        "name":  "GIBC Returned Entry",
        "path":  "sp.*.fs.block.ufs64.gibc.returnedEntries",
        "type":  3,
        "description":  "Number of times an entry was returned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11006,
        "name":  "GIBC Returned Null Entry",
        "path":  "sp.*.fs.block.ufs64.gibc.returnedNullEntries",
        "type":  3,
        "description":  "Number of times an entry was not returned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11008,
        "name":  "GIBC Stale Buffer",
        "path":  "sp.*.fs.block.ufs64.gibc.staleBuffer",
        "type":  3,
        "description":  "Number of times entry contained a stale buffer",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11010,
        "name":  "GIBC Stale FS",
        "path":  "sp.*.fs.block.ufs64.gibc.staleFS",
        "type":  3,
        "description":  "Number of times entry is associated with stale file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11012,
        "name":  "GIBC Load",
        "path":  "sp.*.fs.block.ufs64.gibc.successLoads",
        "type":  3,
        "description":  "Number of times an entry\u0027s buffer cache was successfully read off disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11014,
        "name":  "GIBC Total",
        "path":  "sp.*.fs.block.ufs64.gibc.totalEntries",
        "type":  5,
        "description":  "Number of indirect block entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11015,
        "name":  "GIBC Total Hit",
        "path":  "sp.*.fs.block.ufs64.gibc.totalHits",
        "type":  3,
        "description":  "Number of total hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11018,
        "name":  "Total delete pending blocks",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacDeletePendingBlks",
        "type":  3,
        "description":  "Total delete pending blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11020,
        "name":  "Avg AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgAURelocated",
        "type":  3,
        "description":  "Avg AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11022,
        "name":  "Average ratio of AUs relocated in a slice",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgAURelocatedRatio",
        "type":  3,
        "description":  "Average ratio of AUs relocated in a slice",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11024,
        "name":  "evacuate-slices Average duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgDurationInUsecs",
        "type":  3,
        "description":  "evacuate-slices Average duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11026,
        "name":  "Average duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgDurationOfIBOTaskInUsec",
        "type":  3,
        "description":  "Average duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11029,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgEvacuationRate.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11031,
        "name":  "Averageg allocated AUs during IBOTask",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgNumOfAllocatedAUDuringIBOTask",
        "type":  3,
        "description":  "Average allocated AUs during IBOTask",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11033,
        "name":  "Average owners found",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgNumOfOwnerFoundDuringIBOTask",
        "type":  3,
        "description":  "Average owners found",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11035,
        "name":  "Average ratio uncompressed to compressed AUs relocated from a slice",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgRatioUnCompressedToCompressedAU",
        "type":  3,
        "description":  "Average ratio uncompressed to compressed AUs relocated from a slice",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11037,
        "name":  "Avg VBM delete pending wait in Ms",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesAvgVBMDeletePendingWaitInMs",
        "type":  3,
        "description":  "Avg VBM delete pending wait in Ms",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11039,
        "name":  "Max AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxAURelocated",
        "type":  3,
        "description":  "Max AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11041,
        "name":  "evacuate-slices Max duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxDurationInUsecs",
        "type":  3,
        "description":  "evacuate-slices Max duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11043,
        "name":  "Max duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxDurationOfIBOTaskInUsec",
        "type":  3,
        "description":  "Max duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11046,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxEvacuationRate.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11048,
        "name":  "Max allocated AUs during IBOTask",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxNumOfAllocatedAUDuringIBOTask",
        "type":  3,
        "description":  "Max allocated AUs during IBOTask",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11050,
        "name":  "Max owners found",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxNumOfOwnerFoundDuringIBOTask",
        "type":  3,
        "description":  "Max owners found",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11052,
        "name":  "Max VBM delete pending wait in Ms",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMaxVBMDeletePendingWaitInMs",
        "type":  3,
        "description":  "Max VBM delete pending wait in Ms",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11054,
        "name":  "Min AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinAURelocated",
        "type":  3,
        "description":  "Min AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11056,
        "name":  "evacuate-slices Min duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinDurationInUsecs",
        "type":  3,
        "description":  "evacuate-slices Min duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11058,
        "name":  "Min duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinDurationOfIBOTaskInUsec",
        "type":  3,
        "description":  "Min duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11061,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinEvacuationRate.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11063,
        "name":  "Min allocated AUs during IBOTask",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinNumOfAllocatedAUDuringIBOTask",
        "type":  3,
        "description":  "Min allocated AUs during IBOTask",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11065,
        "name":  "Min owners found",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinNumOfOwnerFoundDuringIBOTask",
        "type":  3,
        "description":  "Min owners found",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11067,
        "name":  "Min VBM delete pending wait in Ms",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesMinVBMDeletePendingWaitInMs",
        "type":  3,
        "description":  "Min VBM delete pending wait in Ms",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11069,
        "name":  "Number of slices enumerated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesNumOfSliceEnumerated",
        "type":  3,
        "description":  "Number of slices enumerated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11072,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesNumOfSliceEvacuatedPerSubSpace.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11074,
        "name":  "Ratio of relocated AUs to allocated AUs",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesRatioRelocatedAUToAllocatedAU",
        "type":  3,
        "description":  "Ratio of relocated AUs to allocated AUs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11076,
        "name":  "Total AUs allocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalAUAllocated",
        "type":  3,
        "description":  "Total AUs allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11078,
        "name":  "Total AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalAURelocated",
        "type":  3,
        "description":  "Total AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11080,
        "name":  "Total Compressed AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalCompressedAURelocated",
        "type":  3,
        "description":  "Total Compressed AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11082,
        "name":  "Total Compressed segments relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalCompressedSegRelocated",
        "type":  3,
        "description":  "Total Compressed segments relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11084,
        "name":  "Total evacuate-slices duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalDurationInUsecs",
        "type":  3,
        "description":  "Total evacuate-slices duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11086,
        "name":  "Total duration in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalDurationOfIBOTaskInUsec",
        "type":  3,
        "description":  "Total duration in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11088,
        "name":  "Total time of evacuation in Usec",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalEvacuationUsec",
        "type":  3,
        "description":  "Total time of evacuation in Usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11090,
        "name":  "Total allocated AUs during IBOTask",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfAllocatedAUDuringIBOTask",
        "type":  3,
        "description":  "Total allocated AUs during IBOTask",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11092,
        "name":  "Total number of evacuate-slices called",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfEvacuateSlicesCalled",
        "type":  3,
        "description":  "Total number of evacuate-slices called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11094,
        "name":  "Total number of IBO tasks",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfIBOTasks",
        "type":  3,
        "description":  "Total number of IBO tasks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11096,
        "name":  "Total owners found",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfOwnerFoundDuringIBOTask",
        "type":  3,
        "description":  "Total owners found",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11098,
        "name":  "Total number of processed CG by IBOTask",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfProcessedCGByIBOTask",
        "type":  3,
        "description":  "Total number of processed CG by IBOTask",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11100,
        "name":  "Total number of RB tasks",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfRBTasks",
        "type":  3,
        "description":  "Total number of RB tasks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11102,
        "name":  "Total number of slices evacuated",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfSliceEvacuated",
        "type":  3,
        "description":  "Total number of slices evacuated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11104,
        "name":  "Total number of VBM delete pending wait instances",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalNumOfVBMDeletePendingWait",
        "type":  3,
        "description":  "Total number of VBM delete pending wait instances",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11106,
        "name":  "Total VBM delete pending wait in Ms",
        "path":  "sp.*.fs.block.ufs64.ilc.EvacSlicesTotalVBMDeletePendingWaitInMs",
        "type":  3,
        "description":  "Total VBM delete pending wait in Ms",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11108,
        "name":  "Average restart inode enumeration",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjAvgRestartInodeEnum",
        "type":  3,
        "description":  "Average restart inode enumeration",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11111,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjCountOfLogicRangeSize.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11113,
        "name":  "Max restart inode enumeration",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjMaxRestartInodeEnum",
        "type":  3,
        "description":  "Max restart inode enumeration",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11115,
        "name":  "Min restart inode enumeration",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjMinRestartInodeEnum",
        "type":  3,
        "description":  "Min restart inode enumeration",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11117,
        "name":  "Bucket number of inode enumerations",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjNumOfInodeEnumerated",
        "type":  3,
        "description":  "Bucket number of inode enumerations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11119,
        "name":  "Bucket number of inode mapping updates",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjNumOfInodeMappingUpdated",
        "type":  3,
        "description":  "Bucket number of inode mapping updates",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11121,
        "name":  "Total restart inode enumeration",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjTotalRestartInodeEnum",
        "type":  3,
        "description":  "Total restart inode enumeration",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11123,
        "name":  "Uncompressed AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.FileRelocObjUncompressedAURelocated",
        "type":  3,
        "description":  "Uncompressed AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11125,
        "name":  "Total number of times to allocate the segment using random allocation",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCPreallocSegmentRandomAllocsAttempted",
        "type":  3,
        "description":  "Total number of times to allocate the segment using random allocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11127,
        "name":  "Total number of successful segment allocations  using random allocation",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCPreallocSegmentRandomAllocsSucceeded",
        "type":  3,
        "description":  "Total number of successful segment allocations  using random allocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11129,
        "name":  "Average compaction ratio",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjAvgCompactionRatio",
        "type":  3,
        "description":  "Average compaction ratio",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11131,
        "name":  "Average AUs freed by compaction",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjAvgCompactionSave",
        "type":  3,
        "description":  "Average AUs freed by compaction",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11133,
        "name":  "Average IPC requests",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjAvgIPCRequests",
        "type":  3,
        "description":  "Average IPC requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11135,
        "name":  "Total compressed AUs relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjCompressedAUsRelocated",
        "type":  3,
        "description":  "Total compressed AUs relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11137,
        "name":  "Total compressed segments relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjCompressedSegmentsRelocated",
        "type":  3,
        "description":  "Total compressed segments relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11139,
        "name":  "Maximum compaction ratio",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMaxCompactionRatio",
        "type":  3,
        "description":  "Maximum compaction ratio",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11141,
        "name":  "Maximum AUs freed by compaction",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMaxCompactionSave",
        "type":  3,
        "description":  "Maximum AUs freed by compaction",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11143,
        "name":  "Maximum IPC requests",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMaxIPCRequests",
        "type":  3,
        "description":  "Maximum IPC requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11145,
        "name":  "Minimum compaction ratio",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMinCompactionRatio",
        "type":  3,
        "description":  "Minimum compaction ratio",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11147,
        "name":  "Minimum AUs freed by compaction",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMinCompactionSave",
        "type":  3,
        "description":  "Minimum AUs freed by compaction",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11149,
        "name":  "Minimum IPC requests",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjMinIPCRequests",
        "type":  3,
        "description":  "Minimum IPC requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11151,
        "name":  "Ratio of compaction to non-compaction of compressed segments",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjRatioOfCompactedSegToNonCompactedSeg",
        "type":  3,
        "description":  "Ratio of compaction to non-compaction of compressed segments",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11154,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjRefExtEnt.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11156,
        "name":  "Total compaction ratio",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjTotalCompactionRatio",
        "type":  3,
        "description":  "Total compaction ratio",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11158,
        "name":  "Total of AUs freed by compaction",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjTotalCompactionSave",
        "type":  3,
        "description":  " Total AUs freed by compaction",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11160,
        "name":  "Total IPC requests",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjTotalIPCRequests",
        "type":  3,
        "description":  "Total IPC requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11162,
        "name":  "Total number of segments compacted and relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjTotalSegmentsCompactedAndRelocated",
        "type":  3,
        "description":  "Total number of segments compacted and relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11164,
        "name":  "Total number of segments NOT compacted and relocated",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjTotalSegmentsNotCompactedAndRelocated",
        "type":  3,
        "description":  "Total number of segments NOT compacted and relocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11167,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.ILCVBMRelObjUnrefExtEnt.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11169,
        "name":  "Number of Aggregates skipped during backoff state",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcBackoffAggregatesSkipped",
        "type":  3,
        "description":  "Number of Aggregates skipped during back-off state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11171,
        "name":  "Number of Aggregates skipped during backoff state",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcBackoffTotalAUsSkipped",
        "type":  3,
        "description":  "Number of Aggregates skipped during backoff state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11173,
        "name":  "Number of back-off state entered because consecutive compression faiures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibBackoffStateOn",
        "type":  3,
        "description":  "Number of back-off state entered because consecutive compression faiures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11176,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibConsecutiveFailureDist.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11178,
        "name":  "Number of IlcCompression Lib calls failed",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibFailedNoSaving",
        "type":  3,
        "description":  "Number of IlcCompression Lib calls failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11180,
        "name":  "Number of IlcCompression Lib are called",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibPerformed",
        "type":  3,
        "description":  "Number IlcCompression Lib are called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11183,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibRatioDist.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11185,
        "name":  "Number of AUs are successfully compressed",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibTotalAUsCompressed",
        "type":  3,
        "description":  "Number of AUs are successfully compressed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11187,
        "name":  "Total AUs failed Compression",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibTotalAUsFailedNoSaving",
        "type":  3,
        "description":  "Total AUs failed Compression",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11189,
        "name":  "Number of Blocks after compression",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcCmprLibTotalBlocksAfterCompress",
        "type":  3,
        "description":  "Number of Blocks after compression",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11191,
        "name":  "Number of DLD Aged backoffs",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcDLDAgedBackoff",
        "type":  3,
        "description":  "Number of DLD Aged backoff",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11193,
        "name":  "Number of AUs back-off due to DLD aged",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcDLDAgedTotalAUsBackoff",
        "type":  3,
        "description":  "Number of AUs back-off due to DLD aged",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11195,
        "name":  "Number of Low Aggregates back-off",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcLowAggregateBackoff",
        "type":  3,
        "description":  "Number of Low Aggregates backoffs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11201,
        "name":  "Total times Backoff state ON because consecutive PreAllocSeg failures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcPreAllocSegBackoffStateOn",
        "type":  3,
        "description":  "Total times Backoff state ON because consecutive PreAllocSeg failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11204,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcPreAllocSegConsecutiveFailureDist.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11206,
        "name":  "Number of PreAllocSeg failures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcPreAllocSegFailed",
        "type":  3,
        "description":  "Number of PreAllocSeg failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11208,
        "name":  "Number of AUs impacted by PreAlllocSeg failures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcPreAllocSegTotalAUsFailed",
        "type":  3,
        "description":  "Number of AUs impacted by PreAlllocSeg failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11210,
        "name":  "Total times Backoff state ON because consecutive Read DL failures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcReadDLBackoffStateOn",
        "type":  3,
        "description":  "Total times Backoff state ON because consecutive Read DL failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11213,
        "name":  "Value",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcReadDLConsecutiveFailureDist.*.counter",
        "type":  3,
        "description":  "counter value",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11215,
        "name":  "Number of Read DL failures",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcReadDLFailedTooLate",
        "type":  3,
        "description":  "Number of Read DL failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11217,
        "name":  " Number of AUs impacted by ReadDL failure",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcReadDLTotalAUsFailedTooLate",
        "type":  3,
        "description":  "Number of AUs impacted by ReadDL failure",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11219,
        "name":  "Total AUs",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcTotalAUs",
        "type":  3,
        "description":  "Total AUs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11221,
        "name":  "Number of aggregates",
        "path":  "sp.*.fs.block.ufs64.ilc.IlcTotalAggregates",
        "type":  3,
        "description":  "Number of aggregates",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11223,
        "name":  "Average block copy duration of all RBTs",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskAvgCopyDuration",
        "type":  3,
        "description":  "Average block copy duration of all RBTs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11225,
        "name":  "Max block copy duration of all RBTs",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskMaxCopyDuration",
        "type":  3,
        "description":  "Max block copy duration of all RBTs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11227,
        "name":  "Min block copy duration of all RBTs",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskMinCopyDuration",
        "type":  3,
        "description":  "Min block copy duration of all RBTs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11229,
        "name":  "Total AUs relocated in RBT",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskTotalAURelocated",
        "type":  3,
        "description":  "Total AUs relocated in RBT",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11231,
        "name":  "Total duration of block copy IOs of all RBTs",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskTotalDurationOfCopyIO",
        "type":  3,
        "description":  "Total duration of block copy IOs of all RBTs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11233,
        "name":  "Total number of RBTs called",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskTotalNumCalled",
        "type":  3,
        "description":  "Total number of RBTs called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11235,
        "name":  "Total number of block copy IO issued of all RBTs",
        "path":  "sp.*.fs.block.ufs64.ilc.RelocateBlocksTaskTotalNumOfCopyIO",
        "type":  3,
        "description":  "Total number of block copy IOs issued of all RBTs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11238,
        "name":  "Indirect Block Invalidated",
        "path":  "sp.*.fs.block.ufs64.indirectBlk.*.entriesInvalidated",
        "type":  3,
        "description":  "Indirect block entries invalidated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11240,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.block.ufs64.indirectBlk.*.readHits",
        "type":  3,
        "description":  "Indirect block reads from cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read Hits"
    },
    {
        "id":  11242,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.block.ufs64.indirectBlk.*.totalReads",
        "type":  3,
        "description":  "Indirect block reads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  11244,
        "name":  "Indirect Block Reads for Inode Trunc",
        "path":  "sp.*.fs.block.ufs64.indirectBlk.*.truncReads",
        "type":  3,
        "description":  "Indirect block reads for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11246,
        "name":  "Indirect Block Writes for Inode Trunc",
        "path":  "sp.*.fs.block.ufs64.indirectBlk.*.truncWrites",
        "type":  3,
        "description":  "Indirect block writes for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11250,
        "name":  "UFS64 Allocated Inode",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.currentAllocatedBlocks",
        "type":  5,
        "description":  "Number of allocated inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11251,
        "name":  "UFS64 Dirty Inode",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.currentDirtyBlocks",
        "type":  5,
        "description":  "Number of dirty inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11252,
        "name":  "UFS64 Inode HashQ Checked",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.entriesChecked",
        "type":  3,
        "description":  "Number of inoHashQ entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11254,
        "name":  "UFS64 Inode Block Allocation",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.totalBlocksAllocated",
        "type":  3,
        "description":  "Number of times inoBlk allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11256,
        "name":  "UFS64 Inode Block Deletion",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.totalBlocksDeleted",
        "type":  3,
        "description":  "Number of times inoBlk deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11258,
        "name":  "UFS64 Inode R/W",
        "path":  "sp.*.fs.block.ufs64.inodeBlk.totalCalls",
        "type":  3,
        "description":  "Number of calls to R/W inodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11261,
        "name":  "MFD Alloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDAllocData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11263,
        "name":  "MFD Alloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDAllocMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11265,
        "name":  "MFD Dealloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDDeallocData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11267,
        "name":  "MFD Dealloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDDeallocMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11269,
        "name":  "MFD Substitute Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDSubstituteData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11271,
        "name":  "MFD Substitute Free Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDSubstituteFreeData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11273,
        "name":  "MFD Substitute Free Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11275,
        "name":  "MFD Substitute Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDSubstituteMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11277,
        "name":  "MFDedup Alloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupAllocData",
        "type":  3,
        "description":  "Map For Dedup: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11279,
        "name":  "MFDedup Alloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupAllocMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11281,
        "name":  "MFDedup Dealloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupDeallocData",
        "type":  3,
        "description":  "Map For Dedup: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11283,
        "name":  "MFDedup Dealloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupDeallocMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11285,
        "name":  "MFDedup Substitute Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupSubstituteData",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11287,
        "name":  "MFDedup Substitute Free Data",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupSubstituteFreeData",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11289,
        "name":  "MFDedup Substitute Free Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11291,
        "name":  "MFDedup Substitute Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFDedupSubstituteMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11293,
        "name":  "MFW Alloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFWAllocData",
        "type":  3,
        "description":  "Map For Write: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11295,
        "name":  "MFW Alloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFWAllocMeta",
        "type":  3,
        "description":  "Map For Write: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11297,
        "name":  "MFW Dealloc Data",
        "path":  "sp.*.fs.block.ufs64.io.MFWDeallocData",
        "type":  3,
        "description":  "Map For Write: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11299,
        "name":  "MFW Dealloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFWDeallocMeta",
        "type":  3,
        "description":  "Map For Write: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11301,
        "name":  "MFW Substitute Data",
        "path":  "sp.*.fs.block.ufs64.io.MFWSubstituteData",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11303,
        "name":  "MFW Substitute Free Data",
        "path":  "sp.*.fs.block.ufs64.io.MFWSubstituteFreeData",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11305,
        "name":  "MFW Substitute Free Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFWSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11307,
        "name":  "MFW Substitute Meta",
        "path":  "sp.*.fs.block.ufs64.io.MFWSubstituteMeta",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11309,
        "name":  "Trunc Alloc Data",
        "path":  "sp.*.fs.block.ufs64.io.TruncAllocData",
        "type":  3,
        "description":  "Trunc: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11311,
        "name":  "Trunc Alloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.TruncAllocMeta",
        "type":  3,
        "description":  "Trunc: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11313,
        "name":  "Trunc Dealloc Data",
        "path":  "sp.*.fs.block.ufs64.io.TruncDeallocData",
        "type":  3,
        "description":  "Trunc: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11315,
        "name":  "Trunc Dealloc Meta",
        "path":  "sp.*.fs.block.ufs64.io.TruncDeallocMeta",
        "type":  3,
        "description":  "Trunc: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11317,
        "name":  "Trunc Substitute Data",
        "path":  "sp.*.fs.block.ufs64.io.TruncSubstituteData",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11319,
        "name":  "Trunc Substitute Free Data",
        "path":  "sp.*.fs.block.ufs64.io.TruncSubstituteFreeData",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11321,
        "name":  "Trunc Substitute Free Meta",
        "path":  "sp.*.fs.block.ufs64.io.TruncSubstituteFreeMeta",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11323,
        "name":  "Trunc Substitute Meta",
        "path":  "sp.*.fs.block.ufs64.io.TruncSubstituteMeta",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11326,
        "name":  "UFS64 Current Allocated",
        "path":  "sp.*.fs.block.ufs64.mem.currentAllocatedPages",
        "type":  5,
        "description":  "Current number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11327,
        "name":  "UFS64 freePages",
        "path":  "sp.*.fs.block.ufs64.mem.freePagesCalls",
        "type":  3,
        "description":  "Number of calls to freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11329,
        "name":  "UFS64 getPages",
        "path":  "sp.*.fs.block.ufs64.mem.getPagesCalls",
        "type":  3,
        "description":  "Number of calls to getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11331,
        "name":  "UFS64 Peak Allocated",
        "path":  "sp.*.fs.block.ufs64.mem.peakAllocatedPages",
        "type":  5,
        "description":  "Peak number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11332,
        "name":  "UFS64 Allocated",
        "path":  "sp.*.fs.block.ufs64.mem.totalPagesAllocated",
        "type":  3,
        "description":  "Total number of pages ever allocated by getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11334,
        "name":  "UFS64 Freed",
        "path":  "sp.*.fs.block.ufs64.mem.totalPagesFreed",
        "type":  3,
        "description":  "Total number of pages ever freed by freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11339,
        "name":  "Total",
        "path":  "sp.*.fs.block.ufs64.name.*.op.*.calls",
        "type":  3,
        "description":  "Number of calls for an FS operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11341,
        "name":  "Total",
        "path":  "sp.*.fs.block.ufs64.name.*.op.*.totalTime",
        "type":  3,
        "description":  "Time spent in FS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  11345,
        "name":  "Total",
        "path":  "sp.*.fs.block.ufs64.name.*.vop.*.calls",
        "type":  3,
        "description":  "Number of calls for a vnode operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11347,
        "name":  "Total",
        "path":  "sp.*.fs.block.ufs64.name.*.vop.*.totalTime",
        "type":  3,
        "description":  "Time spent in vnode operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  11350,
        "name":  "UFS64 SabHas failed allocs",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.allocfail",
        "type":  3,
        "description":  "Number of SabHas failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11352,
        "name":  "UFS64 SabHas successful allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.allochinthit",
        "type":  3,
        "description":  "Number of SabHas successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11354,
        "name":  "UFS64 SabHas failed allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SabHas failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11356,
        "name":  "UFS64 SabHas successful allocs",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.allocsucc",
        "type":  3,
        "description":  "Number of SabHas successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11358,
        "name":  "UFS64 SabHas successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.lastallochit",
        "type":  3,
        "description":  "Number of SabHas successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11360,
        "name":  "UFS64 SabHas failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SabHas failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11364,
        "name":  "UFS64 SabHas objects skipped for spread preallocation",
        "path":  "sp.*.fs.block.ufs64.sabhasalloc.spallocskips",
        "type":  3,
        "description":  "Number of SabHas objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11368,
        "name":  "UFS64 Allocated SabHas",
        "path":  "sp.*.fs.block.ufs64.sabhascache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SabHas entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11369,
        "name":  "UFS64 SabHas Cache Searched",
        "path":  "sp.*.fs.block.ufs64.sabhascache.entriesSearched",
        "type":  3,
        "description":  "Number of SabHas entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11371,
        "name":  "UFS64 SabHas Cache Find",
        "path":  "sp.*.fs.block.ufs64.sabhascache.findRequests",
        "type":  3,
        "description":  "Number of SabHass Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11374,
        "name":  "UFS64 SabHas Cache Hits",
        "path":  "sp.*.fs.block.ufs64.sabhascache.hits",
        "type":  3,
        "description":  "Number of SabHas Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11376,
        "name":  "UFS64 SabHas Cache Misses",
        "path":  "sp.*.fs.block.ufs64.sabhascache.misses",
        "type":  3,
        "description":  "Number of SabHas Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11378,
        "name":  "UFS64 SabHas Entries Allocation",
        "path":  "sp.*.fs.block.ufs64.sabhascache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SabHas entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11380,
        "name":  "UFS64 SabHas Entries Deletion",
        "path":  "sp.*.fs.block.ufs64.sabhascache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SabHas entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11383,
        "name":  "UFS64 SgBackedSlices failed allocs",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.allocfail",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11385,
        "name":  "UFS64 SgBackedSlices successful allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.allochinthit",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11387,
        "name":  "UFS64 SgBackedSlices failed allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11389,
        "name":  "UFS64 SgBackedSlices successful allocs",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.allocsucc",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11391,
        "name":  "UFS64 SgBackedSlices successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.lastallochit",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11393,
        "name":  "UFS64 SgBackedSlices failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11397,
        "name":  "UFS64 SgBackedSlices objects skipped for spread preallocation",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicesalloc.spallocskips",
        "type":  3,
        "description":  "Number of SgBackedSlices objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11401,
        "name":  "UFS64 Allocated SgBackedSlices",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SgBackedSlices entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11402,
        "name":  "UFS64 SgBackedSlices Cache Searched",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.entriesSearched",
        "type":  3,
        "description":  "Number of SgBackedSlices entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11404,
        "name":  "UFS64 SgBackedSlices Cache Find",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.findRequests",
        "type":  3,
        "description":  "Number of SgBackedSlicess Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11407,
        "name":  "UFS64 SgBackedSlices Cache Hits",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.hits",
        "type":  3,
        "description":  "Number of SgBackedSlices Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11409,
        "name":  "UFS64 SgBackedSlices Cache Misses",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.misses",
        "type":  3,
        "description":  "Number of SgBackedSlices Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11411,
        "name":  "UFS64 SgBackedSlices Entries Allocation",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SgBackedSlices entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11413,
        "name":  "UFS64 SgBackedSlices Entries Deletion",
        "path":  "sp.*.fs.block.ufs64.sgbackedslicescache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SgBackedSlices entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11416,
        "name":  "UFS64 SgHas failed allocs",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.allocfail",
        "type":  3,
        "description":  "Number of SgHas failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11418,
        "name":  "UFS64 SgHas successful allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.allochinthit",
        "type":  3,
        "description":  "Number of SgHas successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11420,
        "name":  "UFS64 SgHas failed allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SgHas failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11422,
        "name":  "UFS64 SgHas successful allocs",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.allocsucc",
        "type":  3,
        "description":  "Number of SgHas successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11424,
        "name":  "UFS64 SgHas successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.lastallochit",
        "type":  3,
        "description":  "Number of SgHas successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11426,
        "name":  "UFS64 SgHas failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SgHas failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11430,
        "name":  "UFS64 SgHas objects skipped for spread preallocation",
        "path":  "sp.*.fs.block.ufs64.sghasalloc.spallocskips",
        "type":  3,
        "description":  "Number of SgHas objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11434,
        "name":  "UFS64 Allocated SgHas",
        "path":  "sp.*.fs.block.ufs64.sghascache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SgHas entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11435,
        "name":  "UFS64 SgHas Cache Searched",
        "path":  "sp.*.fs.block.ufs64.sghascache.entriesSearched",
        "type":  3,
        "description":  "Number of SgHas entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11437,
        "name":  "UFS64 SgHas Cache Find",
        "path":  "sp.*.fs.block.ufs64.sghascache.findRequests",
        "type":  3,
        "description":  "Number of SgHas Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11440,
        "name":  "UFS64 SgHas Cache Hits",
        "path":  "sp.*.fs.block.ufs64.sghascache.hits",
        "type":  3,
        "description":  "Number of SgHas Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11442,
        "name":  "UFS64 SgHas Cache Misses",
        "path":  "sp.*.fs.block.ufs64.sghascache.misses",
        "type":  3,
        "description":  "Number of SgHas Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11444,
        "name":  "UFS64 SgHas Entries Allocation",
        "path":  "sp.*.fs.block.ufs64.sghascache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SgHas entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11446,
        "name":  "UFS64 SgHas Entries Deletion",
        "path":  "sp.*.fs.block.ufs64.sghascache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SgHas entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11449,
        "name":  "UFS64 SliceAttrs failed allocs",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.allocfail",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11451,
        "name":  "UFS64 SliceAttrs successful allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.allochinthit",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11453,
        "name":  "UFS64 SliceAttrs failed allocs (using block pref hint)",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11455,
        "name":  "UFS64 SliceAttrs successful allocs",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.allocsucc",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11457,
        "name":  "UFS64 SliceAttrs successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.lastallochit",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11459,
        "name":  "UFS64 SliceAttrs failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11463,
        "name":  "UFS64 SliceAttrs objects skipped for spread preallocation",
        "path":  "sp.*.fs.block.ufs64.sliceattrsalloc.spallocskips",
        "type":  3,
        "description":  "Number of SliceAttrs objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11467,
        "name":  "UFS64 Allocated SliceAttrs",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SliceAttrs entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11468,
        "name":  "UFS64 SliceAttrs Cache Searched",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.entriesSearched",
        "type":  3,
        "description":  "Number of SliceAttrs entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11470,
        "name":  "UFS64 SliceAttrs Cache Find",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.findRequests",
        "type":  3,
        "description":  "Number of SliceAttrs Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11473,
        "name":  "UFS64 SliceAttrs Cache Hits",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.hits",
        "type":  3,
        "description":  "Number of SliceAttrs Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11475,
        "name":  "UFS64 SliceAttrs Cache Misses",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.misses",
        "type":  3,
        "description":  "Number of SliceAttrs Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11477,
        "name":  "UFS64 SliceAttrs Entries Allocation",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SliceAttrs entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11479,
        "name":  "UFS64 SliceAttrs Entries Deletion",
        "path":  "sp.*.fs.block.ufs64.sliceattrscache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SliceAttrs entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11482,
        "name":  "UFS64 Number of CG reads introduced via spread preallocations for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataCgReads",
        "type":  3,
        "description":  "Number of CG reads introduced via spread preallocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11484,
        "name":  "UFS64 Number of random allocations for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataRandomRequests",
        "type":  3,
        "description":  "Number of random allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11486,
        "name":  "UFS64 Number of random allocation misses and retrials for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataRandomRetries",
        "type":  3,
        "description":  "Number of random allocation misses and retrials for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11488,
        "name":  "UFS64 Number of sequential fill window allocations for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataSeqFillWinRequests",
        "type":  3,
        "description":  "Number of sequential fill window allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11490,
        "name":  "UFS64 Number of sequential new window allocations for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataSeqNewWinRequests",
        "type":  3,
        "description":  "Number of sequential new window allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11492,
        "name":  "UFS64 Number of sequential new-window-allocation misses and retrials for Data slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocDataSeqNewWinRetries",
        "type":  3,
        "description":  "Number of sequential new-window-allocation misses and retrials for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11494,
        "name":  "UFS64 Number of CG reads introduced via spread preallocations for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMCgReads",
        "type":  3,
        "description":  "Number of CG reads introduced via spread preallocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11496,
        "name":  "UFS64 Number of random allocations for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMRandomRequests",
        "type":  3,
        "description":  "Number of random allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11498,
        "name":  "UFS64 Number of random allocation misses and retrials for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMRandomRetries",
        "type":  3,
        "description":  "Number of random allocation misses and retrials for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11500,
        "name":  "UFS64 Number of sequential fill window allocations for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMSeqFillWinRequests",
        "type":  3,
        "description":  "Number of sequential fill window allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11502,
        "name":  "UFS64 Number of sequential new window allocations for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMSeqNewWinRequests",
        "type":  3,
        "description":  "Number of sequential new window allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11504,
        "name":  "UFS64 Number of sequential new-window-allocation misses and retrials for VBM slices",
        "path":  "sp.*.fs.block.ufs64.slicemappreallocator.spallocVBMSeqNewWinRetries",
        "type":  3,
        "description":  "Number of sequential new-window-allocation misses and retrials for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11507,
        "name":  "DNLC Checked",
        "path":  "sp.*.fs.dnlc.entriesChecked",
        "type":  3,
        "description":  "Number of DNLC entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11509,
        "name":  "DNLC Find",
        "path":  "sp.*.fs.dnlc.findRequests",
        "type":  3,
        "description":  "Number of DNLC find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11512,
        "name":  "DNLC Hits",
        "path":  "sp.*.fs.dnlc.hits",
        "type":  3,
        "description":  "Number of DNLC hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11514,
        "name":  "DNLC Negative",
        "path":  "sp.*.fs.dnlc.negAdds",
        "type":  3,
        "description":  "Names added to cache with NULL file handle",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11517,
        "name":  "FCLE Block Read Cache Dirt Hit",
        "path":  "sp.*.fs.fcle.BlockReadCacheDirtyHit",
        "type":  3,
        "description":  "Number of datablocks found dirty in cache on read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11519,
        "name":  "FCLE Block Read Cache Hit",
        "path":  "sp.*.fs.fcle.BlockReadCacheHit",
        "type":  3,
        "description":  "Number of datablocks found in cache on read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11521,
        "name":  "FCLE Block Read Cache Miss",
        "path":  "sp.*.fs.fcle.BlockReadCacheMiss",
        "type":  3,
        "description":  "Number of datablocks missed in cache on read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11523,
        "name":  "FCLE Block Read Init Cache Hit",
        "path":  "sp.*.fs.fcle.BlockReadInitCacheHit",
        "type":  3,
        "description":  "Number of datablocks found in cache after mapping",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11525,
        "name":  "FCLE Block Read Init Cache Miss",
        "path":  "sp.*.fs.fcle.BlockReadInitCacheMiss",
        "type":  3,
        "description":  "Number of datablocks missed in cache after mapping",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11527,
        "name":  "FCLE Block Write Cache Dirt Hit",
        "path":  "sp.*.fs.fcle.BlockWriteCacheDirtyHit",
        "type":  3,
        "description":  "Number of datablocks found dirty in cache on write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11529,
        "name":  "FCLE Block Write Cache Hit",
        "path":  "sp.*.fs.fcle.BlockWriteCacheHit",
        "type":  3,
        "description":  "Number of datablocks found in cache on write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11531,
        "name":  "FCLE Block Write Cache Miss",
        "path":  "sp.*.fs.fcle.BlockWriteCacheMiss",
        "type":  3,
        "description":  "Number of datablocks missed in cache on write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11533,
        "name":  "FCLE IO Read Fully Cached",
        "path":  "sp.*.fs.fcle.IOReadFullyCached",
        "type":  3,
        "description":  "Read logical extents fully cached",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11535,
        "name":  "FCLE IO Read Partially Cached",
        "path":  "sp.*.fs.fcle.IOReadPartiallyCached",
        "type":  3,
        "description":  "Read logical extents containing zero or more uncahnced blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11537,
        "name":  "FCLE Read Disk IOs",
        "path":  "sp.*.fs.fcle.ReadDiskIOs",
        "type":  3,
        "description":  "Number of physical Disk Read IO for due to missed blocks in cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11542,
        "name":  "CG Cache bitmapHits",
        "path":  "sp.*.fs.file.ufs.cgcache.bitmapHits",
        "type":  3,
        "description":  "bitmap hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11544,
        "name":  "CG Cache bitmapMisses",
        "path":  "sp.*.fs.file.ufs.cgcache.bitmapMisses",
        "type":  3,
        "description":  "bitmap Misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11546,
        "name":  "CG Cache Checked",
        "path":  "sp.*.fs.file.ufs.cgcache.entriesChecked",
        "type":  3,
        "description":  "Number of entries checked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11548,
        "name":  "CG Cache Discarded",
        "path":  "sp.*.fs.file.ufs.cgcache.entriesDiscarded",
        "type":  3,
        "description":  "Number of entries discarded",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11550,
        "name":  "CG Cache Reclaimed",
        "path":  "sp.*.fs.file.ufs.cgcache.entriesReclaimed",
        "type":  3,
        "description":  "Number of entries reclaimed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11552,
        "name":  "CG Cache Find",
        "path":  "sp.*.fs.file.ufs.cgcache.findRequests",
        "type":  3,
        "description":  "Number of CG Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11555,
        "name":  "CG Cache Hits",
        "path":  "sp.*.fs.file.ufs.cgcache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11557,
        "name":  "CG Cache Misses",
        "path":  "sp.*.fs.file.ufs.cgcache.misses",
        "type":  3,
        "description":  "Number of misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11559,
        "name":  "CG Cache Mutex Waits",
        "path":  "sp.*.fs.file.ufs.cgcache.mutexWaits",
        "type":  3,
        "description":  "blocked for mutex",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11561,
        "name":  "CG Cache sweep count",
        "path":  "sp.*.fs.file.ufs.cgcache.sweepCG",
        "type":  3,
        "description":  "CG sweep count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11564,
        "name":  "DirBlkCache Accesses",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.accesses",
        "type":  3,
        "description":  "Number of accesses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11567,
        "name":  "DirBlkCache Entries",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.entries",
        "type":  5,
        "description":  "Number of dirty block cache entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11569,
        "name":  "DirBlkCache Hits",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11571,
        "name":  "DirBlkCache Late Hits",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.lateHits",
        "type":  3,
        "description":  "Number of late hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11573,
        "name":  "DirBlkCache Scans",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.scans",
        "type":  3,
        "description":  "Number of scans",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11575,
        "name":  "DirBlkCache Stale Hits",
        "path":  "sp.*.fs.file.ufs.dirBlkCache.staleHits",
        "type":  3,
        "description":  "Number of stale hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11578,
        "name":  "Directory Hash Size",
        "path":  "sp.*.fs.file.ufs.dirHash.currentSize",
        "type":  5,
        "description":  "Current directory hash size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  11579,
        "name":  "Directory Hash Searched",
        "path":  "sp.*.fs.file.ufs.dirHash.entriesSearched",
        "type":  3,
        "description":  "Number of entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11581,
        "name":  "Directory Hash Infos",
        "path":  "sp.*.fs.file.ufs.dirHash.hashInfos",
        "type":  5,
        "description":  "Number of directory hash infos",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11582,
        "name":  "Directory Hash Queues",
        "path":  "sp.*.fs.file.ufs.dirHash.hashqs",
        "type":  5,
        "description":  "Number of directory hash queues",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11584,
        "name":  "Node",
        "path":  "sp.*.fs.file.ufs.findNode.*.allocations",
        "type":  3,
        "description":  "Number of node allocations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  11587,
        "name":  "Dead",
        "path":  "sp.*.fs.file.ufs.findNode.*.deadNodes",
        "type":  3,
        "description":  "Number of nodes in dead state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11589,
        "name":  "FindNode Retried Hash Table Search",
        "path":  "sp.*.fs.file.ufs.findNode.*.hashSearchRetries",
        "type":  3,
        "description":  "Number of hash table search retries due to hash change",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11591,
        "name":  "FindNode Hash Table Search",
        "path":  "sp.*.fs.file.ufs.findNode.*.hashSearches",
        "type":  3,
        "description":  "Number of hash table searches",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11593,
        "name":  "New",
        "path":  "sp.*.fs.file.ufs.findNode.*.insertions",
        "type":  3,
        "description":  "Number of new nodes inserted in hash table",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11595,
        "name":  "New Node",
        "path":  "sp.*.fs.file.ufs.findNode.*.newNodeCalls",
        "type":  3,
        "description":  "Number of times findNode is called for new nodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11597,
        "name":  "FindNode Searched",
        "path":  "sp.*.fs.file.ufs.findNode.*.nodesSearched",
        "type":  3,
        "description":  "Number of hash table nodes searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11599,
        "name":  "FindNode Failed",
        "path":  "sp.*.fs.file.ufs.findNode.*.readsFailed",
        "type":  3,
        "description":  "Number of node read failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  11600,
        "name":  "Total FindNode",
        "path":  "sp.*.fs.file.ufs.findNode.*.totalCalls",
        "type":  3,
        "description":  "Number of times findNode is called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11602,
        "name":  "Valid",
        "path":  "sp.*.fs.file.ufs.findNode.*.validNodes",
        "type":  3,
        "description":  "Number of nodes in valid state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11605,
        "name":  "Indirect Block Invalidated",
        "path":  "sp.*.fs.file.ufs.indirectBlk.*.entriesInvalidated",
        "type":  3,
        "description":  "Indirect block entries invalidated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11607,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.file.ufs.indirectBlk.*.readHits",
        "type":  3,
        "description":  "Indirect block reads from cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read Hits"
    },
    {
        "id":  11609,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.file.ufs.indirectBlk.*.totalReads",
        "type":  3,
        "description":  "Indirect block reads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  11611,
        "name":  "Indirect Block Reads for Inode Trunc",
        "path":  "sp.*.fs.file.ufs.indirectBlk.*.truncReads",
        "type":  3,
        "description":  "Indirect block reads for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11613,
        "name":  "Indirect Block Writes for Inode Trunc",
        "path":  "sp.*.fs.file.ufs.indirectBlk.*.truncWrites",
        "type":  3,
        "description":  "Indirect block writes for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11617,
        "name":  "Allocated Inode",
        "path":  "sp.*.fs.file.ufs.inodeBlk.currentAllocatedBlocks",
        "type":  5,
        "description":  "Number of allocated inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11618,
        "name":  "Dirty Inode",
        "path":  "sp.*.fs.file.ufs.inodeBlk.currentDirtyBlocks",
        "type":  5,
        "description":  "Number of dirty inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11619,
        "name":  "Inode HashQ Checked",
        "path":  "sp.*.fs.file.ufs.inodeBlk.entriesChecked",
        "type":  3,
        "description":  "Number of inoHashQ entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11621,
        "name":  "Inode Block Allocation",
        "path":  "sp.*.fs.file.ufs.inodeBlk.totalBlocksAllocated",
        "type":  3,
        "description":  "Number of times inoBlk allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11623,
        "name":  "Inode Block Deletion",
        "path":  "sp.*.fs.file.ufs.inodeBlk.totalBlocksDeleted",
        "type":  3,
        "description":  "Number of times inoBlk deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11625,
        "name":  "Inode R/W",
        "path":  "sp.*.fs.file.ufs.inodeBlk.totalCalls",
        "type":  3,
        "description":  "Number of calls to R/W inodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11628,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.file.ufs.log.activeDescriptors",
        "type":  5,
        "description":  "Number of active descriptors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Descriptors"
    },
    {
        "id":  11629,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.file.ufs.log.activeHolds",
        "type":  5,
        "description":  "Number of active log holds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Log Holds"
    },
    {
        "id":  11630,
        "name":  "UFS Log Active",
        "path":  "sp.*.fs.file.ufs.log.activeSize",
        "type":  5,
        "description":  "Size of active log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Sectors"
    },
    {
        "id":  11631,
        "name":  "UFS Log Blocked",
        "path":  "sp.*.fs.file.ufs.log.blockedForFlush",
        "type":  3,
        "description":  "Number of times blocked for log flush",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11633,
        "name":  "UFS Log Written",
        "path":  "sp.*.fs.file.ufs.log.bytesWritten",
        "type":  3,
        "description":  "Number of bytes written to log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  11635,
        "name":  "UFS Log Duplicate",
        "path":  "sp.*.fs.file.ufs.log.duplicateObjects",
        "type":  3,
        "description":  "Number of duplicate objects in log records",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  11637,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.file.ufs.log.peakActiveDescriptors",
        "type":  5,
        "description":  "Peak number of active descriptors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Descriptors"
    },
    {
        "id":  11638,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.file.ufs.log.peakActiveHolds",
        "type":  5,
        "description":  "Peak number of active log holds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Log Holds"
    },
    {
        "id":  11639,
        "name":  "UFS Log Peak Active",
        "path":  "sp.*.fs.file.ufs.log.peakActiveSize",
        "type":  5,
        "description":  "Peak size of active log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Sectors"
    },
    {
        "id":  11640,
        "name":  "UFS Log Written",
        "path":  "sp.*.fs.file.ufs.log.recordsWritten",
        "type":  3,
        "description":  "Number of records written to log",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Records"
    },
    {
        "id":  11643,
        "name":  "Delayed Write",
        "path":  "sp.*.fs.file.ufs.log.staging.delayedWrites",
        "type":  3,
        "description":  "Number of delayed staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11646,
        "name":  "Immediate Write",
        "path":  "sp.*.fs.file.ufs.log.staging.immediateWrites",
        "type":  3,
        "description":  "Number of immediate staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11648,
        "name":  "copy2sb contention",
        "path":  "sp.*.fs.file.ufs.log.staging.lockContention",
        "type":  5,
        "description":  "ufslog copy2sb contention",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11649,
        "name":  "copy2sb yield",
        "path":  "sp.*.fs.file.ufs.log.staging.lockYield",
        "type":  5,
        "description":  "copy2sb lock yield",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11650,
        "name":  "Saved Write",
        "path":  "sp.*.fs.file.ufs.log.staging.savedWrites",
        "type":  3,
        "description":  "Number of saved staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11652,
        "name":  "Total Write",
        "path":  "sp.*.fs.file.ufs.log.staging.totalWrites",
        "type":  3,
        "description":  "Number of staging buffer writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11654,
        "name":  "wait for sb",
        "path":  "sp.*.fs.file.ufs.log.staging.waitForCleanSb",
        "type":  5,
        "description":  "wait for ufslog clean sb yield",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11656,
        "name":  "count",
        "path":  "sp.*.fs.file.ufs.log.transaction.*.count",
        "type":  3,
        "description":  "Number of transactions",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11659,
        "name":  "FS Current Allocated",
        "path":  "sp.*.fs.file.ufs.mem.currentAllocatedPages",
        "type":  5,
        "description":  "Current number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11660,
        "name":  "FS freePages",
        "path":  "sp.*.fs.file.ufs.mem.freePagesCalls",
        "type":  3,
        "description":  "Number of calls to freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11662,
        "name":  "FS getPages",
        "path":  "sp.*.fs.file.ufs.mem.getPagesCalls",
        "type":  3,
        "description":  "Number of calls to getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11664,
        "name":  "FS Peak Allocated",
        "path":  "sp.*.fs.file.ufs.mem.peakAllocatedPages",
        "type":  5,
        "description":  "Peak number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11665,
        "name":  "FS Allocated",
        "path":  "sp.*.fs.file.ufs.mem.totalPagesAllocated",
        "type":  3,
        "description":  "Total number of pages ever allocated by getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11667,
        "name":  "FS Freed",
        "path":  "sp.*.fs.file.ufs.mem.totalPagesFreed",
        "type":  3,
        "description":  "Total number of pages ever freed by freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  11672,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs.name.*.op.*.calls",
        "type":  3,
        "description":  "Number of calls for an FS operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11674,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs.name.*.op.*.totalTime",
        "type":  3,
        "description":  "Time spent in FS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  11678,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs.name.*.vop.*.calls",
        "type":  3,
        "description":  "Number of calls for a vnode operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11680,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs.name.*.vop.*.totalTime",
        "type":  3,
        "description":  "Time spent in vnode operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  11684,
        "name":  "UFS64 CG spread preallocations finding a free preferred window",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocggotpref",
        "type":  3,
        "description":  "Number of CG spread preallocations finding a free preferred window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11686,
        "name":  "UFS64 CG spread preallocations hole filling",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocgholefill",
        "type":  3,
        "description":  "Number of CG spread preallocations hole filling",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11688,
        "name":  "UFS64 CG spread preallocations getting whole window immediately",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocginitialfill",
        "type":  3,
        "description":  "Number of CG spread preallocations getting whole window immediately",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11690,
        "name":  "UFS64 CG spread preallocations skipped",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocgskip",
        "type":  3,
        "description":  "Number of CG spread preallocations skipped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11692,
        "name":  "UFS64 CG spread preallocations spanned window",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocgspanwin",
        "type":  3,
        "description":  "Number of CG spread preallocations spanned window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11694,
        "name":  "UFS64 CG spread preallocations finding a free cursor window",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocgsucc",
        "type":  3,
        "description":  "Number of CG spread preallocations finding a free cursor window",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11696,
        "name":  "UFS64 CG spread preallocation windows probed",
        "path":  "sp.*.fs.file.ufs64.CGBlk64.spallocgwindowsproved",
        "type":  3,
        "description":  "Number of CG spread preallocation windows probed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11700,
        "name":  "BMDC CPU Alloc",
        "path":  "sp.*.fs.file.ufs64.bmdcache.cpuAllocCount",
        "type":  3,
        "description":  "Number of times a BMD entry was reclaimed from the per CPU free list",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11702,
        "name":  "UFS64 Allocated BMD",
        "path":  "sp.*.fs.file.ufs64.bmdcache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated BMD entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11703,
        "name":  "BMDC Del",
        "path":  "sp.*.fs.file.ufs64.bmdcache.deleteCounts",
        "type":  3,
        "description":  "Total number of BMD cache entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11705,
        "name":  "BMDC Find Calls",
        "path":  "sp.*.fs.file.ufs64.bmdcache.findCalls",
        "type":  3,
        "description":  "Number of find calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11707,
        "name":  "BMDC Hash Ent Hit",
        "path":  "sp.*.fs.file.ufs64.bmdcache.hashEntHit",
        "type":  3,
        "description":  "Total number of cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11709,
        "name":  "BMDC Hash Ent Miss",
        "path":  "sp.*.fs.file.ufs64.bmdcache.hashEntMiss",
        "type":  3,
        "description":  "Total number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11711,
        "name":  "BMDC Hash Ent Searched",
        "path":  "sp.*.fs.file.ufs64.bmdcache.hashEntSearched",
        "type":  3,
        "description":  "Total number of hash entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11713,
        "name":  "BMDC Hash Table Size",
        "path":  "sp.*.fs.file.ufs64.bmdcache.hashTableSize",
        "type":  5,
        "description":  "Size of BMD cache in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  11715,
        "name":  "BMDC New",
        "path":  "sp.*.fs.file.ufs64.bmdcache.newCounts",
        "type":  3,
        "description":  "Total number of BMD cache entries newed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11718,
        "name":  "UFS64 CG Cache Checked",
        "path":  "sp.*.fs.file.ufs64.cgcache.entriesChecked",
        "type":  3,
        "description":  "Number of entries checked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11720,
        "name":  "UFS64 CG Cache Discarded",
        "path":  "sp.*.fs.file.ufs64.cgcache.entriesDiscarded",
        "type":  3,
        "description":  "Number of entries discarded",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11722,
        "name":  "UFS64 CG Cache Reclaimed",
        "path":  "sp.*.fs.file.ufs64.cgcache.entriesReclaimed",
        "type":  3,
        "description":  "Number of entries reclaimed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11724,
        "name":  "UFS64 CG Cache Find",
        "path":  "sp.*.fs.file.ufs64.cgcache.findRequests",
        "type":  3,
        "description":  "Number of CG Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  11727,
        "name":  "UFS64 CG Cache Hits",
        "path":  "sp.*.fs.file.ufs64.cgcache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11729,
        "name":  "UFS64 CG Cache Misses",
        "path":  "sp.*.fs.file.ufs64.cgcache.misses",
        "type":  3,
        "description":  "Number of misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11732,
        "name":  "UFS64 DirBlkCache Accesses",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.accesses",
        "type":  3,
        "description":  "Number of accesses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11735,
        "name":  "UFS64 DirBlkCache Entries",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.entries",
        "type":  5,
        "description":  "Number of dirty block cache entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11737,
        "name":  " UFS64 DirBlkCache Hits",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11739,
        "name":  "UFS64 DirBlkCache Late Hits",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.lateHits",
        "type":  3,
        "description":  "Number of late hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11741,
        "name":  "UFS64 DirBlkCache Scans",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.scans",
        "type":  3,
        "description":  "Number of scans",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11743,
        "name":  "UFS64 DirBlkCache Stale Hits",
        "path":  "sp.*.fs.file.ufs64.dirBlkCache.staleHits",
        "type":  3,
        "description":  "Number of stale hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11746,
        "name":  "UFS64 Directory Hash Size",
        "path":  "sp.*.fs.file.ufs64.dirHash.currentSize",
        "type":  5,
        "description":  "Current directory hash size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  11747,
        "name":  "UFS64 Directory Hash Searched",
        "path":  "sp.*.fs.file.ufs64.dirHash.entriesSearched",
        "type":  3,
        "description":  "Number of entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11749,
        "name":  "UFS64 Directory Hash Infos",
        "path":  "sp.*.fs.file.ufs64.dirHash.hashInfos",
        "type":  5,
        "description":  "Number of directory hash infos",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11750,
        "name":  "UFS64 Directory Hash Queues",
        "path":  "sp.*.fs.file.ufs64.dirHash.hashqs",
        "type":  5,
        "description":  "Number of directory hash queues",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11752,
        "name":  "EXTC Del",
        "path":  "sp.*.fs.file.ufs64.extentcache.deleteCounts",
        "type":  3,
        "description":  "Total number of extent cache entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11754,
        "name":  "EXTC Find Calls",
        "path":  "sp.*.fs.file.ufs64.extentcache.findCalls",
        "type":  3,
        "description":  "Total number of find calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11756,
        "name":  "EXTC Hash Ent Hit",
        "path":  "sp.*.fs.file.ufs64.extentcache.hashEntHit",
        "type":  3,
        "description":  "Total number of cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11758,
        "name":  "EXTC Hash Ent Miss",
        "path":  "sp.*.fs.file.ufs64.extentcache.hashEntMiss",
        "type":  3,
        "description":  "Total number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11760,
        "name":  "EXTC Hash Ent Searched",
        "path":  "sp.*.fs.file.ufs64.extentcache.hashEntSearched",
        "type":  3,
        "description":  "Total number of hash entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11762,
        "name":  "EXTC Hash Table Size",
        "path":  "sp.*.fs.file.ufs64.extentcache.hashTableSize",
        "type":  5,
        "description":  "Size of extent cache in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  11764,
        "name":  "EXTC New",
        "path":  "sp.*.fs.file.ufs64.extentcache.newCounts",
        "type":  3,
        "description":  "Total number of extent cache entries newed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11766,
        "name":  "EXTC Recycle",
        "path":  "sp.*.fs.file.ufs64.extentcache.recycleCounts",
        "type":  3,
        "description":  "Total number of extent cache entries recycled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11769,
        "name":  "fc64 Cleaned",
        "path":  "sp.*.fs.file.ufs64.fc64.cleaned",
        "type":  3,
        "description":  "Number of entires found in a bad state and recycled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11771,
        "name":  "fc64 Lookup Error",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupError",
        "type":  3,
        "description":  "Number of times lookup routine failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11773,
        "name":  "fc64 Lookup Read",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupRead",
        "type":  3,
        "description":  "Number of times find is called for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11774,
        "name":  "fc64 Lookup Read Hit",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupReadHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11776,
        "name":  "fc64 Lookup Read Miss",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupReadMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11779,
        "name":  "fc64 Lookup Write",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupWrite",
        "type":  3,
        "description":  "Number of times find is called for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11780,
        "name":  "fc64 Lookup Write Hit",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupWriteHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11782,
        "name":  "fc64 Lookup Write Miss",
        "path":  "sp.*.fs.file.ufs64.fc64.lookupWriteMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11785,
        "name":  "fc64 Make Usable Hit",
        "path":  "sp.*.fs.file.ufs64.fc64.makeusableHit",
        "type":  3,
        "description":  "Number of times and entry at rest could be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11787,
        "name":  "fc64 Make Usable Miss",
        "path":  "sp.*.fs.file.ufs64.fc64.makeusableMiss",
        "type":  3,
        "description":  "Number of times and entry at rest could not be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11789,
        "name":  "fc64 Match Hit",
        "path":  "sp.*.fs.file.ufs64.fc64.matchHit",
        "type":  3,
        "description":  "Number of times a match is made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11791,
        "name":  "fc64 Match Miss",
        "path":  "sp.*.fs.file.ufs64.fc64.matchMiss",
        "type":  3,
        "description":  "Number of times a match is not made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11793,
        "name":  "fc64 Match Search",
        "path":  "sp.*.fs.file.ufs64.fc64.matchSearch",
        "type":  3,
        "description":  "Number of times a match is attempted between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11795,
        "name":  "fc64 New Entry",
        "path":  "sp.*.fs.file.ufs64.fc64.newEntry",
        "type":  3,
        "description":  "Number of times a new entry was entered into the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11797,
        "name":  "fc64 Preempted",
        "path":  "sp.*.fs.file.ufs64.fc64.preempted",
        "type":  3,
        "description":  "Number of times an entry was preempted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11799,
        "name":  "fc64 Purged",
        "path":  "sp.*.fs.file.ufs64.fc64.purged",
        "type":  3,
        "description":  "Number of times and entry was purged from the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11801,
        "name":  "fc64 Quarintined",
        "path":  "sp.*.fs.file.ufs64.fc64.quarintined",
        "type":  3,
        "description":  "Number of entires found in a bad state quarintined",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11803,
        "name":  "fc64 Reclaimed",
        "path":  "sp.*.fs.file.ufs64.fc64.reclaimed",
        "type":  3,
        "description":  "Number of times an entry was reclaimed back to an active state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11805,
        "name":  "fc64 Return Read",
        "path":  "sp.*.fs.file.ufs64.fc64.returnRead",
        "type":  3,
        "description":  "Number of times find returned and entry for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11807,
        "name":  "fc64 Return Write",
        "path":  "sp.*.fs.file.ufs64.fc64.returnWrite",
        "type":  3,
        "description":  "Number of times find returned and entry for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11809,
        "name":  "fc64 Stale FileSystem",
        "path":  "sp.*.fs.file.ufs64.fc64.staleFileSystem",
        "type":  3,
        "description":  "Number of times an entry was found associated with a stale filesystem",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11811,
        "name":  "fc64 Total",
        "path":  "sp.*.fs.file.ufs64.fc64.totalEntries",
        "type":  5,
        "description":  "Number of descriptor entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11812,
        "name":  "fc64 Wait On Init",
        "path":  "sp.*.fs.file.ufs64.fc64.waitOnInit",
        "type":  3,
        "description":  "Number of times and thread has waited on another to initialize entry",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11815,
        "name":  "Node",
        "path":  "sp.*.fs.file.ufs64.findNode.*.allocations",
        "type":  3,
        "description":  "Number of node allocations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  11818,
        "name":  "Dead",
        "path":  "sp.*.fs.file.ufs64.findNode.*.deadNodes",
        "type":  3,
        "description":  "Number of nodes in dead state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11820,
        "name":  "FindNode Retried Hash Table Search",
        "path":  "sp.*.fs.file.ufs64.findNode.*.hashSearchRetries",
        "type":  3,
        "description":  "Number of hash table search retries due to hash change",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11822,
        "name":  "FindNode Hash Table Search",
        "path":  "sp.*.fs.file.ufs64.findNode.*.hashSearches",
        "type":  3,
        "description":  "Number of hash table searches",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11824,
        "name":  "New",
        "path":  "sp.*.fs.file.ufs64.findNode.*.insertions",
        "type":  3,
        "description":  "Number of new nodes inserted in hash table",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11826,
        "name":  "New Node",
        "path":  "sp.*.fs.file.ufs64.findNode.*.newNodeCalls",
        "type":  3,
        "description":  "Number of times findNode is called for new nodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11828,
        "name":  "FindNode Searched",
        "path":  "sp.*.fs.file.ufs64.findNode.*.nodesSearched",
        "type":  3,
        "description":  "Number of hash table nodes searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11830,
        "name":  "FindNode Failed",
        "path":  "sp.*.fs.file.ufs64.findNode.*.readsFailed",
        "type":  3,
        "description":  "Number of node read failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  11831,
        "name":  "Total FindNode",
        "path":  "sp.*.fs.file.ufs64.findNode.*.totalCalls",
        "type":  3,
        "description":  "Number of times findNode is called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11833,
        "name":  "Valid",
        "path":  "sp.*.fs.file.ufs64.findNode.*.validNodes",
        "type":  3,
        "description":  "Number of nodes in valid state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  11836,
        "name":  "gdbc64 Cleaned",
        "path":  "sp.*.fs.file.ufs64.gdbc64.cleaned",
        "type":  3,
        "description":  "Number of entires found in a bad state and recycled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11838,
        "name":  "gdbc64 Lookup Error",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupError",
        "type":  3,
        "description":  "Number of times lookup routine failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11840,
        "name":  "gdbc64 Lookup Read",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupRead",
        "type":  3,
        "description":  "Number of times find is called for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11841,
        "name":  "gdbc64 Lookup Read Hit",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupReadHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11843,
        "name":  "gdbc64 Lookup Read Miss",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupReadMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11846,
        "name":  "gdbc64 Lookup Write",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupWrite",
        "type":  3,
        "description":  "Number of times find is called for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11847,
        "name":  "gdbc64 Lookup Write Hit",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupWriteHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11849,
        "name":  "gdbc64 Lookup Write Miss",
        "path":  "sp.*.fs.file.ufs64.gdbc64.lookupWriteMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11852,
        "name":  "gdbc64 Make Usable Hit",
        "path":  "sp.*.fs.file.ufs64.gdbc64.makeusableHit",
        "type":  3,
        "description":  "Number of times and entry at rest could be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11854,
        "name":  "gdbc64 Make Usable Miss",
        "path":  "sp.*.fs.file.ufs64.gdbc64.makeusableMiss",
        "type":  3,
        "description":  "Number of times and entry at rest could not be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11856,
        "name":  "gdbc64 Match Hit",
        "path":  "sp.*.fs.file.ufs64.gdbc64.matchHit",
        "type":  3,
        "description":  "Number of times a match is made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11858,
        "name":  "gdbc64 Match Miss",
        "path":  "sp.*.fs.file.ufs64.gdbc64.matchMiss",
        "type":  3,
        "description":  "Number of times a match is not made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11860,
        "name":  "gdbc64 Match Search",
        "path":  "sp.*.fs.file.ufs64.gdbc64.matchSearch",
        "type":  3,
        "description":  "Number of times a match is attempted between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11862,
        "name":  "gdbc64 New Entry",
        "path":  "sp.*.fs.file.ufs64.gdbc64.newEntry",
        "type":  3,
        "description":  "Number of times a new entry was entered into the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11864,
        "name":  "gdbc64 Preempted",
        "path":  "sp.*.fs.file.ufs64.gdbc64.preempted",
        "type":  3,
        "description":  "Number of times an entry was preempted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11866,
        "name":  "gdbc64 Purged",
        "path":  "sp.*.fs.file.ufs64.gdbc64.purged",
        "type":  3,
        "description":  "Number of times and entry was purged from the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11868,
        "name":  "gdbc64 Quarintined",
        "path":  "sp.*.fs.file.ufs64.gdbc64.quarintined",
        "type":  3,
        "description":  "Number of entires found in a bad state quarintined",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11870,
        "name":  "gdbc64 Reclaimed",
        "path":  "sp.*.fs.file.ufs64.gdbc64.reclaimed",
        "type":  3,
        "description":  "Number of times an entry was reclaimed back to an active state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11872,
        "name":  "gdbc64 Return Read",
        "path":  "sp.*.fs.file.ufs64.gdbc64.returnRead",
        "type":  3,
        "description":  "Number of times find returned and entry for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11874,
        "name":  "gdbc64 Return Write",
        "path":  "sp.*.fs.file.ufs64.gdbc64.returnWrite",
        "type":  3,
        "description":  "Number of times find returned and entry for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11876,
        "name":  "gdbc64 Stale FileSystem",
        "path":  "sp.*.fs.file.ufs64.gdbc64.staleFileSystem",
        "type":  3,
        "description":  "Number of times an entry was found associated with a stale filesystem",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11878,
        "name":  "gdbc64 Total",
        "path":  "sp.*.fs.file.ufs64.gdbc64.totalEntries",
        "type":  5,
        "description":  "Number of descriptor entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11879,
        "name":  "gdbc64 Wait On Init",
        "path":  "sp.*.fs.file.ufs64.gdbc64.waitOnInit",
        "type":  3,
        "description":  "Number of times and thread has waited on another to initialize entry",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11882,
        "name":  "GIBC FS Sync Request",
        "path":  "sp.*.fs.file.ufs64.gibc.FSSyncRequests",
        "type":  3,
        "description":  "Number of times general sync request was made against FS due to per FS dirty list HWM",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11884,
        "name":  "GIBC Add Dirty",
        "path":  "sp.*.fs.file.ufs64.gibc.addDirty",
        "type":  3,
        "description":  "Number of times an entry was dirtied pending writing back to disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11886,
        "name":  "GIBC Dirty",
        "path":  "sp.*.fs.file.ufs64.gibc.dirtyEntries",
        "type":  5,
        "description":  "Number of dirty indirect block entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11888,
        "name":  "GIBC Entered",
        "path":  "sp.*.fs.file.ufs64.gibc.enteredIntoCache",
        "type":  3,
        "description":  "Number of times a new buffer entry was put into the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11890,
        "name":  "GIBC Fail Load",
        "path":  "sp.*.fs.file.ufs64.gibc.failLoads",
        "type":  3,
        "description":  "Number of times IO failed to read buffer cache off disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11892,
        "name":  "GIBC Found In INIT",
        "path":  "sp.*.fs.file.ufs64.gibc.foundInInit",
        "type":  3,
        "description":  "Number of times entry found in init",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11894,
        "name":  "GIBC General Sync",
        "path":  "sp.*.fs.file.ufs64.gibc.generalSync",
        "type":  3,
        "description":  "Number of times entry was synced to disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11896,
        "name":  "GIBC General Sync Wait",
        "path":  "sp.*.fs.file.ufs64.gibc.generalSyncWait",
        "type":  3,
        "description":  "Number of times sync request had to wait because previous committed buffer was still being synced",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11898,
        "name":  "GIBC Global Sync Request",
        "path":  "sp.*.fs.file.ufs64.gibc.globalSyncRequests",
        "type":  3,
        "description":  "Number of times the global sync request was made due to global HWM",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11900,
        "name":  "GIBC Hash Table Size",
        "path":  "sp.*.fs.file.ufs64.gibc.hashTableSize",
        "type":  5,
        "description":  "Size of GIBC in number of entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  11902,
        "name":  "GIBC In Place Sync",
        "path":  "sp.*.fs.file.ufs64.gibc.inPlaceSync",
        "type":  3,
        "description":  "Number of times entry was synced in place",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11904,
        "name":  "GIBC Lookup",
        "path":  "sp.*.fs.file.ufs64.gibc.lookup",
        "type":  3,
        "description":  "Number of times find is called",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11905,
        "name":  "GIBC LookUp Hit",
        "path":  "sp.*.fs.file.ufs64.gibc.lookupDescriptorHit",
        "type":  3,
        "description":  "Number of times find found the entry in the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11907,
        "name":  "GIBC LookUp Miss",
        "path":  "sp.*.fs.file.ufs64.gibc.lookupDescriptorMiss",
        "type":  3,
        "description":  "Number of times lookup failed to find entry in cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11911,
        "name":  "GIBC Purged Entry",
        "path":  "sp.*.fs.file.ufs64.gibc.purgedEntries",
        "type":  3,
        "description":  "Number of times entry was purged from cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11913,
        "name":  "GIBC Reclaimed Entry",
        "path":  "sp.*.fs.file.ufs64.gibc.reclaimedEntries",
        "type":  3,
        "description":  "Number of times entry was reclaimed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11915,
        "name":  "GIBC Replace Dirty",
        "path":  "sp.*.fs.file.ufs64.gibc.replaceDirty",
        "type":  3,
        "description":  "Number of times dirty entry replaced existing dirty entry",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11917,
        "name":  "GIBC Returned Entry",
        "path":  "sp.*.fs.file.ufs64.gibc.returnedEntries",
        "type":  3,
        "description":  "Number of times an entry was returned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11919,
        "name":  "GIBC Returned Null Entry",
        "path":  "sp.*.fs.file.ufs64.gibc.returnedNullEntries",
        "type":  3,
        "description":  "Number of times an entry was not returned",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11921,
        "name":  "GIBC Stale Buffer",
        "path":  "sp.*.fs.file.ufs64.gibc.staleBuffer",
        "type":  3,
        "description":  "Number of times entry contained a stale buffer",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11923,
        "name":  "GIBC Stale FS",
        "path":  "sp.*.fs.file.ufs64.gibc.staleFS",
        "type":  3,
        "description":  "Number of times entry is associated with stale file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11925,
        "name":  "GIBC Load",
        "path":  "sp.*.fs.file.ufs64.gibc.successLoads",
        "type":  3,
        "description":  "Number of times an entry\u0027s buffer cache was successfully read off disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  11927,
        "name":  "GIBC Total",
        "path":  "sp.*.fs.file.ufs64.gibc.totalEntries",
        "type":  5,
        "description":  "Number of indirect block entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11928,
        "name":  "GIBC Total Hit",
        "path":  "sp.*.fs.file.ufs64.gibc.totalHits",
        "type":  3,
        "description":  "Number of total hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11931,
        "name":  "Indirect Block Invalidated",
        "path":  "sp.*.fs.file.ufs64.indirectBlk.*.entriesInvalidated",
        "type":  3,
        "description":  "Indirect block entries invalidated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11933,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.file.ufs64.indirectBlk.*.readHits",
        "type":  3,
        "description":  "Indirect block reads from cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read Hits"
    },
    {
        "id":  11935,
        "name":  "Indirect Block",
        "path":  "sp.*.fs.file.ufs64.indirectBlk.*.totalReads",
        "type":  3,
        "description":  "Indirect block reads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  11937,
        "name":  "Indirect Block Reads for Inode Trunc",
        "path":  "sp.*.fs.file.ufs64.indirectBlk.*.truncReads",
        "type":  3,
        "description":  "Indirect block reads for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11939,
        "name":  "Indirect Block Writes for Inode Trunc",
        "path":  "sp.*.fs.file.ufs64.indirectBlk.*.truncWrites",
        "type":  3,
        "description":  "Indirect block writes for inode truncation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  11943,
        "name":  "UFS64 Allocated Inode",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.currentAllocatedBlocks",
        "type":  5,
        "description":  "Number of allocated inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11944,
        "name":  "UFS64 Dirty Inode",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.currentDirtyBlocks",
        "type":  5,
        "description":  "Number of dirty inoBlk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  11945,
        "name":  "UFS64 Inode HashQ Checked",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.entriesChecked",
        "type":  3,
        "description":  "Number of inoHashQ entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  11947,
        "name":  "UFS64 Inode Block Allocation",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.totalBlocksAllocated",
        "type":  3,
        "description":  "Number of times inoBlk allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11949,
        "name":  "UFS64 Inode Block Deletion",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.totalBlocksDeleted",
        "type":  3,
        "description":  "Number of times inoBlk deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11951,
        "name":  "UFS64 Inode R/W",
        "path":  "sp.*.fs.file.ufs64.inodeBlk.totalCalls",
        "type":  3,
        "description":  "Number of calls to R/W inodes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  11954,
        "name":  "MFD Alloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDAllocData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11956,
        "name":  "MFD Alloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDAllocMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11958,
        "name":  "MFD Dealloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDDeallocData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11960,
        "name":  "MFD Dealloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDDeallocMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11962,
        "name":  "MFD Substitute Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDSubstituteData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11964,
        "name":  "MFD Substitute Free Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDSubstituteFreeData",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11966,
        "name":  "MFD Substitute Free Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11968,
        "name":  "MFD Substitute Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDSubstituteMeta",
        "type":  3,
        "description":  "Map For Deallocate: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11970,
        "name":  "MFDedup Alloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupAllocData",
        "type":  3,
        "description":  "Map For Dedup: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11972,
        "name":  "MFDedup Alloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupAllocMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11974,
        "name":  "MFDedup Dealloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupDeallocData",
        "type":  3,
        "description":  "Map For Dedup: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11976,
        "name":  "MFDedup Dealloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupDeallocMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11978,
        "name":  "MFDedup Substitute Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupSubstituteData",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11980,
        "name":  "MFDedup Substitute Free Data",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupSubstituteFreeData",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11982,
        "name":  "MFDedup Substitute Free Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11984,
        "name":  "MFDedup Substitute Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFDedupSubstituteMeta",
        "type":  3,
        "description":  "Map For Dedup: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11986,
        "name":  "MFW Alloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFWAllocData",
        "type":  3,
        "description":  "Map For Write: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11988,
        "name":  "MFW Alloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFWAllocMeta",
        "type":  3,
        "description":  "Map For Write: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11990,
        "name":  "MFW Dealloc Data",
        "path":  "sp.*.fs.file.ufs64.io.MFWDeallocData",
        "type":  3,
        "description":  "Map For Write: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11992,
        "name":  "MFW Dealloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFWDeallocMeta",
        "type":  3,
        "description":  "Map For Write: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11994,
        "name":  "MFW Substitute Data",
        "path":  "sp.*.fs.file.ufs64.io.MFWSubstituteData",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11996,
        "name":  "MFW Substitute Free Data",
        "path":  "sp.*.fs.file.ufs64.io.MFWSubstituteFreeData",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  11998,
        "name":  "MFW Substitute Free Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFWSubstituteFreeMeta",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12000,
        "name":  "MFW Substitute Meta",
        "path":  "sp.*.fs.file.ufs64.io.MFWSubstituteMeta",
        "type":  3,
        "description":  "Map For Write: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12002,
        "name":  "Trunc Alloc Data",
        "path":  "sp.*.fs.file.ufs64.io.TruncAllocData",
        "type":  3,
        "description":  "Trunc: Number of times Data blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12004,
        "name":  "Trunc Alloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.TruncAllocMeta",
        "type":  3,
        "description":  "Trunc: Number of times Meta blocks allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12006,
        "name":  "Trunc Dealloc Data",
        "path":  "sp.*.fs.file.ufs64.io.TruncDeallocData",
        "type":  3,
        "description":  "Trunc: Number of times Data blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12008,
        "name":  "Trunc Dealloc Meta",
        "path":  "sp.*.fs.file.ufs64.io.TruncDeallocMeta",
        "type":  3,
        "description":  "Trunc: Number of times Meta blocks deallocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12010,
        "name":  "Trunc Substitute Data",
        "path":  "sp.*.fs.file.ufs64.io.TruncSubstituteData",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Data block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12012,
        "name":  "Trunc Substitute Free Data",
        "path":  "sp.*.fs.file.ufs64.io.TruncSubstituteFreeData",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Data block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12014,
        "name":  "Trunc Substitute Free Meta",
        "path":  "sp.*.fs.file.ufs64.io.TruncSubstituteFreeMeta",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Meta block and freed a block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12016,
        "name":  "Trunc Substitute Meta",
        "path":  "sp.*.fs.file.ufs64.io.TruncSubstituteMeta",
        "type":  3,
        "description":  "Trunc: Number of times substituted mapping in Meta block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12019,
        "name":  "UFS64 Current Allocated",
        "path":  "sp.*.fs.file.ufs64.mem.currentAllocatedPages",
        "type":  5,
        "description":  "Current number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  12020,
        "name":  "UFS64 freePages",
        "path":  "sp.*.fs.file.ufs64.mem.freePagesCalls",
        "type":  3,
        "description":  "Number of calls to freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12022,
        "name":  "UFS64 getPages",
        "path":  "sp.*.fs.file.ufs64.mem.getPagesCalls",
        "type":  3,
        "description":  "Number of calls to getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12024,
        "name":  "UFS64 Peak Allocated",
        "path":  "sp.*.fs.file.ufs64.mem.peakAllocatedPages",
        "type":  5,
        "description":  "Peak number of allocated pages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  12025,
        "name":  "UFS64 Allocated",
        "path":  "sp.*.fs.file.ufs64.mem.totalPagesAllocated",
        "type":  3,
        "description":  "Total number of pages ever allocated by getPages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  12027,
        "name":  "UFS64 Freed",
        "path":  "sp.*.fs.file.ufs64.mem.totalPagesFreed",
        "type":  3,
        "description":  "Total number of pages ever freed by freePages",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pages"
    },
    {
        "id":  12032,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs64.name.*.op.*.calls",
        "type":  3,
        "description":  "Number of calls for an FS operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12034,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs64.name.*.op.*.totalTime",
        "type":  3,
        "description":  "Time spent in FS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  12038,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs64.name.*.vop.*.calls",
        "type":  3,
        "description":  "Number of calls for a vnode operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12040,
        "name":  "Total",
        "path":  "sp.*.fs.file.ufs64.name.*.vop.*.totalTime",
        "type":  3,
        "description":  "Time spent in vnode operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  12043,
        "name":  "pfdcfc Cleaned",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.cleaned",
        "type":  3,
        "description":  "Number of entires found in a bad state and recycled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12045,
        "name":  "pfdcfc Lookup Error",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupError",
        "type":  3,
        "description":  "Number of times lookup routine failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12047,
        "name":  "pfdcfc Lookup Read",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupRead",
        "type":  3,
        "description":  "Number of times find is called for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12048,
        "name":  "pfdcfc Lookup Read Hit",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupReadHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12050,
        "name":  "pfdcfc Lookup Read Miss",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupReadMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12053,
        "name":  "pfdcfc Lookup Write",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupWrite",
        "type":  3,
        "description":  "Number of times find is called for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12054,
        "name":  "pfdcfc Lookup Write Hit",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupWriteHit",
        "type":  3,
        "description":  "Number of times a descriptor is found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12056,
        "name":  "pfdcfc Lookup Write Miss",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.lookupWriteMiss",
        "type":  3,
        "description":  "Number of times a descriptor is not found for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12059,
        "name":  "pfdcfc Make Usable Hit",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.makeusableHit",
        "type":  3,
        "description":  "Number of times and entry at rest could be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12061,
        "name":  "pfdcfc Make Usable Miss",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.makeusableMiss",
        "type":  3,
        "description":  "Number of times and entry at rest could not be made reusable",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12063,
        "name":  "pfdcfc Match Hit",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.matchHit",
        "type":  3,
        "description":  "Number of times a match is made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12065,
        "name":  "pfdcfc Match Miss",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.matchMiss",
        "type":  3,
        "description":  "Number of times a match is not made between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12067,
        "name":  "pfdcfc Match Search",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.matchSearch",
        "type":  3,
        "description":  "Number of times a match is attempted between entry and key",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12069,
        "name":  "pfdcfc New Entry",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.newEntry",
        "type":  3,
        "description":  "Number of times a new entry was entered into the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12071,
        "name":  "pfdcfc Preempted",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.preempted",
        "type":  3,
        "description":  "Number of times an entry was preempted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12073,
        "name":  "pfdcfc Purged",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.purged",
        "type":  3,
        "description":  "Number of times and entry was purged from the cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12075,
        "name":  "pfdcfc Quarintined",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.quarintined",
        "type":  3,
        "description":  "Number of entires found in a bad state quarintined",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12077,
        "name":  "pfdcfc Reclaimed",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.reclaimed",
        "type":  3,
        "description":  "Number of times an entry was reclaimed back to an active state",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12079,
        "name":  "pfdcfc Return Read",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.returnRead",
        "type":  3,
        "description":  "Number of times find returned and entry for read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12081,
        "name":  "pfdcfc Return Write",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.returnWrite",
        "type":  3,
        "description":  "Number of times find returned and entry for write",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12083,
        "name":  "pfdcfc Stale FileSystem",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.staleFileSystem",
        "type":  3,
        "description":  "Number of times an entry was found associated with a stale filesystem",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12085,
        "name":  "pfdcfc Total",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.totalEntries",
        "type":  5,
        "description":  "Number of descriptor entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12086,
        "name":  "pfdcfc Wait On Init",
        "path":  "sp.*.fs.file.ufs64.pfdcfc.waitOnInit",
        "type":  3,
        "description":  "Number of times and thread has waited on another to initialize entry",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12089,
        "name":  "UFS64 SabHas failed allocs",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.allocfail",
        "type":  3,
        "description":  "Number of SabHas failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12091,
        "name":  "UFS64 SabHas successful allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.allochinthit",
        "type":  3,
        "description":  "Number of SabHas successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12093,
        "name":  "UFS64 SabHas failed allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SabHas failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12095,
        "name":  "UFS64 SabHas successful allocs",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.allocsucc",
        "type":  3,
        "description":  "Number of SabHas successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12097,
        "name":  "UFS64 SabHas successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.lastallochit",
        "type":  3,
        "description":  "Number of SabHas successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12099,
        "name":  "UFS64 SabHas failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SabHas failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12103,
        "name":  "UFS64 SabHas objects skipped for spread preallocation",
        "path":  "sp.*.fs.file.ufs64.sabhasalloc.spallocskips",
        "type":  3,
        "description":  "Number of SabHas objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12107,
        "name":  "UFS64 Allocated SabHas",
        "path":  "sp.*.fs.file.ufs64.sabhascache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SabHas entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12108,
        "name":  "UFS64 SabHas Cache Searched",
        "path":  "sp.*.fs.file.ufs64.sabhascache.entriesSearched",
        "type":  3,
        "description":  "Number of SabHas entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12110,
        "name":  "UFS64 SabHas Cache Find",
        "path":  "sp.*.fs.file.ufs64.sabhascache.findRequests",
        "type":  3,
        "description":  "Number of SabHass Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12113,
        "name":  "UFS64 SabHas Cache Hits",
        "path":  "sp.*.fs.file.ufs64.sabhascache.hits",
        "type":  3,
        "description":  "Number of SabHas Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12115,
        "name":  "UFS64 SabHas Cache Misses",
        "path":  "sp.*.fs.file.ufs64.sabhascache.misses",
        "type":  3,
        "description":  "Number of SabHas Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12117,
        "name":  "UFS64 SabHas Entries Allocation",
        "path":  "sp.*.fs.file.ufs64.sabhascache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SabHas entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12119,
        "name":  "UFS64 SabHas Entries Deletion",
        "path":  "sp.*.fs.file.ufs64.sabhascache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SabHas entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12122,
        "name":  "UFS64 SgBackedSlices failed allocs",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.allocfail",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12124,
        "name":  "UFS64 SgBackedSlices successful allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.allochinthit",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12126,
        "name":  "UFS64 SgBackedSlices failed allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12128,
        "name":  "UFS64 SgBackedSlices successful allocs",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.allocsucc",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12130,
        "name":  "UFS64 SgBackedSlices successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.lastallochit",
        "type":  3,
        "description":  "Number of SgBackedSlices successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12132,
        "name":  "UFS64 SgBackedSlices failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SgBackedSlices failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12136,
        "name":  "UFS64 SgBackedSlices objects skipped for spread preallocation",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicesalloc.spallocskips",
        "type":  3,
        "description":  "Number of SgBackedSlices objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12140,
        "name":  "UFS64 Allocated SgBackedSlices",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SgBackedSlices entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12141,
        "name":  "UFS64 SgBackedSlices Cache Searched",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.entriesSearched",
        "type":  3,
        "description":  "Number of SgBackedSlices entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12143,
        "name":  "UFS64 SgBackedSlices Cache Find",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.findRequests",
        "type":  3,
        "description":  "Number of SgBackedSlicess Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12146,
        "name":  "UFS64 SgBackedSlices Cache Hits",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.hits",
        "type":  3,
        "description":  "Number of SgBackedSlices Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12148,
        "name":  "UFS64 SgBackedSlices Cache Misses",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.misses",
        "type":  3,
        "description":  "Number of SgBackedSlices Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12150,
        "name":  "UFS64 SgBackedSlices Entries Allocation",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SgBackedSlices entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12152,
        "name":  "UFS64 SgBackedSlices Entries Deletion",
        "path":  "sp.*.fs.file.ufs64.sgbackedslicescache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SgBackedSlices entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12155,
        "name":  "UFS64 SgHas failed allocs",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.allocfail",
        "type":  3,
        "description":  "Number of SgHas failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12157,
        "name":  "UFS64 SgHas successful allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.allochinthit",
        "type":  3,
        "description":  "Number of SgHas successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12159,
        "name":  "UFS64 SgHas failed allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SgHas failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12161,
        "name":  "UFS64 SgHas successful allocs",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.allocsucc",
        "type":  3,
        "description":  "Number of SgHas successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12163,
        "name":  "UFS64 SgHas successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.lastallochit",
        "type":  3,
        "description":  "Number of SgHas successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12165,
        "name":  "UFS64 SgHas failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SgHas failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12169,
        "name":  "UFS64 SgHas objects skipped for spread preallocation",
        "path":  "sp.*.fs.file.ufs64.sghasalloc.spallocskips",
        "type":  3,
        "description":  "Number of SgHas objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12173,
        "name":  "UFS64 Allocated SgHas",
        "path":  "sp.*.fs.file.ufs64.sghascache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SgHas entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12174,
        "name":  "UFS64 SgHas Cache Searched",
        "path":  "sp.*.fs.file.ufs64.sghascache.entriesSearched",
        "type":  3,
        "description":  "Number of SgHas entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12176,
        "name":  "UFS64 SgHas Cache Find",
        "path":  "sp.*.fs.file.ufs64.sghascache.findRequests",
        "type":  3,
        "description":  "Number of SgHas Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12179,
        "name":  "UFS64 SgHas Cache Hits",
        "path":  "sp.*.fs.file.ufs64.sghascache.hits",
        "type":  3,
        "description":  "Number of SgHas Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12181,
        "name":  "UFS64 SgHas Cache Misses",
        "path":  "sp.*.fs.file.ufs64.sghascache.misses",
        "type":  3,
        "description":  "Number of SgHas Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12183,
        "name":  "UFS64 SgHas Entries Allocation",
        "path":  "sp.*.fs.file.ufs64.sghascache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SgHas entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12185,
        "name":  "UFS64 SgHas Entries Deletion",
        "path":  "sp.*.fs.file.ufs64.sghascache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SgHas entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12188,
        "name":  "UFS64 SliceAttrs failed allocs",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.allocfail",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12190,
        "name":  "UFS64 SliceAttrs successful allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.allochinthit",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12192,
        "name":  "UFS64 SliceAttrs failed allocs (using block pref hint)",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.allochintmiss",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs using block pref hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12194,
        "name":  "UFS64 SliceAttrs successful allocs",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.allocsucc",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12196,
        "name":  "UFS64 SliceAttrs successful allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.lastallochit",
        "type":  3,
        "description":  "Number of SliceAttrs successful allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12198,
        "name":  "UFS64 SliceAttrs failed allocs (using last alloc hint)",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.lastallocmiss",
        "type":  3,
        "description":  "Number of SliceAttrs failed allocs using last alloc hint",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12202,
        "name":  "UFS64 SliceAttrs objects skipped for spread preallocation",
        "path":  "sp.*.fs.file.ufs64.sliceattrsalloc.spallocskips",
        "type":  3,
        "description":  "Number of SliceAttrs objects skipped for spread preallocation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12206,
        "name":  "UFS64 Allocated SliceAttrs",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.currentAllocatedEntries",
        "type":  5,
        "description":  "Number of allocated SliceAttrs entries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12207,
        "name":  "UFS64 SliceAttrs Cache Searched",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.entriesSearched",
        "type":  3,
        "description":  "Number of SliceAttrs entries searched",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12209,
        "name":  "UFS64 SliceAttrs Cache Find",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.findRequests",
        "type":  3,
        "description":  "Number of SliceAttrs Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12212,
        "name":  "UFS64 SliceAttrs Cache Hits",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.hits",
        "type":  3,
        "description":  "Number of SliceAttrs Cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12214,
        "name":  "UFS64 SliceAttrs Cache Misses",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.misses",
        "type":  3,
        "description":  "Number of SliceAttrs Cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12216,
        "name":  "UFS64 SliceAttrs Entries Allocation",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.totalEntriesAllocated",
        "type":  3,
        "description":  "Number of times SliceAttrs entries allocated",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12218,
        "name":  "UFS64 SliceAttrs Entries Deletion",
        "path":  "sp.*.fs.file.ufs64.sliceattrscache.totalEntriesDeleted",
        "type":  3,
        "description":  "Number of times SliceAttrs entries deleted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12221,
        "name":  "UFS64 Number of CG reads introduced via spread preallocations for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataCgReads",
        "type":  3,
        "description":  "Number of CG reads introduced via spread preallocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12223,
        "name":  "UFS64 Number of random allocations for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataRandomRequests",
        "type":  3,
        "description":  "Number of random allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12225,
        "name":  "UFS64 Number of random allocation misses and retrials for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataRandomRetries",
        "type":  3,
        "description":  "Number of random allocation misses and retrials for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12227,
        "name":  "UFS64 Number of sequential fill window allocations for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataSeqFillWinRequests",
        "type":  3,
        "description":  "Number of sequential fill window allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12229,
        "name":  "UFS64 Number of sequential new window allocations for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataSeqNewWinRequests",
        "type":  3,
        "description":  "Number of sequential new window allocations for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12231,
        "name":  "UFS64 Number of sequential new-window-allocation misses and retrials for Data slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocDataSeqNewWinRetries",
        "type":  3,
        "description":  "Number of sequential new-window-allocation misses and retrials for Data slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12233,
        "name":  "UFS64 Number of CG reads introduced via spread preallocations for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMCgReads",
        "type":  3,
        "description":  "Number of CG reads introduced via spread preallocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12235,
        "name":  "UFS64 Number of random allocations for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMRandomRequests",
        "type":  3,
        "description":  "Number of random allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12237,
        "name":  "UFS64 Number of random allocation misses and retrials for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMRandomRetries",
        "type":  3,
        "description":  "Number of random allocation misses and retrials for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12239,
        "name":  "UFS64 Number of sequential fill window allocations for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMSeqFillWinRequests",
        "type":  3,
        "description":  "Number of sequential fill window allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12241,
        "name":  "UFS64 Number of sequential new window allocations for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMSeqNewWinRequests",
        "type":  3,
        "description":  "Number of sequential new window allocations for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12243,
        "name":  "UFS64 Number of sequential new-window-allocation misses and retrials for VBM slices",
        "path":  "sp.*.fs.file.ufs64.slicemappreallocator.spallocVBMSeqNewWinRetries",
        "type":  3,
        "description":  "Number of sequential new-window-allocation misses and retrials for VBM slices",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12246,
        "name":  "FileFork Disk Async",
        "path":  "sp.*.fs.filefork.asyncFsReads",
        "type":  3,
        "description":  "Number of async reads from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12248,
        "name":  "FileFork IO",
        "path":  "sp.*.fs.filefork.asyncLimitDecreaseCount",
        "type":  3,
        "description":  "Number of times async limits decreased",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "AsyncLimitDecrease"
    },
    {
        "id":  12249,
        "name":  "FileFork IO",
        "path":  "sp.*.fs.filefork.asyncLimitIncreaseCount",
        "type":  3,
        "description":  "Number of times async limits increased",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "AsyncLimitIncrease"
    },
    {
        "id":  12250,
        "name":  "FileFork Buffer Cache Async",
        "path":  "sp.*.fs.filefork.asyncReadHits",
        "type":  3,
        "description":  "Number of async reads from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12253,
        "name":  "blockchain Searched",
        "path":  "sp.*.fs.filefork.blockchain.blocksSearched",
        "type":  3,
        "description":  "Number of blocks searched while adding in a BlockChain",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12255,
        "name":  "blockchain Added",
        "path":  "sp.*.fs.filefork.blockchain.entries",
        "type":  3,
        "description":  "Number of blocks added to BlockChain",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12257,
        "name":  "blockchain New",
        "path":  "sp.*.fs.filefork.blockchain.newEntries",
        "type":  3,
        "description":  "Number of blocks added to an empty BlockChain",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12259,
        "name":  "blockchain New Head",
        "path":  "sp.*.fs.filefork.blockchain.newHeadEntries",
        "type":  3,
        "description":  "Number of blocks added at the head of BlockChain",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12261,
        "name":  "blockchain Replaced",
        "path":  "sp.*.fs.filefork.blockchain.replacedEntries",
        "type":  3,
        "description":  "Number of blocks replaced in a BlockChain",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12263,
        "name":  "FileFork Chain",
        "path":  "sp.*.fs.filefork.chainWrites",
        "type":  3,
        "description":  "Number of chain writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Writes"
    },
    {
        "id":  12265,
        "name":  "FileFork Disk",
        "path":  "sp.*.fs.filefork.fsReads",
        "type":  3,
        "description":  "Number of reads from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12267,
        "name":  "FileFork IO",
        "path":  "sp.*.fs.filefork.ioErrors",
        "type":  3,
        "description":  "Number of IO errors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12270,
        "name":  "FileFork Past EOF",
        "path":  "sp.*.fs.filefork.readEOF",
        "type":  3,
        "description":  "Number of reads past EOF",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12273,
        "name":  "FileFork Buffer Cache",
        "path":  "sp.*.fs.filefork.readHits",
        "type":  3,
        "description":  "Number of reads from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12275,
        "name":  "FileFork Disk",
        "path":  "sp.*.fs.filefork.updateBlockFsReads",
        "type":  3,
        "description":  "Number of reads for update from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read for Updates"
    },
    {
        "id":  12278,
        "name":  "FileFork Buffer Cache",
        "path":  "sp.*.fs.filefork.updateBlockReadHits",
        "type":  3,
        "description":  "Number of reads for update from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read for Updates"
    },
    {
        "id":  12281,
        "name":  "FileFork Disk Async",
        "path":  "sp.*.fs.filefork64.asyncFsReads",
        "type":  3,
        "description":  "Number of async reads from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12283,
        "name":  "FileFork Buffer Cache Async",
        "path":  "sp.*.fs.filefork64.asyncReadHits",
        "type":  3,
        "description":  "Number of async reads from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12285,
        "name":  "FileFork Chain",
        "path":  "sp.*.fs.filefork64.chainWrites",
        "type":  3,
        "description":  "Number of chain writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Writes"
    },
    {
        "id":  12287,
        "name":  "FileFork Disk",
        "path":  "sp.*.fs.filefork64.fsReads",
        "type":  3,
        "description":  "Number of reads from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12289,
        "name":  "FileFork IO",
        "path":  "sp.*.fs.filefork64.ioErrors",
        "type":  3,
        "description":  "Number of IO errors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12292,
        "name":  "FileFork Past EOF",
        "path":  "sp.*.fs.filefork64.readEOF",
        "type":  3,
        "description":  "Number of reads past EOF",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12295,
        "name":  "FileFork Buffer Cache",
        "path":  "sp.*.fs.filefork64.readHits",
        "type":  3,
        "description":  "Number of reads from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reads"
    },
    {
        "id":  12297,
        "name":  "FileFork Disk",
        "path":  "sp.*.fs.filefork64.updateBlockFsReads",
        "type":  3,
        "description":  "Number of reads for update from disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read for Updates"
    },
    {
        "id":  12300,
        "name":  "FileFork Buffer Cache",
        "path":  "sp.*.fs.filefork64.updateBlockReadHits",
        "type":  3,
        "description":  "Number of reads for update from buffer cache",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Read for Updates"
    },
    {
        "id":  12304,
        "name":  "Total",
        "path":  "sp.*.fs.filewrite.*.totalTime",
        "type":  3,
        "description":  "Time spent in writes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  12306,
        "name":  "Total Write",
        "path":  "sp.*.fs.filewrite.*.writeCalls",
        "type":  3,
        "description":  "Number of calls for writing BlockChain of a length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12309,
        "name":  "OF Cache Closed",
        "path":  "sp.*.fs.ofCache.closes",
        "type":  3,
        "description":  "Number of files closed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12311,
        "name":  "OF Cache Checked",
        "path":  "sp.*.fs.ofCache.entriesChecked",
        "type":  3,
        "description":  "Number of entries checked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Entries"
    },
    {
        "id":  12313,
        "name":  "OF Cache Find",
        "path":  "sp.*.fs.ofCache.findRequests",
        "type":  3,
        "description":  "Number of Open File Cache find requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12316,
        "name":  "OF Cache Hits",
        "path":  "sp.*.fs.ofCache.hits",
        "type":  3,
        "description":  "Number of hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12318,
        "name":  "OF Cache Misses",
        "path":  "sp.*.fs.ofCache.misses",
        "type":  3,
        "description":  "Number of misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12320,
        "name":  "OF Cache Opened",
        "path":  "sp.*.fs.ofCache.opens",
        "type":  3,
        "description":  "Number of files opened",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12322,
        "name":  "OF Cache Reopened",
        "path":  "sp.*.fs.ofCache.reopens",
        "type":  3,
        "description":  "Number of files reopened",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12326,
        "name":  "Failed Anonymous",
        "path":  "sp.*.ftp.auth.anonymousFailures",
        "type":  3,
        "description":  "Total number of FTP failed anonymous authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12327,
        "name":  "Anonymous",
        "path":  "sp.*.ftp.auth.anonymousSuccesses",
        "type":  3,
        "description":  "Total number of FTP successful anonymous authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12329,
        "name":  "Failed CIFS",
        "path":  "sp.*.ftp.auth.cifsFailures",
        "type":  3,
        "description":  "Total number of FTP failed CIFS authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12330,
        "name":  "CIFS",
        "path":  "sp.*.ftp.auth.cifsSuccesses",
        "type":  3,
        "description":  "Total number of FTP successfull CIFS authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12332,
        "name":  "Failed Unix",
        "path":  "sp.*.ftp.auth.unixFailures",
        "type":  3,
        "description":  "Total number of FTP failed Unix authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12333,
        "name":  "Unix",
        "path":  "sp.*.ftp.auth.unixSuccesses",
        "type":  3,
        "description":  "Total number of FTP successfull Unix authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Authorizations"
    },
    {
        "id":  12336,
        "name":  "Clear ASCII Read",
        "path":  "sp.*.ftp.nonSecure.asciiReadBytes",
        "type":  3,
        "description":  "Total number of read bytes in non-secured and ASCII mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12338,
        "name":  "Clear ASCII Write",
        "path":  "sp.*.ftp.nonSecure.asciiWriteBytes",
        "type":  3,
        "description":  "Total number of write bytes in non-secured and ASCII mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12340,
        "name":  "Clear Bin Read",
        "path":  "sp.*.ftp.nonSecure.binReadBytes",
        "type":  3,
        "description":  "Total number of read bytes in non-secured and binary mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12342,
        "name":  "Clear Bin Write",
        "path":  "sp.*.ftp.nonSecure.binWriteBytes",
        "type":  3,
        "description":  "Total number of write bytes in non-secured and binary mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12344,
        "name":  "Clear Control",
        "path":  "sp.*.ftp.nonSecure.controlConnections",
        "type":  3,
        "description":  "Total number of FTP connections (non secured) on control port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12346,
        "name":  "Clear Data",
        "path":  "sp.*.ftp.nonSecure.dataConnections",
        "type":  3,
        "description":  "Total number of FTP connections (non secured) on data port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12348,
        "name":  "Clear Read",
        "path":  "sp.*.ftp.nonSecure.readBytes",
        "type":  3,
        "description":  "Total number of read bytes in non-secured mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12350,
        "name":  "Clear Write",
        "path":  "sp.*.ftp.nonSecure.writeBytes",
        "type":  3,
        "description":  "Total number of write bytes in non-secured mode",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12353,
        "name":  "Calls",
        "path":  "sp.*.ftp.op.*.calls",
        "type":  3,
        "description":  "Number of execution of this operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12357,
        "name":  "Auth Rejected",
        "path":  "sp.*.http.server.*.authErrors",
        "type":  3,
        "description":  "Number of requests denied by authentication",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12358,
        "name":  "Active",
        "path":  "sp.*.http.server.*.currentThreads",
        "type":  5,
        "description":  "Number of threads in use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  12359,
        "name":  "IP Rejected",
        "path":  "sp.*.http.server.*.ipErrors",
        "type":  3,
        "description":  "Number of connections rejected by the hosts list",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12360,
        "name":  "Max",
        "path":  "sp.*.http.server.*.maxUsedThreads",
        "type":  5,
        "description":  "Maximum number of threads in use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  12361,
        "name":  "Read",
        "path":  "sp.*.http.server.*.readBytes",
        "type":  3,
        "description":  "Number of bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12363,
        "name":  "Write",
        "path":  "sp.*.http.server.*.writeBytes",
        "type":  3,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12366,
        "name":  "Client",
        "path":  "sp.*.http.usage.clientConnections",
        "type":  3,
        "description":  "total number of HTTP client connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12368,
        "name":  "Client Read",
        "path":  "sp.*.http.usage.clientReadBytes",
        "type":  3,
        "description":  "total number of bytes read by HTTP client connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12370,
        "name":  "Client Write",
        "path":  "sp.*.http.usage.clientWriteBytes",
        "type":  3,
        "description":  "total number of bytes written by HTTP client connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12372,
        "name":  "Server Success",
        "path":  "sp.*.http.usage.serverConnections",
        "type":  3,
        "description":  "total number of server HTTP connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12374,
        "name":  "Server Failed",
        "path":  "sp.*.http.usage.serverFailures",
        "type":  3,
        "description":  "total number of server failed HTTP requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12375,
        "name":  "Server keepAlive",
        "path":  "sp.*.http.usage.serverKeepAliveConnections",
        "type":  3,
        "description":  "total number of server keep alive HTTP connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connections"
    },
    {
        "id":  12377,
        "name":  "Server",
        "path":  "sp.*.http.usage.serverRequests",
        "type":  3,
        "description":  "total number of server successful HTTP requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  12381,
        "name":  "Read",
        "path":  "sp.*.iscsi.fePort.*.readBlocks",
        "type":  3,
        "description":  "blocks read from this iSCSI port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12384,
        "name":  "Read",
        "path":  "sp.*.iscsi.fePort.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read from this iSCSI Port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12385,
        "name":  "Read",
        "path":  "sp.*.iscsi.fePort.*.reads",
        "type":  3,
        "description":  "Reads from this iSCSI Port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  12386,
        "name":  "Read",
        "path":  "sp.*.iscsi.fePort.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Reads from this iSCSI Port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  12391,
        "name":  "Written",
        "path":  "sp.*.iscsi.fePort.*.writeBlocks",
        "type":  3,
        "description":  "Blocks written to this iSCSI port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12394,
        "name":  "Written",
        "path":  "sp.*.iscsi.fePort.*.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes written to this iSCSI Port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12395,
        "name":  "Write",
        "path":  "sp.*.iscsi.fePort.*.writes",
        "type":  3,
        "description":  "Writes to this iSCSI port",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  12396,
        "name":  "Write",
        "path":  "sp.*.iscsi.fePort.*.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Writes to this iSCSI port",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  12399,
        "name":  "Read",
        "path":  "sp.*.iscsi.initiator.*.readBytes",
        "type":  3,
        "description":  "Total Read bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12401,
        "name":  "Total Reads",
        "path":  "sp.*.iscsi.initiator.*.reads",
        "type":  3,
        "description":  "Total Read IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12403,
        "name":  "Total",
        "path":  "sp.*.iscsi.initiator.*.totalBytes",
        "type":  3,
        "description":  "Total bytes transferred/received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12405,
        "name":  "Total Calls",
        "path":  "sp.*.iscsi.initiator.*.totalCalls",
        "type":  3,
        "description":  "Total IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12407,
        "name":  "Total Logins",
        "path":  "sp.*.iscsi.initiator.*.totalLogins",
        "type":  3,
        "description":  "Total Logins",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12409,
        "name":  "write",
        "path":  "sp.*.iscsi.initiator.*.writeBytes",
        "type":  3,
        "description":  "Total write bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12411,
        "name":  "Total Writes",
        "path":  "sp.*.iscsi.initiator.*.writes",
        "type":  3,
        "description":  "Total write IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12415,
        "name":  "Read",
        "path":  "sp.*.iscsi.target.*.readBytes",
        "type":  3,
        "description":  "Total Read bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12417,
        "name":  "Total Reads",
        "path":  "sp.*.iscsi.target.*.reads",
        "type":  3,
        "description":  "Total Read IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12419,
        "name":  "Total",
        "path":  "sp.*.iscsi.target.*.totalBytes",
        "type":  3,
        "description":  "Total bytes transferred/received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12421,
        "name":  "Total Calls",
        "path":  "sp.*.iscsi.target.*.totalCalls",
        "type":  3,
        "description":  "Total IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12423,
        "name":  "Total Logins",
        "path":  "sp.*.iscsi.target.*.totalLogins",
        "type":  3,
        "description":  "Total Logins",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12425,
        "name":  "write",
        "path":  "sp.*.iscsi.target.*.writeBytes",
        "type":  3,
        "description":  "Total write bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12427,
        "name":  "Total Writes",
        "path":  "sp.*.iscsi.target.*.writes",
        "type":  3,
        "description":  "Total write IO\u0027s",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12431,
        "name":  "Delegations Current Read",
        "path":  "sp.*.lockd.delegation.currentReadGranted",
        "type":  5,
        "description":  "Current count of read delegations granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12432,
        "name":  "Delegations Current Write",
        "path":  "sp.*.lockd.delegation.currentWriteGranted",
        "type":  5,
        "description":  "Current count of write delegations granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12433,
        "name":  "Delegations Purged",
        "path":  "sp.*.lockd.delegation.purged",
        "type":  3,
        "description":  "Total count of purged delegations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12435,
        "name":  "Delegations Total Read",
        "path":  "sp.*.lockd.delegation.readGranted",
        "type":  3,
        "description":  "Total count of NFSv4 read delegations granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12437,
        "name":  "Delegations Recalled",
        "path":  "sp.*.lockd.delegation.recalls",
        "type":  3,
        "description":  "Total count of NFSv4 delegations recalled",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12439,
        "name":  "Delegations Recall Timeout",
        "path":  "sp.*.lockd.delegation.timedOutRecalls",
        "type":  3,
        "description":  "Total count of NFSv4 delegations recalls that timed out",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12440,
        "name":  "Delegations Total Write",
        "path":  "sp.*.lockd.delegation.writeGranted",
        "type":  3,
        "description":  "Total count of NFSv4 write delegations granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12443,
        "name":  "Client Current",
        "path":  "sp.*.lockd.greedyClient.*.locks",
        "type":  5,
        "description":  "Total count of locks owned by this client",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Locks"
    },
    {
        "id":  12445,
        "name":  "Opens Advisory Denied",
        "path":  "sp.*.lockd.open.advisoryDenied",
        "type":  3,
        "description":  "Total count of advisory opens denied (NLM shares)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12447,
        "name":  "Opens Advisory Granted",
        "path":  "sp.*.lockd.open.advisoryGranted",
        "type":  3,
        "description":  "Total count of advisory opens granted (NLM shares)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12449,
        "name":  "Opens Mandatory Denied",
        "path":  "sp.*.lockd.open.mandatoryDenied",
        "type":  3,
        "description":  "Total count of mandatory opens denied (CIFS and NFSv4)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12451,
        "name":  "Opens Mandatory Granted",
        "path":  "sp.*.lockd.open.mandatoryGranted",
        "type":  3,
        "description":  "Total count of mandatory opens granted (CIFS and NFSv4)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12454,
        "name":  "Oplock Batch Granted",
        "path":  "sp.*.lockd.oplock.batch",
        "type":  3,
        "description":  "Total count of batch CIFS oplocks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12456,
        "name":  "Oplock Break Timeout",
        "path":  "sp.*.lockd.oplock.breakTimeout1",
        "type":  3,
        "description":  "Total count of CIFS oplock break timeouts",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12457,
        "name":  "Oplock Break Retry Timeout",
        "path":  "sp.*.lockd.oplock.breakTimeout2",
        "type":  3,
        "description":  "Total count of CIFS oplocks break retry timeouts",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12458,
        "name":  "Oplock Breaks",
        "path":  "sp.*.lockd.oplock.breakTotal",
        "type":  3,
        "description":  "Total count of CIFS oplock breaks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12460,
        "name":  "Oplock Exclusive Granted",
        "path":  "sp.*.lockd.oplock.exclusive",
        "type":  3,
        "description":  "Total count of exclusive CIFS oplocks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12462,
        "name":  "Oplock LevelII Granted",
        "path":  "sp.*.lockd.oplock.level2",
        "type":  3,
        "description":  "Total count of levelII CIFS oplocks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12465,
        "name":  "Range Locks Advisory Exclusive Blocked",
        "path":  "sp.*.lockd.rangeLock.advisoryExclusiveBlocked",
        "type":  3,
        "description":  "Total count of advisory exclusive range locks blocked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12467,
        "name":  "Range Locks Advisory Exclusive Denied",
        "path":  "sp.*.lockd.rangeLock.advisoryExclusiveDenied",
        "type":  3,
        "description":  "Total count of advisory exclusive range locks denied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12469,
        "name":  "Range Locks Advisory Exclusive Granted",
        "path":  "sp.*.lockd.rangeLock.advisoryExclusiveGranted",
        "type":  3,
        "description":  "Total count of advisory exclusive range locks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12471,
        "name":  "Range Locks Advisory Shared Blocked",
        "path":  "sp.*.lockd.rangeLock.advisorySharedBlocked",
        "type":  3,
        "description":  "Total count of advisory shared range locks blocked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12473,
        "name":  "Range Locks Advisory Shared Denied",
        "path":  "sp.*.lockd.rangeLock.advisorySharedDenied",
        "type":  3,
        "description":  "Total count of advisory shared range locks denied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12475,
        "name":  "Range Locks Advisory Shared Granted",
        "path":  "sp.*.lockd.rangeLock.advisorySharedGranted",
        "type":  3,
        "description":  "Total count of advisory shared range locks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12477,
        "name":  "Range Locks Mandatory Exclusive Blocked",
        "path":  "sp.*.lockd.rangeLock.mandatoryExclusiveBlocked",
        "type":  3,
        "description":  "Total count of mandatory exclusive range locks blocked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12479,
        "name":  "Range Locks Mandatory Exclusive Denied",
        "path":  "sp.*.lockd.rangeLock.mandatoryExclusiveDenied",
        "type":  3,
        "description":  "Total count of mandatory exclusive range locks denied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12481,
        "name":  "Range Locks Mandatory Exclusive Granted",
        "path":  "sp.*.lockd.rangeLock.mandatoryExclusiveGranted",
        "type":  3,
        "description":  "Total count of mandatory exclusive range locks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12483,
        "name":  "Range Locks Mandatory Shared Blocked",
        "path":  "sp.*.lockd.rangeLock.mandatorySharedBlocked",
        "type":  3,
        "description":  "Total count of mandatory shared range locks blocked",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12485,
        "name":  "Range Locks Mandatory Shared Denied",
        "path":  "sp.*.lockd.rangeLock.mandatorySharedDenied",
        "type":  3,
        "description":  "Total count of mandatory shared range locks denied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12487,
        "name":  "Range Locks Mandatory Shared Granted",
        "path":  "sp.*.lockd.rangeLock.mandatorySharedGranted",
        "type":  3,
        "description":  "Total count of mandatory shared range locks granted",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12489,
        "name":  "Total Referenced",
        "path":  "sp.*.lockd.totalReferencedNodes",
        "type":  5,
        "description":  "Total count of file nodes referenced by the lock manager",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Nodes"
    },
    {
        "id":  12492,
        "name":  "Nonzero Queue Arrivals",
        "path":  "sp.*.lxf.vflu.*.NonZeroQueueArrivals",
        "type":  3,
        "description":  "Non zero queue arrivals",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12494,
        "name":  "Blocks Read",
        "path":  "sp.*.lxf.vflu.*.NumBlocksRead",
        "type":  3,
        "description":  "Number of blocks read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12496,
        "name":  "Blocks Written",
        "path":  "sp.*.lxf.vflu.*.NumBlocksWritten",
        "type":  3,
        "description":  "Number of blocks written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12498,
        "name":  "Blocks Zeroed",
        "path":  "sp.*.lxf.vflu.*.NumBlocksZeroed",
        "type":  3,
        "description":  "Number of blocks zeroed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12500,
        "name":  "Completed Read Operations",
        "path":  "sp.*.lxf.vflu.*.NumCompletedReadOps",
        "type":  3,
        "description":  "Number of completed read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12502,
        "name":  "Completed Write Operations",
        "path":  "sp.*.lxf.vflu.*.NumCompletedWriteOps",
        "type":  3,
        "description":  "Number of completed write operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12504,
        "name":  "Completed ZeroFill Operations",
        "path":  "sp.*.lxf.vflu.*.NumCompletedZeroFillOps",
        "type":  3,
        "description":  "Number of zero fill ops",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  12506,
        "name":  "IO Errors",
        "path":  "sp.*.lxf.vflu.*.NumErrors",
        "type":  3,
        "description":  "Number of IO errors",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12508,
        "name":  "Queue",
        "path":  "sp.*.lxf.vflu.*.QLength",
        "type":  5,
        "description":  "Q length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Size"
    },
    {
        "id":  12509,
        "name":  "Read Time",
        "path":  "sp.*.lxf.vflu.*.ReadTime",
        "type":  3,
        "description":  "Read time usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12511,
        "name":  "Cumulative Arrival Queue",
        "path":  "sp.*.lxf.vflu.*.SumArrivalQueueLength",
        "type":  5,
        "description":  "Sum of arrival Q length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Size"
    },
    {
        "id":  12512,
        "name":  "Write Time",
        "path":  "sp.*.lxf.vflu.*.WriteTime",
        "type":  3,
        "description":  "Write time usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12514,
        "name":  "Zero Fill Time",
        "path":  "sp.*.lxf.vflu.*.ZeroFillTime",
        "type":  3,
        "description":  "Zero fill time usec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12517,
        "name":  "Read Size Histogram",
        "path":  "sp.*.lxf.vflu.*.histogram.*.ReadSizeHistogram",
        "type":  3,
        "description":  "Read Size Histogram",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12519,
        "name":  "Write Size Histogram",
        "path":  "sp.*.lxf.vflu.*.histogram.*.WriteSizeHistogram",
        "type":  3,
        "description":  "Write Size Histogram",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12522,
        "name":  "Avg Req Size",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.AvgReqSizeBlocks",
        "type":  5,
        "description":  "Avg req size blocks",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12523,
        "name":  "Avg Wait Time",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.AvgWaitTime",
        "type":  5,
        "description":  "Avg wait time in micro sec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12524,
        "name":  "SystemTime",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.LastUpdateTimeStamp",
        "type":  5,
        "description":  "SystemTime",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12525,
        "name":  "IOPS",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.NumIOPS",
        "type":  5,
        "description":  "IOPS",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12526,
        "name":  "Read Wait Time",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.ReadWaitTime",
        "type":  5,
        "description":  "Read Wait Time in micro sec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12527,
        "name":  "Throughput",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.Throughput",
        "type":  5,
        "description":  "Throughput",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks per Sec"
    },
    {
        "id":  12528,
        "name":  "Write Wait Time",
        "path":  "sp.*.lxf.vflu.*.perfstats.*.WriteWaitTime",
        "type":  5,
        "description":  "Write Wait Time in micro sec",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSec"
    },
    {
        "id":  12532,
        "name":  "Active",
        "path":  "sp.*.memory.bufferCache.activeBuffers",
        "type":  5,
        "description":  "Number of active buffers",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12534,
        "name":  "# Of",
        "path":  "sp.*.memory.bufferCache.bufferType.*.count",
        "type":  5,
        "description":  "Number of buffers of given type",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12535,
        "name":  "Free Buffer",
        "path":  "sp.*.memory.bufferCache.freeBufferBytes",
        "type":  5,
        "description":  "Free buffer bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12536,
        "name":  "getMutableBuffer()",
        "path":  "sp.*.memory.bufferCache.getMutableBufferCalls",
        "type":  3,
        "description":  "Number of calls made to Buffer_Cached::getMutableBuffer()",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12538,
        "name":  "getMutableBuffer()",
        "path":  "sp.*.memory.bufferCache.getMutableBufferCows",
        "type":  3,
        "description":  "Number of instances of copy-on-write in Buffer_Cached::getMutableBuffer()",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Copy-on-writes"
    },
    {
        "id":  12540,
        "name":  "Buffer Cache High Watermark",
        "path":  "sp.*.memory.bufferCache.highWatermarkHits",
        "type":  3,
        "description":  "Number of buffer cache high watermark hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  12543,
        "name":  "Buffer Cache",
        "path":  "sp.*.memory.bufferCache.hits",
        "type":  3,
        "description":  "Number of buffer cache hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  12546,
        "name":  "Invalid Queue Provided",
        "path":  "sp.*.memory.bufferCache.invalidQueue.gets",
        "type":  5,
        "description":  "Number of buffers provided by the queue",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12547,
        "name":  "Invalid Queue Current # Of",
        "path":  "sp.*.memory.bufferCache.invalidQueue.length",
        "type":  5,
        "description":  "Current queue length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12548,
        "name":  "Buffer Cache",
        "path":  "sp.*.memory.bufferCache.lookups",
        "type":  3,
        "description":  "Number of buffer cache lookups",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Lookups"
    },
    {
        "id":  12550,
        "name":  "Buffer Cache Low Watermark",
        "path":  "sp.*.memory.bufferCache.lowWatermarkHits",
        "type":  3,
        "description":  "Number of buffer cache low watermark hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  12553,
        "name":  "Total",
        "path":  "sp.*.memory.bufferCache.totalBuffers",
        "type":  5,
        "description":  "Total buffers",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12555,
        "name":  "Unalloc Queue Provided",
        "path":  "sp.*.memory.bufferCache.unallocQueue.gets",
        "type":  5,
        "description":  "Number of buffers provided by the queue",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12556,
        "name":  "Unalloc Queue Current # Of",
        "path":  "sp.*.memory.bufferCache.unallocQueue.length",
        "type":  5,
        "description":  "Current queue length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12558,
        "name":  "Used Queue Provided",
        "path":  "sp.*.memory.bufferCache.usedQueue.gets",
        "type":  5,
        "description":  "Number of buffers provided by the queue",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12559,
        "name":  "Used Queue Current # Of",
        "path":  "sp.*.memory.bufferCache.usedQueue.length",
        "type":  5,
        "description":  "Current queue length",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12560,
        "name":  "Buffer Cache Watermark",
        "path":  "sp.*.memory.bufferCache.watermarkHits",
        "type":  3,
        "description":  "Number of buffer cache watermark hits",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  12564,
        "name":  "CPU ID",
        "path":  "sp.*.memory.malloc.freeList.*.CPU",
        "type":  5,
        "description":  "CPU ID for this list",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  12565,
        "name":  "In Use",
        "path":  "sp.*.memory.malloc.freeList.*.inUse",
        "type":  5,
        "description":  "Number of objects at given size currently in use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  12566,
        "name":  "Total",
        "path":  "sp.*.memory.malloc.freeList.*.items",
        "type":  5,
        "description":  "Total number of used/free objects at given size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  12567,
        "name":  "Object Size",
        "path":  "sp.*.memory.malloc.freeList.*.size",
        "type":  5,
        "description":  "Size of objects in freelist",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12571,
        "name":  "Count",
        "path":  "sp.*.memory.pageLevelAllocator.EMMrequestSize.*.count",
        "type":  5,
        "description":  "Number of completed stopwatch cycles (start to finish)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12572,
        "name":  "Maximum",
        "path":  "sp.*.memory.pageLevelAllocator.EMMrequestSize.*.max",
        "type":  5,
        "description":  "The max interval value of Stopwatch",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  12573,
        "name":  "Total",
        "path":  "sp.*.memory.pageLevelAllocator.EMMrequestSize.*.microSecs",
        "type":  5,
        "description":  "Total time of completed stopwatch cycles, in microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  12574,
        "name":  "Minimum",
        "path":  "sp.*.memory.pageLevelAllocator.EMMrequestSize.*.min",
        "type":  5,
        "description":  "The min interval value of Stopwatch",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  12575,
        "name":  "restart Count",
        "path":  "sp.*.memory.pageLevelAllocator.EMMrequestSize.*.restartCount",
        "type":  2,
        "description":  "The number of times a stopwatch cycle is started while a previous cycle is running (back to back starts)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12580,
        "name":  "BT Hash Searches Maximum",
        "path":  "sp.*.memory.pageLevelAllocator.btHashSearches.max",
        "type":  5,
        "description":  "The maximum value sampled since last interval",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12581,
        "name":  "BT Hash Searches Minimum",
        "path":  "sp.*.memory.pageLevelAllocator.btHashSearches.min",
        "type":  5,
        "description":  "The minimum value sampled since last interval",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12582,
        "name":  "BT Hash Searches Samples",
        "path":  "sp.*.memory.pageLevelAllocator.btHashSearches.samples",
        "type":  5,
        "description":  "Number of samples performed since last interval",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12583,
        "name":  "BT Hash Searches Total",
        "path":  "sp.*.memory.pageLevelAllocator.btHashSearches.total",
        "type":  5,
        "description":  "Total sampled values since last interval",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12584,
        "name":  "Remapped",
        "path":  "sp.*.memory.pageLevelAllocator.remappedBytes",
        "type":  5,
        "description":  "Total remapped memory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12586,
        "name":  "Remapping Time Count",
        "path":  "sp.*.memory.pageLevelAllocator.remappingTime.count",
        "type":  3,
        "description":  "Number of completed stopwatch cycles (start to finish)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12588,
        "name":  "Remapping Time Total",
        "path":  "sp.*.memory.pageLevelAllocator.remappingTime.microSecs",
        "type":  3,
        "description":  "Total time of completed stopwatch cycles, in microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  12590,
        "name":  "Remapping Time Active Count",
        "path":  "sp.*.memory.pageLevelAllocator.remappingTime.threadCount",
        "type":  5,
        "description":  "Number of active stopwatch cycles (hasn\u0027t finished yet)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12594,
        "name":  "Remappings",
        "path":  "sp.*.memory.pageLevelAllocator.remappings",
        "type":  5,
        "description":  "Number of remapping operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "ops"
    },
    {
        "id":  12595,
        "name":  "Page Size",
        "path":  "sp.*.memory.pageSize",
        "type":  5,
        "description":  "Page size used in DART",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12598,
        "name":  "Allocations",
        "path":  "sp.*.memory.slabPools.pool.*.allocations",
        "type":  3,
        "description":  "Number of allocations from given slab pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12601,
        "name":  "Frees",
        "path":  "sp.*.memory.slabPools.pool.*.frees",
        "type":  3,
        "description":  "Number of objects freed to given slab pool since boot",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12603,
        "name":  "Pages",
        "path":  "sp.*.memory.slabPools.pool.*.pages",
        "type":  5,
        "description":  "Total number of memory pages used for given slab pool\u0027s objects",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12604,
        "name":  "Object Size",
        "path":  "sp.*.memory.slabPools.pool.*.size",
        "type":  5,
        "description":  "Size of objects in given slab pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12605,
        "name":  "Total",
        "path":  "sp.*.memory.slabPools.pool.*.total",
        "type":  5,
        "description":  "Total number of free and used objects for given slab pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  12606,
        "name":  "In Use",
        "path":  "sp.*.memory.slabPools.pool.*.used",
        "type":  5,
        "description":  "Number of objects currently in use from given slab pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Objects"
    },
    {
        "id":  12608,
        "name":  "summary Free system memory",
        "path":  "sp.*.memory.summary.freeBytes",
        "type":  5,
        "description":  "SP Available memory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12609,
        "name":  "summary Pages In",
        "path":  "sp.*.memory.summary.inPages",
        "type":  3,
        "description":  "SP Number of pages in",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12611,
        "name":  "summary Pages Out",
        "path":  "sp.*.memory.summary.outPages",
        "type":  3,
        "description":  "SP Number of pages out",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12613,
        "name":  "summary Free swap memory",
        "path":  "sp.*.memory.summary.swapFreeBytes",
        "type":  5,
        "description":  "SP Swap available bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12614,
        "name":  "summary Swap Pages In",
        "path":  "sp.*.memory.summary.swapInPages",
        "type":  3,
        "description":  "SP Swap number of pages in",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12616,
        "name":  "summary Swap Pages Out",
        "path":  "sp.*.memory.summary.swapOutPages",
        "type":  3,
        "description":  "SP Swap number of pages out",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12618,
        "name":  "summary Used swap memory",
        "path":  "sp.*.memory.summary.swapTotalUsedBytes",
        "type":  5,
        "description":  "SP Swap total number of used bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12619,
        "name":  "summary Total system memory",
        "path":  "sp.*.memory.summary.totalBytes",
        "type":  5,
        "description":  "SP Total amount of memory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12620,
        "name":  "summary Used system memory",
        "path":  "sp.*.memory.summary.totalUsedBytes",
        "type":  5,
        "description":  "SP Total amount of used memory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12623,
        "name":  "No-access Protection Changes",
        "path":  "sp.*.memory.translations.noAccessProtChanges",
        "type":  5,
        "description":  "Number of no-access protection changes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "prot changes"
    },
    {
        "id":  12624,
        "name":  "Read-only Protection Changes",
        "path":  "sp.*.memory.translations.readOnlyProtChanges",
        "type":  5,
        "description":  "Number of read-only protection changes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "prot changes"
    },
    {
        "id":  12625,
        "name":  "Read/Write Protection Changes",
        "path":  "sp.*.memory.translations.readWriteProtChanges",
        "type":  5,
        "description":  "Number of read/write protection changes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "prot changes"
    },
    {
        "id":  12626,
        "name":  "Calls to virtToPhysRangeSlow()",
        "path":  "sp.*.memory.translations.virtToPhysRangeSlowCalls",
        "type":  5,
        "description":  "Number of calls to virtToPhysRangeSlow()",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "calls"
    },
    {
        "id":  12627,
        "name":  "Calls to virtToPhysSlow()",
        "path":  "sp.*.memory.translations.virtToPhysSlowCalls",
        "type":  5,
        "description":  "Number of calls to virtToPhysSlow()",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "calls"
    },
    {
        "id":  12630,
        "name":  "Enet Pool Buffer",
        "path":  "sp.*.memory.uncachedBuffers.enetPool.allocations",
        "type":  3,
        "description":  "Number of allocations from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  12632,
        "name":  "Enet Pool Requests",
        "path":  "sp.*.memory.uncachedBuffers.enetPool.failures",
        "type":  3,
        "description":  "Number of failed requests for buffers from this pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Failures"
    },
    {
        "id":  12633,
        "name":  "Enet Pool Buffer",
        "path":  "sp.*.memory.uncachedBuffers.enetPool.frees",
        "type":  3,
        "description":  "Number of frees back to pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Frees"
    },
    {
        "id":  12635,
        "name":  "Enet Pool Maximum",
        "path":  "sp.*.memory.uncachedBuffers.enetPool.maxInUse",
        "type":  5,
        "description":  "Maximum number of buffers used from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12636,
        "name":  "Enet Pool Buffer Size",
        "path":  "sp.*.memory.uncachedBuffers.enetPool.size",
        "type":  5,
        "description":  "Size of uncached buffers in pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12638,
        "name":  "Jumbo Enet Pool Buffer",
        "path":  "sp.*.memory.uncachedBuffers.jumboEnetPool.allocations",
        "type":  3,
        "description":  "Number of allocations from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  12640,
        "name":  "Jumbo Enet Pool Requests",
        "path":  "sp.*.memory.uncachedBuffers.jumboEnetPool.failures",
        "type":  3,
        "description":  "Number of failed requests for buffers from this pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Failures"
    },
    {
        "id":  12641,
        "name":  "Jumbo Enet Pool Buffer",
        "path":  "sp.*.memory.uncachedBuffers.jumboEnetPool.frees",
        "type":  3,
        "description":  "Number of frees back to pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Frees"
    },
    {
        "id":  12643,
        "name":  "Jumbo Enet Pool Maximum",
        "path":  "sp.*.memory.uncachedBuffers.jumboEnetPool.maxInUse",
        "type":  5,
        "description":  "Maximum number of buffers used from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12644,
        "name":  "Jumbo Enet Pool Buffer Size",
        "path":  "sp.*.memory.uncachedBuffers.jumboEnetPool.size",
        "type":  5,
        "description":  "Size of uncached buffers in pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12646,
        "name":  "Buffer",
        "path":  "sp.*.memory.uncachedBuffers.powerOf2Pools.*.allocations",
        "type":  3,
        "description":  "Number of allocations from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Allocations"
    },
    {
        "id":  12648,
        "name":  "Requests",
        "path":  "sp.*.memory.uncachedBuffers.powerOf2Pools.*.failures",
        "type":  3,
        "description":  "Number of failed requests for buffers from this pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Failures"
    },
    {
        "id":  12649,
        "name":  "Buffer",
        "path":  "sp.*.memory.uncachedBuffers.powerOf2Pools.*.frees",
        "type":  3,
        "description":  "Number of frees back to pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Frees"
    },
    {
        "id":  12651,
        "name":  "Maximum",
        "path":  "sp.*.memory.uncachedBuffers.powerOf2Pools.*.maxInUse",
        "type":  5,
        "description":  "Maximum number of buffers used from pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12652,
        "name":  "Buffer Size",
        "path":  "sp.*.memory.uncachedBuffers.powerOf2Pools.*.size",
        "type":  5,
        "description":  "Size of uncached buffers in pool",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12653,
        "name":  "pullupmsg_physical() Bytes",
        "path":  "sp.*.memory.uncachedBuffers.pullupmsgPhysicalBytes",
        "type":  5,
        "description":  "Total bytes transferred in pullupmsg_physical()",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12656,
        "name":  "atimeCalls",
        "path":  "sp.*.migration.ID.*.atimeCalls",
        "type":  3,
        "description":  "Sync atime Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12658,
        "name":  "atimeFailCalls",
        "path":  "sp.*.migration.ID.*.atimeFailCalls",
        "type":  3,
        "description":  "Sync atime Fail Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12660,
        "name":  "bytes",
        "path":  "sp.*.migration.ID.*.bytes",
        "type":  3,
        "description":  "Migrated Data Bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12662,
        "name":  "dataCalls",
        "path":  "sp.*.migration.ID.*.dataCalls",
        "type":  3,
        "description":  "Sync Data Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12664,
        "name":  "dataFailCalls",
        "path":  "sp.*.migration.ID.*.dataFailCalls",
        "type":  3,
        "description":  "Sync Data Fail Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12666,
        "name":  "dirMovCnt",
        "path":  "sp.*.migration.ID.*.dirCount",
        "type":  3,
        "description":  "Migrated Dir Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "dirs"
    },
    {
        "id":  12668,
        "name":  "dirFailCnt",
        "path":  "sp.*.migration.ID.*.dirFailCount",
        "type":  3,
        "description":  "Migration Dir Failed Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "dirs"
    },
    {
        "id":  12670,
        "name":  "dirSyncCnt",
        "path":  "sp.*.migration.ID.*.dirSyncCount",
        "type":  3,
        "description":  "Resynced Dir Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "dirs"
    },
    {
        "id":  12672,
        "name":  "dirtyFileCnt",
        "path":  "sp.*.migration.ID.*.dirtyFileCount",
        "type":  3,
        "description":  "Migration Dirty File Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "files"
    },
    {
        "id":  12674,
        "name":  "dirtyFileMem",
        "path":  "sp.*.migration.ID.*.dirtyFileMemory",
        "type":  3,
        "description":  "Migration Dirty File Memory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "bytes"
    },
    {
        "id":  12676,
        "name":  "fileMovCnt",
        "path":  "sp.*.migration.ID.*.fileCount",
        "type":  3,
        "description":  "Migrated File Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "files"
    },
    {
        "id":  12678,
        "name":  "fileFailCnt",
        "path":  "sp.*.migration.ID.*.fileFailCount",
        "type":  3,
        "description":  "Migration File Failed Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "files"
    },
    {
        "id":  12680,
        "name":  "fileSyncCnt",
        "path":  "sp.*.migration.ID.*.fileSyncCount",
        "type":  3,
        "description":  "Resynced Dir Count",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "files"
    },
    {
        "id":  12682,
        "name":  "intcptCnt",
        "path":  "sp.*.migration.ID.*.interceptCalls",
        "type":  3,
        "description":  "Syncer Intercept Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12684,
        "name":  "metaCalls",
        "path":  "sp.*.migration.ID.*.metaCalls",
        "type":  3,
        "description":  "Sync Metadata Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12686,
        "name":  "metaFailCalls",
        "path":  "sp.*.migration.ID.*.metaFailCalls",
        "type":  3,
        "description":  "Sync Metadata Fail Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12690,
        "name":  "Calls",
        "path":  "sp.*.migration.ID.*.op.*.calls",
        "type":  3,
        "description":  "Number of calls for an operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  12692,
        "name":  "Max",
        "path":  "sp.*.migration.ID.*.op.*.maxTime",
        "type":  3,
        "description":  "Max time in usec used for the operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  12694,
        "name":  "Total",
        "path":  "sp.*.migration.ID.*.op.*.totalTime",
        "type":  3,
        "description":  "Time spent in the operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "usecs"
    },
    {
        "id":  12696,
        "name":  "optimizCnt",
        "path":  "sp.*.migration.ID.*.optimizeCalls",
        "type":  3,
        "description":  "Syncer Optimize Calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Cnt"
    },
    {
        "id":  12702,
        "name":  "Backup Root Directory",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.backupRootDir",
        "type":  6,
        "description":  "Backup root directory",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12703,
        "name":  "Processed Data",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.bytes",
        "type":  3,
        "description":  "Total bytes processed for this PAX backup/recovery session so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12705,
        "name":  "Estimated Remaining",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.estimatedTimeRemaining",
        "type":  5,
        "description":  "Estimated time remaining if backing up the whole file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12708,
        "name":  "Processed",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.fileSize.*.files",
        "type":  5,
        "description":  "Number of files processed for this range",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12709,
        "name":  "Total files processed",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.files",
        "type":  3,
        "description":  "Total files processed so far for this pax session",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12711,
        "name":  "Format",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.format",
        "type":  6,
        "description":  "Format (Dump/Tar) at backup time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12712,
        "name":  "File System Size",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.fsSize",
        "type":  5,
        "description":  "File system size if backing up the whole file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12713,
        "name":  "Waited MetaData Buffers",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.metaOperatorQueue",
        "type":  5,
        "description":  "Total metaOperator buffers waited by dataOperator so far (during backup)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12714,
        "name":  "MetaData Buffer Queue Time",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.metaOperatorQueueTime",
        "type":  5,
        "description":  "Total time metaOperator buffers held in queue waiting metaOperator (during backup)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12715,
        "name":  "Operation",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.operation",
        "type":  6,
        "description":  "Session operation (backup/recovery)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12716,
        "name":  "Restore Method",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.restoreMethod",
        "type":  6,
        "description":  "Restore method (DAR/non-DAR) if recovery",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12717,
        "name":  "Tape Device Name",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.tapeDeviceName",
        "type":  6,
        "description":  "Tape device name",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12718,
        "name":  "Total Time",
        "path":  "sp.*.ndmp.pax.session.*.dataOperator.*.totalTime",
        "type":  5,
        "description":  "Total time for this PAX session so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12720,
        "name":  " Current Filled Meta Data",
        "path":  "sp.*.ndmp.pax.session.*.metaOperator.*.currentGetStatBuffers",
        "type":  5,
        "description":  "Current buffer count in incoming metadata pool, which are ready for metaOperator to use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12721,
        "name":  "Current Empty Meta Data",
        "path":  "sp.*.ndmp.pax.session.*.metaOperator.*.currentPutStatBuffers",
        "type":  5,
        "description":  "Current buffer count in outgoing metadata pool, which are ready for dataOperator to process",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12722,
        "name":  "Meta Data Build Time",
        "path":  "sp.*.ndmp.pax.session.*.metaOperator.*.metaTime",
        "type":  5,
        "description":  "Time spent building meta data for the file system (or directory) tree",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12723,
        "name":  "Wait DataOperator Buffers",
        "path":  "sp.*.ndmp.pax.session.*.metaOperator.*.waitDataOperatorBuffers",
        "type":  5,
        "description":  "Total wait dataOperator buffers for this pax session if backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  12724,
        "name":  "Wait DataOperator Time",
        "path":  "sp.*.ndmp.pax.session.*.metaOperator.*.waitDataOperatorTime",
        "type":  5,
        "description":  "Total wait dataOperator time for this pax session if backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12726,
        "name":  "Tape Block Size",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.blockSize",
        "type":  5,
        "description":  "Block size used for tape requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  12727,
        "name":  "Transferred Data",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.bytes",
        "type":  3,
        "description":  "Total bytes processed by the tapeOperator so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12729,
        "name":  "Current Available TapeOperator",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.currentGetBuffers",
        "type":  5,
        "description":  "Current buffer count available for tapeOperator",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12730,
        "name":  "Current Used TapeOperator",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.currentPutBuffers",
        "type":  5,
        "description":  "Current buffer count processed by tape and ready for dataOperator",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Buffers"
    },
    {
        "id":  12731,
        "name":  "Tape Idle Time",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.idleTime",
        "type":  5,
        "description":  "Tape idle time so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12732,
        "name":  "Total Tape Time",
        "path":  "sp.*.ndmp.pax.session.*.tapeOperator.*.tapeTime",
        "type":  5,
        "description":  "Time spent processing tape requests so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12735,
        "name":  "Processed ACL",
        "path":  "sp.*.ndmp.vbb.session.*.aclBytes",
        "type":  5,
        "description":  "Processed metadata ACL bytes for this vbb backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12736,
        "name":  "File System",
        "path":  "sp.*.ndmp.vbb.session.*.backupFsName",
        "type":  6,
        "description":  "File system mount point/name at backup time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12737,
        "name":  "Backup Level",
        "path":  "sp.*.ndmp.vbb.session.*.backupLevel",
        "type":  5,
        "description":  "VBB backup/dump level",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Label"
    },
    {
        "id":  12738,
        "name":  "Changed",
        "path":  "sp.*.ndmp.vbb.session.*.changedInodes",
        "type":  5,
        "description":  "Total changed inodes for VBB",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Inodes"
    },
    {
        "id":  12739,
        "name":  "Processed Data",
        "path":  "sp.*.ndmp.vbb.session.*.dataBytes",
        "type":  5,
        "description":  "Number of data bytes processed for the VBB backup/recovery session so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12741,
        "name":  "Data Processing",
        "path":  "sp.*.ndmp.vbb.session.*.dataTime",
        "type":  5,
        "description":  "Total data processing time for the VBB backup/recovery session",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12742,
        "name":  "Processed Directory Entry",
        "path":  "sp.*.ndmp.vbb.session.*.dirEntBytes",
        "type":  5,
        "description":  "Processed metadata directory entry bytes for this vbb backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12743,
        "name":  "Processed",
        "path":  "sp.*.ndmp.vbb.session.*.directories",
        "type":  5,
        "description":  "Processed directories for this vbb backup so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Directories"
    },
    {
        "id":  12744,
        "name":  "Disk Idle",
        "path":  "sp.*.ndmp.vbb.session.*.diskIdleTime",
        "type":  5,
        "description":  "Disk idle time during data processing for the VBB backup/recovery session",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12745,
        "name":  "Estimated Remaining",
        "path":  "sp.*.ndmp.vbb.session.*.estimatedTimeRemaining",
        "type":  5,
        "description":  "Estimated remaining data processing time for the VBB backup/recovery session",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12746,
        "name":  "Processed Extents",
        "path":  "sp.*.ndmp.vbb.session.*.extentBytes",
        "type":  5,
        "description":  "Processed metadata data extent bytes for this vbb backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12747,
        "name":  "Processed",
        "path":  "sp.*.ndmp.vbb.session.*.extents",
        "type":  5,
        "description":  "Number of mapping extents in the VBB backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Extents"
    },
    {
        "id":  12748,
        "name":  "File History",
        "path":  "sp.*.ndmp.vbb.session.*.fileHistory",
        "type":  6,
        "description":  "Status of NDMP file history option",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Status"
    },
    {
        "id":  12750,
        "name":  "Processed",
        "path":  "sp.*.ndmp.vbb.session.*.fileSize.*.files",
        "type":  5,
        "description":  "Number of files processed for this range",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12751,
        "name":  "Processed",
        "path":  "sp.*.ndmp.vbb.session.*.files",
        "type":  5,
        "description":  "Processed files for this VBB backup so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Files"
    },
    {
        "id":  12752,
        "name":  "Backup Format",
        "path":  "sp.*.ndmp.vbb.session.*.format",
        "type":  6,
        "description":  "Backup format",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Format"
    },
    {
        "id":  12753,
        "name":  "Total File System",
        "path":  "sp.*.ndmp.vbb.session.*.fsInodes",
        "type":  5,
        "description":  "Total number of inodes in the file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Inodes"
    },
    {
        "id":  12754,
        "name":  "File System Size",
        "path":  "sp.*.ndmp.vbb.session.*.fsSize",
        "type":  5,
        "description":  "File system size at backup time",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12755,
        "name":  "Processed Header",
        "path":  "sp.*.ndmp.vbb.session.*.headerBytes",
        "type":  5,
        "description":  "Processed metadata header bytes for this vbb backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12756,
        "name":  "Hidden",
        "path":  "sp.*.ndmp.vbb.session.*.hiddenInodes",
        "type":  5,
        "description":  "Hidden inodes for the VBB backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Inodes"
    },
    {
        "id":  12758,
        "name":  "Last Backup",
        "path":  "sp.*.ndmp.vbb.session.*.lastBackupTime",
        "type":  5,
        "description":  "Last VBB backup time for this file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Timestamp"
    },
    {
        "id":  12759,
        "name":  "Processed Metadata",
        "path":  "sp.*.ndmp.vbb.session.*.metaBytes",
        "type":  5,
        "description":  "Processed metadata bytes for this vbb backup",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12761,
        "name":  "Meta Data Processing",
        "path":  "sp.*.ndmp.vbb.session.*.metaTime",
        "type":  5,
        "description":  "Metadata processing time used for VBB backup or file level restore",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12762,
        "name":  "Operation",
        "path":  "sp.*.ndmp.vbb.session.*.operation",
        "type":  6,
        "description":  "VBB session operation: Backup or Recovery",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12765,
        "name":  "Restore",
        "path":  "sp.*.ndmp.vbb.session.*.restoreMethod",
        "type":  6,
        "description":  "Restore method if session is recovery: full destructive restore vs file level restore",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Method"
    },
    {
        "id":  12766,
        "name":  "Tape Idle",
        "path":  "sp.*.ndmp.vbb.session.*.tapeIdleTime",
        "type":  5,
        "description":  "Tape drive idle time during data processing for the VBB backup/recovery session",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12767,
        "name":  "Total Processed",
        "path":  "sp.*.ndmp.vbb.session.*.totalBytes",
        "type":  3,
        "description":  "Total processed bytes for the VBB backup/recovery session so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12769,
        "name":  "Total Data Size",
        "path":  "sp.*.ndmp.vbb.session.*.totalDataSize",
        "type":  5,
        "description":  "Total number of data bytes for this backup file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12770,
        "name":  "Total",
        "path":  "sp.*.ndmp.vbb.session.*.totalTime",
        "type":  5,
        "description":  "Total time for this VBB session so far",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Seconds"
    },
    {
        "id":  12771,
        "name":  "Used",
        "path":  "sp.*.ndmp.vbb.session.*.usedBlocks",
        "type":  5,
        "description":  "Total number of used blocks for the backed up file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  12772,
        "name":  "Used",
        "path":  "sp.*.ndmp.vbb.session.*.usedInodes",
        "type":  5,
        "description":  "Total number of used inodes in the file system",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Inodes"
    },
    {
        "id":  12773,
        "name":  "Volume ID (Full Destructive Restore)",
        "path":  "sp.*.ndmp.vbb.session.*.volumeId",
        "type":  6,
        "description":  "Volume ID if session is full destructive restore",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Name"
    },
    {
        "id":  12776,
        "name":  "Network In",
        "path":  "sp.*.net.basic.inBytes",
        "type":  3,
        "description":  "Total network read octets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12777,
        "name":  "Network In",
        "path":  "sp.*.net.basic.inBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Total network read octets",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12778,
        "name":  "Network Out",
        "path":  "sp.*.net.basic.outBytes",
        "type":  3,
        "description":  "Total network octets written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12779,
        "name":  "Network Out",
        "path":  "sp.*.net.basic.outBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Total network octets written",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12781,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.abortedErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12783,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.bytesIn",
        "type":  3,
        "description":  "Number of octets read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12784,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.bytesInRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of octets read from network device",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12785,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.bytesOut",
        "type":  3,
        "description":  "Number of octets written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  12786,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.bytesOutRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of octets written to network device",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  12787,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.carriererrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12789,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.collisions",
        "type":  3,
        "description":  "Number of packet collisions",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12791,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.compressedIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12793,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.compressedOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12795,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.crcErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12797,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.droppedIn",
        "type":  3,
        "description":  "Number of input packets dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12799,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.droppedOut",
        "type":  3,
        "description":  "Number of output packets dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12801,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.errorsIn",
        "type":  3,
        "description":  "Number of errors read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12803,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.errorsOut",
        "type":  3,
        "description":  "Number of errors written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12805,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.fifoErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12807,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.fifoErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12809,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.frameErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12811,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.heartbeatErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12813,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.lengthErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12815,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.missedErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12817,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.multicast",
        "type":  3,
        "description":  "Number of multicast packets received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12819,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.overErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12821,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.pktsIn",
        "type":  3,
        "description":  "Number of packets read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pkts"
    },
    {
        "id":  12822,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.pktsInRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of packets read from network device",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Pkts/s"
    },
    {
        "id":  12823,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.pktsOut",
        "type":  3,
        "description":  "Number of packets written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pkts"
    },
    {
        "id":  12824,
        "name":  "Network Out",
        "path":  "sp.*.net.device.*.pktsOutRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of packets written to network device",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Pkts/s"
    },
    {
        "id":  12825,
        "name":  "Network In",
        "path":  "sp.*.net.device.*.windowErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  12829,
        "name":  "ICMPMsgv4 inType0",
        "path":  "sp.*.net.ip.icmpMsgv4.inType0",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12831,
        "name":  "ICMPMsgv4 inType3",
        "path":  "sp.*.net.ip.icmpMsgv4.inType3",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12833,
        "name":  "ICMPMsgv4 inType8",
        "path":  "sp.*.net.ip.icmpMsgv4.inType8",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12835,
        "name":  "ICMPMsgv4 outType0",
        "path":  "sp.*.net.ip.icmpMsgv4.outType0",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12837,
        "name":  "ICMPMsgv4 outType3",
        "path":  "sp.*.net.ip.icmpMsgv4.outType3",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12839,
        "name":  "ICMPMsgv4 outType8",
        "path":  "sp.*.net.ip.icmpMsgv4.outType8",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12842,
        "name":  "ICMPMsgv6 inType134",
        "path":  "sp.*.net.ip.icmpMsgv6.inType134",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12844,
        "name":  "ICMPMsgv6 inType135",
        "path":  "sp.*.net.ip.icmpMsgv6.inType135",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12846,
        "name":  "ICMPMsgv6 inType136",
        "path":  "sp.*.net.ip.icmpMsgv6.inType136",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12848,
        "name":  "ICMPMsgv6 outType133",
        "path":  "sp.*.net.ip.icmpMsgv6.outType133",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12850,
        "name":  "ICMPMsgv6 outType135",
        "path":  "sp.*.net.ip.icmpMsgv6.outType135",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12852,
        "name":  "ICMPMsgv6 outType136",
        "path":  "sp.*.net.ip.icmpMsgv6.outType136",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12854,
        "name":  "ICMPMsgv6 outType143",
        "path":  "sp.*.net.ip.icmpMsgv6.outType143",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12857,
        "name":  "ICMPv4 inAddrMaskReps",
        "path":  "sp.*.net.ip.icmpv4.inAddrMaskReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12859,
        "name":  "ICMPv4 inAddrMasks",
        "path":  "sp.*.net.ip.icmpv4.inAddrMasks",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12861,
        "name":  "ICMPv4 inDestUnreachs",
        "path":  "sp.*.net.ip.icmpv4.inDestUnreachs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12863,
        "name":  "ICMPv4 inEchoReps",
        "path":  "sp.*.net.ip.icmpv4.inEchoReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12865,
        "name":  "ICMPv4 inEchos",
        "path":  "sp.*.net.ip.icmpv4.inEchos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12867,
        "name":  "ICMPv4 inErrors",
        "path":  "sp.*.net.ip.icmpv4.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12869,
        "name":  "ICMPv4 inMsgs",
        "path":  "sp.*.net.ip.icmpv4.inMsgs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12871,
        "name":  "ICMPv4 inParmProbs",
        "path":  "sp.*.net.ip.icmpv4.inParmProbs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12873,
        "name":  "ICMPv4 inRedirects",
        "path":  "sp.*.net.ip.icmpv4.inRedirects",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12875,
        "name":  "ICMPv4 inSrcQuenchs",
        "path":  "sp.*.net.ip.icmpv4.inSrcQuenchs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12877,
        "name":  "ICMPv4 inTimeExcds",
        "path":  "sp.*.net.ip.icmpv4.inTimeExcds",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12879,
        "name":  "ICMPv4 inTimestampReps",
        "path":  "sp.*.net.ip.icmpv4.inTimestampReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12881,
        "name":  "ICMPv4 inTimestamps",
        "path":  "sp.*.net.ip.icmpv4.inTimestamps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12883,
        "name":  "ICMPv4 outAddrMaskReps",
        "path":  "sp.*.net.ip.icmpv4.outAddrMaskReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12885,
        "name":  "ICMPv4 outAddrMasks",
        "path":  "sp.*.net.ip.icmpv4.outAddrMasks",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12887,
        "name":  "ICMPv4 outDestUnreachs",
        "path":  "sp.*.net.ip.icmpv4.outDestUnreachs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12889,
        "name":  "ICMPv4 outEchoReps",
        "path":  "sp.*.net.ip.icmpv4.outEchoReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12891,
        "name":  "ICMPv4 outEchos",
        "path":  "sp.*.net.ip.icmpv4.outEchos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12893,
        "name":  "ICMPv4 outErrors",
        "path":  "sp.*.net.ip.icmpv4.outErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12895,
        "name":  "ICMPv4 outMsgs",
        "path":  "sp.*.net.ip.icmpv4.outMsgs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12897,
        "name":  "ICMPv4 outParmProbs",
        "path":  "sp.*.net.ip.icmpv4.outParmProbs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12899,
        "name":  "ICMPv4 outRedirects",
        "path":  "sp.*.net.ip.icmpv4.outRedirects",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12901,
        "name":  "ICMPv4 outSrcQuenchs",
        "path":  "sp.*.net.ip.icmpv4.outSrcQuenchs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12903,
        "name":  "ICMPv4 outTimeExcds",
        "path":  "sp.*.net.ip.icmpv4.outTimeExcds",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12905,
        "name":  "ICMPv4 outTimestampReps",
        "path":  "sp.*.net.ip.icmpv4.outTimestampReps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12907,
        "name":  "ICMPv4 outTimestamps",
        "path":  "sp.*.net.ip.icmpv4.outTimestamps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12910,
        "name":  "ICMPv6 inDestUnreachs",
        "path":  "sp.*.net.ip.icmpv6.inDestUnreachs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12912,
        "name":  "ICMPv6 inEchoReplies",
        "path":  "sp.*.net.ip.icmpv6.inEchoReplies",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12914,
        "name":  "ICMPv6 inEchos",
        "path":  "sp.*.net.ip.icmpv6.inEchos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12916,
        "name":  "ICMPv6 inErrors",
        "path":  "sp.*.net.ip.icmpv6.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12918,
        "name":  "ICMPv6 inGroupMembQueries",
        "path":  "sp.*.net.ip.icmpv6.inGroupMembQueries",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12920,
        "name":  "ICMPv6 inGroupMembReductions",
        "path":  "sp.*.net.ip.icmpv6.inGroupMembReductions",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12922,
        "name":  "ICMPv6 inGroupMembResponses",
        "path":  "sp.*.net.ip.icmpv6.inGroupMembResponses",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12924,
        "name":  "ICMPv6 inMLDv2Reports",
        "path":  "sp.*.net.ip.icmpv6.inMLDv2Reports",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12926,
        "name":  "ICMPv6 inMsgs",
        "path":  "sp.*.net.ip.icmpv6.inMsgs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12928,
        "name":  "ICMPv6 inNeighborAdvertisements",
        "path":  "sp.*.net.ip.icmpv6.inNeighborAdvertisements",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12930,
        "name":  "ICMPv6 inNeighborSolicits",
        "path":  "sp.*.net.ip.icmpv6.inNeighborSolicits",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12932,
        "name":  "ICMPv6 inParmProblems",
        "path":  "sp.*.net.ip.icmpv6.inParmProblems",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12934,
        "name":  "ICMPv6 inPktTooBigs",
        "path":  "sp.*.net.ip.icmpv6.inPktTooBigs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12936,
        "name":  "ICMPv6 inRedirects",
        "path":  "sp.*.net.ip.icmpv6.inRedirects",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12938,
        "name":  "ICMPv6 inRouterAdvertisements",
        "path":  "sp.*.net.ip.icmpv6.inRouterAdvertisements",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12940,
        "name":  "ICMPv6 inRouterSolicits",
        "path":  "sp.*.net.ip.icmpv6.inRouterSolicits",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12942,
        "name":  "ICMPv6 inTimeExcds",
        "path":  "sp.*.net.ip.icmpv6.inTimeExcds",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12944,
        "name":  "ICMPv6 outDestUnreachs",
        "path":  "sp.*.net.ip.icmpv6.outDestUnreachs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12946,
        "name":  "ICMPv6 outEchoReplies",
        "path":  "sp.*.net.ip.icmpv6.outEchoReplies",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12948,
        "name":  "ICMPv6 outEchos",
        "path":  "sp.*.net.ip.icmpv6.outEchos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12950,
        "name":  "ICMPv6 outErrors",
        "path":  "sp.*.net.ip.icmpv6.outErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12952,
        "name":  "ICMPv6 outGroupMembQueries",
        "path":  "sp.*.net.ip.icmpv6.outGroupMembQueries",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12954,
        "name":  "ICMPv6 outGroupMembReductions",
        "path":  "sp.*.net.ip.icmpv6.outGroupMembReductions",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12956,
        "name":  "ICMPv6 outGroupMembResponses",
        "path":  "sp.*.net.ip.icmpv6.outGroupMembResponses",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12958,
        "name":  "ICMPv6 outMLDv2Reports",
        "path":  "sp.*.net.ip.icmpv6.outMLDv2Reports",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12960,
        "name":  "ICMPv6 outMsgs",
        "path":  "sp.*.net.ip.icmpv6.outMsgs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12962,
        "name":  "ICMPv6 outNeighborAdvertisements",
        "path":  "sp.*.net.ip.icmpv6.outNeighborAdvertisements",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12964,
        "name":  "ICMPv6 outNeighborSolicits",
        "path":  "sp.*.net.ip.icmpv6.outNeighborSolicits",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12966,
        "name":  "ICMPv6 outParmProblems",
        "path":  "sp.*.net.ip.icmpv6.outParmProblems",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12968,
        "name":  "ICMPv6 outPktTooBigs",
        "path":  "sp.*.net.ip.icmpv6.outPktTooBigs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12970,
        "name":  "ICMPv6 outRedirects",
        "path":  "sp.*.net.ip.icmpv6.outRedirects",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12972,
        "name":  "ICMPv6 outRouterAdvertisements",
        "path":  "sp.*.net.ip.icmpv6.outRouterAdvertisements",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12974,
        "name":  "ICMPv6 outRouterSolicits",
        "path":  "sp.*.net.ip.icmpv6.outRouterSolicits",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12976,
        "name":  "ICMPv6 outTimeExcds",
        "path":  "sp.*.net.ip.icmpv6.outTimeExcds",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12979,
        "name":  "IPv4 defaultTTL",
        "path":  "sp.*.net.ip.ipv4.defaultTTL",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12981,
        "name":  "IPv4 forwarding",
        "path":  "sp.*.net.ip.ipv4.forwarding",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12983,
        "name":  "IPv4 fragCreates",
        "path":  "sp.*.net.ip.ipv4.fragCreates",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12985,
        "name":  "IPv4 fragFails",
        "path":  "sp.*.net.ip.ipv4.fragFails",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12987,
        "name":  "IPv4 fragOKs",
        "path":  "sp.*.net.ip.ipv4.fragOKs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12989,
        "name":  "IPv4 inAddrErrors",
        "path":  "sp.*.net.ip.ipv4.inAddrErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12991,
        "name":  "IPv4 inDelivers",
        "path":  "sp.*.net.ip.ipv4.inDelivers",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12993,
        "name":  "IPv4 inDiscards",
        "path":  "sp.*.net.ip.ipv4.inDiscards",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12995,
        "name":  "IPv4 inHdrErrors",
        "path":  "sp.*.net.ip.ipv4.inHdrErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12997,
        "name":  "IPv4 inPkts",
        "path":  "sp.*.net.ip.ipv4.inPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  12999,
        "name":  "IPv4 inUnknownProtos",
        "path":  "sp.*.net.ip.ipv4.inUnknownProtos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13001,
        "name":  "IPv4 outDiscards",
        "path":  "sp.*.net.ip.ipv4.outDiscards",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13003,
        "name":  "IPv4 outForwDatagrams",
        "path":  "sp.*.net.ip.ipv4.outForwDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13005,
        "name":  "IPv4 outNoRoutes",
        "path":  "sp.*.net.ip.ipv4.outNoRoutes",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13007,
        "name":  "IPv4 outPkts",
        "path":  "sp.*.net.ip.ipv4.outPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13009,
        "name":  "IPv4 reasmFails",
        "path":  "sp.*.net.ip.ipv4.reasmFails",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13011,
        "name":  "IPv4 reasmOKs",
        "path":  "sp.*.net.ip.ipv4.reasmOKs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13013,
        "name":  "IPv4 reasmReqds",
        "path":  "sp.*.net.ip.ipv4.reasmReqds",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13015,
        "name":  "IPv4 reasmTimeout",
        "path":  "sp.*.net.ip.ipv4.reasmTimeout",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13018,
        "name":  "IPv4Ext inBcastOctets",
        "path":  "sp.*.net.ip.ipv4Ext.inBcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13020,
        "name":  "IPv4Ext inBcastPkts",
        "path":  "sp.*.net.ip.ipv4Ext.inBcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13022,
        "name":  "IPv4Ext inMcastOctets",
        "path":  "sp.*.net.ip.ipv4Ext.inMcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13024,
        "name":  "IPv4Ext inMcastPkts",
        "path":  "sp.*.net.ip.ipv4Ext.inMcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13026,
        "name":  "IPv4Ext inNoRoutes",
        "path":  "sp.*.net.ip.ipv4Ext.inNoRoutes",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13028,
        "name":  "IPv4Ext inOctets",
        "path":  "sp.*.net.ip.ipv4Ext.inOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13030,
        "name":  "IPv4Ext inTruncatedPkts",
        "path":  "sp.*.net.ip.ipv4Ext.inTruncatedPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13032,
        "name":  "IPv4Ext outBcastOctets",
        "path":  "sp.*.net.ip.ipv4Ext.outBcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13034,
        "name":  "IPv4Ext outBcastPkts",
        "path":  "sp.*.net.ip.ipv4Ext.outBcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13036,
        "name":  "IPv4Ext outMcastOctets",
        "path":  "sp.*.net.ip.ipv4Ext.outMcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13038,
        "name":  "IPv4Ext outMcastPkts",
        "path":  "sp.*.net.ip.ipv4Ext.outMcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13040,
        "name":  "IPv4Ext outOctets",
        "path":  "sp.*.net.ip.ipv4Ext.outOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13043,
        "name":  "IPv6 fragCreates",
        "path":  "sp.*.net.ip.ipv6.fragCreates",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13045,
        "name":  "IPv6 fragFails",
        "path":  "sp.*.net.ip.ipv6.fragFails",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13047,
        "name":  "IPv6 fragOKs",
        "path":  "sp.*.net.ip.ipv6.fragOKs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13049,
        "name":  "IPv6 inAddrErrors",
        "path":  "sp.*.net.ip.ipv6.inAddrErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13051,
        "name":  "IPv6 inBcastOctets",
        "path":  "sp.*.net.ip.ipv6.inBcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13053,
        "name":  "IPv6 inDelivers",
        "path":  "sp.*.net.ip.ipv6.inDelivers",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13055,
        "name":  "IPv6 inDiscards",
        "path":  "sp.*.net.ip.ipv6.inDiscards",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13057,
        "name":  "IPv6 inHdrErrors",
        "path":  "sp.*.net.ip.ipv6.inHdrErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13059,
        "name":  "IPv6 inMcastOctets",
        "path":  "sp.*.net.ip.ipv6.inMcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13061,
        "name":  "IPv6 inMcastPkts",
        "path":  "sp.*.net.ip.ipv6.inMcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13063,
        "name":  "IPv6 inNoRoutes",
        "path":  "sp.*.net.ip.ipv6.inNoRoutes",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13065,
        "name":  "IPv6 inOctets",
        "path":  "sp.*.net.ip.ipv6.inOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13067,
        "name":  "IPv6 inPkts",
        "path":  "sp.*.net.ip.ipv6.inPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13069,
        "name":  "IPv6 inTooBigErrors",
        "path":  "sp.*.net.ip.ipv6.inTooBigErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13071,
        "name":  "IPv6 inTruncatedPkts",
        "path":  "sp.*.net.ip.ipv6.inTruncatedPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13073,
        "name":  "IPv6 inUnknownProtos",
        "path":  "sp.*.net.ip.ipv6.inUnknownProtos",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13075,
        "name":  "IPv6 outBcastOctets",
        "path":  "sp.*.net.ip.ipv6.outBcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13077,
        "name":  "IPv6 outDiscards",
        "path":  "sp.*.net.ip.ipv6.outDiscards",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13079,
        "name":  "IPv6 outForwDatagrams",
        "path":  "sp.*.net.ip.ipv6.outForwDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13081,
        "name":  "IPv6 outMcastOctets",
        "path":  "sp.*.net.ip.ipv6.outMcastOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13083,
        "name":  "IPv6 outMcastPkts",
        "path":  "sp.*.net.ip.ipv6.outMcastPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13085,
        "name":  "IPv6 outNoRoutes",
        "path":  "sp.*.net.ip.ipv6.outNoRoutes",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13087,
        "name":  "IPv6 outOctets",
        "path":  "sp.*.net.ip.ipv6.outOctets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13089,
        "name":  "IPv6 outPkts",
        "path":  "sp.*.net.ip.ipv6.outPkts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13091,
        "name":  "IPv6 reasmFails",
        "path":  "sp.*.net.ip.ipv6.reasmFails",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13093,
        "name":  "IPv6 reasmOKs",
        "path":  "sp.*.net.ip.ipv6.reasmOKs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13095,
        "name":  "IPv6 reasmTimeout",
        "path":  "sp.*.net.ip.ipv6.reasmTimeout",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13098,
        "name":  "TCPv4 activeOpens",
        "path":  "sp.*.net.ip.tcpv4.activeOpens",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13100,
        "name":  "TCPv4 attemptFails",
        "path":  "sp.*.net.ip.tcpv4.attemptFails",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13102,
        "name":  "TCPv4 currEstab",
        "path":  "sp.*.net.ip.tcpv4.currEstab",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13104,
        "name":  "TCPv4 estabResets",
        "path":  "sp.*.net.ip.tcpv4.estabResets",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13106,
        "name":  "TCPv4 inErrs",
        "path":  "sp.*.net.ip.tcpv4.inErrs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13108,
        "name":  "TCPv4 inSegs",
        "path":  "sp.*.net.ip.tcpv4.inSegs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13110,
        "name":  "TCPv4 maxConn",
        "path":  "sp.*.net.ip.tcpv4.maxConn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13112,
        "name":  "TCPv4 outRsts",
        "path":  "sp.*.net.ip.tcpv4.outRsts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13114,
        "name":  "TCPv4 outSegs",
        "path":  "sp.*.net.ip.tcpv4.outSegs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13116,
        "name":  "TCPv4 passiveOpens",
        "path":  "sp.*.net.ip.tcpv4.passiveOpens",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13118,
        "name":  "TCPv4 retransSegs",
        "path":  "sp.*.net.ip.tcpv4.retransSegs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13120,
        "name":  "TCPv4 rtoAlgorithm",
        "path":  "sp.*.net.ip.tcpv4.rtoAlgorithm",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13122,
        "name":  "TCPv4 rtoMax",
        "path":  "sp.*.net.ip.tcpv4.rtoMax",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13124,
        "name":  "TCPv4 rtoMin",
        "path":  "sp.*.net.ip.tcpv4.rtoMin",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13127,
        "name":  "TCPv4Ext arpFilter",
        "path":  "sp.*.net.ip.tcpv4Ext.arpFilter",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13129,
        "name":  "TCPv4Ext delayedACKLocked",
        "path":  "sp.*.net.ip.tcpv4Ext.delayedACKLocked",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13131,
        "name":  "TCPv4Ext delayedACKLost",
        "path":  "sp.*.net.ip.tcpv4Ext.delayedACKLost",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13133,
        "name":  "TCPv4Ext delayedACKs",
        "path":  "sp.*.net.ip.tcpv4Ext.delayedACKs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13135,
        "name":  "TCPv4Ext embryonicRsts",
        "path":  "sp.*.net.ip.tcpv4Ext.embryonicRsts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13137,
        "name":  "TCPv4Ext ipReversePathFilter",
        "path":  "sp.*.net.ip.tcpv4Ext.ipReversePathFilter",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13139,
        "name":  "TCPv4Ext listenDrops",
        "path":  "sp.*.net.ip.tcpv4Ext.listenDrops",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13141,
        "name":  "TCPv4Ext listenOverflows",
        "path":  "sp.*.net.ip.tcpv4Ext.listenOverflows",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13143,
        "name":  "TCPv4Ext lockDroppedIcmps",
        "path":  "sp.*.net.ip.tcpv4Ext.lockDroppedIcmps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13145,
        "name":  "TCPv4Ext ofoPruned",
        "path":  "sp.*.net.ip.tcpv4Ext.ofoPruned",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13147,
        "name":  "TCPv4Ext outOfWindowIcmps",
        "path":  "sp.*.net.ip.tcpv4Ext.outOfWindowIcmps",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13149,
        "name":  "TCPv4Ext pawsActive",
        "path":  "sp.*.net.ip.tcpv4Ext.pawsActive",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13151,
        "name":  "TCPv4Ext pawsEstab",
        "path":  "sp.*.net.ip.tcpv4Ext.pawsEstab",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13153,
        "name":  "TCPv4Ext pawsPassive",
        "path":  "sp.*.net.ip.tcpv4Ext.pawsPassive",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13155,
        "name":  "TCPv4Ext pruneCalled",
        "path":  "sp.*.net.ip.tcpv4Ext.pruneCalled",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13157,
        "name":  "TCPv4Ext rcvPruned",
        "path":  "sp.*.net.ip.tcpv4Ext.rcvPruned",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13159,
        "name":  "TCPv4Ext synCookiesFailed",
        "path":  "sp.*.net.ip.tcpv4Ext.synCookiesFailed",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13161,
        "name":  "TCPv4Ext synCookiesRecv",
        "path":  "sp.*.net.ip.tcpv4Ext.synCookiesRecv",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13163,
        "name":  "TCPv4Ext synCookiesSent",
        "path":  "sp.*.net.ip.tcpv4Ext.synCookiesSent",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13165,
        "name":  "TCPv4Ext tcpAbortFailed",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortFailed",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13167,
        "name":  "TCPv4Ext tcpAbortOnClose",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnClose",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13169,
        "name":  "TCPv4Ext tcpAbortOnData",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnData",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13171,
        "name":  "TCPv4Ext tcpAbortOnLinger",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnLinger",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13173,
        "name":  "TCPv4Ext tcpAbortOnMemory",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnMemory",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13175,
        "name":  "TCPv4Ext tcpAbortOnSyn",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnSyn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13177,
        "name":  "TCPv4Ext tcpAbortOnTimeout",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpAbortOnTimeout",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13179,
        "name":  "TCPv4Ext tcpBacklogDrop",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpBacklogDrop",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13181,
        "name":  "TCPv4Ext tcpChallengeAck",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpChallengeAck",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13183,
        "name":  "TCPv4Ext tcpDSACKIgnoredNoUndo",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKIgnoredNoUndo",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13185,
        "name":  "TCPv4Ext tcpDSACKIgnoredOld",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKIgnoredOld",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13187,
        "name":  "TCPv4Ext tcpDSACKOfoRecv",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKOfoRecv",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13189,
        "name":  "TCPv4Ext tcpDSACKOfoSent",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKOfoSent",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13191,
        "name":  "TCPv4Ext tcpDSACKOldSent",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKOldSent",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13193,
        "name":  "TCPv4Ext tcpDSACKRecv",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKRecv",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13195,
        "name":  "TCPv4Ext tcpDSACKUndo",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDSACKUndo",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13197,
        "name":  "TCPv4Ext tcpDeferAcceptDrop",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDeferAcceptDrop",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13199,
        "name":  "TCPv4Ext tcpDirectCopyFromBacklog",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDirectCopyFromBacklog",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13201,
        "name":  "TCPv4Ext tcpDirectCopyFromPrequeue",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpDirectCopyFromPrequeue",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13203,
        "name":  "TCPv4Ext tcpFACKReorder",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpFACKReorder",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13205,
        "name":  "TCPv4Ext tcpFastRetrans",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpFastRetrans",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13207,
        "name":  "TCPv4Ext tcpForwardRetrans",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpForwardRetrans",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13209,
        "name":  "TCPv4Ext tcpFullUndo",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpFullUndo",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13211,
        "name":  "TCPv4Ext tcpHPAcks",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpHPAcks",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13213,
        "name":  "TCPv4Ext tcpHPHits",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpHPHits",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13215,
        "name":  "TCPv4Ext tcpHPHitsToUser",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpHPHitsToUser",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13217,
        "name":  "TCPv4Ext tcpLoss",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpLoss",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13218,
        "name":  "TCPv4Ext tcpLossFailures",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpLossFailures",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13221,
        "name":  "TCPv4Ext tcpLossUndo",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpLossUndo",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13223,
        "name":  "TCPv4Ext tcpLostRetransmit",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpLostRetransmit",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13225,
        "name":  "TCPv4Ext tcpMD5NotFound",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpMD5NotFound",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13227,
        "name":  "TCPv4Ext tcpMD5Unexpected",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpMD5Unexpected",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13229,
        "name":  "TCPv4Ext tcpMemoryPressures",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpMemoryPressures",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13231,
        "name":  "TCPv4Ext tcpMinTTLDrop",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpMinTTLDrop",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13233,
        "name":  "TCPv4Ext tcpPartialUndo",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpPartialUndo",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13235,
        "name":  "TCPv4Ext tcpPrequeueDropped",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpPrequeueDropped",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13237,
        "name":  "TCPv4Ext tcpPrequeued",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpPrequeued",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13239,
        "name":  "TCPv4Ext tcpPureAcks",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpPureAcks",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13241,
        "name":  "TCPv4Ext tcpRcvCollapsed",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpRcvCollapsed",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13243,
        "name":  "TCPv4Ext tcpRenoFailures",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpRenoFailures",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13245,
        "name":  "TCPv4Ext tcpRenoRecovery",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpRenoRecovery",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13246,
        "name":  "TCPv4Ext tcpRenoRecoveryFail",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpRenoRecoveryFail",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13249,
        "name":  "TCPv4Ext tcpRenoReorder",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpRenoReorder",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13251,
        "name":  "TCPv4Ext tcpSACKDiscard",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKDiscard",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13253,
        "name":  "TCPv4Ext tcpSACKFailures",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKFailures",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13255,
        "name":  "TCPv4Ext tcpSACKMerged",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKMerged",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13257,
        "name":  "TCPv4Ext tcpSACKRecovery",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKRecovery",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13258,
        "name":  "TCPv4Ext tcpSACKRecoveryFail",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKRecoveryFail",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13261,
        "name":  "TCPv4Ext tcpSACKReneging",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKReneging",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13263,
        "name":  "TCPv4Ext tcpSACKReorder",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKReorder",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13265,
        "name":  "TCPv4Ext tcpSACKShiftFallback",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKShiftFallback",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13267,
        "name":  "TCPv4Ext tcpSACKShifted",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSACKShifted",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13269,
        "name":  "TCPv4Ext tcpSchedulerFailed",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSchedulerFailed",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13271,
        "name":  "TCPv4Ext tcpSlowStartRetrans",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSlowStartRetrans",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13273,
        "name":  "TCPv4Ext tcpSpuriousRTOs",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSpuriousRTOs",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13275,
        "name":  "TCPv4Ext tcpSynChallenge",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpSynChallenge",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13277,
        "name":  "TCPv4Ext tcpTSReorder",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpTSReorder",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13279,
        "name":  "TCPv4Ext tcpTimeWaitOverflow",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpTimeWaitOverflow",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13281,
        "name":  "TCPv4Ext tcpTimeouts",
        "path":  "sp.*.net.ip.tcpv4Ext.tcpTimeouts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13283,
        "name":  "TCPv4Ext tw",
        "path":  "sp.*.net.ip.tcpv4Ext.tw",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13284,
        "name":  "TCPv4Ext twKilled",
        "path":  "sp.*.net.ip.tcpv4Ext.twKilled",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13287,
        "name":  "TCPv4Ext twRecycled",
        "path":  "sp.*.net.ip.tcpv4Ext.twRecycled",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13290,
        "name":  "UDPLitev4 inDatagrams",
        "path":  "sp.*.net.ip.udpLitev4.inDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13292,
        "name":  "UDPLitev4 inErrors",
        "path":  "sp.*.net.ip.udpLitev4.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13294,
        "name":  "UDPLitev4 noPorts",
        "path":  "sp.*.net.ip.udpLitev4.noPorts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13296,
        "name":  "UDPLitev4 outDatagrams",
        "path":  "sp.*.net.ip.udpLitev4.outDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13298,
        "name":  "UDPLitev4 rcvBufErrors",
        "path":  "sp.*.net.ip.udpLitev4.rcvBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13300,
        "name":  "UDPLitev4 sndBufErrors",
        "path":  "sp.*.net.ip.udpLitev4.sndBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13303,
        "name":  "UDPLitev6 inDatagrams",
        "path":  "sp.*.net.ip.udpLitev6.inDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13305,
        "name":  "UDPLitev6 inErrors",
        "path":  "sp.*.net.ip.udpLitev6.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13307,
        "name":  "UDPLitev6 noPorts",
        "path":  "sp.*.net.ip.udpLitev6.noPorts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13309,
        "name":  "UDPLitev6 outDatagrams",
        "path":  "sp.*.net.ip.udpLitev6.outDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13311,
        "name":  "UDPLitev6 rcvBufErrors",
        "path":  "sp.*.net.ip.udpLitev6.rcvBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13313,
        "name":  "UDPLitev6 sndBufErrors",
        "path":  "sp.*.net.ip.udpLitev6.sndBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13316,
        "name":  "UDPv4 inDatagrams",
        "path":  "sp.*.net.ip.udpv4.inDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13318,
        "name":  "UDPv4 inErrors",
        "path":  "sp.*.net.ip.udpv4.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13320,
        "name":  "UDPv4 noPorts",
        "path":  "sp.*.net.ip.udpv4.noPorts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13322,
        "name":  "UDPv4 outDatagrams",
        "path":  "sp.*.net.ip.udpv4.outDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13324,
        "name":  "UDPv4 rcvBufErrors",
        "path":  "sp.*.net.ip.udpv4.rcvBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13326,
        "name":  "UDPv4 sndBufErrors",
        "path":  "sp.*.net.ip.udpv4.sndBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13329,
        "name":  "UDPv6 inDatagrams",
        "path":  "sp.*.net.ip.udpv6.inDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13331,
        "name":  "UDPv6 inErrors",
        "path":  "sp.*.net.ip.udpv6.inErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13333,
        "name":  "UDPv6 noPorts",
        "path":  "sp.*.net.ip.udpv6.noPorts",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13335,
        "name":  "UDPv6 outDatagrams",
        "path":  "sp.*.net.ip.udpv6.outDatagrams",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13337,
        "name":  "UDPv6 rcvBufErrors",
        "path":  "sp.*.net.ip.udpv6.rcvBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13339,
        "name":  "UDPv6 sndBufErrors",
        "path":  "sp.*.net.ip.udpv6.sndBufErrors",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13343,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.abortedErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13345,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.bytesIn",
        "type":  3,
        "description":  "Number of octets read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13347,
        "name":  "Network Out",
        "path":  "sp.*.net.namespace.*.device.*.bytesOut",
        "type":  3,
        "description":  "Number of octets written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13349,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.carriererrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13351,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.collisions",
        "type":  3,
        "description":  "Number of packet collisions",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13353,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.compressedIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13355,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.compressedOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13357,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.crcErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13359,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.droppedIn",
        "type":  3,
        "description":  "Number of input packets dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13361,
        "name":  "Network Out",
        "path":  "sp.*.net.namespace.*.device.*.droppedOut",
        "type":  3,
        "description":  "Number of output packets dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13363,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.errorsIn",
        "type":  3,
        "description":  "Number of errors read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13365,
        "name":  "Network Out",
        "path":  "sp.*.net.namespace.*.device.*.errorsOut",
        "type":  3,
        "description":  "Number of errors written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13367,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.fifoErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13369,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.fifoErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13371,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.frameErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13373,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.heartbeatErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13375,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.lengthErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13377,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.missedErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13379,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.multicast",
        "type":  3,
        "description":  "Number of multicast packets received",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13381,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.overErrorsIn",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13383,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.pktsIn",
        "type":  3,
        "description":  "Number of packets read from network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pkts"
    },
    {
        "id":  13385,
        "name":  "Network Out",
        "path":  "sp.*.net.namespace.*.device.*.pktsOut",
        "type":  3,
        "description":  "Number of packets written to network device",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Pkts"
    },
    {
        "id":  13387,
        "name":  "Network In",
        "path":  "sp.*.net.namespace.*.device.*.windowErrorsOut",
        "type":  3,
        "description":  "",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13389,
        "name":  "Octets In",
        "path":  "sp.*.net.namespace.*.inBytes",
        "type":  3,
        "description":  "Total network read octets",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13390,
        "name":  "Octets In",
        "path":  "sp.*.net.namespace.*.inBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Total network read octets",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13391,
        "name":  "Octets Out",
        "path":  "sp.*.net.namespace.*.outBytes",
        "type":  3,
        "description":  "Total network octets written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13392,
        "name":  "Octets Out",
        "path":  "sp.*.net.namespace.*.outBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Total network octets written",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13395,
        "name":  "Bad Read",
        "path":  "sp.*.nfs.badReadStreams",
        "type":  3,
        "description":  "Number of bad read streams",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Streams"
    },
    {
        "id":  13397,
        "name":  "NFS Avg Read Size",
        "path":  "sp.*.nfs.basic.readAvgSize",
        "type":  5,
        "description":  "Average NFS read size",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13398,
        "name":  "NFS Read",
        "path":  "sp.*.nfs.basic.readBytes",
        "type":  3,
        "description":  "Number of NFS bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13399,
        "name":  "NFS Read",
        "path":  "sp.*.nfs.basic.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of NFS bytes read",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13400,
        "name":  "NFS Read",
        "path":  "sp.*.nfs.basic.reads",
        "type":  3,
        "description":  "Number of NFS read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13401,
        "name":  "NFS Read",
        "path":  "sp.*.nfs.basic.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of NFS read operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  13402,
        "name":  "NFS Avg Write Size",
        "path":  "sp.*.nfs.basic.writeAvgSize",
        "type":  5,
        "description":  "Average NFS write size",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13403,
        "name":  "NFS Write",
        "path":  "sp.*.nfs.basic.writeBytes",
        "type":  3,
        "description":  "Number of NFS bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13404,
        "name":  "NFS Write",
        "path":  "sp.*.nfs.basic.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of NFS bytes written",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13405,
        "name":  "NFS Write",
        "path":  "sp.*.nfs.basic.writes",
        "type":  3,
        "description":  "Number of NFS write operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13406,
        "name":  "NFS Write",
        "path":  "sp.*.nfs.basic.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of NFS write operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  13407,
        "name":  "NFS Active",
        "path":  "sp.*.nfs.currentThreads",
        "type":  5,
        "description":  "Number of active threads",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  13409,
        "name":  "GssXid Dropped",
        "path":  "sp.*.nfs.gssXid.droppedRequests",
        "type":  3,
        "description":  "Number of requests dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reqs"
    },
    {
        "id":  13410,
        "name":  "GssXid Completed",
        "path":  "sp.*.nfs.gssXid.drops",
        "type":  3,
        "description":  "Number of drops completed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Drops"
    },
    {
        "id":  13411,
        "name":  "GssXid Forward",
        "path":  "sp.*.nfs.gssXid.forwards",
        "type":  5,
        "description":  "Number of forwards",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13412,
        "name":  "GssXid In-Progress",
        "path":  "sp.*.nfs.gssXid.inProg",
        "type":  5,
        "description":  "Number of caches in progress",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13413,
        "name":  "GssXid In-Progress",
        "path":  "sp.*.nfs.gssXid.inProgHits",
        "type":  3,
        "description":  "Number of hits in progress",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  13415,
        "name":  "GssXid Lookup",
        "path":  "sp.*.nfs.gssXid.lookups",
        "type":  3,
        "description":  "Total number of lookups",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reqs"
    },
    {
        "id":  13417,
        "name":  "GssXid Misses",
        "path":  "sp.*.nfs.gssXid.misses",
        "type":  3,
        "description":  "Number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13418,
        "name":  "GssXid Redo",
        "path":  "sp.*.nfs.gssXid.reDos",
        "type":  3,
        "description":  "Number of redos",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13419,
        "name":  "GssXid reForward",
        "path":  "sp.*.nfs.gssXid.reForwards",
        "type":  3,
        "description":  "Number of reforwards",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13420,
        "name":  "GssXid Resent",
        "path":  "sp.*.nfs.gssXid.reSentReplies",
        "type":  3,
        "description":  "Number of replies resent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Replies"
    },
    {
        "id":  13421,
        "name":  "Max NFS Active",
        "path":  "sp.*.nfs.maxUsedThreads",
        "type":  5,
        "description":  "Maximum number of active threads",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Threads"
    },
    {
        "id":  13422,
        "name":  "ReadStream",
        "path":  "sp.*.nfs.readStreamTime",
        "type":  3,
        "description":  "Time in ReadStream",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13424,
        "name":  "Total NFS",
        "path":  "sp.*.nfs.totalCalls",
        "type":  3,
        "description":  "Total number of NFS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13425,
        "name":  "Total NFS",
        "path":  "sp.*.nfs.totalCallsRate",
        "type":  4,
        "description":  "Rate for raw metric: Total number of NFS operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Ops/s"
    },
    {
        "id":  13426,
        "name":  "Total",
        "path":  "sp.*.nfs.totalTime",
        "type":  3,
        "description":  "The amount of time spent on the NFS total operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13430,
        "name":  "Read Crossed",
        "path":  "sp.*.nfs.v2.io.*.crossedReads",
        "type":  3,
        "description":  "Number of read requests that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13432,
        "name":  "Write Crossed",
        "path":  "sp.*.nfs.v2.io.*.crossedWrites",
        "type":  3,
        "description":  "Number of write calls that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13434,
        "name":  "Read",
        "path":  "sp.*.nfs.v2.io.*.reads",
        "type":  3,
        "description":  "Number of read requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13436,
        "name":  "Write",
        "path":  "sp.*.nfs.v2.io.*.writes",
        "type":  3,
        "description":  "Number of write requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13441,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v2.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13443,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v2.op.*.failures",
        "type":  3,
        "description":  "Number of times the operation has failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13444,
        "name":  "Max",
        "path":  "sp.*.nfs.v2.op.*.maxTime",
        "type":  5,
        "description":  "Maximum time in microseconds used for the operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13446,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v2.op.*.totalTime",
        "type":  3,
        "description":  "Total microseconds the operation has used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13448,
        "name":  "NFSv2 Total",
        "path":  "sp.*.nfs.v2.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all NFS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13451,
        "name":  "NFSv2 Total",
        "path":  "sp.*.nfs.v2.totalTime",
        "type":  8,
        "description":  "Total time in microseconds that all of the operations have used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13454,
        "name":  "Read Crossed",
        "path":  "sp.*.nfs.v3.io.*.crossedReads",
        "type":  3,
        "description":  "Number of read requests that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13456,
        "name":  "Write Crossed",
        "path":  "sp.*.nfs.v3.io.*.crossedWrites",
        "type":  3,
        "description":  "Number of write calls that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13458,
        "name":  "Read",
        "path":  "sp.*.nfs.v3.io.*.reads",
        "type":  3,
        "description":  "Number of read requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13460,
        "name":  "Write",
        "path":  "sp.*.nfs.v3.io.*.writes",
        "type":  3,
        "description":  "Number of write requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13465,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v3.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13467,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v3.op.*.failures",
        "type":  3,
        "description":  "Number of times the operation has failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13468,
        "name":  "Max",
        "path":  "sp.*.nfs.v3.op.*.maxTime",
        "type":  5,
        "description":  "Maximum time in microseconds used for the operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13470,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v3.op.*.totalTime",
        "type":  3,
        "description":  "Total microseconds the operation has used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13472,
        "name":  "NFSv3 Total",
        "path":  "sp.*.nfs.v3.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all NFS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13475,
        "name":  "NFSv3 Total",
        "path":  "sp.*.nfs.v3.totalTime",
        "type":  8,
        "description":  "Total time in microseconds that all NFS operations have used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13478,
        "name":  "VAAI Op",
        "path":  "sp.*.nfs.v3.vstorage.*.calls",
        "type":  3,
        "description":  "Number of calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13480,
        "name":  "VAAI Op Max",
        "path":  "sp.*.nfs.v3.vstorage.*.maxTime",
        "type":  5,
        "description":  "Maximum time spent (in milliseconds)",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSecs"
    },
    {
        "id":  13481,
        "name":  "VAAI Op Total",
        "path":  "sp.*.nfs.v3.vstorage.*.totalTime",
        "type":  3,
        "description":  "cumulative milliseconds per VAAI call",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "mSecs"
    },
    {
        "id":  13485,
        "name":  "Total NFSv4",
        "path":  "sp.*.nfs.v4.compound.totalCalls",
        "type":  3,
        "description":  "Total number of NFSv4 compounds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Compound"
    },
    {
        "id":  13488,
        "name":  "Read Crossed",
        "path":  "sp.*.nfs.v4.io.*.crossedReads",
        "type":  3,
        "description":  "Number of read requests that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13490,
        "name":  "Write Crossed",
        "path":  "sp.*.nfs.v4.io.*.crossedWrites",
        "type":  3,
        "description":  "Number of write calls that cross page boundaries",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13492,
        "name":  "Read",
        "path":  "sp.*.nfs.v4.io.*.reads",
        "type":  3,
        "description":  "Number of read requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13494,
        "name":  "Write",
        "path":  "sp.*.nfs.v4.io.*.writes",
        "type":  3,
        "description":  "Number of write requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13499,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v4.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13501,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v4.op.*.failures",
        "type":  3,
        "description":  "Number of times the operation failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13502,
        "name":  "Max",
        "path":  "sp.*.nfs.v4.op.*.maxTime",
        "type":  5,
        "description":  "Maximum time in microseconds used for the operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13504,
        "name":  "NFS Op",
        "path":  "sp.*.nfs.v4.op.*.totalTime",
        "type":  3,
        "description":  "Total microseconds the operation has used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13506,
        "name":  "NFSv4 Total",
        "path":  "sp.*.nfs.v4.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all NFS operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13509,
        "name":  "NFSv4 Total",
        "path":  "sp.*.nfs.v4.totalTime",
        "type":  8,
        "description":  "Total time in microseconds that all NFS operations have used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13510,
        "name":  "WriteStream",
        "path":  "sp.*.nfs.writeStreamTime",
        "type":  3,
        "description":  "Time in WriteStream",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13513,
        "name":  "Xid Dropped",
        "path":  "sp.*.nfs.xid.droppedRequests",
        "type":  3,
        "description":  "Number of requests dropped",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reqs"
    },
    {
        "id":  13515,
        "name":  "Xid Completed",
        "path":  "sp.*.nfs.xid.drops",
        "type":  3,
        "description":  "Number of drops completed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Drops"
    },
    {
        "id":  13517,
        "name":  "Xid forward",
        "path":  "sp.*.nfs.xid.forwards",
        "type":  5,
        "description":  "Number of forwards",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13518,
        "name":  "Xid In-Progress",
        "path":  "sp.*.nfs.xid.inProg",
        "type":  5,
        "description":  "Number of caches in progress",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13519,
        "name":  "Xid In-Progress",
        "path":  "sp.*.nfs.xid.inProgHits",
        "type":  3,
        "description":  "Number of hits in progress",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  13521,
        "name":  "Xid Lookup",
        "path":  "sp.*.nfs.xid.lookups",
        "type":  3,
        "description":  "Total number of lookups",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reqs"
    },
    {
        "id":  13523,
        "name":  "Xid Misses",
        "path":  "sp.*.nfs.xid.misses",
        "type":  3,
        "description":  "Number of cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13524,
        "name":  "Xid Redo",
        "path":  "sp.*.nfs.xid.reDos",
        "type":  3,
        "description":  "Number of redos",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13525,
        "name":  "Xid reForward",
        "path":  "sp.*.nfs.xid.reForwards",
        "type":  3,
        "description":  "Number of reforwards",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13526,
        "name":  "Xid Resent",
        "path":  "sp.*.nfs.xid.reSentReplies",
        "type":  3,
        "description":  "Number of replies resent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Replies"
    },
    {
        "id":  13528,
        "name":  "NTP First Contact",
        "path":  "sp.*.ntp.firstHits",
        "type":  3,
        "description":  "Number of first time successful contacts with the NTP server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  13530,
        "name":  "NTP First Contact",
        "path":  "sp.*.ntp.firstMisses",
        "type":  3,
        "description":  "Number of first time missed contacts with the NTP server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  13531,
        "name":  "NTP Contact",
        "path":  "sp.*.ntp.hits",
        "type":  3,
        "description":  "Number of successful contacts with the NTP server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Hits"
    },
    {
        "id":  13534,
        "name":  "NTP Last Update",
        "path":  "sp.*.ntp.lastDelta.sec",
        "type":  5,
        "description":  "Difference in seconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Delta Seconds"
    },
    {
        "id":  13535,
        "name":  "NTP Last Update",
        "path":  "sp.*.ntp.lastDelta.usec",
        "type":  5,
        "description":  "Difference in microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Delta USecs"
    },
    {
        "id":  13536,
        "name":  "NTP Contact",
        "path":  "sp.*.ntp.misses",
        "type":  3,
        "description":  "Number of missed contacts with the NTP server",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Misses"
    },
    {
        "id":  13539,
        "name":  "Object",
        "path":  "sp.*.observability.object.*.ObjectCount",
        "type":  5,
        "description":  "Statistic Objects registered through the C API",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  13541,
        "name":  "Block Size",
        "path":  "sp.*.physical.blockSize",
        "type":  5,
        "description":  "Block size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13542,
        "name":  "Core Count",
        "path":  "sp.*.physical.coreCount",
        "type":  5,
        "description":  "Number of cores",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13544,
        "name":  "Avg Queue Length",
        "path":  "sp.*.physical.disk.*.averageQueueLength",
        "type":  5,
        "description":  "Average Queue Length for this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO"
    },
    {
        "id":  13546,
        "name":  "Sum Blocks Seeked",
        "path":  "sp.*.physical.disk.*.blocksSeeked",
        "type":  8,
        "description":  "Total block sectors seeked or this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13548,
        "name":  "Busy Ticks",
        "path":  "sp.*.physical.disk.*.busyTicks",
        "type":  8,
        "description":  "Busy Ticks for this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13552,
        "name":  "Sum Blocks Seeked",
        "path":  "sp.*.physical.disk.*.core.*.blocksSeeked",
        "type":  3,
        "description":  "Total block sectors seeked or this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13554,
        "name":  "Busy Ticks",
        "path":  "sp.*.physical.disk.*.core.*.busyTicks",
        "type":  3,
        "description":  "Busy Ticks for this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13559,
        "name":  "Idle Ticks",
        "path":  "sp.*.physical.disk.*.core.*.idleTicks",
        "type":  3,
        "description":  "Idle Ticks for this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13560,
        "name":  "\u003c100us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount100us",
        "type":  3,
        "description":  "IOs that took less than 100 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13562,
        "name":  "\u003c102400us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount102400us",
        "type":  3,
        "description":  "IOs that took less than 102400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13564,
        "name":  "\u003c12800us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount12800us",
        "type":  3,
        "description":  "IOs that took less than 12800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13566,
        "name":  "\u003c13107200us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount13107200us",
        "type":  3,
        "description":  "IOs that took less than 13107200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13568,
        "name":  "\u003c1600us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount1600us",
        "type":  3,
        "description":  "IOs that took less than 1600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13570,
        "name":  "\u003c1638400us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount1638400us",
        "type":  3,
        "description":  "IOs that took less than 1638400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13572,
        "name":  "\u003c200us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount200us",
        "type":  3,
        "description":  "IOs that took less than 200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13574,
        "name":  "\u003c204800us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount204800us",
        "type":  3,
        "description":  "IOs that took less than 204800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13576,
        "name":  "\u003c25600us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount25600us",
        "type":  3,
        "description":  "IOs that took less than 25600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13578,
        "name":  "\u003c26214400us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount26214400us",
        "type":  3,
        "description":  "IOs that took less than 26214400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13580,
        "name":  "\u003c3200us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount3200us",
        "type":  3,
        "description":  "IOs that took less than 3200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13582,
        "name":  "\u003c3276800us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount3276800us",
        "type":  3,
        "description":  "IOs that took less than 3276800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13584,
        "name":  "\u003c400us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount400us",
        "type":  3,
        "description":  "IOs that took less than 400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13586,
        "name":  "\u003c409600us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount409600us",
        "type":  3,
        "description":  "IOs that took less than 409600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13588,
        "name":  "\u003c51200us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount51200us",
        "type":  3,
        "description":  "IOs that took less than 51200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13590,
        "name":  "\u003c52428800us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount52428800us",
        "type":  3,
        "description":  "IOs that took less than 52428800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13592,
        "name":  "\u003c6400us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount6400us",
        "type":  3,
        "description":  "IOs that took less than 6400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13594,
        "name":  "\u003c6553600us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount6553600us",
        "type":  3,
        "description":  "IOs that took less than 6553600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13596,
        "name":  "\u003c800us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount800us",
        "type":  3,
        "description":  "IOs that took less than 800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13598,
        "name":  "\u003c819200us IOs",
        "path":  "sp.*.physical.disk.*.core.*.latencyCount819200us",
        "type":  3,
        "description":  "IOs that took less than 819200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13600,
        "name":  "Non-Zero Queue Arrivals",
        "path":  "sp.*.physical.disk.*.core.*.nonZeroQueueArrivals",
        "type":  3,
        "description":  "This counter increments every time an IO arrives at this disk when its queue is not empty.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13601,
        "name":  "Blocks read",
        "path":  "sp.*.physical.disk.*.core.*.readBlocks",
        "type":  3,
        "description":  "Number of blocks read from this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13605,
        "name":  "Reads",
        "path":  "sp.*.physical.disk.*.core.*.reads",
        "type":  3,
        "description":  "Reads from this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  13609,
        "name":  "Sum Arrival Queue Length",
        "path":  "sp.*.physical.disk.*.core.*.sumArrivalQueueLength",
        "type":  3,
        "description":  "This counter increases by the number of requests in the disk\u0027s queue when an IO arrives, including itself.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13610,
        "name":  "Blocks written",
        "path":  "sp.*.physical.disk.*.core.*.writeBlocks",
        "type":  3,
        "description":  "Number of blocks writen to this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13614,
        "name":  "Writes",
        "path":  "sp.*.physical.disk.*.core.*.writes",
        "type":  3,
        "description":  "Writes to this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Count"
    },
    {
        "id":  13620,
        "name":  "Idle Ticks",
        "path":  "sp.*.physical.disk.*.idleTicks",
        "type":  8,
        "description":  "Idle Ticks for this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13622,
        "name":  "\u003c100us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount100us",
        "type":  8,
        "description":  "IOs that took less than 100 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13624,
        "name":  "\u003c102400us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount102400us",
        "type":  8,
        "description":  "IOs that took less than 102400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13626,
        "name":  "\u003c12800us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount12800us",
        "type":  8,
        "description":  "IOs that took less than 12800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13628,
        "name":  "\u003c13107200us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount13107200us",
        "type":  8,
        "description":  "IOs that took less than 13107200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13630,
        "name":  "\u003c1600us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount1600us",
        "type":  8,
        "description":  "IOs that took less than 1600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13632,
        "name":  "\u003c1638400us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount1638400us",
        "type":  8,
        "description":  "IOs that took less than 1638400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13634,
        "name":  "\u003c200us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount200us",
        "type":  8,
        "description":  "IOs that took less than 200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13636,
        "name":  "\u003c204800us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount204800us",
        "type":  8,
        "description":  "IOs that took less than 204800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13638,
        "name":  "\u003c25600us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount25600us",
        "type":  8,
        "description":  "IOs that took less than 25600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13640,
        "name":  "\u003c26214400us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount26214400us",
        "type":  8,
        "description":  "IOs that took less than 26214400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13642,
        "name":  "\u003c3200us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount3200us",
        "type":  8,
        "description":  "IOs that took less than 3200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13644,
        "name":  "\u003c3276800us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount3276800us",
        "type":  8,
        "description":  "IOs that took less than 3276800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13646,
        "name":  "\u003c400us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount400us",
        "type":  8,
        "description":  "IOs that took less than 400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13648,
        "name":  "\u003c409600us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount409600us",
        "type":  8,
        "description":  "IOs that took less than 409600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13650,
        "name":  "\u003c51200us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount51200us",
        "type":  8,
        "description":  "IOs that took less than 51200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13652,
        "name":  "\u003c52428800us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount52428800us",
        "type":  8,
        "description":  "IOs that took less than 52428800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13654,
        "name":  "\u003c6400us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount6400us",
        "type":  8,
        "description":  "IOs that took less than 6400 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13656,
        "name":  "\u003c6553600us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount6553600us",
        "type":  8,
        "description":  "IOs that took less than 6553600 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13658,
        "name":  "\u003c800us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount800us",
        "type":  8,
        "description":  "IOs that took less than 800 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13660,
        "name":  "\u003c819200us IOs",
        "path":  "sp.*.physical.disk.*.latencyCount819200us",
        "type":  8,
        "description":  "IOs that took less than 819200 microseconds",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13662,
        "name":  "Non-Zero Queue Arrivals",
        "path":  "sp.*.physical.disk.*.nonZeroQueueArrivals",
        "type":  8,
        "description":  "This counter increments every time an IO arrives at this disk when its queue is not empty.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13664,
        "name":  "Blocks read",
        "path":  "sp.*.physical.disk.*.readBlocks",
        "type":  8,
        "description":  "Number of blocks read from this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13667,
        "name":  "Read",
        "path":  "sp.*.physical.disk.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read from this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13668,
        "name":  "Reads",
        "path":  "sp.*.physical.disk.*.reads",
        "type":  8,
        "description":  "Reads from this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IO"
    },
    {
        "id":  13669,
        "name":  "Reads",
        "path":  "sp.*.physical.disk.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Rate for raw metric: Reads from this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  13670,
        "name":  "Average Response Time",
        "path":  "sp.*.physical.disk.*.responseTime",
        "type":  5,
        "description":  "Average response time for this disk, measured in microseconds. This measures the average time it takes for a disk request to complete.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "us"
    },
    {
        "id":  13674,
        "name":  "Average Service Time",
        "path":  "sp.*.physical.disk.*.serviceTime",
        "type":  5,
        "description":  "Average service time for this disk, measured in microseconds. This measures the average time the disk spends on each individual request.",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "us"
    },
    {
        "id":  13676,
        "name":  "Sum Arrrival Queue Length",
        "path":  "sp.*.physical.disk.*.sumArrivalQueueLength",
        "type":  8,
        "description":  "This counter increases by the number of requests in the disk\u0027s queue when an IO arrives, including itself.",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13679,
        "name":  "Total Calls",
        "path":  "sp.*.physical.disk.*.totalCallsRate",
        "type":  4,
        "description":  "Rate for raw metric: Total Reads and Writes for this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  13680,
        "name":  "Total Ticks",
        "path":  "sp.*.physical.disk.*.totalTicks",
        "type":  8,
        "description":  "Total Reads and Writes for this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "us"
    },
    {
        "id":  13682,
        "name":  "Blocks written",
        "path":  "sp.*.physical.disk.*.writeBlocks",
        "type":  8,
        "description":  "Number of blocks writen to this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13685,
        "name":  "Written",
        "path":  "sp.*.physical.disk.*.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes written to this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13686,
        "name":  "Writes",
        "path":  "sp.*.physical.disk.*.writes",
        "type":  8,
        "description":  "Writes to this disk",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IO"
    },
    {
        "id":  13687,
        "name":  "Writes",
        "path":  "sp.*.physical.disk.*.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Rate for raw metric: Writes to this disk",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "IO/s"
    },
    {
        "id":  13689,
        "name":  "SP Temperature",
        "path":  "sp.*.platform.storageProcessorTemperature",
        "type":  5,
        "description":  "Storage Processor Temperature",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "C"
    },
    {
        "id":  13693,
        "name":  "End",
        "path":  "sp.*.replication.session.*.transfer.*.endTime",
        "type":  6,
        "description":  "Time at which this transfer ended",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Time"
    },
    {
        "id":  13694,
        "name":  "Disk Read Rate",
        "path":  "sp.*.replication.session.*.transfer.*.readDiskRate",
        "type":  5,
        "description":  "Rate at which data is read from the snap volume. The rate in which the delta (block changes) is transferred in kilobytes per second",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13695,
        "name":  "Start",
        "path":  "sp.*.replication.session.*.transfer.*.startTime",
        "type":  6,
        "description":  "Time at which this transfer started",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Time"
    },
    {
        "id":  13696,
        "name":  "Total Copied",
        "path":  "sp.*.replication.session.*.transfer.*.totalBlocks",
        "type":  5,
        "description":  "Total file system blocks (8K) copied",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "8KB Blocks"
    },
    {
        "id":  13697,
        "name":  "Replication Transfer Rate",
        "path":  "sp.*.replication.session.*.transfer.*.transferRate",
        "type":  5,
        "description":  "Primary-to-secondary transfer rate.  The rate in which the delta (block changes) is transferred in kilobytes per second",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13698,
        "name":  "Disk Write Rate",
        "path":  "sp.*.replication.session.*.transfer.*.writeDiskRate",
        "type":  5,
        "description":  "Rate at which data is written to the replicated file system.  The rate in which the delta (block changes) is transferred in kilobytes per second",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13700,
        "name":  "Auth",
        "path":  "sp.*.rpc.authenticationFailures",
        "type":  3,
        "description":  "Number of authentication failures",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13701,
        "name":  "Auth",
        "path":  "sp.*.rpc.authenticationRequests",
        "type":  3,
        "description":  "Number of authentication requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Reqs"
    },
    {
        "id":  13703,
        "name":  "Bad data",
        "path":  "sp.*.rpc.badDataCalls",
        "type":  3,
        "description":  "Number of calls with bad RPC data",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13705,
        "name":  "Duplicated",
        "path":  "sp.*.rpc.duplicateCalls",
        "type":  3,
        "description":  "Number of duplicate calls",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13710,
        "name":  "Pmap Op",
        "path":  "sp.*.rpc.pmap.op.*.calls",
        "type":  3,
        "description":  "Number of times the operation has been requested",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13712,
        "name":  "Pmap Op",
        "path":  "sp.*.rpc.pmap.op.*.failures",
        "type":  3,
        "description":  "Number of times the operation has failed",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Errors"
    },
    {
        "id":  13713,
        "name":  "Max",
        "path":  "sp.*.rpc.pmap.op.*.maxTime",
        "type":  5,
        "description":  "Maximum microseconds used for the operation",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13714,
        "name":  "Pmap Op",
        "path":  "sp.*.rpc.pmap.op.*.totalTime",
        "type":  5,
        "description":  "Total microseconds the operation has used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13715,
        "name":  "Pmap Total",
        "path":  "sp.*.rpc.pmap.totalCalls",
        "type":  8,
        "description":  "Total number of calls of all the operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13718,
        "name":  "Pmap Total",
        "path":  "sp.*.rpc.pmap.totalTime",
        "type":  5,
        "description":  "Total microseconds all the operations have used",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13720,
        "name":  "Re-sent",
        "path":  "sp.*.rpc.reSentReplies",
        "type":  3,
        "description":  "Number of replies resent",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Replies"
    },
    {
        "id":  13722,
        "name":  "Total RPC",
        "path":  "sp.*.rpc.totalCalls",
        "type":  3,
        "description":  "Total number of RPC operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Calls"
    },
    {
        "id":  13726,
        "name":  "Dropped SSH",
        "path":  "sp.*.ssh.server.connectDropped",
        "type":  3,
        "description":  "Total number of dropped SSH connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connection"
    },
    {
        "id":  13728,
        "name":  "Rejected SSH",
        "path":  "sp.*.ssh.server.connectReject",
        "type":  3,
        "description":  "Total number of rejected SSH connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connection"
    },
    {
        "id":  13730,
        "name":  "Succeeded SSH",
        "path":  "sp.*.ssh.server.connectSuccess",
        "type":  3,
        "description":  "Total number of authenticated SSH connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connection"
    },
    {
        "id":  13732,
        "name":  "Total SSH",
        "path":  "sp.*.ssh.server.connections",
        "type":  3,
        "description":  "Total number of SSH connections",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Connection"
    },
    {
        "id":  13734,
        "name":  "SSH In",
        "path":  "sp.*.ssh.server.inBytes",
        "type":  3,
        "description":  "Total number of incoming SSH traffic bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13736,
        "name":  "Max Running SSH",
        "path":  "sp.*.ssh.server.maxThreadInUse",
        "type":  5,
        "description":  "Max number of threads in use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Thread"
    },
    {
        "id":  13737,
        "name":  "SSH Out",
        "path":  "sp.*.ssh.server.outBytes",
        "type":  3,
        "description":  "total number of outgoing SSH traffic bytes",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13739,
        "name":  "Running SSH",
        "path":  "sp.*.ssh.server.threadInUse",
        "type":  5,
        "description":  "Number of threads in use",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Thread"
    },
    {
        "id":  13741,
        "name":  "SFTP Read",
        "path":  "sp.*.ssh.sftp.readBytes",
        "type":  3,
        "description":  "Total number of data bytes downloaded by SFTP clients",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13743,
        "name":  "SFTP Write",
        "path":  "sp.*.ssh.sftp.writeBytes",
        "type":  3,
        "description":  "Total number of data bytes uploaded by SFTP clients",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13747,
        "name":  "Data Read Blocks",
        "path":  "sp.*.storage.LO.*.dataReadBlocks",
        "type":  5,
        "description":  "MLU cumulative length of data read from this storageVolume - 512-byte Block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "512B Blocks"
    },
    {
        "id":  13748,
        "name":  "Data Read Bytes",
        "path":  "sp.*.storage.LO.*.dataReadBytes",
        "type":  5,
        "description":  "MLU cumulative length of data read from this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  13749,
        "name":  "Data Reads",
        "path":  "sp.*.storage.LO.*.dataReads",
        "type":  5,
        "description":  "MLU data read from this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IOs"
    },
    {
        "id":  13750,
        "name":  "Data Write Blocks",
        "path":  "sp.*.storage.LO.*.dataWriteBlocks",
        "type":  5,
        "description":  "MLU cumulative length of data written to this storageVolume - 512-Byte Block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "512B Blocks"
    },
    {
        "id":  13751,
        "name":  "Data Write Bytes",
        "path":  "sp.*.storage.LO.*.dataWriteBytes",
        "type":  5,
        "description":  "MLU cumulative length of data written to this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  13752,
        "name":  "Data Writes",
        "path":  "sp.*.storage.LO.*.dataWrites",
        "type":  5,
        "description":  "MLU data written to this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IOs"
    },
    {
        "id":  13753,
        "name":  "MetaData Read Blocks",
        "path":  "sp.*.storage.LO.*.metadataReadBlocks",
        "type":  5,
        "description":  "Cumulative Length of Metadata read from this storageVolume - 512-byte block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "512B Blocks"
    },
    {
        "id":  13754,
        "name":  "MetaData Read Bytes",
        "path":  "sp.*.storage.LO.*.metadataReadBytes",
        "type":  5,
        "description":  "Cumulative Length of Metadata read from this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  13755,
        "name":  "MetaData Reads",
        "path":  "sp.*.storage.LO.*.metadataReads",
        "type":  5,
        "description":  "Metadata reads from this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IOs"
    },
    {
        "id":  13756,
        "name":  "MetaData Write Blocks",
        "path":  "sp.*.storage.LO.*.metadataWriteBlocks",
        "type":  5,
        "description":  "Cumulative Length of Metadata written to this storageVolume - 512-byte block",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "512B Blocks"
    },
    {
        "id":  13757,
        "name":  "MetaData Write Bytes",
        "path":  "sp.*.storage.LO.*.metadataWriteBytes",
        "type":  5,
        "description":  "Cumulative Length of Metadata written to this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Bytes"
    },
    {
        "id":  13758,
        "name":  "MetaData Writes",
        "path":  "sp.*.storage.LO.*.metadataWrites",
        "type":  5,
        "description":  "Metadata writes to this storageVolume",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "IOs"
    },
    {
        "id":  13759,
        "name":  "Block Size",
        "path":  "sp.*.storage.blockSize",
        "type":  5,
        "description":  "Block size",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  ""
    },
    {
        "id":  13761,
        "name":  "Read",
        "path":  "sp.*.storage.filesystem.*.readBytes",
        "type":  3,
        "description":  "Ki bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13762,
        "name":  "Read",
        "path":  "sp.*.storage.filesystem.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Ki bytes read",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13763,
        "name":  "Read Miss",
        "path":  "sp.*.storage.filesystem.*.readMisses",
        "type":  3,
        "description":  "Number of read cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13766,
        "name":  "Avg Read Size",
        "path":  "sp.*.storage.filesystem.*.readSizeAvg",
        "type":  5,
        "description":  "Average size of read request",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13767,
        "name":  "Read",
        "path":  "sp.*.storage.filesystem.*.reads",
        "type":  3,
        "description":  "Number of read requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  13768,
        "name":  "Read",
        "path":  "sp.*.storage.filesystem.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of read requests",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Requests/s"
    },
    {
        "id":  13769,
        "name":  "Write",
        "path":  "sp.*.storage.filesystem.*.writeBytes",
        "type":  3,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13770,
        "name":  "Write",
        "path":  "sp.*.storage.filesystem.*.writeBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes written",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13771,
        "name":  "Write Miss",
        "path":  "sp.*.storage.filesystem.*.writeMisses",
        "type":  3,
        "description":  "Number of write cache misses",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13774,
        "name":  "Avg Write Size",
        "path":  "sp.*.storage.filesystem.*.writeSizeAvg",
        "type":  5,
        "description":  "Average size of write request",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13775,
        "name":  "Write",
        "path":  "sp.*.storage.filesystem.*.writes",
        "type":  3,
        "description":  "Number of write requests",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  13776,
        "name":  "Write",
        "path":  "sp.*.storage.filesystem.*.writesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of write requests",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Requests/s"
    },
    {
        "id":  13778,
        "name":  "Read",
        "path":  "sp.*.storage.filesystemSummary.readBytes",
        "type":  8,
        "description":  "Total bytes read from all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13780,
        "name":  "Read Miss",
        "path":  "sp.*.storage.filesystemSummary.readMisses",
        "type":  8,
        "description":  "Total read cache misses on all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13782,
        "name":  "Read",
        "path":  "sp.*.storage.filesystemSummary.reads",
        "type":  8,
        "description":  "Total number of read requests on all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  13784,
        "name":  "Write",
        "path":  "sp.*.storage.filesystemSummary.writeBytes",
        "type":  8,
        "description":  "Total bytes written on all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13786,
        "name":  "Write Miss",
        "path":  "sp.*.storage.filesystemSummary.writeMisses",
        "type":  8,
        "description":  "Total write cache misses on all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Ops"
    },
    {
        "id":  13788,
        "name":  "Write",
        "path":  "sp.*.storage.filesystemSummary.writes",
        "type":  8,
        "description":  "Total number of write requests on all file systems",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Requests"
    },
    {
        "id":  13792,
        "name":  "Average Read",
        "path":  "sp.*.storage.lun.*.avgReadSize",
        "type":  5,
        "description":  "Average read size on this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13793,
        "name":  "Average Write",
        "path":  "sp.*.storage.lun.*.avgWriteSize",
        "type":  5,
        "description":  "Average write size on this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB"
    },
    {
        "id":  13795,
        "name":  "Busy Time",
        "path":  "sp.*.storage.lun.*.busyTime",
        "type":  3,
        "description":  "Busy time, in microseconds, spent processing I/O for this LUN",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13797,
        "name":  "Current I/O",
        "path":  "sp.*.storage.lun.*.currentIOCount",
        "type":  5,
        "description":  "Number of I/O requests waiting to be completed on this LUN",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13798,
        "name":  "Idle Time",
        "path":  "sp.*.storage.lun.*.idleTime",
        "type":  3,
        "description":  "Idle time, in microseconds, where there was not any I/O to process for this LUN",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13799,
        "name":  "Average Queue Length",
        "path":  "sp.*.storage.lun.*.queueLength",
        "type":  5,
        "description":  "Average I/O queue length for this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Count"
    },
    {
        "id":  13800,
        "name":  "Read",
        "path":  "sp.*.storage.lun.*.readBlocks",
        "type":  3,
        "description":  "Blocks read from this LUN",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  13803,
        "name":  "Read",
        "path":  "sp.*.storage.lun.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read from this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13804,
        "name":  "Read",
        "path":  "sp.*.storage.lun.*.reads",
        "type":  3,
        "description":  "Reads from this LUN",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13805,
        "name":  "Read",
        "path":  "sp.*.storage.lun.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Reads from this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  13806,
        "name":  "Response Time",
        "path":  "sp.*.storage.lun.*.responseTime",
        "type":  5,
        "description":  "Average response time, in microseconds, for RW requests to this LUN",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "uSecs"
    },
    {
        "id":  13808,
        "name":  "Blocks Read",
        "path":  "sp.*.storage.lun.*.snap.*.readBlocks",
        "type":  8,
        "description":  "Blocks read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  13810,
        "name":  "Bytes Read",
        "path":  "sp.*.storage.lun.*.snap.*.readBytes",
        "type":  8,
        "description":  "Number of bytes read",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    },
    {
        "id":  13811,
        "name":  "Bytes Read",
        "path":  "sp.*.storage.lun.*.snap.*.readBytesRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of bytes read",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "KB/s"
    },
    {
        "id":  13812,
        "name":  "Read IO",
        "path":  "sp.*.storage.lun.*.snap.*.reads",
        "type":  8,
        "description":  "Number of read operations",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Counts"
    },
    {
        "id":  13813,
        "name":  "Read IO",
        "path":  "sp.*.storage.lun.*.snap.*.readsRate",
        "type":  4,
        "description":  "Rate for raw metric: Number of read operations",
        "isHistoricalAvailable":  true,
        "isRealtimeAvailable":  false,
        "unitDisplayString":  "Counts/s"
    },
    {
        "id":  13814,
        "name":  "Blocks Written",
        "path":  "sp.*.storage.lun.*.snap.*.writeBlocks",
        "type":  8,
        "description":  "Blocks written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "Blocks"
    },
    {
        "id":  13816,
        "name":  "Bytes Written",
        "path":  "sp.*.storage.lun.*.snap.*.writeBytes",
        "type":  8,
        "description":  "Number of bytes written",
        "isHistoricalAvailable":  false,
        "isRealtimeAvailable":  true,
        "unitDisplayString":  "B"
    }
]

KPI

[
    {
        "id":  1000,
        "kpi":  1000,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.utilization",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1001,
        "kpi":  1001,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.responseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1002,
        "kpi":  1002,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.readBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1003,
        "kpi":  1003,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.writeBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1004,
        "kpi":  1004,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.totalBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1005,
        "kpi":  1005,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.readIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1006,
        "kpi":  1006,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.writeIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1007,
        "kpi":  1007,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.totalIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1008,
        "kpi":  1008,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.readIoSize",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1009,
        "kpi":  1009,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.writeIoSize",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1010,
        "kpi":  1010,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.queueLength",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1011,
        "kpi":  1011,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.readIOPS",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1012,
        "kpi":  1012,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.writeIOPS",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1013,
        "kpi":  1013,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.readBandwidth",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1014,
        "kpi":  1014,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.writeBandwidth",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1015,
        "kpi":  1015,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.readIoSize",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1016,
        "kpi":  1016,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.filesystem.*.writeIoSize",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1017,
        "kpi":  1017,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.responseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1018,
        "kpi":  1018,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.serviceTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1019,
        "kpi":  1019,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.readBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1020,
        "kpi":  1020,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.writeBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1021,
        "kpi":  1021,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.readIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1022,
        "kpi":  1022,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.writeIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1023,
        "kpi":  1023,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.totalIOPS",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1024,
        "kpi":  1024,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.queueLength",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1025,
        "kpi":  1025,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.readBandwidth",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1026,
        "kpi":  1026,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.writeBandwidth",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1027,
        "kpi":  1027,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.readIOPS",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1028,
        "kpi":  1028,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.writeIOPS",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1029,
        "kpi":  1029,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.readBandwidth",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1030,
        "kpi":  1030,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.writeBandwidth",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1031,
        "kpi":  1031,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.readIOPS",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1032,
        "kpi":  1032,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.writeIOPS",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1033,
        "kpi":  1033,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.readBandwidth",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1034,
        "kpi":  1034,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.writeBandwidth",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1035,
        "kpi":  1035,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.readIOPS",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1036,
        "kpi":  1036,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.writeIOPS",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1421,
        "kpi":  1,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.utilization",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1422,
        "kpi":  2,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.writeHitThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1423,
        "kpi":  3,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.writeMissThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1424,
        "kpi":  4,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.readHitThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1425,
        "kpi":  5,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.readMissThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1426,
        "kpi":  6,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.dirtyPages",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1427,
        "kpi":  10,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.responseTime",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1428,
        "kpi":  10,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.responseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1429,
        "kpi":  11,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1430,
        "kpi":  11,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.bandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1431,
        "kpi":  11,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.bandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1432,
        "kpi":  12,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.throughput",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1433,
        "kpi":  12,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.throughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1434,
        "kpi":  12,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.throughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1435,
        "kpi":  13,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.ioSize",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1436,
        "kpi":  13,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.ioSize",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1437,
        "kpi":  13,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.ioSize",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1438,
        "kpi":  14,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.queueLength",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1439,
        "kpi":  14,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.queueLength",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1440,
        "kpi":  15,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.lunResponseTime",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1441,
        "kpi":  15,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.lunResponseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1442,
        "kpi":  16,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.lunBandwidth",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1443,
        "kpi":  16,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.lunBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1444,
        "kpi":  16,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.lunBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1445,
        "kpi":  17,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.lunThroughput",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1446,
        "kpi":  17,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.lunThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1447,
        "kpi":  17,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.lunThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1448,
        "kpi":  18,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.rw.+.lunIOSize",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1449,
        "kpi":  18,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.rw.+.lunIOSize",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1450,
        "kpi":  18,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.sp.+.rw.*.lunIOSize",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1451,
        "kpi":  19,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.sp.+.lunQueueLength",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1452,
        "kpi":  19,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.sp.*.lunQueueLength",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1453,
        "kpi":  20,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.responseTime",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1454,
        "kpi":  20,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.responseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1455,
        "kpi":  21,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.serviceTime",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1456,
        "kpi":  21,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.serviceTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1457,
        "kpi":  22,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1458,
        "kpi":  22,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.rw.+.bandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1459,
        "kpi":  22,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.disk.+.sp.+.rw.*.bandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1460,
        "kpi":  23,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.rw.+.throughput",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1461,
        "kpi":  23,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.rw.+.throughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1462,
        "kpi":  23,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.disk.+.sp.+.rw.*.throughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1463,
        "kpi":  24,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.queueLength",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1464,
        "kpi":  24,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.queueLength",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1465,
        "kpi":  25,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.rw.+.diskBandwidth",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1466,
        "kpi":  25,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.rw.+.diskBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1467,
        "kpi":  25,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.disk.+.sp.+.rw.*.diskBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1468,
        "kpi":  26,
        "name":  "Disk",
        "shortName":  "disk",
        "description":  "Target disks for the network traffic",
        "path":  "kpi.disk.*.sp.+.rw.+.diskThroughput",
        "seqNo":  1,
        "objectType":  16
    },
    {
        "id":  1469,
        "kpi":  26,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.disk.+.sp.*.rw.+.diskThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1470,
        "kpi":  26,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.disk.+.sp.+.rw.*.diskThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1471,
        "kpi":  30,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1472,
        "kpi":  30,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fibreChannel.+.rw.*.bandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1473,
        "kpi":  31,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.rw.+.throughput",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1474,
        "kpi":  31,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fibreChannel.+.rw.*.throughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1475,
        "kpi":  32,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1476,
        "kpi":  32,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.iSCSI.+.rw.*.bandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1477,
        "kpi":  33,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.rw.+.throughput",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1478,
        "kpi":  33,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.iSCSI.+.rw.*.throughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1479,
        "kpi":  34,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.sp.+.rw.+.iSCSIBandwidth",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1480,
        "kpi":  34,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.iSCSI.+.sp.*.rw.+.iSCSIBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1481,
        "kpi":  34,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.iSCSI.+.sp.+.rw.*.iSCSIBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1482,
        "kpi":  35,
        "name":  "Port",
        "shortName":  "iSCSI",
        "description":  "iSCSI",
        "path":  "kpi.iSCSI.*.sp.+.rw.+.iSCSIThroughput",
        "seqNo":  1,
        "objectType":  2
    },
    {
        "id":  1483,
        "kpi":  35,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.iSCSI.+.sp.*.rw.+.iSCSIThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1484,
        "kpi":  35,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.iSCSI.+.sp.+.rw.*.iSCSIThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1485,
        "kpi":  36,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.sp.+.rw.+.fibreChannelBandwidth",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1486,
        "kpi":  36,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.fibreChannel.+.sp.*.rw.+.fibreChannelBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1487,
        "kpi":  36,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fibreChannel.+.sp.+.rw.*.fibreChannelBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1488,
        "kpi":  37,
        "name":  "Port",
        "shortName":  "fibreChannel",
        "description":  "FibreChannel",
        "path":  "kpi.fibreChannel.*.sp.+.rw.+.fibreChannelThroughput",
        "seqNo":  1,
        "objectType":  3
    },
    {
        "id":  1489,
        "kpi":  37,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.fibreChannel.+.sp.*.rw.+.fibreChannelThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1490,
        "kpi":  37,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fibreChannel.+.sp.+.rw.*.fibreChannelThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1491,
        "kpi":  40,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1492,
        "kpi":  40,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.filePort.+.rw.*.bandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1493,
        "kpi":  41,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.rw.+.throughput",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1494,
        "kpi":  41,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.filePort.+.rw.*.throughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1495,
        "kpi":  42,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.sp.+.rw.+.ethernetBandwidth",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1496,
        "kpi":  42,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.filePort.+.sp.*.rw.+.ethernetBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1497,
        "kpi":  42,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.filePort.+.sp.+.rw.*.ethernetBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1498,
        "kpi":  43,
        "name":  "Port",
        "shortName":  "filePort",
        "description":  "Ethernet or Fibre Channel port connected to the system",
        "path":  "kpi.filePort.*.sp.+.rw.+.ethernetThroughput",
        "seqNo":  1,
        "objectType":  23
    },
    {
        "id":  1499,
        "kpi":  43,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.filePort.+.sp.*.rw.+.ethernetThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1500,
        "kpi":  43,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.filePort.+.sp.+.rw.*.ethernetThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1501,
        "kpi":  44,
        "name":  "Tenant",
        "description":  "Tenant",
        "path":  "kpi.tenant.*.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  34
    },
    {
        "id":  1502,
        "kpi":  44,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.tenant.+.rw.*.bandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1503,
        "kpi":  50,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.nfsBandwidth",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1504,
        "kpi":  50,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.nfsBandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1505,
        "kpi":  51,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.cifsBandwidth",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1506,
        "kpi":  51,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.cifsBandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1507,
        "kpi":  52,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.nfsThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1508,
        "kpi":  52,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.nfsThroughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1509,
        "kpi":  53,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.cifsThroughput",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1510,
        "kpi":  53,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.cifsThroughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1511,
        "kpi":  54,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.nfsIoSize",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1512,
        "kpi":  54,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.nfsIoSize",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1513,
        "kpi":  55,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.sp.*.rw.+.cifsIoSize",
        "seqNo":  1,
        "objectType":  1
    },
    {
        "id":  1514,
        "kpi":  55,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.sp.+.rw.*.cifsIoSize",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1515,
        "kpi":  60,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.throughput",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1516,
        "kpi":  60,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.throughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1517,
        "kpi":  61,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1518,
        "kpi":  61,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.bandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1519,
        "kpi":  62,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.ioSize",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1520,
        "kpi":  62,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.ioSize",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1521,
        "kpi":  63,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.sp.+.rw.+.fsThroughput",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1522,
        "kpi":  63,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.fileSystem.+.sp.*.rw.+.fsThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1523,
        "kpi":  63,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.sp.+.rw.*.fsThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1524,
        "kpi":  64,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.sp.+.rw.+.fsBandwidth",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1525,
        "kpi":  64,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.fileSystem.+.sp.*.rw.+.fsBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1526,
        "kpi":  64,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.sp.+.rw.*.fsBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1527,
        "kpi":  65,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.sp.+.rw.+.fsIOSize",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1528,
        "kpi":  65,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.fileSystem.+.sp.*.rw.+.fsIOSize",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1529,
        "kpi":  65,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.sp.+.rw.*.fsIOSize",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1530,
        "kpi":  66,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.pool.+.rw.+.throughput",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1531,
        "kpi":  66,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.pool.+.rw.+.throughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1532,
        "kpi":  66,
        "name":  "Storage Pool",
        "shortName":  "pool",
        "description":  "Pools against which this metric was tracked",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.*.rw.+.throughput",
        "seqNo":  3,
        "objectType":  18
    },
    {
        "id":  1533,
        "kpi":  66,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.+.rw.*.throughput",
        "seqNo":  4,
        "objectType":  7
    },
    {
        "id":  1534,
        "kpi":  67,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.pool.+.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1535,
        "kpi":  67,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.pool.+.rw.+.bandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1536,
        "kpi":  67,
        "name":  "Storage Pool",
        "shortName":  "pool",
        "description":  "Pools against which this metric was tracked",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.*.rw.+.bandwidth",
        "seqNo":  3,
        "objectType":  18
    },
    {
        "id":  1537,
        "kpi":  67,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.+.rw.*.bandwidth",
        "seqNo":  4,
        "objectType":  7
    },
    {
        "id":  1538,
        "kpi":  68,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.pool.+.responseTime",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1539,
        "kpi":  68,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.pool.+.responseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1540,
        "kpi":  68,
        "name":  "Storage Pool",
        "shortName":  "pool",
        "description":  "Pools against which this metric was tracked",
        "path":  "kpi.VVolDatastore.+.sp.+.pool.*.responseTime",
        "seqNo":  3,
        "objectType":  18
    },
    {
        "id":  1541,
        "kpi":  69,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.VVolDatastoreResponseTime",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1542,
        "kpi":  69,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.VVolDatastoreResponseTime",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1543,
        "kpi":  70,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.rw.+.VVolDatastoreBandwidth",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1544,
        "kpi":  70,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.rw.+.VVolDatastoreBandwidth",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1545,
        "kpi":  70,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.VVolDatastore.+.sp.+.rw.*.VVolDatastoreBandwidth",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1546,
        "kpi":  71,
        "name":  "Datastore",
        "description":  "Datastore",
        "path":  "kpi.VVolDatastore.*.sp.+.rw.+.VVolDatastoreThroughput",
        "seqNo":  1,
        "objectType":  30
    },
    {
        "id":  1547,
        "kpi":  71,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.VVolDatastore.+.sp.*.rw.+.VVolDatastoreThroughput",
        "seqNo":  2,
        "objectType":  1
    },
    {
        "id":  1548,
        "kpi":  71,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.VVolDatastore.+.sp.+.rw.*.VVolDatastoreThroughput",
        "seqNo":  3,
        "objectType":  7
    },
    {
        "id":  1549,
        "kpi":  80,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.snapshot.+.sp.+.rw.+.bandwidth",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1550,
        "kpi":  80,
        "name":  "SnapShot",
        "description":  "Snapshot",
        "path":  "kpi.lun.+.snapshot.*.sp.+.rw.+.bandwidth",
        "seqNo":  2,
        "objectType":  32
    },
    {
        "id":  1551,
        "kpi":  80,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.snapshot.+.sp.*.rw.+.bandwidth",
        "seqNo":  3,
        "objectType":  1
    },
    {
        "id":  1552,
        "kpi":  80,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.snapshot.+.sp.+.rw.*.bandwidth",
        "seqNo":  4,
        "objectType":  7
    },
    {
        "id":  1553,
        "kpi":  81,
        "name":  "LUN",
        "shortName":  "lun",
        "description":  "Target LUNs for the network traffic",
        "path":  "kpi.lun.*.snapshot.+.sp.+.rw.+.throughput",
        "seqNo":  1,
        "objectType":  19
    },
    {
        "id":  1554,
        "kpi":  81,
        "name":  "SnapShot",
        "description":  "Snapshot",
        "path":  "kpi.lun.+.snapshot.*.sp.+.rw.+.throughput",
        "seqNo":  2,
        "objectType":  32
    },
    {
        "id":  1555,
        "kpi":  81,
        "name":  "Storage Processor",
        "shortName":  "sp",
        "description":  "SPs that processed the network traffic",
        "path":  "kpi.lun.+.snapshot.+.sp.*.rw.+.throughput",
        "seqNo":  3,
        "objectType":  1
    },
    {
        "id":  1556,
        "kpi":  81,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.lun.+.snapshot.+.sp.+.rw.*.throughput",
        "seqNo":  4,
        "objectType":  7
    },
    {
        "id":  1557,
        "kpi":  800,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.fsThroughput",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1558,
        "kpi":  800,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.fsThroughput",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1559,
        "kpi":  801,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.fsBandwidth",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1560,
        "kpi":  801,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.fsBandwidth",
        "seqNo":  2,
        "objectType":  7
    },
    {
        "id":  1561,
        "kpi":  802,
        "name":  "File System",
        "shortName":  "fileSystem",
        "description":  "Target file systems for network traffic",
        "path":  "kpi.fileSystem.*.rw.+.fsIOSize",
        "seqNo":  1,
        "objectType":  20
    },
    {
        "id":  1562,
        "kpi":  802,
        "name":  "Read/Write",
        "shortName":  "rw",
        "description":  "Traffic types: read I/O and write I/O",
        "path":  "kpi.fileSystem.+.rw.*.fsIOSize",
        "seqNo":  2,
        "objectType":  7
    }
]
@abhishekdanej
Copy link

Thanks for this resource!

@babsdn
Copy link

babsdn commented Dec 9, 2022

How can use this code in Prometheus ? If that is not possible how can use that to monitor EMC devices?

@abhishekdanej
Copy link

Well this is a list of metrics. You need to write an application/code to pull these via the documented methods of DELL ECM Unity system.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment