-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First pass at embedding existing jmx integrations
Using copy/paste from integrations-core. Will depend on a new jmxfetch release with DataDog/jmxfetch#205 before this will work.
- Loading branch information
1 parent
db425bb
commit de166e5
Showing
7 changed files
with
1,351 additions
and
1 deletion.
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
5 changes: 5 additions & 0 deletions
5
...va-agent/agent-jmxfetch/src/main/resources/datadog/trace/agent/jmxfetch/metricconfigs.txt
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,5 @@ | ||
activemq.yaml | ||
cassandra.yaml | ||
kafka.yaml | ||
solr.yaml | ||
tomcat.yaml |
54 changes: 54 additions & 0 deletions
54
...gent-jmxfetch/src/main/resources/datadog/trace/agent/jmxfetch/metricconfigs/activemq.yaml
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,54 @@ | ||
# Default metrics collected by this check. You should not have to modify this. | ||
jmx_metrics: | ||
- include: | ||
destinationType: Queue | ||
attribute: | ||
AverageEnqueueTime: | ||
alias: activemq.queue.avg_enqueue_time | ||
metric_type: gauge | ||
ConsumerCount: | ||
alias: activemq.queue.consumer_count | ||
metric_type: gauge | ||
ProducerCount: | ||
alias: activemq.queue.producer_count | ||
metric_type: gauge | ||
MaxEnqueueTime: | ||
alias: activemq.queue.max_enqueue_time | ||
metric_type: gauge | ||
MinEnqueueTime: | ||
alias: activemq.queue.min_enqueue_time | ||
metric_type: gauge | ||
MemoryPercentUsage: | ||
alias: activemq.queue.memory_pct | ||
metric_type: gauge | ||
QueueSize: | ||
alias: activemq.queue.size | ||
metric_type: gauge | ||
DequeueCount: | ||
alias: activemq.queue.dequeue_count | ||
metric_type: counter | ||
DispatchCount: | ||
alias: activemq.queue.dispatch_count | ||
metric_type: counter | ||
EnqueueCount: | ||
alias: activemq.queue.enqueue_count | ||
metric_type: counter | ||
ExpiredCount: | ||
alias: activemq.queue.expired_count | ||
metric_type: counter | ||
InFlightCount: | ||
alias: activemq.queue.in_flight_count | ||
metric_type: counter | ||
|
||
- include: | ||
type: Broker | ||
attribute: | ||
StorePercentUsage: | ||
alias: activemq.broker.store_pct | ||
metric_type: gauge | ||
TempPercentUsage: | ||
alias: activemq.broker.temp_pct | ||
metric_type: gauge | ||
MemoryPercentUsage: | ||
alias: activemq.broker.memory_pct | ||
metric_type: gauge |
Oops, something went wrong.