This file contains hidden or 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
[mohrasyidfahroni:~] % appium server -ka 800 --use-plugins=device-farm,appium-dashboard -pa /wd/hub --plugin-device-farm-platform=ios --plugin-device-farm-ios-device-type=real | |
[Appium] Attempting to load plugin device-farm... | |
[Appium] Attempting to load plugin appium-dashboard... | |
[Appium] Requiring plugin at /Users/mohrasyidfahroni/.appium/node_modules/appium-dashboard/lib/index.js | |
[Appium] Requiring plugin at /Users/mohrasyidfahroni/.appium/node_modules/appium-device-farm/lib/src/index.js | |
[appium-dashboard] Unable to create adb instance. | |
[Appium] AppiumDashboardPlugin has been successfully loaded in 0.793s | |
[Appium] DevicePlugin has been successfully loaded in 0.794s | |
[Appium] Welcome to Appium v2.5.1 (REV cfac516ee045d869be34598152e80a11ef2befe7) | |
[Appium] Non-default server args: |
This file contains hidden or 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
resource "helm_release" "datadog" { | |
name = "datadog-agent" | |
lifecycle { | |
ignore_changes = [ | |
status, | |
] | |
} | |
repository = "https://helm.datadoghq.com" |
This file contains hidden or 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
2022-09-20 12:56:57 UTC | CORE | ERROR | (pkg/collector/worker/check_logger.go:69 in Error) | check:cilium | Error running check: [{"message": "HTTPConnectionPool(host='10.148.0.6', port=9090): Max retries exceeded with url: /metrics (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc9e30df970>: Failed to establish a new connection: [Errno 111] Connection refused'))", "traceback": "Traceback (most recent call last): | |
File \"/opt/datadog-agent/embedded/lib/python3.8/site-packages/urllib3/connection.py\", line 174, in _new_conn | |
conn = connection.create_connection( | |
File \"/opt/datadog-agent/embedded/lib/python3.8/site-packages/urllib3/util/connection.py\", line 95, in create_connection | |
raise err | |
File \"/opt/datadog-agent/embedded/lib/python3.8/site-packages/urllib3/util/connection.py\", line 85, in create_connection | |
sock.connect(sa) | |
ConnectionRefusedError: [Errno 111] Connection refused |
This file contains hidden or 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
#!/bin/bash -eux | |
SSH_USER=${SSH_USERNAME:-vagrant} | |
DISK_USAGE_BEFORE_CLEANUP=$(df -h) | |
# Make sure udev does not block our network - http://6.ptmc.org/?p=164 | |
#echo "==> Cleaning up udev rules" | |
#rm -rf /dev/.udev/ | |
#rm /lib/udev/rules.d/75-persistent-net-generator.rules |
This file contains hidden or 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
*** Settings *** | |
Library SeleniumLibrary | |
*** Variables *** | |
${BROWSER} Chrome | |
${URL} https://www.facebook.com/ | |
${EMAIL} [email protected] | |
*** Test Cases *** | |
Test Berhasil Login |
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: StatefulSet | |
metadata: | |
name: mysql{{SUFFIX}} | |
labels: &labels | |
project: mysql | |
service: mysql{{SUFFIX}} | |
spec: | |
serviceName: mysql | |
replicas: 1 |
This file contains hidden or 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
import React from 'react'; | |
import { Platform, StyleSheet, Text, View } from 'react-native'; | |
export default class App extends React.Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<Text {...testID('important-text')}>Hello World!</Text> | |
</View> | |
); |
This file contains hidden or 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
*** Settings *** | |
Library AppiumLibrary 15 run_on_failure=Log Source | |
Library Process | |
Suite Setup Spawn Appium Server | |
Suite Teardown Close Appium Server | |
Test Teardown Close Application | |
*** Variables *** | |
## Go here to download the apk for the app used in this test -> https://drive.google.com/file/d/19FxLjux8ZtumweXzBA_CYrL0Va-BL4gY/view?usp=sharing |