Skip to content

Commit 7e438a4

Browse files
author
Hagai Barel
committed
Rename test file, typo fixes in readme
1 parent 15379df commit 7e438a4

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77

88
# EMQ exporter for Prometheus
99

10-
This is a simple server that scrapes EMQ metrics and exporters them via HTTP for
11-
Prometheus consumption.
10+
A simple server that scrapes EMQ metrics and exports them via HTTP for Prometheus consumption.
1211

1312
## Getting Started
1413

@@ -52,7 +51,7 @@ No need to pass anything to `emq_exporter` when using these vars, they will be s
5251

5352
2. Using a file
5453

55-
The file should be json formatted and contain the following structure:
54+
The file should be json formatted and contain the following fields:
5655

5756
```json
5857
{
@@ -81,7 +80,7 @@ The `emq_exporter` supports both `v2` and `v3` API versions seamlessly (mutually
8180

8281
### Authentication
8382

84-
The authentication method changed a bit in version `v3` of emq. If you're pulling the metrics through the dashboard port (default `18083`), you can use regular username and password. However, if you're using the API port (default `8080`), you'll need to set up application credentials:
83+
The authentication method changed a bit in version `v3` of `emqx`. If you're pulling the metrics through the dashboard port (default `18083`), you can use regular username and password. However, if you're using the API port (default `8080`), you'll need to set up application credentials:
8584
1. From the emq dashboard side bar -> applications
8685
2. Select `New App` from the top
8786
3. Fill in the popup window with the relevant details and confirm
@@ -105,7 +104,8 @@ docker run -p 9540:9540 nuvo/emq_exporter:v0.3.1 ---emq.uri "http://localhost:80
105104

106105
### Kubernetes
107106

108-
EMQ exporter was designed to run as a sidecar in the same pod as EMQ itself. See the examples folder for a `kubernetes` manifest that can serve as reference for implementation.
107+
EMQ exporter was designed to run as a sidecar in the same pod as EMQ itself.
108+
See the examples folder for a `kubernetes` manifest that can serve as reference for implementation.
109109

110110
## Contributing
111111

main_test.go emq_exporter_test.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ var _ = Describe("Main", func() {
2020
u, p, err := loadFromEnv()
2121

2222
Expect(err).Should(HaveOccurred())
23+
Expect(err.Error()).Should(Equal("Can't find EMQ_USERNAME"))
24+
2325
Expect(u).Should(BeEmpty())
2426
Expect(p).Should(BeEmpty())
2527
})
@@ -55,6 +57,7 @@ var _ = Describe("Main", func() {
5557
u, p, err := loadFromEnv()
5658

5759
Expect(err).ShouldNot(HaveOccurred())
60+
5861
Expect(u).Should(Equal("admin"))
5962
Expect(p).Should(Equal("secret"))
6063
})
@@ -69,7 +72,7 @@ var _ = Describe("Main", func() {
6972
Expect(err).Should(HaveOccurred())
7073
})
7174

72-
It("should fail to unmarhsal inavalid json data", func() {
75+
It("should fail to unmarhsal invalid json data", func() {
7376
path := "testdata/malformed.txt"
7477

7578
_, _, err := loadFromFile(path)
@@ -124,7 +127,9 @@ var _ = Describe("Main", func() {
124127
path := "testdata/authfull.json"
125128

126129
u, p, err := findCreds(path)
130+
127131
Expect(err).ShouldNot(HaveOccurred())
132+
128133
Expect(u).Should(Equal("admin"))
129134
Expect(p).Should(Equal("secret"))
130135
})
@@ -134,7 +139,9 @@ var _ = Describe("Main", func() {
134139
path := "testdata/authfull.json"
135140

136141
u, p, err := findCreds(path)
142+
137143
Expect(err).ShouldNot(HaveOccurred())
144+
138145
Expect(u).Should(Equal("admin"))
139146
Expect(p).Should(Equal("public"))
140147
})
@@ -149,6 +156,7 @@ var _ = Describe("Main", func() {
149156
s := "0.5"
150157

151158
v, err := parseString(s)
159+
152160
Expect(err).ShouldNot(HaveOccurred())
153161
Expect(v).Should(Equal(0.5))
154162
})
@@ -157,6 +165,7 @@ var _ = Describe("Main", func() {
157165
s := "123.19M"
158166

159167
v, err := parseString(s)
168+
160169
Expect(err).ShouldNot(HaveOccurred())
161170
Expect(v).Should(Equal(1.29174077e+08))
162171
})
@@ -165,6 +174,7 @@ var _ = Describe("Main", func() {
165174
s := "invalid string"
166175

167176
v, err := parseString(s)
177+
168178
Expect(err).Should(HaveOccurred())
169179
Expect(v).Should(Equal(float64(0)))
170180
})

0 commit comments

Comments
 (0)