Skip to content

Commit

Permalink
Fix missing newline in code
Browse files Browse the repository at this point in the history
  • Loading branch information
hmstepanek committed Nov 27, 2024
1 parent 74d4220 commit 0ce210c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ Here's an example showing one way to implement the `name` and `group` parameters

```py
name = '%s/%s' % (controller, function)
group = 'Python/WebFramework/Controller'newrelic.agent.set_transaction_name(name, group)
group = 'Python/WebFramework/Controller'
newrelic.agent.set_transaction_name(name, group)
```

The priority parameter can generally be ignored unless you are implementing custom instrumentation for a web framework where there may be multiple points where you want to set the name (such as middleware, view handlers, or error handlers).
Expand Down

0 comments on commit 0ce210c

Please sign in to comment.