-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JMX Metrics Test To Metric Agent Value Benchmark/
Add opentelemetry-jmx-metrics.jar To MSI
- Loading branch information
1 parent
1d5554c
commit 031cb01
Showing
5 changed files
with
156 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"agent": { | ||
"debug": true | ||
}, | ||
"metrics": { | ||
"namespace": "MetricValueBenchmarkJMXTest", | ||
"force_flush_interval": 5, | ||
"aggregation_dimensions": [ | ||
[ | ||
"InstanceId" | ||
] | ||
], | ||
"append_dimensions": { | ||
"InstanceId": "${aws:InstanceId}" | ||
}, | ||
"metrics_collected": { | ||
"jmx": [ | ||
{ | ||
"endpoint": "localhost:2020", | ||
"target_system": "jvm,kafka" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
//go:build !windows | ||
|
||
package metric_value_benchmark | ||
|
||
import ( | ||
"log" | ||
|
||
"github.com/aws/amazon-cloudwatch-agent-test/test/metric" | ||
"github.com/aws/amazon-cloudwatch-agent-test/test/metric/dimension" | ||
"github.com/aws/amazon-cloudwatch-agent-test/test/status" | ||
"github.com/aws/amazon-cloudwatch-agent-test/test/test_runner" | ||
"github.com/aws/amazon-cloudwatch-agent-test/util/common" | ||
) | ||
|
||
const jmxNamespace = "MetricValueBenchmarkJMXTest" | ||
|
||
type JMXTestRunner struct { | ||
test_runner.BaseTestRunner | ||
} | ||
|
||
var _ test_runner.ITestRunner = (*JMXTestRunner)(nil) | ||
|
||
func (t *JMXTestRunner) Validate() status.TestGroupResult { | ||
metricsToFetch := t.GetMeasuredMetrics() | ||
testResults := make([]status.TestResult, len(metricsToFetch)) | ||
for i, metricName := range metricsToFetch { | ||
testResults[i] = t.validateJMXMetric(metricName) | ||
} | ||
|
||
return status.TestGroupResult{ | ||
Name: t.GetTestName(), | ||
TestResults: testResults, | ||
} | ||
} | ||
|
||
func (t *JMXTestRunner) GetTestName() string { | ||
return "JMX" | ||
} | ||
|
||
func (t *JMXTestRunner) GetAgentConfigFileName() string { | ||
return "jmx_config.json" | ||
} | ||
|
||
func (t *JMXTestRunner) SetupBeforeAgentRun() error { | ||
err := t.BaseTestRunner.SetupBeforeAgentRun() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
log.Println("set up zookeeper and kafka") | ||
startJMXCommands := []string{ | ||
"curl https://dlcdn.apache.org/zookeeper/zookeeper-3.9.1/apache-zookeeper-3.9.1-bin.tar.gz -o apache-zookeeper-3.9.1-bin.tar.gz", | ||
"tar -xzf apache-zookeeper-3.9.1-bin.tar.gz", | ||
"mkdir apache-zookeeper-3.9.1-bin/data", | ||
"touch apache-zookeeper-3.9.1-bin/conf/zoo.cfg", | ||
"echo -e 'tickTime = 2000\ndataDir = ../data\nclientPort = 2181\ninitLimit = 5\nsyncLimit = 2\n' >> apache-zookeeper-3.9.1-bin/conf/zoo.cfg", | ||
"apache-zookeeper-3.9.1-bin/bin/zkServer.sh start", | ||
"curl https://dlcdn.apache.org/kafka/3.6.1/kafka_2.13-3.6.1.tgz -o kafka_2.13-3.6.1.tgz", | ||
"tar -xzf kafka_2.13-3.6.1.tgz", | ||
"echo 'KAFKA_JMX_OPTS=\"-Dcom.sun.management.jmxremote.port=2020 -Dcom.sun.management.jmxremote.rmi.port=2021 -Djava.rmi.server.hostname=localhost -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false\"'|cat - kafka_2.13-3.6.1/bin/kafka-run-class.sh > /tmp/kafka-jmx-config && mv /tmp/kafka-jmx-config kafka_2.13-3.6.1/bin/kafka-run-class.sh", | ||
"sudo chmod +x kafka_2.13-3.6.1/bin/kafka-run-class.sh", | ||
"kafka_2.13-3.6.1/bin/kafka-server-start.sh kafka_2.13-3.6.1/config/server.properties >/dev/null 2>&1 &", | ||
} | ||
|
||
err = common.RunCommands(startJMXCommands) | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
// the metric name is . but when searching you need to use _ | ||
// because of go sdk | ||
func (t *JMXTestRunner) GetMeasuredMetrics() []string { | ||
return []string{ | ||
"jvm.memory.heap.used", | ||
"jvm.threads.count", | ||
"jvm.gc.collections.elapsed", | ||
"jvm.gc.collections.elapsed", | ||
"kafka.request.count", | ||
"kafka.request.time.50p", | ||
"kafka.network.io", | ||
} | ||
} | ||
|
||
func (t *JMXTestRunner) validateJMXMetric(metricName string) status.TestResult { | ||
testResult := status.TestResult{ | ||
Name: metricName, | ||
Status: status.FAILED, | ||
} | ||
|
||
dims, failed := t.DimensionFactory.GetDimensions([]dimension.Instruction{ | ||
{ | ||
Key: "InstanceId", | ||
Value: dimension.UnknownDimensionValue(), | ||
}, | ||
}) | ||
|
||
if len(failed) > 0 { | ||
return testResult | ||
} | ||
|
||
fetcher := metric.MetricValueFetcher{} | ||
values, err := fetcher.Fetch(jmxNamespace, metricName, dims, metric.AVERAGE, metric.HighResolutionStatPeriod) | ||
log.Printf("metric values are %v", values) | ||
if err != nil { | ||
log.Printf("err: %v\n", err) | ||
return testResult | ||
} | ||
|
||
if !metric.IsAllValuesGreaterThanOrEqualToExpectedValue(metricName, values, 0) { | ||
return testResult | ||
} | ||
|
||
testResult.Status = status.SUCCESSFUL | ||
return testResult | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters