Update the examples for node and golang

This commit is contained in:
Colton Myers 2022-05-11 10:12:26 -06:00
parent 7004424a5d
commit 5747d80f04
No known key found for this signature in database
GPG key ID: 6EC5C787D71F663F
3 changed files with 6 additions and 6 deletions

View file

@ -122,7 +122,7 @@ describe('getCommands', () => {
// Override the service name from package.json
// Allowed characters: a-z, A-Z, 0-9, -, _, and space
serviceName: '',
serviceName: 'my_node_service',
// Use if APM Server requires a secret token
secretToken: '',
@ -150,7 +150,7 @@ describe('getCommands', () => {
// Override the service name from package.json
// Allowed characters: a-z, A-Z, 0-9, -, _, and space
serviceName: '',
serviceName: 'my_node_service',
// Use if APM Server requires a secret token
secretToken: 'foobar',
@ -422,7 +422,7 @@ describe('getCommands', () => {
# Set the service name. Allowed characters: # a-z, A-Z, 0-9, -, _, and space.
# If ELASTIC_APM_SERVICE_NAME is not specified, the executable name will be used.
export ELASTIC_APM_SERVICE_NAME=
export ELASTIC_APM_SERVICE_NAME=my_go_service
# Set custom APM Server URL (default: http://localhost:8200)
export ELASTIC_APM_SERVER_URL=
@ -449,7 +449,7 @@ describe('getCommands', () => {
# Set the service name. Allowed characters: # a-z, A-Z, 0-9, -, _, and space.
# If ELASTIC_APM_SERVICE_NAME is not specified, the executable name will be used.
export ELASTIC_APM_SERVICE_NAME=
export ELASTIC_APM_SERVICE_NAME=my_go_service
# Set custom APM Server URL (default: http://localhost:8200)
export ELASTIC_APM_SERVER_URL=localhost:8220

View file

@ -28,7 +28,7 @@ export const go = `# ${i18n.translate(
'If ELASTIC_APM_SERVICE_NAME is not specified, the executable name will be used.',
}
)}
export ELASTIC_APM_SERVICE_NAME=
export ELASTIC_APM_SERVICE_NAME=my_go_service
# ${i18n.translate(
'xpack.apm.tutorial.goClient.configure.commands.setCustomApmServerUrlComment',

View file

@ -27,7 +27,7 @@ var apm = require('elastic-apm-node').start({
defaultMessage: 'Allowed characters: a-z, A-Z, 0-9, -, _, and space',
}
)}
serviceName: '',
serviceName: 'my_node_service',
// ${i18n.translate(
'xpack.apm.tutorial.nodeClient.configure.commands.useIfApmRequiresTokenComment',