Skip to content
This repository was archived by the owner on Jul 7, 2022. It is now read-only.

Commit df629c1

Browse files
committed
Add license and type fixes
1 parent ca0b285 commit df629c1

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Santhosh Nagaraj
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
2. [What are metrics and why is it important ?](https://github.com/yolossn/Prometheus-Basics#what-is-metrics-and-why-should-i-worry-about-it-)
1414
3. [Basic Architecture of Prometheus](https://github.com/yolossn/Prometheus-Basics#basic-architecture-of-prometheus)
1515
4. [Show me how it is done](https://github.com/yolossn/Prometheus-Basics#show-me-how-it-is-done)
16-
5. [Type of metrics](https://github.com/yolossn/Prometheus-Basics#type-of-metrics)
16+
5. [Types of metrics](https://github.com/yolossn/Prometheus-Basics#types-of-metrics)
1717
6. [Create a simple exporter](https://github.com/yolossn/Prometheus-Basics#create-a-simple-exporter)
1818
7. [References](https://github.com/yolossn/Prometheus-Basics#References)
1919

2020

2121
# What is prometheus ?
2222

23-
Prometheus is a system monitoring and alerting system. It was opensourced by SoundCloud in 2012 and was incubated by Cloud Native Computing Foundation. Prometheus stores all the data as time series, i.e metrics information is stored along with the timestamp at which it was recorded, optional key-value pairs called as labels can also be stored along with metrics.
23+
Prometheus is a system monitoring and alerting system. It was opensourced by SoundCloud in 2012 and was incubated by Cloud Native Computing Foundation. Prometheus stores all the metrics data as time series, i.e metrics information is stored along with the timestamp at which it was recorded, optional key-value pairs called as labels can also be stored along with metrics.
2424

2525
# What are metrics and why is it important?
2626

@@ -79,7 +79,7 @@ I can scrape multiple metrics which will be useful to understand what is happeni
7979

8080
# Show me how it is done.
8181

82-
Let’s get our hands dirty and setup prometheus. Prometheus is written using golang and all you need is the binary compiled for your operating system. Download the binary corresponding to your operating system from [here](https://prometheus.io/download/).
82+
Let’s get our hands dirty and setup prometheus. Prometheus is written using golang and all you need is the binary compiled for your operating system. Download the binary corresponding to your operating system from [here](https://prometheus.io/download/) and add the binary to your path.
8383

8484
Prometheus exposes its own metrics which can be consumed by itself or another prometheus server.
8585

@@ -139,7 +139,7 @@ scrape_configs:
139139
</p>
140140

141141

142-
# Type of metrics.
142+
# Types of metrics.
143143

144144
There are four types of metrics which prometheus client libraries support as of May 2020. They are:
145145
1. Counter

0 commit comments

Comments
 (0)