Skip to content

Commit 512c0a0

Browse files
authored
fix(docs): revert phoenix port (#934)
Signed-off-by: Radek Ježek <[email protected]>
1 parent 8215eb6 commit 512c0a0

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

apps/beeai-ui/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ NEXT_PUBLIC_APP_NAME=
1212
# Default: '/bee.svg'
1313
NEXT_PUBLIC_APP_FAVICON_SVG=
1414

15-
# Default: 'http://localhost:31606'
15+
# Default: 'http://localhost:6006'
1616
NEXT_PUBLIC_PHOENIX_SERVER_TARGET=
1717

1818
# Custom navigation (header, sidebar) in JSON format

apps/beeai-ui/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const APP_NAME = process.env.NEXT_PUBLIC_APP_NAME ?? 'BeeAI';
1111

1212
export const APP_FAVICON_SVG = process.env.NEXT_PUBLIC_APP_FAVICON_SVG ?? '/bee.svg';
1313

14-
export const PHOENIX_SERVER_TARGET = process.env.NEXT_PUBLIC_PHOENIX_SERVER_TARGET ?? 'http://localhost:31606';
14+
export const PHOENIX_SERVER_TARGET = process.env.NEXT_PUBLIC_PHOENIX_SERVER_TARGET ?? 'http://localhost:6006';
1515

1616
export const NAV_ITEMS = parseNav(process.env.NEXT_PUBLIC_NAV_ITEMS);
1717

docs/how-to/observe-agents.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ beeai platform start --set phoenix.enabled=true
6969
</Step>
7070
<Step title="Check if Phoenix is running">
7171
Spinning up phoenix can take a while, even after the `platform start` will report success.
72-
Go to [http://localhost:31606](http://localhost:31606) and check if it's running. If not, please wait a few
72+
Go to [http://localhost:6006](http://localhost:6006) and check if it's running. If not, please wait a few
7373
minutes or check your internet connection.
7474
</Step>
7575
<Step title="Run Agent with Phoenix Configuration">
@@ -82,7 +82,7 @@ beeai run chat "Hello"
8282

8383
</Step>
8484
<Step title="View Traces in Phoenix">
85-
Go to [http://localhost:31606](http://localhost:31606) in your browser and open the **default** project.
85+
Go to [http://localhost:6006](http://localhost:6006) in your browser and open the **default** project.
8686
</Step>
8787
</Steps>
8888

docs/observability/agents-traceability.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ beeai run chat "Hello"
3030

3131
</Step>
3232
<Step title="View traces in Phoenix GUI">
33-
Open http://localhost:31606 in your browser and navigate to the **default** project to explore the collected traces.
33+
Open http://localhost:6006 in your browser and navigate to the **default** project to explore the collected traces.
3434
</Step>
3535
</Steps>
3636

helm/templates/collector/config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ data:
1616
nop:
1717
{{- if .Values.phoenix.enabled }}
1818
otlp/phoenix:
19-
endpoint: phoenix-svc:4317
19+
endpoint: phoenix-svc:8335
2020
tls:
2121
insecure: true
2222
{{- end }}
@@ -55,9 +55,9 @@ data:
5555
exporters: [ otlp/phoenix ]
5656
{{ else }}
5757
traces/nop:
58-
receivers: [ otlp ]
59-
processors: []
60-
exporters: [ nop ]
58+
receivers: [ otlp ]
59+
processors: [ ]
60+
exporters: [ nop ]
6161
{{- end }}
6262
{{- if .Values.collector.pipelines }}
6363
{{ toYaml .Values.collector.pipelines | nindent 8 }}

helm/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ phoenix:
181181
readOnlyRootFilesystem: true
182182
server:
183183
workingDir: /tmp/working_dir
184+
grpcPort: 8335
184185
database:
185186
url: "sqlite:////home/phoenix/phoenix.db"
186187
persistence:

0 commit comments

Comments
 (0)