Skip to content

Commit 1f2ae1f

Browse files
authored
Use only AXIOM_DOMAIN placeholder for edges (#487)
1 parent dec83d2 commit 1f2ae1f

26 files changed

+93
-94
lines changed

ai-engineering/evaluate/setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: ["ai engineering", "setup", "authentication", "cli", "install"]
55
sidebarTitle: "Setup and auth"
66
---
77

8-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
8+
import ReplaceDomain from "/snippets/replace-domain.mdx"
99
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
1010

1111
This guide walks you through installing the Axiom AI SDK and authenticating with the Axiom AI SDK CLI so your evaluation results are tracked and attributed correctly in the Axiom Console.
@@ -84,13 +84,13 @@ Instead of using OAuth, you can authenticate using environment variables:
8484
export AXIOM_TOKEN="API_TOKEN"
8585
export AXIOM_DATASET="DATASET_NAME"
8686
export AXIOM_ORG_ID="ORGANIZATION_ID"
87-
export AXIOM_URL="AXIOM_EDGE_DOMAIN"
87+
export AXIOM_URL="AXIOM_DOMAIN"
8888
```
8989

9090
<Info>
9191
<ReplaceDatasetToken />
9292
Replace `ORGANIZATION_ID` with the organization ID.
93-
<ReplaceEdgeDomain />
93+
<ReplaceDomain />
9494
</Info>
9595

9696
## Create the Axiom configuration file

ai-engineering/quickstart.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: ["ai engineering", "getting started", "install", "setup", "configurati
55
---
66

77
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
8-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
8+
import ReplaceDomain from "/snippets/replace-domain.mdx"
99
import Prerequisites from "/snippets/standard-prerequisites.mdx"
1010
import AIInstrumentationApproaches from "/snippets/ai-instrumentation-approaches.mdx"
1111

@@ -200,7 +200,7 @@ export default defineConfig({
200200
Store environment variables in an `.env` file in the root of your project:
201201

202202
```bash .env
203-
AXIOM_URL="AXIOM_EDGE_DOMAIN"
203+
AXIOM_URL="AXIOM_DOMAIN"
204204
AXIOM_TOKEN="API_TOKEN"
205205
AXIOM_DATASET="DATASET_NAME"
206206
OPENAI_API_KEY=""
@@ -211,7 +211,7 @@ ANTHROPIC_API_KEY=""
211211

212212
<Info>
213213
<ReplaceDatasetToken />
214-
<ReplaceEdgeDomain />
214+
<ReplaceDomain />
215215

216216
Enter the API keys for the LLMs you want to work with.
217217
</Info>

apps/hex.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebarTitle: 'Hex'
66

77
import Prerequisites from "/snippets/standard-prerequisites.mdx"
88
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
9-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
9+
import ReplaceDomain from "/snippets/replace-domain.mdx"
1010
import ReplaceDataset from "/snippets/replace-dataset.mdx"
1111

1212
Hex is a powerful collaborative data platform that allows you to create notebooks with Python/SQL code and interactive visualizations.
@@ -21,7 +21,7 @@ This page explains how to integrate Hex with Axiom to visualize geospatial data
2121
Send your sample location data to Axiom using the API endpoint. For example, the following HTTP request sends sample robot location data with latitude, longitude, status, and satellite information.
2222

2323
```bash
24-
curl -X 'POST' 'https://AXIOM_EDGE_DOMAIN/v1/ingest/DATASET_NAME' \
24+
curl -X 'POST' 'https://AXIOM_DOMAIN/v1/ingest/DATASET_NAME' \
2525
-H 'Authorization: Bearer API_TOKEN' \
2626
-H 'Content-Type: application/json' \
2727
-d '[
@@ -39,7 +39,7 @@ curl -X 'POST' 'https://AXIOM_EDGE_DOMAIN/v1/ingest/DATASET_NAME' \
3939

4040
<Info>
4141
<ReplaceDatasetToken />
42-
<ReplaceEdgeDomain />
42+
<ReplaceDomain />
4343
</Info>
4444

4545
Verify that your data has been ingested correctly by running an APL query in the Axiom UI.

guides/send-logs-from-apache-log4j.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ enlargeLogo: true
1010

1111
import Prerequisites from "/snippets/standard-prerequisites.mdx"
1212
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
13-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
13+
import ReplaceDomain from "/snippets/replace-domain.mdx"
1414

1515
Log4j is a Java logging framework developed by the Apache Software Foundation and widely used in the Java community. This page covers how to get started with Log4j, configure it to forward log messages to Fluentd, and send logs to Axiom.
1616

@@ -354,7 +354,7 @@ To configure Fluentd, create a configuration file. Create a new file named `flue
354354

355355
<match **>
356356
@type http
357-
endpoint https://AXIOM_EDGE_DOMAIN/v1/ingest/DATASET_NAME
357+
endpoint https://AXIOM_DOMAIN/v1/ingest/DATASET_NAME
358358
headers {"Authorization":"Bearer API_TOKEN"}
359359
json_array true
360360
<buffer>
@@ -371,7 +371,7 @@ To configure Fluentd, create a configuration file. Create a new file named `flue
371371

372372
<Info>
373373
<ReplaceDatasetToken />
374-
<ReplaceEdgeDomain />
374+
<ReplaceDomain />
375375
</Info>
376376

377377
This configuration does the following:

guides/send-logs-from-dotnet.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ logoId: 'dotnet'
99

1010
import Prerequisites from "/snippets/standard-prerequisites.mdx"
1111
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
12-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
12+
import ReplaceDomain from "/snippets/replace-domain.mdx"
1313

1414
<Prerequisites />
1515
- [Install the .NET SDK](https://dotnet.microsoft.com/download).
@@ -51,7 +51,7 @@ public static class AxiomLogger
5151

5252
// Specify the Axiom dataset name and construct the API endpoint URL
5353
var datasetName = "DATASET_NAME";
54-
var axiomEdgeDomain = "AXIOM_EDGE_DOMAIN";
54+
var axiomEdgeDomain = "AXIOM_DOMAIN";
5555
var axiomUri = $"https://{axiomEdgeDomain}/v1/ingest/{datasetName}";
5656

5757
// Replace with your Axiom API token
@@ -95,7 +95,7 @@ public static class AxiomLogger
9595

9696
<Info>
9797
<ReplaceDatasetToken />
98-
<ReplaceEdgeDomain />
98+
<ReplaceDomain />
9999
</Info>
100100

101101
### Configure the main program
@@ -415,7 +415,7 @@ Set up NLog by creating an `NLog.config` file or configuring it programmatically
415415
flushTimeout="5000">
416416
<target xsi:type="HTTP"
417417
name="axiom"
418-
url="https://AXIOM_EDGE_DOMAIN/v1/ingest/DATASET_NAME"
418+
url="https://AXIOM_DOMAIN/v1/ingest/DATASET_NAME"
419419
HttpHeaders="Authorization: Bearer API_TOKEN"
420420
contentType="application/json">
421421
<layout xsi:type="JsonLayout" includeAllProperties="true">
@@ -436,7 +436,7 @@ Set up NLog by creating an `NLog.config` file or configuring it programmatically
436436

437437
<Info>
438438
<ReplaceDatasetToken />
439-
<ReplaceEdgeDomain />
439+
<ReplaceDomain />
440440
</Info>
441441

442442
### Configure the main program

guides/send-logs-from-laravel.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ logoId: 'laravel'
99

1010
import Prerequisites from "/snippets/standard-prerequisites.mdx"
1111
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
12-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
12+
import ReplaceDomain from "/snippets/replace-domain.mdx"
1313

1414
This guide explains integrating Axiom as a logging solution in a Laravel app. Using Axiom’s capabilities with a custom log channel, you can efficiently send your app’s logs to Axiom for storage, analysis, and monitoring. This integration uses Monolog, Laravel’s underlying logging library, to create a custom logging handler that forwards logs to Axiom.
1515

@@ -133,14 +133,14 @@ The `default` configuration specifies the primary channel Laravel uses for loggi
133133
LOG_CHANNEL=axiom
134134
AXIOM_API_TOKEN=API_TOKEN
135135
AXIOM_DATASET=DATASET_NAME
136-
AXIOM_DOMAIN=AXIOM_EDGE_DOMAIN
136+
AXIOM_DOMAIN=AXIOM_DOMAIN
137137
LOG_LEVEL=debug
138138
LOG_DEPRECATIONS_CHANNEL=null
139139
```
140140

141141
<Info>
142142
<ReplaceDatasetToken />
143-
<ReplaceEdgeDomain />
143+
<ReplaceDomain />
144144
</Info>
145145

146146
### Deprecations log channel

guides/send-logs-from-ruby-on-rails.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ logoId: 'ruby'
88
---
99

1010
import ReplaceDatasetToken from "/snippets/replace-dataset-token.mdx"
11-
import ReplaceEdgeDomain from "/snippets/replace-edge-domain.mdx"
11+
import ReplaceDomain from "/snippets/replace-domain.mdx"
1212
import Prerequisites from "/snippets/standard-prerequisites.mdx"
1313

1414
This guide provides step-by-step instructions on how to send logs from a Ruby on Rails app to Axiom using the Faraday library. By following this guide, you configure your Rails app to send logs to Axiom, allowing you to monitor and analyze your app logs effectively.
@@ -48,7 +48,7 @@ require 'json'
4848
class AxiomLogger
4949
def self.send_log(log_data)
5050
dataset_name = "DATASET_NAME"
51-
axiom_ingest_api_url = "https://AXIOM_EDGE_DOMAIN/v1/ingest/DATASET_NAME"
51+
axiom_ingest_api_url = "https://AXIOM_DOMAIN/v1/ingest/DATASET_NAME"
5252
ingest_token = "API_TOKEN"
5353

5454
conn = Faraday.new(url: axiom_ingest_api_url) do |faraday|
@@ -75,7 +75,7 @@ end
7575

7676
<Info>
7777
<ReplaceDatasetToken />
78-
<ReplaceEdgeDomain />
78+
<ReplaceDomain />
7979
</Info>
8080

8181
## Test with the Axiom logger

reference/limits.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The table below summarizes the limits applied to each pricing plan. For more det
2525
| Users | 1 | 1,000 * |
2626
| [Monitors](/monitor-data/monitors) | 3 | 500 * |
2727
| [Notifiers](/monitor-data/notifiers-overview) | Email, Discord | All supported |
28-
| [Supported deployment regions](/reference/regions) | US | US |
28+
| [Supported edge deployments](/reference/edge-deployments) | US | US |
2929

3030
\* Soft limit that can be increased upon request.
3131

reference/organization-settings.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ keywords: ['axiom documentation', 'documentation', 'axiom', 'api token', 'person
77

88
import AiSetting from "/snippets/ai-setting.mdx"
99

10-
## View organization ID
10+
## Determine organization ID
1111

1212
1. Click <Icon icon="gear" iconType="solid"/> **Settings > General**.
1313
1. Find organization ID in the **ID** section.
1414

15-
## View organization region
15+
## Determine organization edge deployment
1616

1717
1. Click <Icon icon="gear" iconType="solid"/> **Settings > General**.
18-
1. Find organization region in the **Region** section.
18+
1. Find your organization’s default edge deployment in the **Edge deployment** section.
1919

2020
For more information, see [Edge deployments](/reference/edge-deployments).
2121

reference/usage-billing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ To upgrade or downgrade your plan:
8787

8888
You can manage the following add-ons:
8989

90-
- Additional regions
90+
- Additional edge deployments
9191
- Audit log
9292
- Directory Sync
9393
- Role-Based Access Control (RBAC)

0 commit comments

Comments
 (0)