Git Product home page Git Product logo

Comments (4)

drlowery avatar drlowery commented on June 30, 2024 1

to help others I got this to work with serilog.sinks.postgresql.alternative

Add column writer definitions

IDictionary<string, ColumnWriterBase> columnWriters = new Dictionary<string, ColumnWriterBase>
{
{"message", new RenderedMessageColumnWriter(NpgsqlDbType.Text) },
{"message_template", new MessageTemplateColumnWriter(NpgsqlDbType.Text) },
{"level", new LevelColumnWriter(false, NpgsqlDbType.Integer) },
{"timestamp", new TimestampColumnWriter(NpgsqlDbType.Timestamp) },
{"exception", new ExceptionColumnWriter(NpgsqlDbType.Text) },
{"log_event", new LogEventSerializedColumnWriter(NpgsqlDbType.Jsonb) }
};

the configure with the writers

            loggerConfiguration.WriteTo.PostgreSQL(
                dbSettings["ConnectionString"] ?? "",
                tableName: "logs",
                columnWriters,
                needAutoCreateTable: true,
                schemaName: "public");

Then the normal usage of serilog-ui will work fine.
It matches the lower-case of the column names and schema

from serilog-ui.

mo-esmp avatar mo-esmp commented on June 30, 2024

Thanks for reporting the issue. The current PostgreSQL data provider is based on the serilog-sinks-postgresql sink and we need to introduce a new package for serilog.sinks.postgresql.alternative sink because they use a different table schema for saving logs.

from serilog-ui.

drlowery avatar drlowery commented on June 30, 2024

AH thanks, had to use the alternative for another issue.
Thanks again for the quick answer.
Will keep a on the look out for the support to alterative

from serilog-ui.

mo-esmp avatar mo-esmp commented on June 30, 2024

Please upgrade Serilog.UI.PostgreSqlProvider nuget package to version 2.3.0.

from serilog-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.