Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
fe7438c7
Commit
fe7438c7
authored
Jun 29, 2016
by
Carl Bergquist
Committed by
GitHub
Jun 29, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5461 from mtanda/pr_cloudwatch_add_metrics
(cloudwatch) add metrics
parents
7b84c4b4
9ca5ba96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
pkg/api/cloudwatch/metrics.go
+14
-10
No files found.
pkg/api/cloudwatch/metrics.go
View file @
fe7438c7
...
...
@@ -33,7 +33,12 @@ func init() {
"AWS/CloudFront"
:
{
"Requests"
,
"BytesDownloaded"
,
"BytesUploaded"
,
"TotalErrorRate"
,
"4xxErrorRate"
,
"5xxErrorRate"
},
"AWS/CloudSearch"
:
{
"SuccessfulRequests"
,
"SearchableDocuments"
,
"IndexUtilization"
,
"Partitions"
},
"AWS/DynamoDB"
:
{
"ConditionalCheckFailedRequests"
,
"ConsumedReadCapacityUnits"
,
"ConsumedWriteCapacityUnits"
,
"OnlineIndexConsumedWriteCapacity"
,
"OnlineIndexPercentageProgress"
,
"OnlineIndexThrottleEvents"
,
"ProvisionedReadCapacityUnits"
,
"ProvisionedWriteCapacityUnits"
,
"ReadThrottleEvents"
,
"ReturnedBytes"
,
"ReturnedItemCount"
,
"ReturnedRecordsCount"
,
"SuccessfulRequestLatency"
,
"SystemErrors"
,
"ThrottledRequests"
,
"UserErrors"
,
"WriteThrottleEvents"
},
"AWS/EBS"
:
{
"VolumeReadBytes"
,
"VolumeWriteBytes"
,
"VolumeReadOps"
,
"VolumeWriteOps"
,
"VolumeTotalReadTime"
,
"VolumeTotalWriteTime"
,
"VolumeIdleTime"
,
"VolumeQueueLength"
,
"VolumeThroughputPercentage"
,
"VolumeConsumedReadWriteOps"
,
"BurstBalance"
},
"AWS/EC2"
:
{
"CPUCreditUsage"
,
"CPUCreditBalance"
,
"CPUUtilization"
,
"DiskReadOps"
,
"DiskWriteOps"
,
"DiskReadBytes"
,
"DiskWriteBytes"
,
"NetworkIn"
,
"NetworkOut"
,
"NetworkPacketsIn"
,
"NetworkPacketsOut"
,
"StatusCheckFailed"
,
"StatusCheckFailed_Instance"
,
"StatusCheckFailed_System"
},
"AWS/EC2Spot"
:
{
"AvailableInstancePoolsCount"
,
"BidsSubmittedForCapacity"
,
"EligibleInstancePoolCount"
,
"FulfilledCapacity"
,
"MaxPercentCapacityAllocation"
,
"PendingCapacity"
,
"PercentCapacityAllocation"
,
"TargetCapacity"
,
"TerminatingCapacity"
},
"AWS/ECS"
:
{
"CPUReservation"
,
"MemoryReservation"
,
"CPUUtilization"
,
"MemoryUtilization"
},
"AWS/EFS"
:
{
"BurstCreditBalance"
,
"ClientConnections"
,
"DataReadIOBytes"
,
"DataWriteIOBytes"
,
"MetadataIOBytes"
,
"TotalIOBytes"
,
"PermittedThroughput"
,
"PercentIOLimit"
},
"AWS/ELB"
:
{
"HealthyHostCount"
,
"UnHealthyHostCount"
,
"RequestCount"
,
"Latency"
,
"HTTPCode_ELB_4XX"
,
"HTTPCode_ELB_5XX"
,
"HTTPCode_Backend_2XX"
,
"HTTPCode_Backend_3XX"
,
"HTTPCode_Backend_4XX"
,
"HTTPCode_Backend_5XX"
,
"BackendConnectionErrors"
,
"SurgeQueueLength"
,
"SpilloverCount"
},
"AWS/ElastiCache"
:
{
"CPUUtilization"
,
"FreeableMemory"
,
"NetworkBytesIn"
,
"NetworkBytesOut"
,
"SwapUsage"
,
"BytesUsedForCacheItems"
,
"BytesReadIntoMemcached"
,
"BytesWrittenOutFromMemcached"
,
"CasBadval"
,
"CasHits"
,
"CasMisses"
,
"CmdFlush"
,
"CmdGet"
,
"CmdSet"
,
"CurrConnections"
,
"CurrItems"
,
"DecrHits"
,
"DecrMisses"
,
"DeleteHits"
,
"DeleteMisses"
,
"Evictions"
,
"GetHits"
,
"GetMisses"
,
"IncrHits"
,
"IncrMisses"
,
"Reclaimed"
,
...
...
@@ -42,9 +47,6 @@ func init() {
"BytesUsedForCache"
,
"CacheHits"
,
"CacheMisses"
,
"CurrConnections"
,
"Evictions"
,
"HyperLogLogBasedCmds"
,
"NewConnections"
,
"Reclaimed"
,
"ReplicationBytes"
,
"ReplicationLag"
,
"SaveInProgress"
,
"CurrItems"
,
"GetTypeCmds"
,
"HashBasedCmds"
,
"KeyBasedCmds"
,
"ListBasedCmds"
,
"SetBasedCmds"
,
"SetTypeCmds"
,
"SortedSetBasedCmds"
,
"StringBasedCmds"
,
},
"AWS/EBS"
:
{
"VolumeReadBytes"
,
"VolumeWriteBytes"
,
"VolumeReadOps"
,
"VolumeWriteOps"
,
"VolumeTotalReadTime"
,
"VolumeTotalWriteTime"
,
"VolumeIdleTime"
,
"VolumeQueueLength"
,
"VolumeThroughputPercentage"
,
"VolumeConsumedReadWriteOps"
,
"BurstBalance"
},
"AWS/EC2"
:
{
"CPUCreditUsage"
,
"CPUCreditBalance"
,
"CPUUtilization"
,
"DiskReadOps"
,
"DiskWriteOps"
,
"DiskReadBytes"
,
"DiskWriteBytes"
,
"NetworkIn"
,
"NetworkOut"
,
"NetworkPacketsIn"
,
"NetworkPacketsOut"
,
"StatusCheckFailed"
,
"StatusCheckFailed_Instance"
,
"StatusCheckFailed_System"
},
"AWS/ELB"
:
{
"HealthyHostCount"
,
"UnHealthyHostCount"
,
"RequestCount"
,
"Latency"
,
"HTTPCode_ELB_4XX"
,
"HTTPCode_ELB_5XX"
,
"HTTPCode_Backend_2XX"
,
"HTTPCode_Backend_3XX"
,
"HTTPCode_Backend_4XX"
,
"HTTPCode_Backend_5XX"
,
"BackendConnectionErrors"
,
"SurgeQueueLength"
,
"SpilloverCount"
},
"AWS/ElasticBeanstalk"
:
{
"EnvironmentHealth"
,
"ApplicationLatencyP10"
,
"ApplicationLatencyP50"
,
"ApplicationLatencyP75"
,
"ApplicationLatencyP85"
,
"ApplicationLatencyP90"
,
"ApplicationLatencyP95"
,
"ApplicationLatencyP99"
,
"ApplicationLatencyP99.9"
,
...
...
@@ -73,13 +75,13 @@ func init() {
"AWS/Redshift"
:
{
"CPUUtilization"
,
"DatabaseConnections"
,
"HealthStatus"
,
"MaintenanceMode"
,
"NetworkReceiveThroughput"
,
"NetworkTransmitThroughput"
,
"PercentageDiskSpaceUsed"
,
"ReadIOPS"
,
"ReadLatency"
,
"ReadThroughput"
,
"WriteIOPS"
,
"WriteLatency"
,
"WriteThroughput"
},
"AWS/RDS"
:
{
"BinLogDiskUsage"
,
"CPUUtilization"
,
"CPUCreditUsage"
,
"CPUCreditBalance"
,
"DatabaseConnections"
,
"DiskQueueDepth"
,
"FreeableMemory"
,
"FreeStorageSpace"
,
"ReplicaLag"
,
"SwapUsage"
,
"ReadIOPS"
,
"WriteIOPS"
,
"ReadLatency"
,
"WriteLatency"
,
"ReadThroughput"
,
"WriteThroughput"
,
"NetworkReceiveThroughput"
,
"NetworkTransmitThroughput"
},
"AWS/Route53"
:
{
"HealthCheckStatus"
,
"HealthCheckPercentageHealthy"
,
"ConnectionTime"
,
"SSLHandshakeTime"
,
"TimeToFirstByte"
},
"AWS/S3"
:
{
"BucketSizeBytes"
,
"NumberOfObjects"
},
"AWS/SNS"
:
{
"NumberOfMessagesPublished"
,
"PublishSize"
,
"NumberOfNotificationsDelivered"
,
"NumberOfNotificationsFailed"
},
"AWS/SQS"
:
{
"NumberOfMessagesSent"
,
"SentMessageSize"
,
"NumberOfMessagesReceived"
,
"NumberOfEmptyReceives"
,
"NumberOfMessagesDeleted"
,
"ApproximateNumberOfMessagesDelayed"
,
"ApproximateNumberOfMessagesVisible"
,
"ApproximateNumberOfMessagesNotVisible"
},
"AWS/S3"
:
{
"BucketSizeBytes"
,
"NumberOfObjects"
},
"AWS/SWF"
:
{
"DecisionTaskScheduleToStartTime"
,
"DecisionTaskStartToCloseTime"
,
"DecisionTasksCompleted"
,
"StartedDecisionTasksTimedOutOnClose"
,
"WorkflowStartToCloseTime"
,
"WorkflowsCanceled"
,
"WorkflowsCompleted"
,
"WorkflowsContinuedAsNew"
,
"WorkflowsFailed"
,
"WorkflowsTerminated"
,
"WorkflowsTimedOut"
,
"ActivityTaskScheduleToCloseTime"
,
"ActivityTaskScheduleToStartTime"
,
"ActivityTaskStartToCloseTime"
,
"ActivityTasksCanceled"
,
"ActivityTasksCompleted"
,
"ActivityTasksFailed"
,
"ScheduledActivityTasksTimedOutOnClose"
,
"ScheduledActivityTasksTimedOutOnStart"
,
"StartedActivityTasksTimedOutOnClose"
,
"StartedActivityTasksTimedOutOnHeartbeat"
},
"AWS/StorageGateway"
:
{
"CacheHitPercent"
,
"CachePercentUsed"
,
"CachePercentDirty"
,
"CloudBytesDownloaded"
,
"CloudDownloadLatency"
,
"CloudBytesUploaded"
,
"UploadBufferFree"
,
"UploadBufferPercentUsed"
,
"UploadBufferUsed"
,
"QueuedWrites"
,
"ReadBytes"
,
"ReadTime"
,
"TotalCacheSize"
,
"WriteBytes"
,
"WriteTime"
,
"TimeSinceLastRecoveryPoint"
,
"WorkingStorageFree"
,
"WorkingStoragePercentUsed"
,
"WorkingStorageUsed"
,
"CacheHitPercent"
,
"CachePercentUsed"
,
"CachePercentDirty"
,
"ReadBytes"
,
"ReadTime"
,
"WriteBytes"
,
"WriteTime"
,
"QueuedWrites"
},
"AWS/SWF"
:
{
"DecisionTaskScheduleToStartTime"
,
"DecisionTaskStartToCloseTime"
,
"DecisionTasksCompleted"
,
"StartedDecisionTasksTimedOutOnClose"
,
"WorkflowStartToCloseTime"
,
"WorkflowsCanceled"
,
"WorkflowsCompleted"
,
"WorkflowsContinuedAsNew"
,
"WorkflowsFailed"
,
"WorkflowsTerminated"
,
"WorkflowsTimedOut"
,
"ActivityTaskScheduleToCloseTime"
,
"ActivityTaskScheduleToStartTime"
,
"ActivityTaskStartToCloseTime"
,
"ActivityTasksCanceled"
,
"ActivityTasksCompleted"
,
"ActivityTasksFailed"
,
"ScheduledActivityTasksTimedOutOnClose"
,
"ScheduledActivityTasksTimedOutOnStart"
,
"StartedActivityTasksTimedOutOnClose"
,
"StartedActivityTasksTimedOutOnHeartbeat"
},
"AWS/WAF"
:
{
"AllowedRequests"
,
"BlockedRequests"
,
"CountedRequests"
},
"AWS/WorkSpaces"
:
{
"Available"
,
"Unhealthy"
,
"ConnectionAttempt"
,
"ConnectionSuccess"
,
"ConnectionFailure"
,
"SessionLaunchTime"
,
"InSessionLatency"
,
"SessionDisconnect"
},
}
...
...
@@ -89,11 +91,13 @@ func init() {
"AWS/CloudFront"
:
{
"DistributionId"
,
"Region"
},
"AWS/CloudSearch"
:
{},
"AWS/DynamoDB"
:
{
"TableName"
,
"GlobalSecondaryIndexName"
,
"Operation"
,
"StreamLabel"
},
"AWS/ECS"
:
{
"ClusterName"
,
"ServiceName"
},
"AWS/ElastiCache"
:
{
"CacheClusterId"
,
"CacheNodeId"
},
"AWS/EBS"
:
{
"VolumeId"
},
"AWS/EC2"
:
{
"AutoScalingGroupName"
,
"ImageId"
,
"InstanceId"
,
"InstanceType"
},
"AWS/EC2Spot"
:
{
"AvailabilityZone"
,
"FleetRequestId"
,
"InstanceType"
},
"AWS/ECS"
:
{
"ClusterName"
,
"ServiceName"
},
"AWS/EFS"
:
{
"FileSystemId"
},
"AWS/ELB"
:
{
"LoadBalancerName"
,
"AvailabilityZone"
},
"AWS/ElastiCache"
:
{
"CacheClusterId"
,
"CacheNodeId"
},
"AWS/ElasticBeanstalk"
:
{
"EnvironmentName"
,
"InstanceId"
},
"AWS/ElasticMapReduce"
:
{
"ClusterId"
,
"JobFlowId"
,
"JobId"
},
"AWS/ES"
:
{
"ClientId"
,
"DomainName"
},
...
...
@@ -106,11 +110,11 @@ func init() {
"AWS/Redshift"
:
{
"NodeID"
,
"ClusterIdentifier"
},
"AWS/RDS"
:
{
"DBInstanceIdentifier"
,
"DBClusterIdentifier"
,
"DatabaseClass"
,
"EngineName"
},
"AWS/Route53"
:
{
"HealthCheckId"
},
"AWS/S3"
:
{
"BucketName"
,
"StorageType"
},
"AWS/SNS"
:
{
"Application"
,
"Platform"
,
"TopicName"
},
"AWS/SQS"
:
{
"QueueName"
},
"AWS/S3"
:
{
"BucketName"
,
"StorageType"
},
"AWS/SWF"
:
{
"Domain"
,
"WorkflowTypeName"
,
"WorkflowTypeVersion"
,
"ActivityTypeName"
,
"ActivityTypeVersion"
},
"AWS/StorageGateway"
:
{
"GatewayId"
,
"GatewayName"
,
"VolumeId"
},
"AWS/SWF"
:
{
"Domain"
,
"WorkflowTypeName"
,
"WorkflowTypeVersion"
,
"ActivityTypeName"
,
"ActivityTypeVersion"
},
"AWS/WAF"
:
{
"Rule"
,
"WebACL"
},
"AWS/WorkSpaces"
:
{
"DirectoryId"
,
"WorkspaceId"
},
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment