File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed
instrumentation/elasticsearch Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -1111,6 +1111,7 @@ libraries:
11111111 - co.elastic.clients:elasticsearch-java:[7.16,7.17.20)
11121112 - co.elastic.clients:elasticsearch-java:[8.0.0,8.10)
11131113 - name : elasticsearch-rest-5.0
1114+ description : This instrumentation provides tracing for Elasticsearch REST clients.
11141115 source_path : instrumentation/elasticsearch/elasticsearch-rest-5.0
11151116 scope :
11161117 name : io.opentelemetry.elasticsearch-rest-5.0
@@ -1141,6 +1142,7 @@ libraries:
11411142 - name : url.full
11421143 type : STRING
11431144 - name : elasticsearch-rest-6.4
1145+ description : This instrumentation provides tracing for Elasticsearch REST clients.
11441146 source_path : instrumentation/elasticsearch/elasticsearch-rest-6.4
11451147 scope :
11461148 name : io.opentelemetry.elasticsearch-rest-6.4
@@ -1169,6 +1171,7 @@ libraries:
11691171 - name : url.full
11701172 type : STRING
11711173 - name : elasticsearch-rest-7.0
1174+ description : This instrumentation provides tracing for Elasticsearch REST clients.
11721175 source_path : instrumentation/elasticsearch/elasticsearch-rest-7.0
11731176 scope :
11741177 name : io.opentelemetry.elasticsearch-rest-7.0
Original file line number Diff line number Diff line change @@ -93,6 +93,16 @@ readonly COLIMA_INSTRUMENTATIONS=(
9393
9494readonly TELEMETRY_DIR_NAME=" .telemetry"
9595
96+ # Sets up colima for x86_64 architecture if on ARM
97+ setup_colima () {
98+ if [[ " $( uname -m) " == " arm64" || " $( uname -m) " == " aarch64" ]]; then
99+ echo " Setting up colima for x86_64 architecture..."
100+ colima start --arch x86_64 --memory 4
101+ export TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE=/var/run/docker.sock
102+ export DOCKER_HOST=" unix://${HOME} /.colima/docker.sock"
103+ fi
104+ }
105+
96106# Splits a single descriptor into its three logical parts.
97107# argument $1: descriptor string (ex: "foo:bar:baz:test")
98108# Outputs three variables via echo:
Original file line number Diff line number Diff line change 1+ description : This instrumentation provides tracing for Elasticsearch REST clients.
12configurations :
23 - name : otel.instrumentation.elasticsearch.capture-search-query
34 description : |
45 Enable the capture of search query bodies. It is important to note that Elasticsearch queries
56 may contain personal or sensitive information.
67 type : boolean
7- default : false
8+ default : false
Original file line number Diff line number Diff line change 1+ description : This instrumentation provides tracing for Elasticsearch REST clients.
12configurations :
23 - name : otel.instrumentation.elasticsearch.capture-search-query
34 description : >
45 Enable the capture of search query bodies. It is important to note that Elasticsearch queries
56 may contain personal or sensitive information.
67 type : boolean
7- default : false
8+ default : false
Original file line number Diff line number Diff line change 1+ description : This instrumentation provides tracing for Elasticsearch REST clients.
12configurations :
23 - name : otel.instrumentation.elasticsearch.capture-search-query
34 description : >
45 Enable the capture of search query bodies. It is important to note that Elasticsearch queries
56 may contain personal or sensitive information.
67 type : boolean
7- default : false
8+ default : false
You can’t perform that action at this time.
0 commit comments