diff --git a/XenAdmin/Controls/CustomDataGraph/DataSet.cs b/XenAdmin/Controls/CustomDataGraph/DataSet.cs
index a7fbe34fb..8b534e2c8 100644
--- a/XenAdmin/Controls/CustomDataGraph/DataSet.cs
+++ b/XenAdmin/Controls/CustomDataGraph/DataSet.cs
@@ -126,7 +126,10 @@ namespace XenAdmin.Controls.CustomDataGraph
public static DataSet Create(string uuid, IXenObject xo, bool show, string settype)
{
var dataSet = new DataSet(uuid, xo, show, settype);
-
+ if(settype == "xapi_open_fds" || settype == "pool_task_count" || settype == "pool_session_count")
+ {
+ dataSet.NeverShow = true;
+ }
if (settype.StartsWith("latency") || settype.EndsWith("latency"))
{
if (settype.StartsWith("latency"))
diff --git a/XenAdmin/Controls/CustomDataGraph/GraphHelpers.cs b/XenAdmin/Controls/CustomDataGraph/GraphHelpers.cs
index fff6a0684..27b52c7fb 100644
--- a/XenAdmin/Controls/CustomDataGraph/GraphHelpers.cs
+++ b/XenAdmin/Controls/CustomDataGraph/GraphHelpers.cs
@@ -177,7 +177,7 @@ namespace XenAdmin.Controls.CustomDataGraph
foreach (Data_source dataSource in dataSources)
{
- if (dataSource.name_label == "memory_total_kib" || dataSource.name_label == "memory")
+ if (dataSource.name_label == "memory_total_kib" || dataSource.name_label == "memory" || dataSource.name_label == "xapi_open_fds" || dataSource.name_label == "pool_task_count" || dataSource.name_label == "pool_session_count")
continue;
string friendlyName;
diff --git a/XenModel/FriendlyNames.Designer.cs b/XenModel/FriendlyNames.Designer.cs
index 3ef67602e..9dac5297b 100644
--- a/XenModel/FriendlyNames.Designer.cs
+++ b/XenModel/FriendlyNames.Designer.cs
@@ -1716,6 +1716,15 @@ namespace XenAdmin {
}
}
+ ///
+ /// Looks up a localized string similar to I/O errors.
+ ///
+ public static string Label_performance_io_errors {
+ get {
+ return ResourceManager.GetString("Label-performance.io_errors", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Loopback Receive.
///
@@ -1905,6 +1914,24 @@ namespace XenAdmin {
}
}
+ ///
+ /// Looks up a localized string similar to pool_session_count.
+ ///
+ public static string Label_performance_pool_session_count {
+ get {
+ return ResourceManager.GetString("Label-performance.pool_session_count", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to pool_task_count.
+ ///
+ public static string Label_performance_pool_task_count {
+ get {
+ return ResourceManager.GetString("Label-performance.pool_task_count", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to vCPUs idle.
///
@@ -2130,6 +2157,15 @@ namespace XenAdmin {
}
}
+ ///
+ /// Looks up a localized string similar to Tapdisks in low memory mode.
+ ///
+ public static string Label_performance_Tapdisks_in_low_memory_mode {
+ get {
+ return ResourceManager.GetString("Label-performance.Tapdisks_in_low_memory_mode", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Disk {0} Queue Size.
///
@@ -2364,6 +2400,15 @@ namespace XenAdmin {
}
}
+ ///
+ /// Looks up a localized string similar to xapi_open_fds.
+ ///
+ public static string Label_performance_xapi_open_fds {
+ get {
+ return ResourceManager.GetString("Label-performance.xapi_open_fds", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to <Internal> Network {0} Receive.
///
diff --git a/XenModel/FriendlyNames.resx b/XenModel/FriendlyNames.resx
index be0b7c5a8..2364be47b 100644
--- a/XenModel/FriendlyNames.resx
+++ b/XenModel/FriendlyNames.resx
@@ -1778,4 +1778,19 @@
Disk space allocations
+
+ pool_session_count
+
+
+ pool_task_count
+
+
+ Tapdisks in low memory mode
+
+
+ xapi_open_fds
+
+
+ I/O errors
+
\ No newline at end of file