Searched refs:stats (Results 1 - 7 of 7) sorted by relevance

/solaris-userland/components/openstack/cinder/files/solaris/
H A Dnfs.py65 stats = {}
67 stats["volume_backend_name"] = backend_name or self.__class__.__name__
68 stats["driver_version"] = ZFS_NFS_VERSION
69 stats["vendor_name"] = 'Oracle'
70 stats['storage_protocol'] = self.driver_volume_type
81 stats['total_capacity_gb'] = global_capacity / float(units.Gi)
82 stats['free_capacity_gb'] = global_free / float(units.Gi)
83 stats['reserved_percentage'] = 0
84 stats['QoS_support'] = False
85 self._stats = stats
[all...]
H A Dzfs.py468 stats = {}
470 stats["volume_backend_name"] = backend_name or self.__class__.__name__
471 stats["storage_protocol"] = self.protocol
472 stats["driver_version"] = self.version
473 stats["vendor_name"] = 'Oracle'
474 stats['QoS_support'] = False
479 stats['total_capacity_gb'] = \
481 stats['free_capacity_gb'] = Size(avail_size).get(Size.gb_units)
482 stats['reserved_percentage'] = self.configuration.reserved_percentage
484 stats['location_inf
[all...]
/solaris-userland/components/openvswitch/files/lib/
H A Dnetdev-solaris.c317 * Obtains stats for 'queue' from 'netdev->tc'. 'queue' is one of the
320 * On success, initializes '*stats'.
326 const struct tc_queue *queue, struct netdev_queue_stats *stats);
329 * Extracts queue stats from 'nlmsg', which is a response to a
1386 * Retrieves current device stats for 'netdev-solaris'.
1390 struct netdev_stats *stats)
1413 stats->rx_length_errors = 0;
1414 stats->rx_missed_errors = 0;
1415 stats->rx_over_errors = 0;
1420 stats
1389 netdev_solaris_get_stats(const struct netdev *netdev_, struct netdev_stats *stats) argument
[all...]
H A Ddpif-solaris.c405 dpif_solaris_get_stats(const struct dpif *dpif_, struct dpif_dp_stats *stats) argument
419 bzero(stats, sizeof (struct dpif_dp_stats));
461 stats->n_hit += (get_nvvt_int(map, "ipkthit") +
463 stats->n_missed += (get_nvvt_int(map, "ipktmiss") +
481 stats->n_flows += get_nvvt_int(map, "nflows");
483 VLOG_DBG("dpif_solaris_get_stats %ld nflows", stats->n_flows);
486 stats->n_lost = 0;
487 stats->n_masks = UINT32_MAX;
488 stats->n_mask_hit = UINT64_MAX;
1364 dpif_solaris_get_flowstats(char *flowname, struct dpif_flow_stats *stats) argument
1380 dpif_solaris_flow_get(const struct dpif *dpif_, const struct nlattr *key, size_t key_len, struct ofpbuf **bufp, struct nlattr **maskp, size_t *mask_len, struct nlattr **actionsp, size_t *actions_len, struct dpif_flow_stats *stats) argument
1767 struct dpif_flow_stats stats; member in struct:dpif_solaris_flow_ent
1860 dpif_solaris_flow_dump_next(const struct dpif *dpif_ OVS_UNUSED, void *iter_, void *state_, const struct nlattr **key, size_t *key_len, const struct nlattr **mask, size_t *mask_len, const struct nlattr **actions, size_t *actions_len, const struct dpif_flow_stats **stats) argument
[all...]
/solaris-userland/components/unixodbc/
H A DMakefile88 CONFIGURE_OPTIONS += --enable-stats
/solaris-userland/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c1317 sol_get_cpu_stats(sol_cpu_stats_t *stats) argument
1323 memset(stats, 0, sizeof (sol_cpu_stats_t));
1354 stats->t_user += knp->value.ui64;
1363 stats->t_kernel += knp->value.ui64;
1372 stats->t_idle += knp->value.ui64;
1381 stats->t_iowait += knp->value.ui64;
1390 stats->t_intr += knp->value.ui64; /* This is in NSEC */
/solaris-userland/components/openstack/nova/files/solariszones/
H A Ddriver.py2707 stats = [k for k in data[data.keys()[0]].getMap().keys() if
2710 for stat in stats:
2716 for stat in stats:
3759 """Update currently known host stats."""
4378 """Get the currently known host CPU stats.
4590 stats = self._host_stats
4591 if not isinstance(stats, list):
4592 stats = [stats]
4593 return [s['hypervisor_hostname'] for s in stats]
[all...]

Completed in 218 milliseconds