# serilog-enrichers-environment **Repository Path**: mirrors_serilog/serilog-enrichers-environment ## Basic Information - **Project Name**: serilog-enrichers-environment - **Description**: Enrich Serilog log events with properties from System.Environment. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: dev - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Serilog.Enrichers.Environment Enriches Serilog events with information from the execution environment. [![Build status](https://ci.appveyor.com/api/projects/status/yfbvbdxd5vwh6955?svg=true)](https://ci.appveyor.com/project/serilog/serilog-enrichers-environment) [![NuGet Version](http://img.shields.io/nuget/v/Serilog.Enrichers.Environment.svg?style=flat)](https://www.nuget.org/packages/Serilog.Enrichers.Environment/) To use the enricher, first install the NuGet package: ```powershell dotnet add package Serilog.Enrichers.Environment ``` Then, apply the enricher to you `LoggerConfiguration`: ```csharp Log.Logger = new LoggerConfiguration() .Enrich.WithMachineName() // ...other configuration... .CreateLogger(); ``` The `WithMachineName()` enricher will add a `MachineName` property to produced events. ### Included enrichers The package includes: * `WithMachineName()` - adds `MachineName` based on either `%COMPUTERNAME%` (Windows) or `$HOSTNAME` (macOS, Linux) * `WithEnvironmentUserName()` - adds `EnvironmentUserName` based on `USERNAME` and `USERDOMAIN` (if available) * `WithEnvironmentName()` - adds `EnvironmentName` based on `ASPNETCORE_ENVIRONMENT` or `DOTNET_ENVIRONMENT` (when both are available then 'ASPNETCORE_ENVIRONMENT' takes precedence, when none are available then the fallback value will be 'Production') * `WithEnvironmentVariable(string environmentVariableName, string propertyName = null)` - adds an `environmentVariableName` property to the log event with the value for the specified environment variable. Optional `propertyName` will override `environmentVariableName` as the name of the attached property. Copyright © 2016 Serilog Contributors - Provided under the [Apache License, Version 2.0](http://apache.org/licenses/LICENSE-2.0.html).