https://github.com/virtocommerce/vc-module-seq-log
Writes logs events and telemetry to Seq
https://github.com/virtocommerce/vc-module-seq-log
seq serilog
Last synced: 5 months ago
JSON representation
Writes logs events and telemetry to Seq
- Host: GitHub
- URL: https://github.com/virtocommerce/vc-module-seq-log
- Owner: VirtoCommerce
- License: other
- Created: 2023-05-09T07:58:02.000Z (almost 3 years ago)
- Default Branch: dev
- Last Pushed: 2025-09-03T03:39:31.000Z (5 months ago)
- Last Synced: 2025-09-03T05:28:18.120Z (5 months ago)
- Topics: seq, serilog
- Language: C#
- Homepage:
- Size: 334 KB
- Stars: 0
- Watchers: 11
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Seq Log Module
## Overview
Seq log module collects application logging data in Seq.

## Configure Logging
The module comes with a [sink](https://github.com/datalust/serilog-sinks-seq) for Serilog that writes events to Seq. To enable logging update the following `Serilog` configuration sections:
```JSON
{
"Serilog": {
"Using": [
...
"Serilog.Sinks.Seq"
],
"WriteTo": [
{
"Name": "Seq",
"Args": {
"apiKey": "[your api key]",
"serverUrl": "http://localhost:5341"
}
}
],
...
},
}
```
## References
* [Seq overview](https://docs.datalust.co/docs/an-overview-of-seq)
* [Serilog Library](https://serilog.net/)
* Deployment: https://docs.virtocommerce.org/developer-guide/deploy-module-from-source-code/
* Installation: https://docs.virtocommerce.org/user-guide/modules/
* Home: https://virtocommerce.com
* Community: https://www.virtocommerce.org
* [Download Latest Release](https://github.com/VirtoCommerce/vc-module-seq-log/releases/latest)
## License
Copyright (c) Virto Solutions LTD. All rights reserved.
Licensed under the Virto Commerce Open Software License (the "License"); you
may not use this file except in compliance with the License. You may
obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.