Skip to content

Commit

Permalink
rabbit enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianToledano committed Oct 25, 2024
1 parent 3d640e7 commit 4916e66
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/learn/advanced/08-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ Lastly, Events are returned to the underlying consensus engine in the response o
<!-- markdown-link-check-disable -->
The following examples show how to query Events using the Cosmos SDK.

| Event | Description |
| ------------------------------------------------ |-----------------------------------------------------------------------------------------------------------------------------------------------------|
| `tx.height=23` | Query all transactions at height 23 |
| `message.action='/cosmos.bank.v1beta1.Msg/Send'` | Query all transactions containing a x/bank `Send` [Service `Msg`](../../build/building-modules/03-msg-services.md). Note the `'`s around the value. |
| `message.module='bank'` | Query all transactions containing messages from the x/bank module. Note the `'`s around the value. |
| `create_validator.validator='cosmosval1...'` | x/staking-specific Event, see [x/staking SPEC](../../../x/staking/README.md#events). |
| Event | Description |
| ------------------------------------------------ |------------------------------------------------------------------------------------------------------------------------------------------------------|
| `tx.height=23` | Query all transactions at height 23 |
| `message.action='/cosmos.bank.v1beta1.Msg/Send'` | Query all transactions containing an x/bank `Send` [Service `Msg`](../../build/building-modules/03-msg-services.md). Note the `'`s around the value. |
| `message.module='bank'` | Query all transactions containing messages from the x/bank module. Note the `'`s around the value. |
| `create_validator.validator='cosmosval1...'` | x/staking-specific Event, see [x/staking SPEC](../../../x/staking/README.md#events). |
<!-- markdown-link-check-enable -->
## EventManager

Expand Down
2 changes: 1 addition & 1 deletion docs/learn/advanced/09-telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To query active metrics (see retention note above) you have to enable API server

If telemetry is enabled via configuration, a single global metrics collector is registered via the
[go-metrics](https://github.com/hashicorp/go-metrics) library. This allows emitting and collecting
metrics through simple [API](https://github.com/cosmos/cosmos-sdk/blob/v0.52.0-beta.2/telemetry/wrapper.go). Example:
metrics through a simple [API](https://github.com/cosmos/cosmos-sdk/blob/v0.52.0-beta.2/telemetry/wrapper.go). Example:

```go
func EndBlocker(ctx sdk.Context, k keeper.Keeper) {
Expand Down

0 comments on commit 4916e66

Please sign in to comment.