CP-17932: Add friendly names for PVS Cache RRDs

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2016-09-30 14:33:15 +01:00
parent b0f748ceb5
commit 93664f602c
2 changed files with 96 additions and 0 deletions

View File

@ -2058,6 +2058,78 @@ namespace XenAdmin {
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache eviction rate.
/// </summary>
public static string Label_performance_pvscache_evicted {
get {
return ResourceManager.GetString("Label-performance.pvscache_evicted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache hit rate.
/// </summary>
public static string Label_performance_pvscache_read_hits {
get {
return ResourceManager.GetString("Label-performance.pvscache_read_hits", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache miss rate.
/// </summary>
public static string Label_performance_pvscache_read_misses {
get {
return ResourceManager.GetString("Label-performance.pvscache_read_misses", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache observed read rate.
/// </summary>
public static string Label_performance_pvscache_read_total {
get {
return ResourceManager.GetString("Label-performance.pvscache_read_total", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache space utilization.
/// </summary>
public static string Label_performance_pvscache_space_utilization {
get {
return ResourceManager.GetString("Label-performance.pvscache_space_utilization", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache observed network traffic from clients.
/// </summary>
public static string Label_performance_pvscache_traffic_client_sent {
get {
return ResourceManager.GetString("Label-performance.pvscache_traffic_client_sent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache saved network traffic.
/// </summary>
public static string Label_performance_pvscache_traffic_proxy_saved {
get {
return ResourceManager.GetString("Label-performance.pvscache_traffic_proxy_saved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PVS Cache observed network traffic from servers.
/// </summary>
public static string Label_performance_pvscache_traffic_server_sent {
get {
return ResourceManager.GetString("Label-performance.pvscache_traffic_server_sent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to vCPUs idle.
/// </summary>

View File

@ -1877,4 +1877,28 @@
<data name="Message.body-pvs_proxy_no_cache_sr_available" xml:space="preserve">
<value>Unable to setup PVS Read-caching on VM '{0}'. No cache storage found on site '{1}'.</value>
</data>
<data name="Label-performance.pvscache_evicted" xml:space="preserve">
<value>PVS Cache eviction rate</value>
</data>
<data name="Label-performance.pvscache_read_hits" xml:space="preserve">
<value>PVS Cache hit rate</value>
</data>
<data name="Label-performance.pvscache_read_misses" xml:space="preserve">
<value>PVS Cache miss rate</value>
</data>
<data name="Label-performance.pvscache_read_total" xml:space="preserve">
<value>PVS Cache observed read rate</value>
</data>
<data name="Label-performance.pvscache_space_utilization" xml:space="preserve">
<value>PVS Cache space utilization</value>
</data>
<data name="Label-performance.pvscache_traffic_client_sent" xml:space="preserve">
<value>PVS Cache observed network traffic from clients</value>
</data>
<data name="Label-performance.pvscache_traffic_proxy_saved" xml:space="preserve">
<value>PVS Cache saved network traffic</value>
</data>
<data name="Label-performance.pvscache_traffic_server_sent" xml:space="preserve">
<value>PVS Cache observed network traffic from servers</value>
</data>
</root>