Giter VIP home page Giter VIP logo

Comments (10)

KyleGobel avatar KyleGobel commented on June 12, 2024 1

Thanks a lot, your post and little snippet helped me figure out how I could integrate this. Turns out they have a ModifyConnectionSettings hook, I just didn't really know how to use it.

If anyone else was curious (this would probably be better off posted in their repo, but oh well).
Here's a pretty crude example of how you could get it to work.

  const string esUrl = "https://aws-es-thinger.us-west-1.es.amazonaws.com";
  Log.Logger = new LoggerConfiguration()
                .WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri(esUrl))
                {
                    ModifyConnectionSettings = conn =>
                    {
                        var httpConnection = new AwsHttpConnection("us-west-1", new StaticCredentialsProvider(
                            new AwsCredentials
                            {
                                // Service User Keys
                                AccessKey = "",
                                SecretKey = ""
                            }));
                        var pool = new SingleNodeConnectionPool(new Uri(esUrl));
                        return new ConnectionConfiguration(pool, httpConnection);
                    }
                })
                .CreateLogger();

Thanks a bunch for making this library! Saved me probably like 80 hours of fiddling with and trying to sign them requests!

from elasticsearch-net-aws.

bcuff avatar bcuff commented on June 12, 2024

It looks like you would probably need to fork the Serilog Elasticsearch Sink so that you can set up the client in a custom way. Maybe you can simply provide a setup overload that lets you inject a custom ElasticLowLevelClient instance or something and submit a PR back to the main line. https://github.com/serilog/serilog-sinks-elasticsearch/blob/dev/src/Serilog.Sinks.Elasticsearch/Sinks/ElasticSearch/ElasticsearchSinkState.cs#L84

You'll then need to setup an ElasticLowLevelClient instance like so

            var httpConnection = new AwsHttpConnection("us-east-1");
            var pool = new SingleNodeConnectionPool(new Uri("https://..."));
            var config = new ConnectionConfiguration(pool, httpConnection);
            var client = new ElasticLowLevelClient(config);

from elasticsearch-net-aws.

bcuff avatar bcuff commented on June 12, 2024

@KyleGobel I'm glad you figured that out.

That code example would be a good addition to the README. Feel free to PR it. I might do it myself if you don't :).

from elasticsearch-net-aws.

mariotacke avatar mariotacke commented on June 12, 2024

How would one provide basic auth credentials for the connection? In my use case, I have basic auth credentials (not AWS security credentials) that work in the browser, but not in the sink configuration.

from elasticsearch-net-aws.

bcuff avatar bcuff commented on June 12, 2024

@mariotacke I don't think AWS Elasticsearch Service supports basic http authentication. Either the request must be signed with valid AWS credentials or the inbound traffic needs to come from a whitelisted IP address. You can whitelist IP addresses in your elasticsearch domain's access policy.

from elasticsearch-net-aws.

mariotacke avatar mariotacke commented on June 12, 2024

Thanks @bcuff. I've asked my ops guys to give me proper credentials, that's probably the way to go.

from elasticsearch-net-aws.

rtrscience avatar rtrscience commented on June 12, 2024

Thanks a lot, your post and little snippet helped me figure out how I could integrate this. Turns out they have a ModifyConnectionSettings hook, I just didn't really know how to use it.

If anyone else was curious (this would probably be better off posted in their repo, but oh well).
Here's a pretty crude example of how you could get it to work.

  const string esUrl = "https://aws-es-thinger.us-west-1.es.amazonaws.com";
  Log.Logger = new LoggerConfiguration()
                .WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri(esUrl))
                {
                    ModifyConnectionSettings = conn =>
                    {
                        var httpConnection = new AwsHttpConnection("us-west-1", new StaticCredentialsProvider(
                            new AwsCredentials
                            {
                                // Service User Keys
                                AccessKey = "",
                                SecretKey = ""
                            }));
                        var pool = new SingleNodeConnectionPool(new Uri(esUrl));
                        return new ConnectionConfiguration(pool, httpConnection);
                    }
                })
                .CreateLogger();

Thanks a bunch for making this library! Saved me probably like 80 hours of fiddling with and trying to sign them requests!

This works only in .net core with was elastic search. Can you help me on how to handle the same using with standard asp.net

from elasticsearch-net-aws.

bcuff avatar bcuff commented on June 12, 2024

You're welcome. Thanks for sharing the snippet!

from elasticsearch-net-aws.

orhunerdem avatar orhunerdem commented on June 12, 2024

@mariotacke Hi, any updates on this? I'm in a similar situation and searching web for a solution..

from elasticsearch-net-aws.

mariotacke avatar mariotacke commented on June 12, 2024

@orhunerdem, it's been a long time but IIRC, I ended up using AWS credentials instead of basic auth as suggested by @bcuff and @rtrscience .

from elasticsearch-net-aws.

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.