|
10 | 10 | */ |
11 | 11 | @Settings |
12 | 12 | public interface GraphiteSettings { |
13 | | - @SettingsKey(key = "graphite.host", doc = "the host at which a graphite server is listening to collect metrics info" + |
| 13 | + @SettingsKey(key = "restx.graphite.host", doc = "the host at which a graphite server is listening to collect metrics info" + |
14 | 14 | " - set it to activate graphite reporting") |
15 | 15 | Optional<String> getGraphiteHost(); |
16 | | - @SettingsKey(key = "graphite.port", doc = "the port at which a graphite server is listening to collect metrics info") |
| 16 | + @SettingsKey(key = "restx.graphite.port", doc = "the port at which a graphite server is listening to collect metrics info") |
17 | 17 | Optional<Integer> getGraphitePort(); |
18 | 18 |
|
19 | | - @SettingsKey(key = "graphite.reporter.frequency", doc = "the frequency at which data is sent to graphite", defaultValue = "1") |
| 19 | + @SettingsKey(key = "restx.graphite.reporter.frequency", doc = "the frequency at which data is sent to graphite", defaultValue = "1") |
20 | 20 | Optional<Integer> getFrequency(); |
21 | | - @SettingsKey(key = "graphite.reporter.frequency.unit", doc = "the unit in which frequency is expressed", defaultValue = "MINUTES") |
| 21 | + @SettingsKey(key = "restx.graphite.reporter.frequency.unit", doc = "the unit in which frequency is expressed", defaultValue = "MINUTES") |
22 | 22 | Optional<String> getFrequencyUnit(); |
23 | 23 |
|
24 | | - @SettingsKey(key = "graphite.prefix", doc = "the value prepended to all metrics names which are sent to graphite") |
| 24 | + @SettingsKey(key = "restx.graphite.prefix", doc = "the value prepended to all metrics names which are sent to graphite") |
25 | 25 | Optional<String> getPrefix(); |
26 | 26 | } |
0 commit comments