6 Commits

Author SHA1 Message Date
67b52db446 Add pep8
All checks were successful
Run Tox Check / tox-py312 (pull_request) Successful in 19s
Run Tox Check / tox-pep8 (pull_request) Successful in 15s
gl/check check status: success (67b52db4467d2768540f897adbbe2b34edd1e219)
gl/gate gate status: success (67b52db4467d2768540f897adbbe2b34edd1e219)
Updates Opensearch filters / update-opensearch-filters (pull_request) Successful in 9s
2025-07-30 08:03:07 +00:00
f1eff9e5c7 Add composite
All checks were successful
Run Tox Check / tox-py312 (pull_request) Successful in 21s
gl/check check status: success (f1eff9e5c7271a1dcda7822b2dbe6e3f7803b166)
2025-07-29 13:29:18 +00:00
702d2a8503 add runs-on
Some checks failed
Run tox Check with latest version / Using pre-defined check jobs (pull_request) Failing after 0s
gl/check check status: success (702d2a8503825882f074090cbd62c4fa487e1708)
2025-07-29 13:17:14 +00:00
552291580c add https
Some checks failed
Run tox Check with latest version / test-tox-py3 (pull_request) Failing after 1s
gl/check check status: pending (552291580cda9b70a42bf3eccd4ea51c464b602a)
2025-07-29 13:15:02 +00:00
953bba744f add on section
Some checks failed
Run tox Check with latest version / test-tox-py3 (pull_request) Failing after 0s
gl/check check status: pending (953bba744fa83308472319fa7fe89ee13eb64e23)
2025-07-29 13:13:59 +00:00
b566f3916a add tox py3 check
Some checks are pending
gl/check check status: pending (b566f3916a435b5717d38e2812518060cdb97dd1)
2025-07-29 13:13:03 +00:00
5 changed files with 0 additions and 296 deletions

View File

@ -1,62 +0,0 @@
name: Create Weekly Analytics Stats
on:
schedule:
# 03:00 UTC = 04:00 CET
- cron: "0 3 * * 1"
workflow_dispatch:
jobs:
run-analytics:
runs-on: ubuntu
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.PUSH_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests otc-metadata
- name: Run analytics for eu_de
env:
UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }}
UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }}
run: |
python ./tools/collect_statistics.py \
--website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \
--cloud-environment "eu_de" \
--environment "public" \
--limit "10"
- name: Run analytics for swiss
env:
UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }}
UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }}
run: |
python ./tools/collect_statistics.py \
--website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \
--cloud-environment "swiss" \
--environment "public" \
--limit "10"
- name: Commit and push results
id: commit_step
run: |
git config --global user.name "gitea-actions[bot]"
git config --global user.email "actions@users.noreply.local"
git checkout -B analytics-update
git add analytics/
if git diff --cached --quiet; then
else
git commit -m "chore: update analytics data"
git push origin analytics-update --force
fi

View File

@ -1,12 +0,0 @@
[
"evs",
"ims",
"ecs",
"cce",
"obs",
"rds",
"sfs",
"iam",
"config",
"elb"
]

View File

@ -1,12 +0,0 @@
[
"evs",
"ims",
"ecs",
"cce",
"obs",
"rds",
"iam",
"elb",
"cbr",
"vpn"
]

View File

@ -453,25 +453,3 @@ class Services(object):
res.sort(key=lambda x: x.get("name", "").lower())
return res
def all_services_by_cloud_environment(self, cloud_environment, environments):
"""Retrieve all services filtered by cloud_environment
"""
res = []
for srv in self.all_services:
if environments and cloud_environment:
for srv_cloud_environment in srv["cloud_environments"]:
if srv_cloud_environment["name"] == cloud_environment:
for environment in environments:
if srv_cloud_environment["visibility"] == environment:
res.append(srv)
else:
continue
else:
raise Exception("No cloud_environment or environments "
"specified in function all_services_by_cloud_environment.")
# Sort services
res.sort(key=lambda x: x.get("service_title", "").lower())
return res

File diff suppressed because it is too large Load Diff