瀏覽代碼

Fixed some more typos in docs

utkarshcmu 10 年之前
父節點
當前提交
8b9d13491f
共有 4 個文件被更改,包括 9 次插入9 次删除
  1. 1 1
      README.md
  2. 2 2
      docker/production/README.md
  3. 5 5
      docs/sources/tutorials/stack_guide_graphite.md
  4. 1 1
      public/app/plugins/PLUGIN_CHANGES.md

+ 1 - 1
README.md

@@ -30,7 +30,7 @@ a standalone frontend only web application. Grafana 2.0 comes with a backend.
 - Click and drag to zoom
 - Click and drag to zoom
 - Multiple Y-axis, logarithmic scales
 - Multiple Y-axis, logarithmic scales
 - Bars, Lines, Points
 - Bars, Lines, Points
-- Smart Y-axis formating
+- Smart Y-axis formatting
 - Series toggles & color selector
 - Series toggles & color selector
 - Legend values, and formatting options
 - Legend values, and formatting options
 - Grid thresholds, axis labels
 - Grid thresholds, axis labels

+ 2 - 2
docker/production/README.md

@@ -2,7 +2,7 @@
 # Grafana docker image
 # Grafana docker image
 
 
 This container currently only contains the in development alpha of Grafana 2.0 (ie non production use). The
 This container currently only contains the in development alpha of Grafana 2.0 (ie non production use). The
-`#develop` tag is constantly updated as we make progress torwards a beta release.
+`#develop` tag is constantly updated as we make progress towards a beta release.
 
 
 
 
 ## Running your Grafana image
 ## Running your Grafana image
@@ -17,7 +17,7 @@ Try it out, default admin user is admin/admin.
 
 
 ## Configuring your Grafana container
 ## Configuring your Grafana container
 
 
-All options defined in conf/grafana.ini can be overriden using environment variables, for example:
+All options defined in conf/grafana.ini can be overridden using environment variables, for example:
 
 
 
 
 ```
 ```

+ 5 - 5
docs/sources/tutorials/stack_guide_graphite.md

@@ -27,7 +27,7 @@ that is not really the case, or, at least, that it is a lot better than you expe
 To begin with we are going to install the 3 main components that define our metric stack. Later in the guide we will
 To begin with we are going to install the 3 main components that define our metric stack. Later in the guide we will
 install StatsD, but that is optional.
 install StatsD, but that is optional.
 
 
-- Carbon is the graphite ingestion deamon responsible for
+- Carbon is the graphite ingestion daemon responsible for
 receiving metrics and storing them.
 receiving metrics and storing them.
 - Graphite-api is light weight version of graphite-web with only the HTTP api and is
 - Graphite-api is light weight version of graphite-web with only the HTTP api and is
 responsible for executing metric queries.
 responsible for executing metric queries.
@@ -90,7 +90,7 @@ pattern = .*
 retentions = 10s:1d,1m:7d,10m:1y
 retentions = 10s:1d,1m:7d,10m:1y
 ```
 ```
 
 
-This config specifies the resolution of metrics and the retention periods. For example for all metrics begining with the word `carbon` receive metrics every minute and store for 30 days, then
+This config specifies the resolution of metrics and the retention periods. For example for all metrics beginning with the word `carbon` receive metrics every minute and store for 30 days, then
 roll them up into 10 minute buckets and store those for 1 year, then roll those up into 1 hour buckets and store those for 5 years. For all other metrics
 roll them up into 10 minute buckets and store those for 1 year, then roll those up into 1 hour buckets and store those for 5 years. For all other metrics
 the default rule will be applied with other retention periods.
 the default rule will be applied with other retention periods.
 
 
@@ -206,7 +206,7 @@ Reload supervisor
 
 
     supervisorctl reload
     supervisorctl reload
 
 
-A carbon-cache deamon and graphite-api should now be running. Type `supervisorctl status` to verify that they are running. You can
+A carbon-cache daemon and graphite-api should now be running. Type `supervisorctl status` to verify that they are running. You can
 also open `http://your_server_ip:8888/metrics/find?query?*` in your browser. You should see a json snippet.
 also open `http://your_server_ip:8888/metrics/find?query?*` in your browser. You should see a json snippet.
 
 
 
 
@@ -243,12 +243,12 @@ Open http://your_server_ip:3000 in your browser and login with the default user
 - Select `Add Panel` > `Graph` from the row menu
 - Select `Add Panel` > `Graph` from the row menu
 - An empty graph panel should appear with title `no title (click here)`. Click on this title and then `Edit`
 - An empty graph panel should appear with title `no title (click here)`. Click on this title and then `Edit`
 - This will open the graph in edit mode and take you to the metrics tab.
 - This will open the graph in edit mode and take you to the metrics tab.
-- There is one query already added (asigned letter A) but it is empty.
+- There is one query already added (assigned letter A) but it is empty.
 - Click on `select metric` to pick the first graphite metric node. A new `select metric` link will appear until you reached a leaf node.
 - Click on `select metric` to pick the first graphite metric node. A new `select metric` link will appear until you reached a leaf node.
 - Try picking the metric paths for `carbon.agents.<server name>.cpuUsage`, you should now see a line appear in the graph!
 - Try picking the metric paths for `carbon.agents.<server name>.cpuUsage`, you should now see a line appear in the graph!
 
 
 ## Writing metrics to Graphite
 ## Writing metrics to Graphite
-Graphite has the simples metric write protocol imaginable. Something that has surely contributed to its wide adoption by metric
+Graphite has the simplest metric write protocol imaginable. Something that has surely contributed to its wide adoption by metric
 frameworks and numerous integrations.
 frameworks and numerous integrations.
 
 
     prod.server1.requests.count 10 1398969187
     prod.server1.requests.count 10 1398969187

+ 1 - 1
public/app/plugins/PLUGIN_CHANGES.md

@@ -10,6 +10,6 @@ datasource annotationQuery changed. now single options parameter with:
 
 
 2.5 changed the `range` parameter in the `datasource.query` function's options parameter. This
 2.5 changed the `range` parameter in the `datasource.query` function's options parameter. This
 parameter now holds a parsed range with `moment` dates `form` and `to`. To get
 parameter now holds a parsed range with `moment` dates `form` and `to`. To get
-millisecond epoc from a `moment` you the function `valueOf`. The raw date range as represented
+millisecond epoch from a `moment` you the function `valueOf`. The raw date range as represented
 internally in grafana (which may be relative expressions like `now-5h`) is included in the
 internally in grafana (which may be relative expressions like `now-5h`) is included in the
 new property `rangeRaw` (on the options object).
 new property `rangeRaw` (on the options object).