Skip to content

Commit 7daeaff

Browse files
authored
Add ingest limits to Methods (#371)
1 parent 8f3ed3f commit 7daeaff

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

reference/field-restrictions.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ sidebarTitle: Limits
55
keywords: ['axiom documentation', 'documentation', 'axiom', 'reference', 'settings', 'field restrictions', 'time stamp', 'time stamp field', 'limits', 'requirements', 'pricing', 'usage']
66
---
77

8-
{/* TODO: Rename this file it doesn’t reflect the content. */}
9-
108
import IngestDataLimits from "/snippets/ingest-data-limits.mdx"
119

1210
Axiom applies certain limits and requirements to guarantee good service across the platform. Some of these limits depend on your pricing plan, and some of them are applied system-wide. This reference article explains all limits and requirements applied by Axiom.

reference/query-hours.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ description: "This page explains how to calculate and manage query compute resou
44
keywords: ['query', 'gb hours']
55
---
66

7-
{/* TODO: Rename this file it doesn’t reflect the content. */}
8-
97
Axiom measures the resources used to execute queries in terms of GB-hours.
108

119
## What GB-hours are

reference/settings.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ description: 'This section explains how to configure Role-Based Access Control (
55
keywords: ['rbac', 'api token', 'personal token', 'billing', 'dataset', 'integrations', 'teams', 'profile', 'user settings']
66
---
77

8-
{/* TODO: Rename this file it doesn’t reflect the content. */}
9-
108
import AccessToDatasets from "/snippets/access-to-datasets.mdx"
119

1210
Role-Based Access Control (RBAC) allows you to manage and restrict access to your data and resources efficiently. You can control access to your data with the following:

send-data/methods.mdx

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,25 @@ sidebarTitle: "Methods"
55
keywords: ["send data", "ingest", "methods", "integrations", "opentelemetry", "vector", "fluentd"]
66
---
77

8+
import ReplaceDomain from "/snippets/replace-domain.mdx"
9+
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
10+
import IngestDataLimits from "/snippets/ingest-data-limits.mdx"
11+
812
The easiest way to send your first event data to Axiom is with a direct HTTP request using a tool like `cURL`.
913

10-
```sh
11-
curl -X 'POST' \
12-
'https://api.axiom.co/v1/datasets/<DATASET_NAME>/ingest' \
13-
-H 'Authorization: Bearer <AXIOM_API_TOKEN>' \
14-
-H 'Content-Type: application/x-ndjson' \
15-
-d '{ "http": { "request": { "method": "GET", "duration_ms": 231 }, "response": { "body": { "size": 3012 } } }, "url": { "path": "/download" } }'
14+
```shell
15+
curl -X 'POST' 'https://AXIOM_DOMAIN/v1/datasets/DATASET_NAME/ingest' \
16+
-H 'Authorization: Bearer API_TOKEN' \
17+
-H 'Content-Type: application/x-ndjson' \
18+
-d '{ "http": { "request": { "method": "GET", "duration_ms": 231 }, "response": { "body": { "size": 3012 } } }, "url": { "path": "/download" } }'
1619
```
1720

18-
When you’re ready to send events continuously, Axiom supports a wide range of standard tools, libraries, and platform integrations.
21+
<Info>
22+
<ReplaceDomain />
23+
<ReplaceDatasetToken />
24+
</Info>
25+
26+
To send events continuously, Axiom supports a wide range of standard tools, libraries, and platform integrations.
1927

2028
## Popular methods
2129

@@ -95,5 +103,11 @@ The following examples show how to send data using OpenTelemetry from various la
95103
| [OpenTelemetry Ruby](/guides/opentelemetry-ruby) | Ruby on Rails with OpenTelemetry |
96104

97105
<Info>
98-
If you don't see a method you’re looking for, please [contact](https://www.axiom.co/contact) the Axiom team for support.
99-
</Info>
106+
If you need an ingestion method that isn’t in the list above, [contact Axiom](https://www.axiom.co/contact).
107+
</Info>
108+
109+
### Limits on ingested data
110+
111+
<IngestDataLimits />
112+
113+
For more information about limits and requirements, see [Limits](/reference/field-restrictions).

0 commit comments

Comments
 (0)