Skip to content

Commit 3b8bb64

Browse files
authored
Merge pull request #948 from mstruve/patch-1
Documentation Update: Fix Spelling of Elasticsearch
2 parents 83bce45 + 7153f68 commit 3b8bb64

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/GettingStarted.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To contribute, check out the [contribution guidelines][contribution docs] and [d
3636
- [Concurrent Ruby](#concurrent-ruby)
3737
- [Dalli](#dalli)
3838
- [DelayedJob](#delayedjob)
39-
- [Elastic Search](#elastic-search)
39+
- [Elasticsearch](#elasticsearch)
4040
- [Ethon & Typhoeus](#ethon)
4141
- [Excon](#excon)
4242
- [Faraday](#faraday)
@@ -337,7 +337,7 @@ For a list of available integrations, and their configuration options, please re
337337
| Concurrent Ruby | `concurrent_ruby` | `>= 0.9` | *[Link](#concurrent-ruby)* | *[Link](https://github.com/ruby-concurrency/concurrent-ruby)* |
338338
| Dalli | `dalli` | `>= 2.7` | *[Link](#dalli)* | *[Link](https://github.com/petergoldstein/dalli)* |
339339
| DelayedJob | `delayed_job` | `>= 4.1` | *[Link](#delayedjob)* | *[Link](https://github.com/collectiveidea/delayed_job)* |
340-
| Elastic Search | `elasticsearch` | `>= 6.0` | *[Link](#elastic-search)* | *[Link](https://github.com/elastic/elasticsearch-ruby)* |
340+
| Elasticsearch | `elasticsearch` | `>= 6.0` | *[Link](#elasticsearch)* | *[Link](https://github.com/elastic/elasticsearch-ruby)* |
341341
| Ethon | `ethon` | `>= 0.11.0` | *[Link](#ethon)* | *[Link](https://github.com/typhoeus/ethon)* |
342342
| Excon | `excon` | `>= 0.62` | *[Link](#excon)* | *[Link](https://github.com/excon/excon)* |
343343
| Faraday | `faraday` | `>= 0.14` | *[Link](#faraday)* | *[Link](https://github.com/lostisland/faraday)* |
@@ -639,7 +639,7 @@ Where `options` is an optional `Hash` that accepts the following parameters:
639639
| `service_name` | Service name used for `DelayedJob` instrumentation | `'delayed_job'` |
640640
| `tracer` | `Datadog::Tracer` used to perform instrumentation. Usually you don't need to set this. | `Datadog.tracer` |
641641

642-
### Elastic Search
642+
### Elasticsearch
643643

644644
The Elasticsearch integration will trace any call to `perform_request` in the `Client` object:
645645

@@ -651,7 +651,7 @@ Datadog.configure do |c|
651651
c.use :elasticsearch, options
652652
end
653653
654-
# Perform a query to ElasticSearch
654+
# Perform a query to Elasticsearch
655655
client = Elasticsearch::Client.new url: 'http://127.0.0.1:9200'
656656
response = client.perform_request 'GET', '_cluster/health'
657657
```

0 commit comments

Comments
 (0)