Skip to content

Commit

Permalink
NH-91598: add metric export configuration key
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverchuk committed Oct 2, 2024
1 parent a8fd7da commit a1f6a9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
public enum ConfigProperty {
AGENT_CONFIG (new ConfigKey(null, EnvPrefix.PRODUCT + "CONFIG_FILE"), ConfigGroup.AGENT, String.class),
AGENT_EXPORT_LOGS_ENABLED (new ConfigKey("agent.exportLogsEnabled", EnvPrefix.PRODUCT + "EXPORT_LOGS_ENABLED"), ConfigGroup.AGENT, Boolean.class),
AGENT_EXPORT_METRICS_ENABLED (new ConfigKey("agent.exportMetricsEnabled", EnvPrefix.PRODUCT + "EXPORT_METRICS_ENABLED"), ConfigGroup.AGENT, Boolean.class),
AGENT_TRANSACTION_NAME (new ConfigKey(null, EnvPrefix.PRODUCT + "TRANSACTION_NAME"), ConfigGroup.AGENT, String.class),
AGENT_CONFIG_FILE_WATCH_PERIOD (new ConfigKey("agent.configFileWatchPeriod"), ConfigGroup.AGENT, Long.class),
AGENT_EVENTS_SEND_CAPACITY(new ConfigKey(null, EnvPrefix.PRODUCT + "EVENTS_SEND_CAPACITY"), ConfigGroup.AGENT, Integer.class),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<name>joboe</name>

<properties>
<revision>10.0.11-SNAPSHOT</revision>
<revision>10.0.12-SNAPSHOT</revision>
<maven.plugin.version>1.0.0</maven.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<repository.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</repository.url>
Expand Down

0 comments on commit a1f6a9e

Please sign in to comment.