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

Commit d303348

Browse files
authored
docs: rename scope-org-id to tenant-id (#678)
1 parent fd65944 commit d303348

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/sources/operators-guide/configure-agent/language-support/dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export PYROSCOPE_APPLICATION_NAME=phlare.dotnet.app
139139
export PYROSCOPE_SERVER_ADDRESS=<URL>
140140
export PYROSCOPE_BASIC_AUTH_USER=<User>
141141
export PYROSCOPE_BASIC_AUTH_PASSWORD=<Password>
142-
export PYROSCOPE_SCOPE_ORGID=<TenantID>
142+
export PYROSCOPE_TENANT_ID=<TenantID>
143143
```
144144

145145
To configure .NET integration to send data to Phlare, replace the `<URL>` placeholder with the appropriate server URL. This could be the grafana.com Phlare URL or your own custom Phlare server URL.

docs/sources/operators-guide/configure-agent/language-support/ebpf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Starting with [weekly-f8](https://hub.docker.com/r/grafana/phlare/tags) you can
8888
--server-address=<URL> \
8989
--basic-auth-user="<User>" \
9090
--basic-auth-password="<Password>" \
91-
--scope-org-id=<TenantID> \
91+
--tenant-id=<TenantID> \
9292
```
9393

9494
To configure eBPF integration to send data to Phlare, replace the `<URL>` placeholder with the appropriate server URL. This could be the grafana.com Phlare URL or your own custom Phlare server URL.

docs/sources/operators-guide/configure-agent/language-support/go_push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ pyroscope.Start(pyroscope.Config{
122122
BasicAuthUser: "<User>",
123123
BasicAuthPassword: "<Password>",
124124
// Optional Phlare tenant ID
125-
ScopeOrgID: "<TenantID>",
125+
TenantID: "<TenantID>",
126126
ProfileTypes: []pyroscope.ProfileType{
127127
pyroscope.ProfileCPU,
128128
pyroscope.ProfileInuseObjects,

docs/sources/operators-guide/configure-agent/language-support/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Java integration supports JFR format to be able to support multiple events (JFR
129129
|`PYROSCOPE_CONFIGURATION_FILE` |sets an additional properties configuration file. The default value is `pyroscope.properties`. |
130130
|`PYROSCOPE_BASIC_AUTH_USER` |HTTP Basic authentication username. The default value is `""` - empty string, no authentication. |
131131
|`PYROSCOPE_BASIC_AUTH_PASSWORD` |HTTP Basic authentication password. The default value is `""` - empty string, no authentication. |
132-
|`PYROSCOPE_SCOPE_ORGID` |phlare tenant ID, passed as X-Scope-OrgID http header. The default value is `""` - empty string, no tenant ID. |
132+
|`PYROSCOPE_TENANT_ID` |phlare tenant ID, passed as X-Scope-OrgID http header. The default value is `""` - empty string, no tenant ID. |
133133
|`PYROSCOPE_HTTP_HEADERS` |extra http headers in json format, for example: `{"X-Header": "Value"}`. The default value is `{}` - no extra headers. |
134134
|`PYROSCOPE_LABELS` |sets static labels in the form of comma separated `key=value` pairs. The default value is `""` - empty string, no labels. |
135135
|`PYROSCOPE_LOG_LEVEL` |determines the level of verbosity for Pyroscope's logger. Available options include `debug`, `info`, `warn`, and `error`. The default value is set to `info`. |

docs/sources/operators-guide/configure-agent/language-support/python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ import pyroscope
6969
pyroscope.configure(
7070
application_name = "phlare.python.app",
7171
server_address = "<URL>",
72-
basic_auth_username='<User>',
73-
basic_auth_password='<Password>',
74-
scope_org_id="<TenantID>",
72+
basic_auth_username = '<User>',
73+
basic_auth_password = '<Password>',
74+
tenant_id = "<TenantID>",
7575
)
7676
```
7777

docs/sources/operators-guide/configure-agent/language-support/ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Pyroscope.configure do |config|
8080
config.server_address = "<URL>"
8181
config.basic_auth_username='<User>'
8282
config.basic_auth_password='<Password>'
83-
config.scope_org_id='<TenantID>'
83+
config.tenant_id='<TenantID>'
8484
end
8585
```
8686

0 commit comments

Comments
 (0)