We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6eda5 commit 278e294Copy full SHA for 278e294
src/eca/metrics.clj
@@ -2,7 +2,8 @@
2
(:require
3
[clojure.string :as string]
4
[eca.logger :as logger]
5
- [eca.shared :as shared]))
+ [eca.shared :as shared]
6
+ [eca.config :as config]))
7
8
(defprotocol IMetrics
9
(start! [this])
@@ -17,6 +18,7 @@
17
18
{:hostname (shared/hostname)
19
:client-name (:name (:client-info @db*))
20
:client-version (:version (:client-info @db*))
21
+ :server-version (config/eca-version)
22
:os-name (System/getProperty "os.name")
23
:os-version (System/getProperty "os.version")
24
:os-arch (System/getProperty "os.arch")
0 commit comments