Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# CHANGELOG

## 1.0.0

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP Agent v1.0.0.

This is the first stable release of the Sentry PHP Agent, a local sidecar for PHP applications. The agent accepts
envelopes from the PHP SDK over the local interface and forwards them to Sentry asynchronously, reducing the network
latency paid by individual PHP requests.

Use it alongside the PHP, Laravel, or Symfony SDKs:

```bash
composer require sentry/sentry sentry/sentry-agent
vendor/bin/sentry-agent
```

```php
use Sentry\Agent\Transport\AgentClientBuilder;

\Sentry\init([
'dsn' => '__YOUR_DSN__',
'http_client' => AgentClientBuilder::create()->getClient(),
]);
```

## 0.1.1

- Internal release
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he

# Official Sentry Agent for PHP

> [!CAUTION]
> The current state of this project is somewhere along the lines of pre-alpha.
> We strongly recommend you to not run this in production.
> During the `0.x` release cycle, we might introduce breaking changes at any time.

## Getting started

### What is the Agent?

The Agent is a sidecar to the PHP application that is meant to run on the same machine in order to
accept outgoing HTTP requests to Sentry and send them asynchronously without blocking the main PHP script.

### Install

Install the agent alongside the [PHP SDK](https://github.com/getsentry/sentry-php) using [Composer](https://getcomposer.org/).
Expand Down
Loading