Skip to content
This repository was archived by the owner on Aug 23, 2023. It is now read-only.

Commit a97bc81

Browse files
committed
add initial hosted metrics graphite documentation
1 parent 61b5e89 commit a97bc81

File tree

1 file changed

+307
-0
lines changed

1 file changed

+307
-0
lines changed

docs/cloud/hosted-metrics-graphite.md

+307
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,307 @@
1+
---
2+
title: Hosted Metrics - Graphite
3+
header: false
4+
---
5+
6+
# Hosted Metrics - Graphite
7+
8+
Grafana Labs' Hosted metrics Graphite service offers a graphite-compatible monitoring backend as a service.
9+
It acts and behaves as a regular graphite datasource within Grafana (or other tools), but behind the scenes, it is a sophisticated platform run by a team of dedicated engineers.
10+
11+
* [data ingestion](#data-ingestion)
12+
* [http api](#http-api)
13+
* [faq](#faq)
14+
15+
---
16+
17+
## Data Ingestion
18+
19+
We support:
20+
* [carbon-relay-ng](https://github.com/graphite-ng/carbon-relay-ng), which is a graphite carbon relay, which supports aggregations and sending data to our endpoint over a secure, robust transport.
21+
* custom tools that use our API. See our [golang, python and shell examples](https://github.com/grafana/hosted-metrics-sender-example)
22+
* direct carbon input. This is discouraged though, as it is not reliable over the internet and not secure.
23+
24+
The recommended and most popular option is using carbon-relay-ng.
25+
Customers typically deploy using either of these 2 options:
26+
27+
* run the relay as an extra component external to your existing graphite pipeline. Data can be directed to it from any existing carbon relay.
28+
* replace an existing carbon-relay with carbon-relay-ng
29+
30+
If your Graphite stack does not currently contain any relay, then you can simply add carbon-relay-ng, have your clients (statsd, collectd, diamond, etc) send data to the relay, which in turn can send data to your existing graphite server *and* to our platform.
31+
32+
When creating a Hosted Metrics Graphite instance, we provide a carbon-relay-ng config file that you can plug in and be ready to use out of the box.
33+
We also have Grafana Labs engineers ready to advise further on set up, if needed.
34+
35+
---
36+
37+
## HTTP API
38+
39+
The HTTP API is the same as that of Graphite, with the addition of ingestion, authentication and meta tags.
40+
41+
First of all, there are two endpoints you will be talking to. They are provided in your grafana.com Hosted Metrics instance UI.
42+
They will look something like:
43+
44+
* `<base_in>` : `https://tsdb-<id>.hosted-metrics.grafana.net/metrics`
45+
* `<base_out>` : `https://tsdb-<id>.hosted-metrics.grafana.net/graphite`
46+
47+
Furthermore, you will need to provision API keys to talk to the API. Each key will be of one of these types:
48+
49+
* Viewer
50+
* MetricsPublisher
51+
* Editor
52+
* Admin
53+
54+
55+
## Common Request Parameters
56+
57+
Many of the API methods involve using Graphite patterns (queries), tag queries and the standard Graphite from/to syntax.
58+
59+
### Graphite Patterns
60+
61+
[Graphite patterns](https://graphite.readthedocs.io/en/latest/render_api.html#paths-and-wildcards) are queries that involve glob patterns (`*`, `{}`, `[]`, `?`).
62+
63+
### Tag Expressions
64+
65+
Tags expressions are strings, and may have the following formats:
66+
67+
```
68+
tag=spec tag value exactly matches spec
69+
tag!=spec tag value does not exactly match spec
70+
tag=~value tag value matches the regular expression spec
71+
tag!=~spec tag value does not match the regular expression spec
72+
```
73+
74+
Any tag spec that matches an empty value is considered to match series that don’t have that tag, and at least one tag spec must require a non-empty value.
75+
Regular expression conditions are treated as being anchored at the start of the value.
76+
77+
### From/To (Until)
78+
79+
[Graphite from/to](https://graphite.readthedocs.io/en/latest/render_api.html#from-until)
80+
81+
## Endpoints
82+
83+
84+
### Adding New Data
85+
#### Posting To `/metrics` Endpoint
86+
87+
The main entry point for any publisher to publish data to, be it [carbon-relay-ng](https://github.com/graphite-ng/carbon-relay-ng/), or any other script or application such as the [hosted-metrics-sender-example](https://github.com/grafana/hosted-metrics-sender-example)
88+
89+
* Method: POST
90+
* API key type: any (including Viewer)
91+
92+
##### Headers
93+
94+
* `Authorization: Bearer <api-key>` required
95+
* `Content-Type`: supports 3 values:
96+
- `application/json`: the simplest one, and the one used here
97+
- `rt-metric-binary`: same datastructure, but messagepack encoded. (see [the MetricData Marshal/Encode methods](https://godoc.org/github.com/grafana/metrictank/schema#MetricData))
98+
- `rt-metric-binary-snappy`: same as above, but snappy compressed.
99+
100+
##### Data Format
101+
102+
Each metricpoint message can have the following properties:
103+
```
104+
name // graphite style name (required)
105+
interval // the resolution of the metric in seconds (required)
106+
value // float64 value (required)
107+
time // unix timestamp in seconds (required)
108+
tags // list of key=value pairs of tags (optional)
109+
```
110+
111+
##### Example
112+
113+
```sh
114+
timestamp_now_rounded=$(($(date +%s) / 10 * 10))
115+
timestamp_prev_rounded=$((timestamp_now_rounded - 10))
116+
117+
curl -X POST -H "Authorization: Bearer $key" -H "Content-Type: application/json" "$out" -d '[{
118+
"name": "test.metric",
119+
"interval": 10,
120+
"value": 12.345,
121+
"time": '$timestamp_prev_rounded'
122+
},
123+
{
124+
"name": "test.metric",
125+
"interval": 10,
126+
"value": 12.345,
127+
"time": '$timestamp_now_rounded'
128+
},
129+
{
130+
"name": "test.metric.tagged",
131+
"interval": 10,
132+
"value": 1,
133+
"tags": ["foo=bar", "baz=quux"],
134+
"time": '$timestamp_prev_rounded'
135+
},
136+
{
137+
"name": "test.metric.tagged",
138+
"interval": 10,
139+
"value": 2,
140+
"tags": ["foo=bar", "baz=quux"],
141+
"time": '$timestamp_now_rounded'
142+
}
143+
]'
144+
145+
```
146+
147+
### Deleting Metrics
148+
#### Non-tagged With `/metrics/delete`
149+
150+
Deletes metrics which match the `query` and all child nodes.
151+
152+
Note that unlike the find and render patterns, these queries are recursive.
153+
So if the delete query matches a branch, **every** series under that branch will be deleted.
154+
155+
* Method: POST
156+
* API key type:
157+
158+
##### Parameters
159+
160+
* user name: api_key
161+
* password: Your Grafana.com API Key
162+
* query (required): [Graphite pattern] (#graphite-patterns)
163+
164+
##### Example
165+
166+
```sh
167+
curl -u "api_key:<Your Grafana.com API Key>" https://<tsdbgw>/metrics/delete -d query=some.series.to.delete.*
168+
```
169+
170+
### Finding Metrics
171+
#### Non-tagged With `/metrics/find`
172+
173+
Returns metrics which match the `query` and have received an update since `from`.
174+
175+
* Method: GET or POST
176+
* API key type: any (including MetricsPublisher)
177+
178+
##### Headers
179+
180+
* `Authorization: Bearer <api-key>` required
181+
182+
##### Parameters
183+
184+
* query (required): [Graphite pattern](#graphite-patterns)
185+
* format: json, treejson, completer, pickle, or msgpack. (defaults to json)
186+
* jsonp: true/false: enables jsonp
187+
* from: Graphite from time specification (defaults to now-24hours)
188+
189+
##### Output formats
190+
191+
* json, treejson (default/unspecified): the standard format
192+
* completer: used for graphite-web's completer UI
193+
* msgpack: optimized transfer format
194+
* pickle: deprecated
195+
196+
197+
##### Example
198+
199+
```sh
200+
curl -H "Authorization: Bearer $key" "$base_out/metrics/find?query=metrictank"
201+
[
202+
{
203+
"allowChildren": 1,
204+
"expandable": 1,
205+
"leaf": 0,
206+
"id": "metrictank",
207+
"text": "metrictank",
208+
"context": {}
209+
}
210+
]
211+
```
212+
213+
The response indicates that there are metric names that live under the "metrictank" term (it is expandable)
214+
and there is no data under the name "metrictank" (it is not a leaf node).
215+
216+
So we update the query to see what we can expand to:
217+
218+
```sh
219+
curl -H "Authorization: Bearer $key" "$base_out/metrics/find?query=metrictank.*"
220+
[
221+
{
222+
"allowChildren": 1,
223+
"expandable": 1,
224+
"leaf": 0,
225+
"id": "metrictank.aggstats",
226+
"text": "aggstats",
227+
"context": {}
228+
}
229+
]
230+
```
231+
232+
The response for the updated query shows which data lives under the "metrictank" name, in this case the tree extends under "metrictank.aggstats".
233+
234+
As we continue to dig deeper into the tree, by updating our query based on what we get back, we eventually end up at the leaf:
235+
236+
```sh
237+
curl -H "Authorization: Bearer $key" "$out/metrics/find?query=metrictank.aggstats.*.tank.metrics_active.gauge32"
238+
[
239+
{
240+
"allowChildren": 0,
241+
"expandable": 0,
242+
"leaf": 1,
243+
"id": "metrictank.aggstats.us-east2-id-name.tank.metrics_active.gauge32",
244+
"text": "gauge32",
245+
"context": {}
246+
}
247+
]
248+
```
249+
250+
#### Tagged With `/tags/findSeries`
251+
252+
Returns metrics which match tag queries and have received an update since `from`.
253+
Note: the returned results are not deduplicated and in certain cases it is possible
254+
that duplicate entries will be returned.
255+
256+
* Method: GET or POST
257+
* API key type: any (including MetricsPublisher)
258+
259+
##### Headers
260+
261+
* `Authorization: Bearer <api-key>` required
262+
263+
##### Parameters
264+
265+
* expr (required): a list of [tag expressions](#tag-expressions)
266+
* from: Graphite [from time specification](#fromto) (optional. defaults to now-24hours)
267+
268+
##### Example
269+
270+
```sh
271+
curl -H "Authorization: Bearer $key" "$out/tags/findSeries?expr=datacenter=dc1&expr=server=web01"
272+
273+
[
274+
"disk.used;datacenter=dc1;rack=a1;server=web01"
275+
]
276+
```
277+
278+
---
279+
280+
## FAQ
281+
282+
### Can I use tags?
283+
284+
Yes, our platform supports graphite tags as well as [meta tags](https://grafana.com/blog/2019/04/09/metrictank-meta-tags/), allowing to add extra metadata tags your series.
285+
286+
### Can I import my existing data?
287+
288+
You can import pre-existing data into the hosted platform, from either a Graphite or metrictank installation.
289+
We either provide you with the tools and instructions, or if provided access, we offer this service for a hands-off experience.
290+
Grafana dashboards can also be imported if you choose to use a hosted Grafana instance.
291+
292+
### How do I send data to the service?
293+
294+
See [data ingestion](#data-ingestion)
295+
296+
### How does this compare to stock graphite?
297+
298+
The hosted platform is built on top of [metrictank](/oss/metrictank) and [graphite](/oss/graphite)
299+
Important differences with stock Graphite to be aware of:
300+
301+
* support for meta tags
302+
* the platform is optimized for append-only workloads. While historical data can be imported, we generally don't support out of order writes.
303+
* timeseries can change resolution (interval) over time, they will be merged automatically.
304+
305+
## Do I have to use hosted grafana or exclusively the hosted platform?
306+
307+
No, the hosted platform is a datasource that you can use however you like. E.g. in combination with other datasources, and queried from any Grafana instance or other client.

0 commit comments

Comments
 (0)