nucliadb-telemetry 6.4.0.post4317__py3-none-any.whl → 6.4.0.post4319__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nucliadb-telemetry might be problematic. Click here for more details.
- nucliadb_telemetry/__init__.py +10 -15
- nucliadb_telemetry/batch_span.py +10 -14
- nucliadb_telemetry/common.py +10 -14
- nucliadb_telemetry/context.py +10 -14
- nucliadb_telemetry/errors.py +10 -14
- nucliadb_telemetry/fastapi/__init__.py +10 -14
- nucliadb_telemetry/fastapi/context.py +10 -14
- nucliadb_telemetry/fastapi/metrics.py +10 -14
- nucliadb_telemetry/fastapi/tracing.py +10 -14
- nucliadb_telemetry/fastapi/utils.py +10 -14
- nucliadb_telemetry/grpc.py +10 -14
- nucliadb_telemetry/grpc_metrics.py +10 -14
- nucliadb_telemetry/grpc_sentry.py +10 -14
- nucliadb_telemetry/jaeger.py +10 -14
- nucliadb_telemetry/jetstream.py +10 -14
- nucliadb_telemetry/logs.py +10 -14
- nucliadb_telemetry/metrics.py +10 -14
- nucliadb_telemetry/settings.py +10 -14
- nucliadb_telemetry/tests/__init__.py +10 -14
- nucliadb_telemetry/tests/grpc/__init__.py +10 -14
- nucliadb_telemetry/tests/telemetry.py +10 -14
- nucliadb_telemetry/tracerprovider.py +10 -14
- nucliadb_telemetry/utils.py +10 -14
- {nucliadb_telemetry-6.4.0.post4317.dist-info → nucliadb_telemetry-6.4.0.post4319.dist-info}/METADATA +2 -3
- nucliadb_telemetry-6.4.0.post4319.dist-info/RECORD +36 -0
- nucliadb_telemetry-6.4.0.post4317.dist-info/RECORD +0 -36
- {nucliadb_telemetry-6.4.0.post4317.dist-info → nucliadb_telemetry-6.4.0.post4319.dist-info}/WHEEL +0 -0
- {nucliadb_telemetry-6.4.0.post4317.dist-info → nucliadb_telemetry-6.4.0.post4319.dist-info}/top_level.txt +0 -0
nucliadb_telemetry/__init__.py
CHANGED
|
@@ -1,21 +1,16 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
19
14
|
|
|
20
15
|
import logging
|
|
21
16
|
|
nucliadb_telemetry/batch_span.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import asyncio
|
|
21
17
|
import time
|
nucliadb_telemetry/common.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import traceback
|
|
21
17
|
|
nucliadb_telemetry/context.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
# ABOUT
|
|
21
17
|
# The module is meant to manage telemetry oriented context data.
|
nucliadb_telemetry/errors.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import logging
|
|
21
17
|
import os
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
from typing import Iterable, List
|
|
21
17
|
from urllib.parse import urlparse
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
from nucliadb_telemetry import context
|
|
21
17
|
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import time
|
|
21
17
|
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
import typing
|
|
20
16
|
import urllib
|
|
21
17
|
from functools import wraps
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
from typing import List, NamedTuple, Optional, Tuple
|
|
20
16
|
|
|
21
17
|
from fastapi.responses import JSONResponse
|
nucliadb_telemetry/grpc.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import functools
|
|
21
17
|
from collections import OrderedDict
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import functools
|
|
21
17
|
from typing import Any, Awaitable, Callable, Union
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import functools
|
|
21
17
|
from typing import Any, Awaitable, Callable
|
nucliadb_telemetry/jaeger.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import asyncio
|
|
21
17
|
import math
|
nucliadb_telemetry/jetstream.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
from datetime import datetime
|
|
21
17
|
from functools import partial
|
nucliadb_telemetry/logs.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
# inspired from datadog integrations like https://pypi.org/project/JSON-log-formatter/
|
|
21
17
|
import logging
|
nucliadb_telemetry/metrics.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
import asyncio
|
|
20
16
|
import os
|
|
21
17
|
import time
|
nucliadb_telemetry/settings.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import enum
|
|
21
17
|
from typing import Dict, Optional
|
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
#
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import asyncio
|
|
21
17
|
import os
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import asyncio
|
|
21
17
|
import time
|
nucliadb_telemetry/utils.py
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
# Copyright
|
|
1
|
+
# Copyright 2025 Bosutech XXI S.L.
|
|
2
2
|
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# This program is free software: you can redistribute it and/or modify
|
|
8
|
-
# it under the terms of the GNU Affero General Public License as
|
|
9
|
-
# published by the Free Software Foundation, either version 3 of the
|
|
10
|
-
# License, or (at your option) any later version.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
8
|
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
16
14
|
#
|
|
17
|
-
# You should have received a copy of the GNU Affero General Public License
|
|
18
|
-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
15
|
|
|
20
16
|
import asyncio
|
|
21
17
|
import os
|
{nucliadb_telemetry-6.4.0.post4317.dist-info → nucliadb_telemetry-6.4.0.post4319.dist-info}/METADATA
RENAMED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nucliadb_telemetry
|
|
3
|
-
Version: 6.4.0.
|
|
3
|
+
Version: 6.4.0.post4319
|
|
4
4
|
Summary: NucliaDB Telemetry Library Python process
|
|
5
5
|
Author-email: Nuclia <nucliadb@nuclia.com>
|
|
6
|
-
License: AGPL
|
|
6
|
+
License-Expression: AGPL-3.0-or-later
|
|
7
7
|
Project-URL: Homepage, https://nuclia.com
|
|
8
8
|
Project-URL: Repository, https://github.com/nuclia/nucliadb
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Intended Audience :: Information Technology
|
|
12
|
-
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
13
12
|
Classifier: Framework :: AsyncIO
|
|
14
13
|
Classifier: Programming Language :: Python
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
nucliadb_telemetry/__init__.py,sha256=7Bhx3ctAKKX5SZ5f5hnvSqdnE55LMMV_UdYI8k3TK8M,647
|
|
2
|
+
nucliadb_telemetry/batch_span.py,sha256=vUokuCi0R1BUUfoLo70ss5SMQul3--YRaNsUocvqA8U,11769
|
|
3
|
+
nucliadb_telemetry/common.py,sha256=IbR_YnpLU66cpMr-iRQY7v0DakSjBXsev8KMcqZlJ2U,972
|
|
4
|
+
nucliadb_telemetry/context.py,sha256=_qVWuJI-WD6f35OhELUBZ538NmlVLYH4GierXAxAx38,2255
|
|
5
|
+
nucliadb_telemetry/errors.py,sha256=B7TSb0_zkEdUexkqF_nU7vN5IG-JyLCZd1XJ3pHcIlo,4228
|
|
6
|
+
nucliadb_telemetry/grpc.py,sha256=coc-RyKo_FeSE3uDwBSBwxN4YEoxDE9MsccNbm3STkM,14912
|
|
7
|
+
nucliadb_telemetry/grpc_metrics.py,sha256=ZH9c0GMb7psdrnz5T2mCyv0Fj4KXeaW5JY9Tnjx-byU,4924
|
|
8
|
+
nucliadb_telemetry/grpc_sentry.py,sha256=GgncQqN4ZCRyatXLbJbxnJNY9H9o9Jx1eWVuqcXSVPY,2409
|
|
9
|
+
nucliadb_telemetry/jaeger.py,sha256=BWFJ8-i_7b7UVnRqjxZz_QgyIiq9W1xCCyCsWlNMfAo,6786
|
|
10
|
+
nucliadb_telemetry/jetstream.py,sha256=0wkdo78SEY0P2qIvlfTHZELQnMquUHD2oToDL6BzbuM,11803
|
|
11
|
+
nucliadb_telemetry/logs.py,sha256=7VxFARDSGxEEZuWSMnvCkOzKCPbGutntX-7xtAg3Pqg,9061
|
|
12
|
+
nucliadb_telemetry/metrics.py,sha256=SjNCl7erLxV1n4i_5WyFEZo-oq3HuCKpjFOkOb7sWZ4,8402
|
|
13
|
+
nucliadb_telemetry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
nucliadb_telemetry/settings.py,sha256=3pskwvZ165lshedP8SJA4GbX2iR17nvKBLgkn1lnBP8,2261
|
|
15
|
+
nucliadb_telemetry/tracerprovider.py,sha256=qs21ay00zeBe--DQa2JbUJZ11r0R4TsZiE537i5KRbQ,3494
|
|
16
|
+
nucliadb_telemetry/utils.py,sha256=-cYZxcVIHdR5KAzClr6S4HvBl1yez15BGVkKO__TQh0,4682
|
|
17
|
+
nucliadb_telemetry/fastapi/__init__.py,sha256=TDaINitjEwqsPBrzohP0ZOdTdKSoRUgsjtYayNMq-_w,3466
|
|
18
|
+
nucliadb_telemetry/fastapi/context.py,sha256=O2PhwGDtej0AAIVpU5G3_iRkkbpDetsXHaD8buUtLk8,1280
|
|
19
|
+
nucliadb_telemetry/fastapi/metrics.py,sha256=XgP0EEKWlm-lAnvgFSg0nG8kJzXjCgny-Bt4prmFcvI,3672
|
|
20
|
+
nucliadb_telemetry/fastapi/tracing.py,sha256=F10Nr4Dl4-9w17mvzcScuDr3X9smEEFCN4xMK8NEOtk,14802
|
|
21
|
+
nucliadb_telemetry/fastapi/utils.py,sha256=FWyr8odUI2U9e3TUP1onX9xzJgdjEhJUexm8NGL7GoI,2729
|
|
22
|
+
nucliadb_telemetry/tests/__init__.py,sha256=A81KxGC8myNIvXEK0ZSsws8bZtNiwtvgh722sOMhgBM,585
|
|
23
|
+
nucliadb_telemetry/tests/telemetry.py,sha256=34VZcsDP79hHX7qfQL5pcDiuFqfDp4c-XvZv0PMOlXA,12308
|
|
24
|
+
nucliadb_telemetry/tests/grpc/__init__.py,sha256=zG33bUz1rHFPtvqQPWn4rDwBJt3FJodGuQYD45quiQg,583
|
|
25
|
+
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2.py,sha256=TqaM_C1EP1Gy_5XQKcuoFOzem4idhAGoWc5t3K-I0zE,2342
|
|
26
|
+
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2.pyi,sha256=4IKe88c3x4pFAANnnprD1ILWskVJjj6rKgwKk64cYjU,1412
|
|
27
|
+
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2_grpc.py,sha256=t0AUJC2DgtMwFZUGs8dGlMlb2k4YmvXgzWRg029-m0k,2822
|
|
28
|
+
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2_grpc.pyi,sha256=jihuN5OoNQzPVMcBUBu_gSNnLZoJZG-i7XCfwbzy-hY,1085
|
|
29
|
+
nucliadb_telemetry/tests/grpc/helloworld_pb2.py,sha256=ht4dmi0pAy6qDrwcjkbtSf_hODt08LfexFjtzodPo_I,2292
|
|
30
|
+
nucliadb_telemetry/tests/grpc/helloworld_pb2.pyi,sha256=mBZCQE6z7riQw6fOegJgZ5lHmXqO23_zxL8iQMqSqms,1191
|
|
31
|
+
nucliadb_telemetry/tests/grpc/helloworld_pb2_grpc.py,sha256=_jxUNxl4Fx-JztK9RO5R6osjNP2sVNVPAxLnmczEYOc,2677
|
|
32
|
+
nucliadb_telemetry/tests/grpc/helloworld_pb2_grpc.pyi,sha256=Y6teCx-PhPU-rI6w5ItLBKaTb34FLpngPnuDVWtNve4,958
|
|
33
|
+
nucliadb_telemetry-6.4.0.post4319.dist-info/METADATA,sha256=3Fclaeg7M54eBtxpFimod_HDNOF7UKq-YDlygsQTWCs,10986
|
|
34
|
+
nucliadb_telemetry-6.4.0.post4319.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
35
|
+
nucliadb_telemetry-6.4.0.post4319.dist-info/top_level.txt,sha256=3qEHI_5ttqQIL2gkNYwSlKsFyBBiEzDiIy9UKISzOaQ,19
|
|
36
|
+
nucliadb_telemetry-6.4.0.post4319.dist-info/RECORD,,
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
nucliadb_telemetry/__init__.py,sha256=Spgi2Ggxn-7EwLPzAVSANxup76s3mPAt_Hv7EI--hV4,899
|
|
2
|
-
nucliadb_telemetry/batch_span.py,sha256=5cE7wt-H6wMXnJ5GUgjZyKvBWfaaZ-VWHS1m8d363_U,12019
|
|
3
|
-
nucliadb_telemetry/common.py,sha256=i5xxHlxeNZ1MPCoBvDDNkRDiYhvq6ghKwuaBnYGyhGU,1222
|
|
4
|
-
nucliadb_telemetry/context.py,sha256=rhLs4NWGMjKzLjr6kTTjq-gaR0sAPJudkS-KjpW9LWc,2505
|
|
5
|
-
nucliadb_telemetry/errors.py,sha256=QTKp-ErpsRb-xN3m6kMpq6tpOrOMQxsHVJAofKPo3Rk,4478
|
|
6
|
-
nucliadb_telemetry/grpc.py,sha256=cNJRJLr0aRedKr5V_ufGqeidnMlBouML3QbFKkugTqg,15162
|
|
7
|
-
nucliadb_telemetry/grpc_metrics.py,sha256=L2XMcJDxioNUYPX_IbKl_zvrG8uOFpF_a67c6yJq-Jw,5174
|
|
8
|
-
nucliadb_telemetry/grpc_sentry.py,sha256=3eS_DVIX5MzvbJBkykf8JyZUf1b_b9w1KLhjoiW7oV0,2659
|
|
9
|
-
nucliadb_telemetry/jaeger.py,sha256=HMQK8x_oaol5tCx3hCjaMG5Uzvsy_WWhKnD-FEZoYA4,7036
|
|
10
|
-
nucliadb_telemetry/jetstream.py,sha256=hhlAv0sEottFjRp16vjwf2aWQqsoGVttVgwjzh1jNVs,12053
|
|
11
|
-
nucliadb_telemetry/logs.py,sha256=ag1e7tKEoNFgB1FuAmyTxdIHtTFwOJlGxPl2s1bhUic,9311
|
|
12
|
-
nucliadb_telemetry/metrics.py,sha256=euexqkmlZip6QFbMfvJW1fSuha96J4ZHnMWixeVJnAs,8652
|
|
13
|
-
nucliadb_telemetry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
nucliadb_telemetry/settings.py,sha256=Gr5rC9tBKHwck6sMMP76rn4Zgwh1w81dSzJJNcgkZvE,2511
|
|
15
|
-
nucliadb_telemetry/tracerprovider.py,sha256=ycVqSMo0NTa7EEv4QLC8qAt0NYKbOy8uC9k14PjAiuk,3744
|
|
16
|
-
nucliadb_telemetry/utils.py,sha256=eXqkMlWOd5-hWB5HrPQ4n9e85I1ff1PaWl0f3SMr3WA,4932
|
|
17
|
-
nucliadb_telemetry/fastapi/__init__.py,sha256=NRtQtyE1jZzTK5bZETYqb0d6bpjthTAt-UXiO8DAQWQ,3716
|
|
18
|
-
nucliadb_telemetry/fastapi/context.py,sha256=qhl3rVDtqDfnsCHBAlv-eX8SUSlooMnsryBcV5FMZvU,1530
|
|
19
|
-
nucliadb_telemetry/fastapi/metrics.py,sha256=fcnT5ShmU3oHci2FNJPoyYwWJiP60O0G3CEUAzUsC1w,3922
|
|
20
|
-
nucliadb_telemetry/fastapi/tracing.py,sha256=U85I3QIFb27aj4v3Cl6l5evEgskP12LuEXW4pAsvGCc,15052
|
|
21
|
-
nucliadb_telemetry/fastapi/utils.py,sha256=HtfhBSaYs_HWHx7SBp0pPAsoig5CLcHNFIFnzb-RXOE,2979
|
|
22
|
-
nucliadb_telemetry/tests/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
|
23
|
-
nucliadb_telemetry/tests/telemetry.py,sha256=duNy9KWgLTsfUT_3R7dwFQ-2YB7IZWbtOhiz0IpfI84,12558
|
|
24
|
-
nucliadb_telemetry/tests/grpc/__init__.py,sha256=itSI7dtTwFP55YMX4iK7JzdMHS5CQVUiB1XzQu4UBh8,833
|
|
25
|
-
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2.py,sha256=TqaM_C1EP1Gy_5XQKcuoFOzem4idhAGoWc5t3K-I0zE,2342
|
|
26
|
-
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2.pyi,sha256=4IKe88c3x4pFAANnnprD1ILWskVJjj6rKgwKk64cYjU,1412
|
|
27
|
-
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2_grpc.py,sha256=t0AUJC2DgtMwFZUGs8dGlMlb2k4YmvXgzWRg029-m0k,2822
|
|
28
|
-
nucliadb_telemetry/tests/grpc/hellostreamingworld_pb2_grpc.pyi,sha256=jihuN5OoNQzPVMcBUBu_gSNnLZoJZG-i7XCfwbzy-hY,1085
|
|
29
|
-
nucliadb_telemetry/tests/grpc/helloworld_pb2.py,sha256=ht4dmi0pAy6qDrwcjkbtSf_hODt08LfexFjtzodPo_I,2292
|
|
30
|
-
nucliadb_telemetry/tests/grpc/helloworld_pb2.pyi,sha256=mBZCQE6z7riQw6fOegJgZ5lHmXqO23_zxL8iQMqSqms,1191
|
|
31
|
-
nucliadb_telemetry/tests/grpc/helloworld_pb2_grpc.py,sha256=_jxUNxl4Fx-JztK9RO5R6osjNP2sVNVPAxLnmczEYOc,2677
|
|
32
|
-
nucliadb_telemetry/tests/grpc/helloworld_pb2_grpc.pyi,sha256=Y6teCx-PhPU-rI6w5ItLBKaTb34FLpngPnuDVWtNve4,958
|
|
33
|
-
nucliadb_telemetry-6.4.0.post4317.dist-info/METADATA,sha256=p41U5X55LjusAPTGcgsgjpxuNfDhJ_dNPR8Cscr30KY,11057
|
|
34
|
-
nucliadb_telemetry-6.4.0.post4317.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
35
|
-
nucliadb_telemetry-6.4.0.post4317.dist-info/top_level.txt,sha256=3qEHI_5ttqQIL2gkNYwSlKsFyBBiEzDiIy9UKISzOaQ,19
|
|
36
|
-
nucliadb_telemetry-6.4.0.post4317.dist-info/RECORD,,
|
{nucliadb_telemetry-6.4.0.post4317.dist-info → nucliadb_telemetry-6.4.0.post4319.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|