File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- (defproject cauchy " 0.1.103 "
1
+ (defproject cauchy " 0.1.104 "
2
2
:description " Cauchy is an agent for Riemann"
3
3
:url " https://github.com/pguillebert/cauchy"
4
4
:scm {:name " git"
Original file line number Diff line number Diff line change 90
90
{:service " local_active_shards"
91
91
:metric (count-local-active-shards conf)}
92
92
{:service " docs_in_cluster"
93
- :metric (get-in stats [:_all :primaries :docs :count ])}
93
+ :metric (get-in stats [:_all :primaries :docs :count ] 0 )}
94
94
{:service " docs_deleted_count"
95
- :metric (get-in stats [:_all :primaries :docs :deleted ])}
95
+ :metric (get-in stats [:_all :primaries :docs :deleted ] 0 )}
96
96
{:service " cluster_size_in_bytes"
97
- :metric (get-in stats [:_all :primaries :store :size_in_bytes ])}
97
+ :metric (get-in stats [:_all :primaries :store :size_in_bytes ] 0 )}
98
98
{:service " fielddata_memory_size_in_bytes"
99
- :metric (get-in stats [:_all :total :fielddata :memory_size_in_bytes ])}
99
+ :metric (get-in stats [:_all :total :fielddata :memory_size_in_bytes ] 0 )}
100
100
{:service " fielddata_evictions"
101
- :metric (get-in stats [:_all :total :fielddata :evictions ])}
101
+ :metric (get-in stats [:_all :total :fielddata :evictions ] 0 )}
102
102
{:service " active_shards" :metric active_shards}
103
103
{:service " unassigned_shards" :metric unassigned_shards}
104
104
{:service " relocating_shards" :metric relocating_shards}
You can’t perform that action at this time.
0 commit comments