Gets metrics for a MySQL hosting server.
Syntax
Parameter Set: Default
Get-MgmtSvcMySqlHostingServerMetric [-AdminUri] <Uri>
[-Token] <String> [-HostingServerId] <String>
[[-MetricName] <String[]> ] [[-StartTime] <DateTime> ]
[[-EndTime] <DateTime> ] [-DisableCertificateValidation] [
<CommonParameters>]
The Get-MgmtSvcMySqlHostingServerMetric cmdlet gets metrics for a MySQL hosting server. By default, all metrics for a specified MySQL hosting server are returned. To get a specific metric, use the MetricName parameter. You can also narrow your results by using the StartTime and EndTime parameters to specifiy a date range.
Specifies the URI of the Windows Azure Pack administrator API. Use the following format: https://<computer>:<port>, where <computer> is the computer on which the administrator API is installed.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Disables certificate validation for the Windows Azure Pack installation.
If you specifiy this parameter, you can use self-signed certificates.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies the end time of the date range as a DateTime object. To create a DateTime object, use the Get-Date cmdlet.
Aliases |
none |
Required? |
false |
Position? |
6 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifes the ID of a MySQL hosting server.
Aliases |
none |
Required? |
true |
Position? |
3 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an array of metric names. You can get the following metrics: DatabaseCount, TotalAllottedSpace.
Aliases |
none |
Required? |
false |
Position? |
4 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies the start time of the date range as a DateTime object. To create a DateTime object, use the Get-Date cmdlet.
Aliases |
none |
Required? |
false |
Position? |
5 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an identity token. To create a token, use the Get-MgmtSvcToken cmdlet.
Aliases |
none |
Required? |
true |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
NOTE: This example assumes that you have created a token by using Get-MgmtSvcToken and have stored it in a variable named $Token.
This command gers the TotalAllottedSpace metrics for the hosting server with the ID of v48l25.
PS C:\> Get-MgmtSvcMySqlHostingServerMetric -AdminUri "https://Computer01:30004" -Token $Token -HostingServerId "v48l25" -MetricName TotalAllottedSpace