mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Update the examples for node and golang
This commit is contained in:
parent
7004424a5d
commit
5747d80f04
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue