-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Action for integration of event reporter (#96)
- Loading branch information
1 parent
9f26787
commit 544738a
Showing
7 changed files
with
201 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env sh | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
echo ::save-state name=START_TIME::$(date +%s)000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env sh | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
set -ex | ||
|
||
echo "Reporting event..." | ||
|
||
/swctl \ | ||
--grpcAddr="$OAP_URL" \ | ||
event report \ | ||
--uuid="$(cat /proc/sys/kernel/random/uuid)" \ | ||
--name="$NAME" \ | ||
--service="$SERVICE" \ | ||
--instance="$INSTANCE" \ | ||
--endpoint="$ENDPOINT" \ | ||
--message="$MESSAGE" \ | ||
--startTime="$STATE_START_TIME" \ | ||
--endTime=$(date +%s)000 \ | ||
$PARAMETERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM golang:1.14 AS builder | ||
|
||
ENV CGO_ENABLED=0 | ||
ENV GO111MODULE=on | ||
|
||
WORKDIR /cli | ||
|
||
COPY go.* ./ | ||
|
||
RUN go mod download | ||
|
||
COPY . . | ||
|
||
RUN make linux && mv bin/swctl-*-linux-amd64 /swctl | ||
|
||
FROM alpine | ||
|
||
COPY --from=builder /swctl /swctl | ||
|
||
COPY .github/scripts/* / | ||
|
||
ENTRYPOINT [ "/swctl" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: SkyWalking Event Reporter | ||
description: Report GitHub workflow events to Apache SkyWalking | ||
author: Apache SkyWalking | ||
inputs: | ||
oap-url: | ||
description: URL of SkyWalking OAP | ||
required: true | ||
auth-token: | ||
description: Authorization token of SkyWalking OAP | ||
required: false | ||
name: | ||
description: The name of the event, for example, "Upgrade" | ||
required: false | ||
default: Upgrade | ||
service: | ||
description: The service name of the event | ||
required: true | ||
instance: | ||
description: The service instance of the event | ||
required: true | ||
endpoint: | ||
description: The service endpoint of the event, if any | ||
required: false | ||
message: | ||
description: The message of the event | ||
required: false | ||
default: Upgrade from {fromVersion} to {toVersion} | ||
parameters: | ||
description: The parameters in the message | ||
required: false | ||
default: "" | ||
|
||
runs: | ||
using: docker | ||
image: Dockerfile | ||
env: | ||
OAP_URL: ${{ inputs.oap-url }} | ||
AUTH_TOKEN: ${{ inputs.auth-token }} | ||
NAME: ${{ inputs.name }} | ||
SERVICE: ${{ inputs.service }} | ||
INSTANCE: ${{ inputs.instance }} | ||
ENDPOINT: ${{ inputs.endpoint }} | ||
MESSAGE: ${{ inputs.message }} | ||
PARAMETERS: ${{ inputs.parameters }} | ||
entrypoint: /entrypoint.sh | ||
post-entrypoint: /post-entrypoint.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters